sabbathunter
MIS
i am still trying to set up a FTP server using redhat 9.0.
when i connect directly using the static IP address i gave it (192.x.x.x)i get a login screen and then i access it successfully.
however when i try to connect thru the internet using the IP address i got from the router (68.x.x.x) i dont get any log in screen.
instead i get the following error message
Windows cannot access this folder. Make sure you typed the file name correctly and you have permission to access this folder.
Details
A connection with the server cannot be established.
i also did the following
iptables -A FORWARD -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A PREROUTING -t nat -p tcp -d 37.135.42.8 --dport 21 -j DNAT --to 10.0.0.5:21
iptables -A FORWARD -p tcp -d 10.0.0.5 --dport 21 -j ACCEPT
iptables -A FORWARD -p tcp -d 68.x.x.x --dport 21 -j ACCEPT
substituting my internal address with the 10.0.0.5 and my public on into
68.x.x.x
what do i need to do to resolve this issue?
david
when i connect directly using the static IP address i gave it (192.x.x.x)i get a login screen and then i access it successfully.
however when i try to connect thru the internet using the IP address i got from the router (68.x.x.x) i dont get any log in screen.
instead i get the following error message
Windows cannot access this folder. Make sure you typed the file name correctly and you have permission to access this folder.
Details
A connection with the server cannot be established.
i also did the following
iptables -A FORWARD -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A PREROUTING -t nat -p tcp -d 37.135.42.8 --dport 21 -j DNAT --to 10.0.0.5:21
iptables -A FORWARD -p tcp -d 10.0.0.5 --dport 21 -j ACCEPT
iptables -A FORWARD -p tcp -d 68.x.x.x --dport 21 -j ACCEPT
substituting my internal address with the 10.0.0.5 and my public on into
68.x.x.x
what do i need to do to resolve this issue?
david