cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
715
Views
0
Helpful
3
Replies

ASA ACL Issue

nix-patheon
Level 1
Level 1

Hi all,

I have managed to narrow down a problem that has been impacting our VPN users, the first line of the following config is missing from the current config:

nat (inside) 0 access-list nat0_outbound

nat (inside) 1 0.0.0.0 0.0.0.0

nat (dmz) 1 192.168.10.0 255.255.255.0


My question is, what is the command to put that first line back into the config? Thanks all.

1 Accepted Solution

Accepted Solutions

This line is used to exempt your VPN-traffic from being NATed (together with the ACL nat0_outbound where your VPN-traffic should be defined). Just paste in the missing command:

asa# conf t

asa(config)# nat (inside) 0 access-list nat0_outbound

asa(config)# exit

asa# copy run start

-- 
Don't stop after you've improved your network! Improve the world by lending money to the working poor:
http://www.kiva.org/invitedby/karsteni

View solution in original post

3 Replies 3

nix-patheon
Level 1
Level 1

I've worked this one out and added the line of config back in.

This line is used to exempt your VPN-traffic from being NATed (together with the ACL nat0_outbound where your VPN-traffic should be defined). Just paste in the missing command:

asa# conf t

asa(config)# nat (inside) 0 access-list nat0_outbound

asa(config)# exit

asa# copy run start

-- 
Don't stop after you've improved your network! Improve the world by lending money to the working poor:
http://www.kiva.org/invitedby/karsteni

Thanks Karsten, that is what I eventually ended up doing, but thanks for the clarification.