A network engineer is troubleshooting connectivity from a host inside a corporate network to a public web server. The host has IP 10.1.1.10/24, and the router's outside interface is 203.0.113.1/24. The engineer configured a dynamic NAT pool (203.0.113.10-203.0.113.20) and an access list permitting 10.1.1.0/24. However, traffic from the host fails. A 'show ip nat translations' reveals no translations. What is the most likely cause?
Trap 1: The NAT pool is exhausted.
Incorrect because the pool has 11 addresses, and only one host is trying to translate; no translations appear at all, not a pool exhaustion issue.
Trap 2: The 'ip nat inside' and 'ip nat outside' commands are misapplied on…
Incorrect because if the interfaces are not correctly designated, translations might still appear but traffic would not flow; however, no translations at all suggests the ACL is the issue.
Trap 3: The host's default gateway is not the router's inside interface.
Incorrect because even if the gateway is wrong, the router would still see the traffic and attempt NAT if the ACL matches; no translations indicate a different issue.
- A
The NAT pool is exhausted.
Why wrong: Incorrect because the pool has 11 addresses, and only one host is trying to translate; no translations appear at all, not a pool exhaustion issue.
- B
The 'ip nat inside' and 'ip nat outside' commands are misapplied on the interfaces.
Why wrong: Incorrect because if the interfaces are not correctly designated, translations might still appear but traffic would not flow; however, no translations at all suggests the ACL is the issue.
- C
The access list used in the NAT configuration does not match the source IP of the host.
Correct because dynamic NAT requires the ACL to match the source; if the ACL is misconfigured (e.g., denies the subnet), no translations are created.
- D
The host's default gateway is not the router's inside interface.
Why wrong: Incorrect because even if the gateway is wrong, the router would still see the traffic and attempt NAT if the ACL matches; no translations indicate a different issue.