From drtebi@yahoo.com Tue Aug 14 16:51:24 2001 Date: Tue, 14 Aug 2001 14:13:01 -0700 From: DrTebi To: smcpeak@cs.berkeley.edu Subject: example on how to use SafeTP with xinetd [...] I am using SafeTP with xinetd. This way my servers will NOT accept any connections on port 351, but only on 21 with encrypted passwords. This is how I configured it: service safetp { socket_type = stream wait = no user = safetp server = /home/safetp/sftpd server_args = -s -9 -y/home/safetp # logging log_type = FILE /var/log/ftplog log_on_success = PID HOST USERID DURATION log_on_failure = HOST USERID RECORD # security instances = 10 per_source = 3 } service raw-ftp { socket_type = stream instances = 10 wait = no user = root server = /usr/local/sbin/in.proftpd # security only_from = 127.0.0.1 only_from = #your IP address goes here }