networking:nat
Differences
This shows you the differences between two versions of the page.
networking:nat [2021/02/03 20:28] – created peter | networking:nat [2021/02/03 21:46] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Networking - NAT ====== | ====== Networking - NAT ====== | ||
+ | **NAT** (Network Address Translation) translates the IP addresses of computers in the local network (LAN) to the single global global IP address (WAN). | ||
+ | |||
+ | * NAT, per [[https:// | ||
+ | |||
+ | While each computer within the local network (LAN) has a specific IP address, external systems only see one IP address (WAN) when connecting to any of the computers within the network. | ||
+ | |||
+ | * The WAN usually has a single IP Address (which is what external systems see). | ||
+ | * On the LAN each computer will have a unique IP address, typically in one or more of the [[https:// | ||
+ | 10.0.0.0/ | ||
+ | 172.16.0.0/ | ||
+ | 192.168.0.0/ | ||
+ | </ | ||
+ | |||
+ | This means that only a single unique IP address is required to represent an entire group of computers to anything outside their network. | ||
+ | |||
+ | When packets pass through the NAT gateway, they will be modified so that they appear to be coming from the NAT gateway itself. | ||
+ | |||
+ | * reverse the changes on return packets and; | ||
+ | * ensure that returned packets are passed through the firewall and are not blocked. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * To the internal machine, the NAT system is simply an internet gateway. | ||
+ | * To the internet host, the packets appear to come directly from the NAT system; it is completely unaware that the internal workstation even exists. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== IP Forwarding ===== | ||
+ | |||
+ | IP forwarding is required so that that packets can travel between network interfaces: | ||
+ | |||
+ | ==== For IPv4 ==== | ||
+ | |||
+ | <code bash> | ||
+ | sysctl net.inet.ip.forwarding=1 | ||
+ | echo ' | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== For IPv6 ==== | ||
+ | |||
+ | <code bash> | ||
+ | # sysctl net.inet6.ip6.forwarding=1 | ||
+ | # echo ' | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | [[https:// |
networking/nat.1612384095.txt.gz · Last modified: 2021/02/03 20:28 by peter