//NAT_RTR
## DHCP
ip dhcp excluded-address 10.10.10.1 10.10.10.10
ip dhcp pool APPLE
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 4.4.4.4
## ACL
access-list 50 permit 10.10.10.0 0.0.0.255
## NAT
ip nat pool NAT 11.11.11.0 11.11.11.5 netmask 255.255.255.0
ip nat inside source list 50 pool NAT
## interface GigabitEthernet0/0
ip address 10.10.10.1 255.255.255.0
ip nat inside
duplex auto
speed auto
no shut
## interface GigabitEthernet0/1
ip address 208.10.10.1 255.255.255.248
ip nat outside
duplex auto
speed auto
no shut
## Route
ip route 0.0.0.0 0.0.0.0 208.10.10.2
//ISP
## interface GigabitEthernet0/0
ip address 208.10.10.2 255.255.255.248
no shut
Context:
- I do not want to use overload; because when I add another PC to the SW; when i attempt to make a connection to the 208.10.10.2 IP; I want to see under show ip nat translation; multiple IP's matching a different NAT.
The connection work when I add a default route back from ISP to NAT_RTR; when I remove that route and add a 208.10.10.10 255.255.255.248 to 208.10.10.1
I hoping you guys can help me ping from computer to destination?