We have 50 of these, boiler plate configs. On this ASA, I have the tunnel UP and RUNNING.
Phase 1 good, Phase 2 good.
Traffic will not cross once the tunnel is up for internet connectivity nor VPN/LAN connectivity.
See configs below;
//////////
Asa 5505 config:
crypto isakmp policy 1
authentication pre-share
encryption aes-256
hash sha
group 2
lifetime 86400
crypto ipsec transform-set myset esp-aes-256 esp-sha-hmac
access-list encrypt_acl extended permit ip 10.250.37.0 255.255.255.0 any
access-list inside_nat0_outbound extended permit ip 10.250.37.0 255.255.255.0 any
access-list inside_access_in extended permit ip any any
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0
nat (inside) 0 access-list inside_nat0_outbound
access-group inside_access_in in interface inside
tunnel-group xxxxxxxxx type ipsec-l2l
tunnel-group xxxxxxxx ipsec-attributes
pre-shared-key xxxxxxx
crypto map IPSec_map 10 match address encrypt_acl
crypto map IPSec_map 10 set peer xxxx
crypto map IPSec_map 10 set transform-set myset
crypto map IPSec_map interface outside
crypto isakmp enable outside
crypto isakmp enable outside
VPN Gate relevant configuration:
VPN Gate ( 50 + working connections just like this one )name 10.250.37.0 xxxxxobject-group network xxxxdescription xxxxnetwork-object 10.250.37.0 255.255.255.0access-list Outside_cryptomap_82 extended permit ip any 10.250.37.0 255.255.255.0route Outside 10.250.37.0 255.255.255.0 x.x.x.x 1crypto map Outside_map0 82 match address Outside_cryptomap_82crypto map Outside_map0 82 set pfscrypto map Outside_map0 82 set peer x.x.x.xcrypto map Outside_map0 82 set transform-set xxxxx
crypto map Outside_map0 82 set phase1-mode aggressivetunnel-group x.x.x.x type ipsec-l2ltunnel-group x.x.x.x ipsec-attributespre-shared-key *
Since the tunnel is up I'm positive I'm destroying an ACL or NAT setting somewhere, but for the life of me I can't find it. The only thing I can think of is replacing the any statements on the ACL's and NAT to match to specific objects and object groups on both sites.
Help? 