|
Re: Internet help
So I assume you just want to do NAT overload on your outside interface IP address?
Can you apply the command to your WAN facing interface? I haven't worked with DSL on cisco routers but I assume it would be the same as doing NAT between two ethernet interfaces
(config-if)# ip nat outside
If so you should be able to apply the following commands
(Inside interface)
(config-if)# ip nat inside
(conifg)# ip access-list 100 192.168.0.0 0.0.0.255 any (Assuming 192.168.0.0/24)
(config)# ip nat inside source list 100 interface (WAN interface) overload
|