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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

1760 1-1 NAT 1

Status
Not open for further replies.

nosanity2k

Technical User
Jul 30, 2003
3
CA
Alright, here is the scoop. I have got 1 of my servers on an ip address that is not routed to my 1760. I want to have my 1760 listen on that IP address, and use NAT to translate it to one of the ip addresses routed in my pool. This has to be static however. How would I go about doing this?

noSanity2k
 
ip nat source inside static x.x.x.x y.y.y.y

where x.x.x.x is the internal address and y.y.y.y is the external.
 
Lets say for example, I did:

int f0/0
ip add 192.168.1.1 255.255.255.0
ip nat outside
no shut

int f0/1
ip add 172.16.12.232 255.255.255.0
ip nat inside
no shut

ip nat source inside static 172.16.12.232 192.168.1.232


--
this should work alright? (notice the same inside ip as f0/1)

noSanity2k
 
Affirmative, assuming that 192.168.1.232 is an available "routable" address for you...


 
OK, one last question before I go live with the changes.

say for example I had:

int f0/0.2
ip add 10.1.1.1 255.255.255.252

int f0/0.4
ip add 192.168.1.254 255.255.255.0

could i just add
int f0/0.2
ip nat outside

int f0/0.4
ip nat inside

ip nat source inside static 192.168.1.20 172.16.32.1

noSanity2k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top