This article explains a common issue encountered in chassis cluster setups where the management interface (fxp) of the secondary node is not reachable, despite backup router configuration being present.
The issue can occur if the backup router IP address is not in the same subnet as the fxp interface.
In such cases:
In below example the backup router ip address is out of the subnet range which is configured in fxp0 interface:
set groups node1 system host-name node1set groups node1 system backup-router 10.10.20.1set groups node1 system backup-router destination 192.168.0.0/24set groups node1 interfaces fxp0 unit 0 family inet address 10.10.10.1/29
Hence the routes for 192.168.0.0/24 is not installed on the device:
root@SRX# run show route forwarding-table destination 192.168.0.0Routing table: default.inetInternet:Destination Type RtRef Next hop Type Index NhRef Netifdefault user 0 dead 331 2default perm 0 rjct 36 1
Solution:Set the backup router on the same subnet as your FXP, this would install the routes on the forwarding table
Once the next hop is reachable the routes wil get installed and output will be as below:
root@SRX# run show route forwarding-table destination 192.168.0.0 Routing table: default.inetInternet:Destination Type RtRef Next hop Type Index NhRef Netif192.168.0.0/24 user 0 10.10.10.110 ucst 327 2 fxp0.0