Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎08-31-2014 08:36 AM
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎08-31-2014 12:28 PM
Hi, do you mean Software Redundant Port (SRP)?
config ports redundant {link [on | off]}
The primary and secondary port are local to the switch (or stack), they have the same configuration and no other L2 protocols on them (STP...). The primary port is the active one, the secondary is the backup. The backup comes up only if the primary fails. Link off (default) means the secondary port is not ready (led off) and so failover is a bit longer, while with link on, it's sub-second.
You can also control the behavior if the primary port comes back up, with smart redundancy.
config ports redundant
The primary and secondary port are local to the switch (or stack), they have the same configuration and no other L2 protocols on them (STP...). The primary port is the active one, the secondary is the backup. The backup comes up only if the primary fails. Link off (default) means the secondary port is not ready (led off) and so failover is a bit longer, while with link on, it's sub-second.
You can also control the behavior if the primary port comes back up, with smart redundancy.
7 REPLIES 7
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-11-2014 01:13 PM
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
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎09-26-2014 09:22 AM
hai stephane,
we are using x460-24 l3 am configure osps also .we have Two WAN link our HO to Branch . we need to configure failover. am configure like this but its not working.
configure iproute add 192.168.37.0 255.255.255.0 192.168.92.1
configure iproute add 192.168.50.0 255.255.255.0 192.168.92.1
configure iproute add 192.168.50.0 255.255.255.0 192.168.200.1 200
configure iproute add 192.168.37.0 255.255.255.0 192.168.200.1 200
configure iproute add default 192.168.92.1
we are using x460-24 l3 am configure osps also .we have Two WAN link our HO to Branch . we need to configure failover. am configure like this but its not working.
configure iproute add 192.168.37.0 255.255.255.0 192.168.92.1
configure iproute add 192.168.50.0 255.255.255.0 192.168.92.1
configure iproute add 192.168.50.0 255.255.255.0 192.168.200.1 200
configure iproute add 192.168.37.0 255.255.255.0 192.168.200.1 200
configure iproute add default 192.168.92.1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎08-31-2014 12:28 PM
Hi, do you mean Software Redundant Port (SRP)?
config ports redundant {link [on | off]}
The primary and secondary port are local to the switch (or stack), they have the same configuration and no other L2 protocols on them (STP...). The primary port is the active one, the secondary is the backup. The backup comes up only if the primary fails. Link off (default) means the secondary port is not ready (led off) and so failover is a bit longer, while with link on, it's sub-second.
You can also control the behavior if the primary port comes back up, with smart redundancy.
config ports redundant
The primary and secondary port are local to the switch (or stack), they have the same configuration and no other L2 protocols on them (STP...). The primary port is the active one, the secondary is the backup. The backup comes up only if the primary fails. Link off (default) means the secondary port is not ready (led off) and so failover is a bit longer, while with link on, it's sub-second.
You can also control the behavior if the primary port comes back up, with smart redundancy.
