john9527
Part of the Furniture
I don't think that's true....I just enabled FTP with WAN access and the following rule was generated (in iptables -S output). So the firewall rule generation is working.Its not possible to access FTP from WAN from ASUS because the firmware port forwarding only works in the forward chain not input. You would have to go into the linux file system and configure FTP to listen onto WAN.
-A INPUT -p tcp -m tcp --dport 21 -j ACCEPT
But I did have another thought....lets switch out of passive mode....
Make a vsftpd.postconf script in /jffs/scripts (don't forget to make it executable)
Code:
#!/bin/sh
CONFIG=$1
source /usr/sbin/helper.sh
pc_replace "pasv_enable=YES" "pasv_enable=NO" $CONFIG
exit