You have to edit proftpd.conf and set servertype to inetd:
Then create the file /etc/xinetd.d/proftpd with at least the following:
Code:
service ftp
{
socket_type = stream
protocol = tcp
wait = no
user = root
server = /path/to/proftpd
flags = REUSE
instances = 50
}
Of course change the /path/to/proftpd to the actual path to the proftpd executable. Then restart xinetd.
Regards