Good morning from Wisconsin,
I have set up an IPSec site-to-site VPN between two RB750Gr2 units both behind static IP addresses where the Comcast SMCD3G modems are in bridge mode. The “Installed SA” tab shows both directions are fully established and the packet counters are incrementing with constant ping streams going from both sides to test. However, no response is actually received to those pings from any device on either side of the LAN. The devices in question are a copier, AP, and two workstations with all software firewalls disabled, and they all can be pinged successfully from inside their respective LANs.
Also, no static routing tables have been configured nor has proxy arp been configured on the interfaces, as this is IPSec, so they’re not needed.
I am convinced that the issue is with the firewall rules, but we have this same working config elsewhere, so I’m not sure where else to look.
I have literally spent hours scouring this forum for answers, and have found that at least one other individual with the same problem, and no response: http://forum.mikrotik.com/t/another-help-me-with-l2tp-ipsec-proxy-arp/87593/1 .
Here are the configs. Let me know if you need anything else, and thank you in advance!
Pier (50.249.107.XXX):
/ip firewall filter
add chain=input in-interface=ether1 protocol=ipsec-ah
add chain=input in-interface=ether1 protocol=ipsec-esp
add chain=input dst-port=500 protocol=udp
add chain=input dst-port=4500 protocol=udp
add chain=forward dst-address=192.168.101.0/24 src-address=192.168.100.0/24
add chain=input protocol=icmp src-address=96.93.251.XXX
add chain=forward connection-state=established
add chain=forward connection-state=related
add action=drop chain=forward out-interface=!ether1
/ip firewall nat
add chain=srcnat dst-address=192.168.101.0/24 src-address=192.168.100.0/24
add action=masquerade chain=srcnat out-interface=ether1
Monarch (96.93.251.XXX):
/ip firewall filter
add chain=input protocol=ipsec-esp
add chain=input protocol=ipsec-ah
add chain=input dst-port=500 protocol=udp
add chain=input dst-port=4500 protocol=udp
add chain=forward dst-address=192.168.101.0/24 src-address=192.168.100.0/24
add chain=input port=500 protocol=udp
add chain=input protocol=icmp src-address=50.249.107.XXX
add chain=forward connection-state=established
add chain=forward connection-state=related
add action=drop chain=forward out-interface=!ether1
/ip firewall nat
add chain=srcnat dst-address=192.168.100.0/24 src-address=192.168.101.0/24
add action=masquerade chain=srcnat out-interface=ether1