cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
287
Views
0
Helpful
2
Replies

Global NAT Command in ASA, how do I do it on Cisco ISR

nelson-rick
Level 1
Level 1


How do I do this in a Cisco Integrated Services Router?

global (outside) 2 192.168.96.48 netmask 255.255.255.255
nat (inside) 2 access-list nat_vpn

1 Accepted Solution

Accepted Solutions

Jon Marshall
Hall of Fame
Hall of Fame

Difficult to be precise without knowing the nat_vpn acl but -

on the "inside" interface of the ISR -

int gi0/0

ip nat inside

on the "outside" interface of the ISR -

int gi0/1

ip nat outside

then define your acl -

access-list 101 permit .....   (whatever you want to permit. You can use a named acl if you like)

and then

ip nat inside source list 101 interface gi0/1 overload

Jon

View solution in original post

2 Replies 2

Jon Marshall
Hall of Fame
Hall of Fame

Difficult to be precise without knowing the nat_vpn acl but -

on the "inside" interface of the ISR -

int gi0/0

ip nat inside

on the "outside" interface of the ISR -

int gi0/1

ip nat outside

then define your acl -

access-list 101 permit .....   (whatever you want to permit. You can use a named acl if you like)

and then

ip nat inside source list 101 interface gi0/1 overload

Jon

It just occurred that the 192.168.96.48 probably isn't the IP on the outside interface ?

If it isn't then you need to modify the configuration I posted. So you still need the NAT statements on the interfaces and you still need the acl.

You also need a NAT pool ie.

ip nat pool <name> 192.168.96.48 192.168.96.48 netmask 255.255.255.252 - <name> can be anything you like.

then you need to modify the NAT statement ie. -

ip nat inside source list 101 pool <name> overload

Jon

Review Cisco Networking for a $25 gift card