This is a small tutorial on how to establish an IPIP tunnel between a Linux Debian server and a Mikrotik RouterOs.
Linux Machine:
ip tunnel add tun0 mode ipip remote <remote_ip_address> local <local_ip_address> ip link set tun0 up ip addr add 192.168.200.1/24 dev tun0
Mikrotik RouterBoard:
/interface ipip add local-address=<local_address> remote-address=<remote_address> /ip address add address=192.168.200.2/24 […]