I've ready multiple posts and answers here and spent many hours trying to figure this out. I just cannot figure out what I am doing wrong. My rules are basically a compilation of everything I found in other posts.
Please help.
I have a successful Site-to-Site VPN tunnel established.
No traffic occurs between the LAN hosts.
When I ping from the local host, I see no activity on the Mikrotik.
I can see bytes increasing from local to remote in the IPsec Installed SAs and in firewall rules, but not the other way around.
I've gone as far as simply allowing any traffic between our external IPs and the Internal IPs
External IPs
Local: x.x.x.85
Remote: x.x.x.66
Internal IPs
Local: 10.25.35.67
Remote: 192.168.100.118
DST-ADDRESS PREF-SRC GATEWAY DISTANCE
0 A S 0.0.0.0/0 50.232.96.81 1
5 ADC 10.25.35.0/24 10.25.35.28 ether2 0
7 ADC 50.232.96.80/29 50.232.96.85 ether1-gateway 0
/ip firewall mangle
add action=mark-connection chain=forward comment="Mark IPsec In"
ipsec-policy=in,ipsec log=yes new-connection-mark=ipsec passthrough=yes
add action=mark-connection chain=forward comment="Mark IPsec Out"
ipsec-policy=out,ipsec new-connection-mark=ipsec passthrough=yes
ip firewall nat
add action=accept chain=srcnat dst-address=192.168.100.118 log=yes
src-address=10.25.35.67
add action=accept chain=srcnat dst-address=10.25.35.67 log=yes src-address=
192.168.100.118
add action=masquerade chain=srcnat dst-address-list=!LSI_internet_IPs
log-prefix=masq_ out-interface=ether1-gateway
/ip firewall raw
add action=notrack chain=prerouting dst-address=10.25.35.0/24 src-address=
192.168.100.0/24
add action=notrack chain=prerouting dst-address=192.168.100.0/24 src-address=
10.25.35.0/24
/ip firewall filter
add action=accept chain=input comment="allow LSI Inbound" dst-address=
x.x.x.85 in-interface=ether1-gateway log=yes src-address=
x.x.x.66
add action=accept chain=forward comment=
"TEST - Allow outbound to LSI Internal" dst-address=192.168.100.118 log=
yes src-address=10.25.35.67
add action=accept chain=forward comment=
"TEST - Accept traffic from LSI Internal" dst-address=10.25.35.0/24 log=
yes log-prefix=LSI_In_ out-interface=ether2 src-address=192.168.100.118
add action=accept chain=input comment="allow VPN (ipsec-esp)" log=yes
protocol=ipsec-esp
add action=accept chain=input comment="Accept related connections"
connection-state=established,related log=yes
add action=accept chain=forward comment="Accept related connections"
connection-state=established,related log=yes