Network Address Translation (NAT) : Relates To Lab 7
Network Address Translation (NAT) : Relates To Lab 7
Relates to Lab 7.
Private Network
1
Private Addresses
2
Basic operation of NAT
Private Internet
network
Private Public
Address Address
10.0.1.2 128.143.71.21
• Pooling of IP addresses
• IP masquerading
3
Pooling of IP addresses
Pooling of IP addresses
4
Supporting migration between network service
providers
• Scenario: In CIDR, the IP addresses in a corporate network are obtained
from the service provider. Changing the service provider requires
changing all IP addresses in the network.
• NAT solution:
– Assign private addresses to the hosts of the corporate network
– NAT device has static address translation entries which bind the
private address of a host to the public address.
– Migration to a new network service provider merely requires an update
of the NAT device. The migration is not noticeable to the hosts on the
network.
Note:
– The difference to the use of NAT with IP address pooling is that the
mapping of public and private IP addresses is static.
Private Public
Address Address
128.143.71.21
10.0.1.2
128.195.4.120
10
5
IP masquerading
11
IP masquerading
Private Public
Address Address
10.0.1.2/2001 128.143.71.21/2100
10.0.1.3/3020 128.143.71.21/4444
12
6
Load balancing of servers
• NAT solution:
– Here, the servers are assigned private addresses
– NAT device acts as a proxy for requests to the server from
the public network
– The NAT device changes the destination IP address of
arriving packets to one of the private addresses for a
server
– A sensible strategy for balancing the load of the servers is
to assign the addresses of the servers in a round-robin
fashion.
13
Private network
S ou
r
D es ce
t ina =1
t ion 2
10.0.1.2 = 1 8. 195 Source = 128.195.4.120
0.0 .4
S1 . 1. 2 .1 20 Destination = 128.143.71.21
S2 1 20
5 .4 .
. 19
28
= 1 .0 . 1 . 4
10.0.1.4 1 0
=
u rce n
S o tin a t io
s
De Inside network Outside network
Private Public Public
Address Address Address
S3
10.0.1.2 128.143.71.21 128.195.4.120
10.0.1.4 128.143.71.21 213.168.12.3
14
7
Concerns about NAT
• Performance:
– Modifying the IP header by changing the IP address
requires that NAT boxes recalculate the IP header
checksum
– Modifying port number requires that NAT boxes recalculate
TCP checksum
• Fragmentation
– Care must be taken that a datagram that is fragmented
before it reaches the NAT device, is not assigned a
different IP address or different port numbers for each of
the fragments.
15
• End-to-end connectivity:
– NAT destroys universal end -to-end reachability of hosts on
the Internet.
– A host in the public Internet often cannot initiate
communication to a host in a private network.
– The problem is worse, when two hosts that are in a private
network need to communicate with each other.
16
8
Concerns about NAT
17
H1 H2
PORT 128.143.72.21/1027
RETR myfile
18
9
NAT and FTP
H1 H2
PORT 10.0.1.3/1027 PORT 128.143.72.21/1027
19
H1 H2
PASV PASV
20
10
Configuring NAT in Linux
filter nat
INPUT OUTPUT
Yes filter
OUTPUT
Destination No filter
is local? FORWARD
nat nat
PREROUTING POSTROUTING
(DNAT) (SNAT)
Incoming Outgoing
21
datagram datagram
• First example:
iptables –t nat –A POSTROUTING –s 10.0.1.2
–j SNAT --to-source 128.143.71.21
• Pooling of IP addresses:
iptables –t nat –A POSTROUTING –s 10.0.1.0/24
–j SNAT --to-source 128.128.71.0–128.143.71.30
• ISP migration:
iptables –t nat –R POSTROUTING –s 10.0.1.0/24
–j SNAT --to-source 128.195.4.0–128.195.4.254
• IP masquerading:
iptables –t nat –A POSTROUTING –s 10.0.1.0/24
–o eth1 –j MASQUERADE
• Load balancing:
iptables -t nat -A PREROUTING -i eth1 -j DNAT --to-
destination 10.0.1.2-10.0.1.4
22
11