Fahrvergnuugen
I am the law!
When you log into my ftp server and do an ls -R it starts listing the directories recursively but then suddenly after a few seconds the server disconnects the client. I'm guessing that maybe xident is killing the process because its taking too long?
I'm using pureftpd www.pureftpd.com as my ftp server. I changed my /etc/xident.d/ftp file to use the pureftpd binary
-L 5000:5 increases the default max recursion limit from 2000 to 5000. Somewhere after the 4500'th result, the client gets disconnected.
any ideas?
I'm using pureftpd www.pureftpd.com as my ftp server. I changed my /etc/xident.d/ftp file to use the pureftpd binary
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
#server = /usr/libexec/ftpd
server = /usr/local/sbin/pure-ftpd
#server_args = -l
server_args = -l puredb:/etc/pureftpd.pdb -L 4900:5 &
groups = yes
flags = REUSE
}
-L 5000:5 increases the default max recursion limit from 2000 to 5000. Somewhere after the 4500'th result, the client gets disconnected.
any ideas?