NATCCNA 200-301

NAT Configured But Internet Access Not Working

Presenting Symptom

Internal hosts can ping the router's inside interface but cannot access the internet or ping the outside interface IP.

Network Context

A small branch office with a Cisco 4321 router running IOS XE 16.9. The router has a single inside interface (GigabitEthernet0/0/0, 192.168.1.1/24) connected to a switch with PCs, and an outside interface (GigabitEthernet0/0/1, 203.0.113.2/30) connected to an ISP router. NAT is configured to translate inside local addresses to the outside interface IP. The problem occurs after a recent configuration change.

Diagnostic Steps

1

Verify NAT translations exist

show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
--- 203.0.113.2        192.168.1.10        ...                ...

If no translations appear, NAT is not being triggered. If translations show but traffic still fails, the issue may be routing or ACL.

2

Check NAT configuration

show running-config | include ip nat
ip nat inside source list 1 interface GigabitEthernet0/0/1 overload
access-list 1 permit 192.168.1.0 0.0.0.255

Verify the NAT statement and ACL are correct. Common mistakes: wrong ACL, missing 'overload', or misconfigured inside/outside interfaces.

3

Verify inside/outside interface assignments

show ip interface brief | include GigabitEthernet
Interface              IP-Address      OK? Method Status                Protocol
GigabitEthernet0/0/0   192.168.1.1     YES NVRAM  up                    up
GigabitEthernet0/0/1   203.0.113.2     YES NVRAM  up                    up

Check that both interfaces are up/up. Then run 'show running-config interface GigabitEthernet0/0/0' and 'show running-config interface GigabitEthernet0/0/1' to confirm 'ip nat inside' and 'ip nat outside' are present.

4

Check routing to the internet

show ip route 0.0.0.0
Gateway of last resort is 203.0.113.1 to network 0.0.0.0
S*   0.0.0.0/0 [1/0] via 203.0.113.1

If no default route exists, traffic cannot reach the internet even with NAT. The default route should point to the ISP next-hop.

Root Cause

The inside and outside interfaces were not correctly assigned with 'ip nat inside' and 'ip nat outside' commands. The NAT configuration was present but the router did not know which interfaces were inside and outside, so NAT translations were never created.

Resolution

1. Enter global configuration mode: configure terminal 2. Assign inside interface: interface GigabitEthernet0/0/0 ip nat inside exit 3. Assign outside interface: interface GigabitEthernet0/0/1 ip nat outside exit 4. Save configuration: write memory

Verification

1. Run 'show ip nat translations' - should show translations for inside hosts. 2. From a PC, ping 8.8.8.8 - should succeed. 3. Run 'show ip nat statistics' - verify total translations and hits.

Prevention

1. Always configure 'ip nat inside' and 'ip nat outside' immediately after defining NAT rules. 2. Use a configuration template or automation to ensure interface assignments are not missed. 3. After any NAT configuration change, verify with 'show ip nat translations' and a test ping.

CCNA Exam Relevance

On the CCNA 200-301 exam, this scenario appears in troubleshooting questions (multiple choice or drag-and-drop) where you must identify why NAT is not working. The exam tests your ability to verify NAT interface assignments and translation entries. Key fact: NAT requires both inside and outside interface designations to function.

Exam Tips

1.

Always check 'show ip nat translations' first; if empty, the issue is likely interface assignment or ACL.

2.

Remember that 'ip nat inside source list' requires an ACL that matches the inside local addresses.

3.

The default route must point to the ISP next-hop; without it, translated packets have no path.

Commands Used in This Scenario

Test Your CCNA Knowledge

Practice with scenario-based questions to prepare for the CCNA 200-301 exam.

Practice CCNA Questions