EoIP tunnel to VyOS router

Has anyone successfully setup a EoIP tunnel between RouterOS and VyOS? How?

thank you

EoIP is a proprietary protocol for mikrotik and will only work using router OS.

You could try to establish a GRE tunnel between RoS and VyOS

Yes and it's work... I didn't test with encryption, but simple oeip work, here my howto (XXXX on sensitive data)

I used userland EoIP linux implementation...

I compiled it on my ubuntu desktop (Ubuntu 18.04.2 LTS), and copied it on /home/vyos
ib@ib:~/eoip/eoip$ ldd eoip
linux-vdso.so.1 (0x00007ffcd39ef000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f6195e2d000)
/lib64/ld-linux-x86-64.so.2 (0x00007f6196422000)


I copied it on VYOS (1.2.1 i compiled iso image) end i put the initialization of eoip on postconfig-bootup



root@VYOS-XXXX-L2:/home/vyos# cat /opt/vyatta/etc/config/scripts/vyos-postconfig-bootup.script
#!/bin/sh

This script is executed at boot time after VyOS configuration is fully applied.

Any modifications required to work around unfixed bugs

or use services not available through the VyOS CLI system can be placed here.

echo "XXXX EOIP"
ifconfig tap0
sleep 2
/home/vyos/eoip -4 tap0 local XX.XX.XX.21 remote XX.XX.XX.123 id 1 fork
sleep 2
ifconfig tap0 up
sleep 2
ifconfig tap0
brctl addif br0 tap0
brctl addif br0 eth1