interface Tunnel1
description Mikrotik Tunnel
ip address 10.0.0.1 255.255.255.0
tunnel source Loopback0
!
ip route 192.168.2.0 255.255.255.0 Tunnel1
In Mikrotik with dynamic IP:
interface gre add name=tunnel0 remote-address=45.x.x.x
ip address add address=10.0.0.2/24 interface=tunnel0
ip route add dst-address=192.168.1.0/24 gateway=10.0.0.2
From Cisco router I can do ping to remote 10.0.0.2 (I think it is not working, 6ms is not real for remote site):
#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/6/8 ms
But nothing to remote LAN:
#ping 192.168.2.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.1, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)