Labs · · 4 min read

Lab ips-03 - Static NAT Inside/Outside

Lab ips-03 - Static NAT Inside/Outside - PingLabz Labs article title card

Static NAT creates a permanent one-to-one mapping between an inside private IP and an outside public IP. Used when an internal server needs to be reachable from the outside on a specific external address (web server, mail server, VPN endpoint). The mapping is bidirectional - traffic in either direction translates the same way. This lab configures static NAT on R2 to make 10.20.0.100 reachable as 192.0.2.100 from the outside.

What you will learn

  • The static NAT command syntax: ip nat inside source static INSIDE OUTSIDE
  • The role of ip nat inside and ip nat outside on interfaces
  • How to read show ip nat translations
  • How to read show ip nat statistics for the bigger picture

What this lab does NOT cover

  • Dynamic NAT (next lab, ips-04)
  • NAT overload / PAT (lab ips-05)
  • Twice NAT and outside-source translation

Topology

Download the CCNA Base Topology .yaml

3 iol-xe routers + 1 alpine + 1 ioll2-xe managed switch + 1 unmanaged switch. The reusable foundation for the PingLabz CCNA Labs library.

Download CCNA Base Topology

R2 is the NAT device. Et0/0 (LAN side) is inside; Et0/1 (P2P to R3) is outside.

Read next

Terminal card showing a repeating CDP native VLAN mismatch log naming Ethernet0/0 native VLAN 1 against SW2 Ethernet0/0 native VLAN 99
VLANs ·

Native VLAN Mismatch: Read the CDP Log, Fix the Trunk

%CDP-4-NATIVE_VLAN_MISMATCH hands you both interfaces and both native VLANs in one line. The real damage is underneath it: untagged frames get re-homed at the trunk boundary and two VLANs quietly become one. Captured live on IOS XE 17.18.2 in CML.