Cisco 2611 NAT Configuration

Hey guys.

My company is changing suites at the end of the month. I am pruning alot of the old and non needed gear out of our phone closet, and one thing I am tossing out is our old Tasman routers.

I was hoping you guys could help me out with the config, the one I have doesn't seem to be working in my test enviroment. I want to just use the existing F0/0 and F0/1 interfaces that are on the Router.

IP Address of F0 is 63.133.153.130/28 IP Address of F1 is 10.48.4.2/24

I need this router to preform NAT Overload and have a DHCP Pool of Addresses from 10.48.1.11 thru 10.48.1.98. The rest my Servers, Switches, and routers are all static are statically assigned within my /24 network.

All the natted IP's need to share the public IP of 63.133.153.135

Reply to
jetter2
Loading thread data ...

Is there a typo in your addresses there? Assuming there is.

! ip dhcp excluded-address 10.48.4.1 10.48.4.10 ip dhcp excluded-address 10.48.4.99 10.48.4.254 ! ip dhcp pool FOO network 10.48.4.0 255.255.255.0 dns-server default-router 10.48.4.2 ! interface F0 ip address 63.133.153.130 255.255.255.240 ip nat outside ! interface F1 ip address 10.48.4.2 255.255.255.0 ip nat inside ! ip nat inside source list 1 interface F0 overload ! access-list 1 permit 10.48.4.0 0.0.0.255 ! ip route 0.0.0.0 0.0.0.0 63.133.153. !

And if there isn't.

! ip dhcp excluded-address 10.48.1.1 10.48.1.10 ip dhcp excluded-address 10.48.1.99 10.48.1.254 ! ip dhcp pool FOO network 10.48.1.0 255.255.255.0 dns-server default-router 10.48.1. ! interface F0 ip address 63.133.153.130 255.255.255.240 ip nat outside ! interface F1 ip address 10.48.4.2 255.255.255.0 ip nat inside ! ip nat inside source list 1 interface F0 overload ! access-list 1 permit 10.48.1.0 0.0.0.255 access-list 1 permit 10.48.4.0 0.0.0.255 ! ip route 0.0.0.0 0.0.0.0 63.133.153. ip route 10.48.1.0 255.255.255.0 10.48.4. !

Reply to
Martin Gallagher

Cabling-Design.com Forums website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.