Quote:
Originally Posted by L1nuxbug
shud i load it through vsftpd.conf file ??
tell me how to check...if its loaded or not... and whats its purpose..?
|
it's purpose is to allow the kernel to track FTP connections (on the state table)... it's a kernel module, so you'd load it with the
modprobe command... you can check if the module is loaded by doing a:
Code:
lsmod | grep ip_conntrack_ftp
if it's not loaded, you can load it with a:
Code:
modprobe ip_conntrack_ftp
keep in mind that if you compiled support for this into your kernel (instead of as a module) then this wouldn't be necessary at all... also keep in mind that i'm NOT saying this is definitely the cause of your problem...