In the following figure, which commands will configure Port Address Translation?
Answer Options
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
ip nat pool EntPool 179.43.44.1 179.43.44.1 netmask 255.255.255.0 ip nat source pool EntPool
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
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.