The Config i have:
Mikrotik Main
172.16.1.1/30 172.16.1.0 ether2
1.x.x.x./28 109.166.155.32 ether1 - WAN
192.168.88.1/24 192.168.88.0 ether5
172.16.10.2/30 172.16.10.0 MTMain-Client - this is the tunnel interface
172.16.255.3/32 172.16.255.1 loopback
192.168.88.1/24 192.168.88.0 VRRP1
Simple BGP:
/routing bgp instance
set default router-id=172.16.10.2
/routing bgp network
add network=172.16.10.0/30 synchronize=no
add network=192.168.88.0/24 synchronize=no
add network=172.16.1.0/30 synchronize=no
/routing bgp peer
add name=Client remote-address=172.16.10.1 remote-as=65300 ttl=default
Mikrotik client
10.10.10.1/24 10.10.10.0 ether3
2.x.x.x/30 62.217.243.108 ether8 - WAN
172.16.10.1/30 172.16.10.0 MTMain-Client tunel interface
172.16.255.1/32 172.16.255.3 loopback
/routing bgp instance
set default as=65300 router-id=172.16.10.1
/routing bgp network
add network=10.10.10.0/24 synchronize=no
add network=172.16.10.0/30 synchronize=no
/routing bgp peer
add name=MTMAin remote-address=172.16.10.2 remote-as=65300
Still there are no routes added in the routing table for iBGP.
If i connect over ethernet it works like a charm.
All i get in the logs:
09:25:51 route,bgp,info Failed to open TCP connection: Connection refused
09:25:51 route,bgp,info RemoteAddress=172.16.10.2
09:26:11 route,bgp,info TCP connection established
09:26:11 route,bgp,info RemoteAddress=172.16.10.2
09:26:11 route,bgp,info Connection closed
09:26:11 route,bgp,info RemoteAddress=172.16.10.2
09:26:31 route,bgp,info TCP connection established
09:26:31 route,bgp,info RemoteAddress=172.16.10.2
09:26:31 route,bgp,info Connection closed
09:26:31 route,bgp,info RemoteAddress=172.16.10.2
09:26:37 dhcp,info Wifi_Guest deassigned 10.10.30.43 from 38:2D:D1:AD:EC:C2
09:26:37 dhcp,info Wifi_Guest assigned 10.10.30.43 to 38:2D:D1:AD:EC:C2
09:26:51 route,bgp,info TCP connection established
09:26:51 route,bgp,info RemoteAddress=172.16.10.2
09:26:51 route,bgp,info Connection closed
09:26:51 route,bgp,info RemoteAddress=172.16.10.2
09:26:59 system,info,account user radu logged in from 109.166.155.34 via telnet
09:27:11 route,bgp,info TCP connection established
09:27:11 route,bgp,info RemoteAddress=172.16.10.2
09:27:11 route,bgp,info Connection closed
09:27:11 route,bgp,info RemoteAddress=172.16.10.2
09:27:31 route,bgp,info TCP connection established
09:27:31 route,bgp,info RemoteAddress=172.16.10.2
09:27:31 route,bgp,info Connection terminated
09:27:31 route,bgp,info RemoteAddress=172.16.10.2
09:28:50 system,info,account user radu logged in from 109.166.155.34 via telnet
09:29:57 dhcp,info Wifi_Guest deassigned 10.10.30.43 from 38:2D:D1:AD:EC:C2
09:30:01 dhcp,info Wifi_Guest assigned 10.10.30.43 to 38:2D:D1:AD:EC:C2
09:30:15 system,info,account user radu logged in from 109.166.155.34 via telnet
The peers are 172.16.10.1 AS 65300 and 172.16.10.2 AS 65300.
Being a GRE tunnel they are directly connected so a route should not be needed.
Any thoughts?