Link to home
Start Free TrialLog in
Avatar of TAMSCODAN
TAMSCODANFlag for United States of America

asked on

how can I NAT two non-contiguous ranges and overload on a single CISCO?

how can I NAT two non-contiguous ranges and overload on a single CISCO?
Avatar of ccsistaff
ccsistaff
Flag of United States of America image

Provided both ranges use the Cisco router as their gateway, you can simply create an access-list to permit the two ranges and use that list in your nat statement.  

access-list 101 permit 10.0.0.0 0.0.0.255 any
access-list 101 permit 192.168.0.0 0.0.0.255 any

ip nat inside source list 101 interface FastEthernet0/1 overload
Avatar of TAMSCODAN

ASKER

I dont want to overload on the interface:

I have something like this:


ip nat pool NAT-POOL1 111.111.111.111 111.111.111.199 netmask 255.255.255.192
ip nat inside source list 110 pool NAT-POOL1 overload

access-list 110 permit 192.168.0.0 0.0.0.255 any



but I want to add a range to overload also like 222.222.222.222 thru 222.222.222.299 255.255.255.192

ASKER CERTIFIED SOLUTION
Avatar of ccsistaff
ccsistaff
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial