I would agree that this is a firewall issue. I run passive ProFTP like such:
/etc/proftpd.conf snippet
Code:
DefaultAddress w.x.y.z
PassivePorts 30000 30050
So I have 50 ports open from 30000 - 30050 to allow for 50 simaltaneous ftp connections (subsitituting your IP of course for w.x.y.z). On my firewall, I just open up ports 30000 - 30050 going to that server.
iptables -A INPUT -d w.x.y.z -p tcp --dport 30000:30050 -j ACCEPT
Or on a personal firewall device... just do the usual port forwarding thang forwarding ports 30000-30050 to the internal IP AS WELL AS the standard ports 20/21 for ftp.
Then, once you connect you must initiate passive ftp unless the client automatically does:
Code:
ftp> passive
Passive mode on
Let me know if that helps, or if you have questions...
Recent comments
23 hours 54 min ago
1 day 4 hours ago
1 day 6 hours ago
1 day 7 hours ago
1 day 8 hours ago
1 day 13 hours ago
1 day 14 hours ago
1 day 16 hours ago
2 days 5 hours ago
2 days 7 hours ago