ProFTPD and OpenBSD
Below are the steps I followed in the past to install ProFTPD (1.2.0rc2) on my OpenBSD machine. Now that programs like WinSCP make copying files from Windows to Unix machines a lot easier, I disabled FTP service on my machine.
But for people still using the FTP service:
- Download the ProFTPD source package:
wget ftp://ftp.proftpd.net/pub/proftpd/proftpd-1.2.0rc2.tar.gz - Extract the sources:
tar xvfz proftpd-1.2.0rc2.tar.gzAnd
cdto theproftpd-1.2.0rc2directory. - Configure ProFTPD:
./configure - Compile ProFTPD:
make > /dev/null - Install ProFTPD:
make install > /dev/null - Edit
/etc/inetd.confso that ProFTPD can take over:ftp stream tcp nowait root /usr/libexec/tcpd /usr/local/sbin/in.proftpd - Edit
/etc/hosts.allowso that users may actually use your new shiny FTP daemon:in.proftpd: 192.168.0.