Lab 6.2: NAT Configuration (PAT) - squatchulator/Tech-Journal GitHub Wiki
Step 1: Set router interfaces
interface FastEthernet0/X
ip address <ip> <netmask>
exit
ip route 0.0.0.0 0.0.0.0 <second router IP>
interface FastEthernet0/X
ip nat inside
exit
interface serial 0/0/0
no shutdown
clock rate 64000
ip nat outside
exit
Step 2: Set IP NAT pool
ip nat pool test <first IP> <second IP> netmask <netmask>
access-list 1 permit <IP Suffix> <Netmask Wildcard>
ip nat inside source list 1 pool test overload