Hi,
I have implemented site to site VPN. Tunnel is established and working but I can’t ping each router from one another (always getting timeout). When I tracerout nothing special happens, seems packets are lost. I tried googling around, tried adding NAT rule etc. nothing seems working, obviously I am missing something. Below you will find configuration one of two routers, hope that helps just to know what is happening. Can someone show me the light here?
RouterOS 6.46.4
# software id = CFKF-AW4Y
#
# model = RBwAPGR-5HacD2HnD
/interface bridge
add admin-mac= auto-mac=no comment=defconf name=bridge
/interface l2tp-server
add disabled=yes name=l2tp-in1 user=""
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface lte apn
add apn= authentication=chap default-route-distance=1 \
name=apn1 password=omni user=omni
/interface lte
set [ find ] apn-profiles=apn1 mac-address= mtu=1480 name=\
lte1 pin=
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/ip ipsec peer
add address= name=GB_Office
/ip ipsec profile
set [ find default=yes ] nat-traversal=no
/ip ipsec proposal
add auth-algorithms=sha256,sha1 enc-algorithms=aes-256-cbc,aes-128-cbc name=\
Office1 pfs-group=modp1536
/ip pool
add name=dhcp ranges=192.168.88.10-192.168.88.254
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether1
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=wlan1
add bridge=bridge comment=defconf interface=wlan2
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface l2tp-server server
set enabled=yes
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=lte1 list=WAN
/ip address
add address=192.168.88.1/24 comment=defconf interface=ether1 network=\
192.168.88.0
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf gateway=192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 comment=defconf name=router.lan
/ip firewall address-list
add address= list=winbox
/ip firewall filter
add action=accept chain=input comment=\
"defconf: accept established,related,untracked" connection-state=\
established,related,untracked
add action=accept chain=input protocol=ipsec-esp
add action=accept chain=input connection-state=established,related protocol=\
udp
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
invalid
add action=accept chain=input dst-port=8291 protocol=tcp src-address-list=\
winbox
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment=\
"defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
connection-state=established,related disabled=yes
add action=accept chain=forward comment=\
"defconf: accept established,related, untracked" connection-state=\
established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
connection-state=invalid
add action=drop chain=forward comment=\
"defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
connection-state=new in-interface-list=WAN
/ip firewall nat
add action=accept chain=srcnat dst-address=192.168.2.0/24 src-address=\
192.168.88.0/24
add action=masquerade chain=srcnat comment="defconf: masquerade" \
ipsec-policy=out,none out-interface-list=WAN
/ip firewall raw
add action=notrack chain=prerouting dst-address=192.168.2.0/24 src-address=\
192.168.88.0/24
/ip ipsec identity
add peer=GB_Office secret=
/ip ipsec policy
add dst-address=192.168.2.0/32 peer=Office proposal=Office1 \
sa-dst-address= sa-src-address= src-address=\
192.168.88.0/32 tunnel=yes
/ip route
add distance=1 dst-address=192.168.2.0/24 gateway=lte1
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set ssh disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN