Need help with my config

David Claveau

Reputable
Dec 29, 2014
4
0
4,510
Need help right now am trying to get Multiple Nat pool with a single Public IP.

Actually i have this config and it won't work for the VMPOOL

when i try to configure "virtual Router in windows server"

i enter my VMPOOL nat in the app properly with a route to the internet 0.0.0.0 0.0.0.0 10.10.10.1

It's working at school but i can't reproduce this at home..



There my Cisco Config



interface GigabitEthernet0/0
ip address dhcp
ip nat outside

interface GigabitEthernet0/1
ip address 10.10.10.1 255.255.255.0
ip nat inside



ip nat pool VMPOOL 172.16.10.1 172.16.10.255 netmask 255.255.255.0 --- Pool Want this on the internet with this nat pool for my VM (not working)

ip nat inside source list 10 interface GigabitEthernet0/0 overload --- This is my main nat pool (WORKING) for my House.

ip route 0.0.0.0 0.0.0.0 173.246.14.113

ip route 172.16.10.0 255.255.255.0 10.10.10.8 --- this route supposed to make my Pool working on the internet... but no..
!
!
!
access-list 10 permit 10.10.10.0 0.0.0.255
access-list 10 permit 172.16.10.0 0.0.0.255
 

birne

Reputable
May 19, 2015
377
4
4,965
ip nat outside : interfacet outside of network
ip nat inside : interfacet inside of network
ip nat pool (name) x.x.x.x(start ip) x.x.x.x(end ip) netmask x.x.x.x
ip access-list (name or number) permit (network ip) (wildcard bits)
ip nat inside source list (acl name or number) pool (poolname) overload
ip nat inside source list (acl name or number) interface (outside of network) overload


In the ip route command, who is 10.10.10.8? the outside interface or the next hop?
you could try just putting in the interface.