I have a MK with a /22 subnet announced.
Bellow that MK, i have several servers, each one on his own vlan.
Each vlan have a /30 configured has follows (This is a example, my IPs are all public):
- 10.0.0.0: Subnet
- 10.0.0.1: Router IP
- 10.0.0.2: Server IP
- 10.0.0.3: Broadcast IP.
Everything works perfectly. I can ping the servers and the servers can ping between them and the internet.
Now, my problem is when i add IPs failover or Subnet Failover to the server...
1st problem: To add a /32 IP, i do this on the router:
Code: Select all
/ip route add comment="Failover IP for Server 1" distance=1 dst-address=10.0.1.1/32 gateway=SRV01 pref-src=10.0.0.1
2nd problem: To add a /28, i do this on the router:
Code: Select all
/ip route add comment="Failover Subnet for Server 1" distance=1 dst-address=10.0.1.0/28 gateway=SRV01 pref-src=10.0.0.1
The problem is that i can't ping the IP's 10.0.1.0 or 10.0.1.15 from internet or other vlans. why? How can i make all the IPs accessible?
Regards