Hi Mohammad,
You are trying to configure floating static route incase if one nexthop fails the other must take over.Is this right?
You can achieve this using Flow redirect feature.
Example:
create flow-redirect gilly------------------this is just a name
configure flow-redirect flow_redirect_name add nexthop 192.168.92.1 priority 100
configure flow-redirect flow_redirect_name add nexthop 192.168.200.1 priority 200
if match all {
destination-address 192.168.37.0/24 ;
} then {
permit ;
redirect-name gilly
}
}
Note:higher priority next hop will take precedence
regards,
Parthiban Chinnaya