A network engineer is configuring Port Address Translation (PAT) using an IP address pool on a Cisco IOS router. An access list named ACL_LAN (ACL 10) matches internal traffic, and an IP address pool named GIG_POOL has been defined for global addresses. What exact global configuration command completes this PAT configuration by linking access list 10 to GIG_POOL with port overload capability?
Answer: ip nat inside source list 10 pool GIG_POOL overload / ip nat inside source list 10 pool GIG_POOL overload
Answer
ip nat inside source list 10 pool GIG_POOL overload
The command 'ip nat inside source list 10 pool GIG_POOL overload' explicitly binds internal traffic defined by ACL 10 to the public address pool GIG_POOL while enabling port overloading (PAT).
Step-by-Step Solution
Key Concept
Inside source Port Address Translation (PAT) using an IP address pool requires the overload keyword appended to the 'ip nat inside source list <acl> pool <pool-name>' command.