hbbs

bbs.hlirc.net
Log | Files | Refs | README | LICENSE

commit b676900a5afb3a43dcf405ea9906079e3dca3d4f
parent 15082796c6b2c0725bc3f86c9b223b88674f16b6
Author: hhvn <hayden@haydenvh.com>
Date:   Mon,  1 Feb 2021 00:30:48 +0000

etc/xinetd[NEW]: add template xinetd configuration

Diffstat:
Aetc/xinetd | 39+++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+), 0 deletions(-)

diff --git a/etc/xinetd b/etc/xinetd @@ -0,0 +1,39 @@ +service telnet +{ + socket_type = stream + protocol = tcp + only_from = 0.0.0.0/0 ::/0 + + wait = no + user = bbs + group = bbs + server = PREFIX/share/hbbs/bin/wrapper.sh + instances = 12 + + log_type = FILE /var/log/hbbs + log_on_success = PID HOST EXIT DURATION + log_on_failure = HOST + banner_fail = /usr/share/hbbs/etc/banner_full + + disable = no +} +service finger +{ + socket_type = stream + protocol = tcp + only_from = 0.0.0.0/0 ::/0 + + wait = no + user = bbs + group = bbs + server = PREFIX/share/hbbs/bin/wrapper.sh + server_args = -f + instances = 5 + + log_type = FILE /var/log/hbbs-finger + log_on_success = PID HOST EXIT DURATION + log_on_failure = HOST + banner_fail = /usr/share/hbbs/etc/banner_full + + disable = no +}