Hi All
I've set up an IPsec tunnel between two sites
site A two vlans: 10.10.11.0/24 and 10.10.12.0.24
ospf switch A: network vlan 100 ip, network 10.10.11.0/24, network 10.10.12.0/24, stub
site B acts as a gateway for users on switch A.
ospf switch B: network vlan 100 ip, stub no-summary default-route-advertise-always
switch a -------vlan 100 ospf p2p ---------- switch b
ACL on switch A that I've used for IPsec policy
acl 3030
rule 0 permit ip source 10.10.11.0 0.0.0.255 dest any
rule 5 permit ip source any dest 10.10.11.0 0.0.0.255
rule 10 permit ip source 10.10.12.0 0.0.0.255 dest any
rule 15 permit ip source any dest 10.10.12.0 0.0.0.255
switch B
rule 0 permit ip source any dest 10.10.11.0 0.0.0.255
rule 5 permit ip source 10.10.11.0 0.0.0.255 dest any
rule 10 permit ip source any dest 10.10.12.0 .0.0.0.255
rule 15 permit ip source 10.10.12.0 0.0.0.255 dest any
Now the issue is that none of the ACL is hit by traffic coming from two local VLANS on switch A. If I source traffic from one switch to another I can see ike sa and ipsec sa being created but again traffic from those two lans won't be encrypted, what am I missing here?