Difference between revisions of "Set up Network Address Translation"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 4: Line 4:
  
 
= See also =
 
= See also =
 +
* [[set up a wireless accesspoint]]
 
* [http://www.nerdgrind.com/set-up-nat-with-linux-and-iptables-firewall/ set up NAT]
 
* [http://www.nerdgrind.com/set-up-nat-with-linux-and-iptables-firewall/ set up NAT]
  
 
[[Category:Guides]]
 
[[Category:Guides]]

Revision as of 19:39, 14 July 2012

To set up NAT (network address translation), open a console and enter

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

See also