Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuring NAT on a Cisco 1720

Status
Not open for further replies.

rainman

ISP
Mar 22, 2001
186
US
I need some assistance in configuring NAT on a Cisco 1720. Here's my basic setup:

int fa0
ip address 10.0.0.1 255.255.255.0

int s0
ip address 192.168.0.2 255.255.255.252


What I want to do is use the WAN IP address of S0 as the IP for the NAT POOL. How to do I accomplish this?

In the past I have used IP addresses other than what is on the S0 port, but to conserve IP addresses I'd like to start doing this.

Any thoughts?
 
on the ethernet interface put
ip nat inside

on the serial0 interface put
ip nat outside

add this command on global

ip nat inside source list 1 interface Serial0 overload

access-list 1 permit any

Jeter@LasVegas.com
J.Fisher CCNA
 
Thanks Jeter ... your solution worked like a charm :)


Also, one more thing. How would I enable a DHCP server on the router to distribute the private IP addresses to the FE port?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top