captaintuba
Technical User
Has anyone ever used DENY in their NO-NAT acl?
For example:
I'm trying to fix a problem with a split route and VPN.
I'd like to stop a specific host (a mail server) from using the VPN and let the rest of the subnet use the VPN.
Thanks
C.T.
For example:
Code:
!--- ACL to avoid Network Address Translation (NAT) on the IPSec packets
access-list 100 [b]deny[/b] ip host 10.2.2.12 10.1.1.0 255.255.255.0
access-list 100 permit ip 10.2.2.0 255.255.255.0 10.1.1.0 255.255.255.0
access-list 100 permit ip 10.2.2.0 255.255.255.0 10.3.3.0 255.255.255.0
!--- Binding ACL 100 to the NAT statement to avoid NAT on the IPSec packets
nat (inside) 0 access-list 100
I'm trying to fix a problem with a split route and VPN.
I'd like to stop a specific host (a mail server) from using the VPN and let the rest of the subnet use the VPN.
Thanks
C.T.