static NAT

Create a static NAT translation to map the Server1 inside address to its outside address.
Solution :

interface s0/0/0
ip nat outside
interface g0/0
ip nat inside

ip nat inside source static 172.16.16.1 64.100.50.1

do show ip nat translation

Dynamic NAT

configure one statement for ACL 1 to permit any address belonging to the 172.16.0.0/16 network
Configure R2 with a NAT pool that uses two addresses in the 209.165.200.228/30 address space
Enter the command that associates ACL 1 with the NAT pool that you just created
Configure R2 interfaces with the appropriate inside and outside NAT commands
solution :

#access-list 1 permit 172.16.0.0 0.0.255.255

#ip nat pool R2POOL 209.165.200.229 209.165.200.230 netmask 255.255.255.252

#ip nat inside source list 1 pool R2POOL overload

#interface s0/0/0
ip nat outside
interface s0/0/1
ip nat inside

PAT NAT

R1
configure one statement for ACL 1 to permit any address belonging to 172.16.0.0/16
Configure R1 with a NAT pool that uses the two useable addresses in the 209.165.200.232/30 address space
Associate ACL 1 with the NAT pool and allow addresses to be reused
Configure R1 interfaces with the appropriate inside and outside NAT commands
R2
On R2, configure one statement for ACL 2 to permit any address belonging to 172.17.0.0/16
Associate ACL 2 with the NAT interface and allow addresses to be reused
Configure R2 interfaces with the appropriate inside and outside NAT commands
Verify PAT Interface Implementation
Solution :
R1
access-list 1 permit 172.16.0.0  0.0.255.255

ip nat pool R1POOL 209.165.200.233  209.165.200.234 netmask 255.255.255.252

ip nat inside source list 1 pool R1POOL overload 

interface s0/1/0
ip nat outside
interface g0/0/0
ip nat inside
interface g0/0/1
ip nat inside 

R2
#access-list 2 permit 172.17.0.0 0.0.255.255

#ip nat inside source list 2 interface s0/1/1 overload

#interface s0/1/1
ip nat outside
interface g0/0/0
ip nat inside
interface g0/0/1
ip nat inside

DO show ip nat translation
Do show ip nat statistics

Static And Dynamic NAT

37

NAT Quiz

Test You Understanding

1 / 10

When NAT is used in a small office, which address type or types are typically used for hosts on the local LAN?

2 / 10

Typically, which network device would be used to perform NAT for a corporate environment?

3 / 10

Which version of NAT allows many hosts inside a private network to simultaneously use a single inside global address for connecting to the Internet?

4 / 10

A company has been assigned the 203.0.113.0/27 block of IP addresses by the ISP. The company has over 6000 internal devices. What type of NAT would be most appropriate for the employee workstations of the company?

5 / 10

What is a security feature of using NAT on a network?

6 / 10

A company designs its network so that the PCs in the internal network are assigned IP addresses from DHCP servers, and the packets that are sent to the Internet are translated through a NAT-enabled router. What type of NAT enables the router to populate the translation table from a pool of unique public addresses, as the PCs send packets through the router to the Internet?

7 / 10

Which statement accurately describes dynamic NAT?

8 / 10

Using NAT terminology, what is the address of the source host on a private network as seen from inside the network?

9 / 10

What address translation is performed by static NAT?

10 / 10

What are two tasks to perform when configuring static NAT? (Choose two.)

Your score is

0%