A network engineer is configuring Port Address Translation (PAT) on a Cisco IOS router using an IP NAT pool named `INTERNET_POOL` for internal endpoints matched by access list `10`. Which global configuration command correctly enables PAT using this address pool?
- ip nat inside source list 10 pool INTERNET_POOL overloadAnswer
- Bip nat inside source list 10 pool INTERNET_POOL
- Cip nat inside source list 10 pool 172.16.10.1 172.16.10.10 overload
- Dip nat outside source list 10 pool INTERNET_POOL overload
Answer
The command 'ip nat inside source list 10 pool INTERNET_POOL overload' correctly enables Port Address Translation using the specified pool.
The correct command uses 'ip nat inside source list 10 pool INTERNET_POOL overload'. The 'inside source' parameter specifies translation for outbound traffic originating inside the network, 'list 10' identifies hosts permitted by ACL 10, 'pool INTERNET_POOL' designates the global address pool, and 'overload' enables port-level multiplexing (PAT) so multiple internal endpoints can share pool addresses simultaneously.
Step-by-Step Solution
Key Concept
Port Address Translation (PAT) configuration using dynamic address pools in Cisco IOS
Estimated Time:1m 0s