Internet Super Server
Contents
Um ein paar Ressourcen zu schonen und starten wir unsere Daemonen "On Demand".
/etc/xinetd.d/atftpd
service tftp { disable = no socket_type = dgram protocol = udp port = 69 wait = yes user = root server = /usr/sbin/in.tftpd server_args = --tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 /srv/tftp flags = IPv4 per_source = 11 cps = 100 2 } # server_args = --port 69 --verbose=7 --trace --bind-address w.x.y.z --tftpd-timeout 300 --retry-timeout 5 --mcast-port 1758 --mcast-addr 239.239.239.0-255 --mcast-ttl 1 --maxthread 100 /srv/tftp # only_from = w.x.y.0
/etc/xinetd.d/vsftpd
service ftp { disable = no socket_type = stream wait = no user = root server = /usr/sbin/vsftpd server_args = /etc/vsftpd.conf nice = 10 log_on_success += PID HOST DURATION USERID log_on_failure += HOST USERID } # per_source = 5 # instances = 200 # banner_fail = /etc/vsftpd.busy_banner # flags = IPv6 #From inetd.conf # ftp stream tcp nowait root /usr/sbin/vsftpd vsftpd -olisten=NO /etc/vsftpd.conf