Lecture 14: Network Address Translation Flashcards
(12 cards)
What is the primary purpose of NAT?
To translate private IP addresses to public IP addresses, helping to conserve public IPv4 addresses.
List the private IP address ranges.
- 10.0.0.0 - 10.255.255.255 (10.0.0.0/8)
- 172.16.0.0 - 172.31.255.255 (172.16.0.0/12)
- 192.168.0.0 - 192.168.255.255 (192.168.0.0/16)
What is Static NAT?
One-to-one translation of private to public IP addresses, configured manually.
Describe Dynamic NAT.
Many-to-many translation, where a pool of public IP addresses is used to translate private IP addresses.
What is Port Address Translation (PAT)?
Many-to-one translation; multiple private IP addresses are translated to a single public IP address using different port numbers.
Explain the difference between Inside Local and Inside Global addresses.
- Inside Local: Private IP address assigned to a host on the inside network.
- Inside Global: Public IP address that the Inside Local address is translated to.
Explain the difference between Outside Local and Outside Global addresses.
- Outside Local: Public IP address of a host on the outside network, as seen by the inside network.
- Outside Global: Public IP address of a host on the outside network.
Give the command to configure Static NAT.
R1(config)#ip nat inside source static 192.168.10.254 209.165.201.5
List the steps to configure Dynamic NAT.
- Create a pool of public addresses.
- Create a standard ACL with private addresses.
- Bind the ACL to the pool.
- Identify inside and outside interfaces.
Give the command to configure PAT.
R2(config)# ip nat inside source list 1 interface serial 0/1/1 overload
What is NAT64?
A translation mechanism to facilitate communication between IPv4 and IPv6 networks.
What commands are used to verify NAT configurations?
R2# show ip nat translations and R2# show ip nat statistics