Re: [newbie] Server behind a firewall

2002-08-21 Thread Mark Weaver
Guilherme Cirne wrote: Hi, I have a simple home network made up of 3 computers. One is running ML 8.1 and is connected to the internet via DSL. It is sharing the net connection via NAT/IP masquerading and has a firewall setup using iptables. The other 2 computers are running Windows.

RE: [newbie] Server behind a firewall

2002-08-21 Thread David
This rule would allow traffic going to the www port (80) to be forwarded on. iptables -A FORWARD -p tcp --dport 80 -j ACCEPT Change destination addresses of web traffic to 5.6.7.8, port 8080. iptables -t nat -A PREROUTING -p tcp --dport 80 -i eth0 -j DNAT --to 5.6.7.8:8080 This lot just came

RE: [newbie] Server behind a firewall

2002-08-21 Thread daRcmaTTeR
On Wed, 21 Aug 2002, David wrote: This rule would allow traffic going to the www port (80) to be forwarded on. iptables -A FORWARD -p tcp --dport 80 -j ACCEPT Change destination addresses of web traffic to 5.6.7.8, port 8080. iptables -t nat -A PREROUTING -p tcp --dport 80 -i