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

Static nat ESP

Status
Not open for further replies.

fortage

MIS
Jun 15, 2000
329
US
The option to assign a static nat, for protocol ESP, to an ip address is not availalbe. It only permits to an interface. Is there a way around this?

I.E.
ip nat inside source static esp 192.x.x.x interface FastEthernet4

I want multiple nats on this particular interface to different IPs.
I.E.
ip nat inside source static esp 192.x.x.1 12.x.x.1
ip nat inside source static esp 192.x.x.2 12.x.x.2

Is this possible?
 
Hi there,

If the commands you have typed above are not working then you could try using NAT pools?

ie:-

ip nat pool ESP1 12.x.x.1 12.x.x.1 netmask 255.0.0.0 (?)
ip nat pool ESP2 12.x.x.2 12.x.x.2 netmask 255.0.0.0

and so:-

ip nat inside source static esp 192.x.x.1 pool ESP1
ip nat inside source static esp 192.x.x.2 pool ESP2

Not sure why the commands you've posted arn't working though :(

Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top