hard
Single Answer
0

In the following figure, which commands will configure Port Address Translation?

Answer Options

A

access-list 1 permit 192.168.1.0 0.0.0.255 ip nat pool EntPool 179.43.44.1 179.43.44.1 ip nat inside source list 1 pool EntPool

B

ip nat pool EntPool 179.43.44.1 179.43.44.1 netmask 255.255.255.0 ip nat source pool EntPool

C

access-list 1 permit 192.168.1.0 0.0.0.255 ip nat pool EntPool 179.43.44.1 179.43.44.1 netmask 255.255.255.0 ip nat inside source list 1 pool EntPool overload

D

access-list 1 permit 192.168.1.0 0.0.0.255 ip nat pool EntPool 179.43.44.1 179.43.44.1 netmask 255.255.255.0 ip nat inside source list 1 pool EntPool

Correct Answer: C

Explanation

The first command required is access-list 1 permit 192.168.1.0 0.0.0.255, which defines the allowed networks. The next command creates the NAT pool with ip nat pool EntPool 179.43.44.1 179.43.44.1 netmask 255.255.255.0. The last command, ip nat inside source list 1 pool EntPool overload, ties the access list together with the pool and defines PAT with the overload command. All other command configurations are incorrect.

nat
pat
access-lists
cisco-cli
View Reference Material