have what would appear to be a simple lan to lan vpn.
I have enabled: sysopt connection permit-ipsec.
The remote site works as expected - without the use of any access-list assigned to the inside interface for vpn traffic.
The local site will not operate unless I have a crypto access-list and an access-list assigned to the inside interface.
example:
local:
access-list inside extended permit ip 1.1.1.0 255.255.255.0 2.2.2.0 255.255.255.0
!
access-list cryto_acl extnded permit ip 1.1.1.0 255.255.255.0 2.2.2.0 255.255.255.0
!
access-list no_nat permit ip 1.1.1.0 255.255.255.0 2.2.2.0 255.255.255.0
!
nat (inside) 0 access-list no_nat
!
access-group inside in interface inside
!
remote:
access-list crypto_acl extended permit ip 2.2.2.0 255.255.255.0 1.1.1.0 255.255.255.0
!
access-list no_nat permit ip 2.2.2.0 255.255.255.0 1.1.1.0 255.255.255.0
!
nat (inside) 0 access-list no_nat
!
When both access-lists do not exist at the local site it is not possible to connect to the remote site!!
does anyone have any ideas?!
thanks