I have two routers connected with an EoIP tunnel and am trying to add a third. The issue is that I cannot get the tunnel to pass traffic on any ID other than 0. I have went as far as changing the tunnel ID for the existing EoIP connection and lost the ability to pass traffic across it until returning it to 0. I have upgraded all three routers to 6.13 and still have the same issue. Here is the current configuration:
Router 1
/ppp secret
add local-address=192.168.254.1 name=vc password=*** profile=default-encryption remote-address=192.168.254.2 service=pptp
add local-address=192.168.254.3 name=vp password=*** profile=default-encryption remote-address=192.168.254.4 service=pptp
/interface eoip
add mac-address=02:F4:5F:8B:79:B3 name=eoip-vc remote-address=192.168.254.2 tunnel-id=0
add mac-address=02:F4:5F:8B:79:B3 name=eoip-vp remote-address=192.168.254.4 tunnel-id=101
/interface bridge
add l2mtu=1598 name=Bridge protocol-mode=none
/interface bridge port
add bridge=Bridge interface=ether4
add bridge=Bridge interface=ether5
add bridge=Bridge interface=eoip-vc
add bridge=Bridge interface=eoip-vp
/ip address
add address=192.168.9.1/24 interface=Bridge network=192.168.9.0Router 2 (Working connection):
/interface pptp-client
add add-default-route=no allow=pap,chap,mschap1,mschap2 connect-to=x.x.x.x dial-on-demand=no disabled=no keepalive-timeout=60 max-mru=1460 max-mtu=1460 mrru=disabled name=pptp-vc password=*** profile=default-encryption user=vc
/interface eoip
add mac-address=02:40:37:EE:3C:B3 name=eoip-vc remote-address=192.168.254.1 tunnel-id=0
/interface bridge
add l2mtu=1598 name=Bridge protocol-mode=none
/interface bridge port
add bridge=Bridge interface=eoip-vc
add bridge=Bridge interface=ether5
/ip address
add address=192.168.9.254/24 interface=Bridge network=192.168.9.0Router 3 (not working):
/interface bridge
add l2mtu=1598 name=Bridge protocol-mode=none
/interface pptp-client
add add-default-route=no allow=pap,chap,mschap1,mschap2 connect-to=x.x.x.x dial-on-demand=no disabled=no keepalive-timeout=60 max-mru=1460 max-mtu=1460 mrru=disabled name=pptp-vp password=*** profile=default-encryption user=vp
/interface eoip
add mac-address=02:0D:08:BB:62:9F name=eoip-vp remote-address=192.168.254.3 tunnel-id=101
/interface bridge port
add bridge=Bridge interface=ether4
add bridge=Bridge interface=ether5
add bridge=Bridge interface=eoip-vp
/ip address
add address=192.168.9.2/24 interface=Bridge network=192.168.9.0All three routers are working fine independently and I was able to connect the third over the tunnel after temporarily changing it’s tunnel id to 0.