<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic RE: how to configer failover link Extreme X460 in Scripting</title>
    <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21209#M352</link>
    <description>hai stephane,&lt;BR /&gt;
                            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. &lt;BR /&gt;
&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add default 192.168.92.1&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Fri, 26 Sep 2014 16:22:00 GMT</pubDate>
    <dc:creator>Mohammed_Jashee</dc:creator>
    <dc:date>2014-09-26T16:22:00Z</dc:date>
    <item>
      <title>how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21207#M350</link>
      <description>how to configer failover link Extreme X460&lt;BR /&gt;</description>
      <pubDate>Sun, 31 Aug 2014 15:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21207#M350</guid>
      <dc:creator>Mohammed_Jashee</dc:creator>
      <dc:date>2014-08-31T15:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21208#M351</link>
      <description>Hi, do you mean Software Redundant Port (SRP)?&lt;BR /&gt;
&lt;BR /&gt;
config ports  redundant &lt;SECONDARY&gt; {link [on | off]}&lt;BR /&gt;
&lt;BR /&gt;
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.&lt;BR /&gt;
&lt;BR /&gt;
You can also control the behavior if the primary port comes back up, with smart redundancy. &lt;BR /&gt;&lt;/SECONDARY&gt;</description>
      <pubDate>Sun, 31 Aug 2014 19:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21208#M351</guid>
      <dc:creator>Stephane_Grosje</dc:creator>
      <dc:date>2014-08-31T19:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21209#M352</link>
      <description>hai stephane,&lt;BR /&gt;
                            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. &lt;BR /&gt;
&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add default 192.168.92.1&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Sep 2014 16:22:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21209#M352</guid>
      <dc:creator>Mohammed_Jashee</dc:creator>
      <dc:date>2014-09-26T16:22:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21210#M353</link>
      <description>Hi Mohammad,&lt;BR /&gt;
You are trying to configure floating static route incase if one nexthop fails the other must take over.Is this right?&lt;BR /&gt;
You can achieve this using Flow redirect feature.&lt;BR /&gt;
Example:&lt;BR /&gt;
&lt;BR /&gt;
create flow-redirect  gilly------------------this is just a name&lt;BR /&gt;
configure flow-redirect flow_redirect_name add nexthop 192.168.92.1 priority 100&lt;BR /&gt;
configure flow-redirect flow_redirect_name add nexthop 192.168.200.1 priority 200&lt;BR /&gt;
&lt;BR /&gt;
if match all {&lt;BR /&gt;
destination-address 192.168.37.0/24 ;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit ;&lt;BR /&gt;
redirect-name gilly&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
Note:higher priority next hop will take precedence&lt;BR /&gt;
&lt;BR /&gt;
regards,&lt;BR /&gt;
Parthiban Chinnaya&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Nov 2014 21:13:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21210#M353</guid>
      <dc:creator>PARTHIBAN_CHINN</dc:creator>
      <dc:date>2014-11-11T21:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21211#M354</link>
      <description>If you are just looking for failover normal floating static route.&lt;BR /&gt;
then the below config must work.&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.92.1&lt;BR /&gt;
configure iproute add 192.168.50.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add 192.168.37.0 255.255.255.0 192.168.200.1 200&lt;BR /&gt;
configure iproute add default 192.168.92.1&lt;BR /&gt;
&lt;BR /&gt;
When one of the nexthop fails do you see that route removed from Fib?</description>
      <pubDate>Tue, 11 Nov 2014 21:18:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21211#M354</guid>
      <dc:creator>PARTHIBAN_CHINN</dc:creator>
      <dc:date>2014-11-11T21:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21212#M355</link>
      <description>Hai &lt;A href="https://community.extremenetworks.com/#" target="_blank" rel="nofollow noreferrer noopener"&gt;PARTHIBAN CHINNAYA&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
                  Sorry for delay response. we have two l3 switches  between one of our WAN link. So when the link is down on that time the port is not down both end. route also not  also not removed.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Nov 2014 12:50:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21212#M355</guid>
      <dc:creator>Mohammed_Jashee</dc:creator>
      <dc:date>2014-11-17T12:50:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21213#M356</link>
      <description>In this scenario the link failure is not detetcted thats why the route is not removed from routing table.&lt;BR /&gt;
I would recommend configuring BFD for static routes on both ends.&lt;BR /&gt;
This is the ideal solution.</description>
      <pubDate>Mon, 17 Nov 2014 12:55:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21213#M356</guid>
      <dc:creator>PARTHIBAN_CHINN</dc:creator>
      <dc:date>2014-11-17T12:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: how to configer failover link Extreme X460</title>
      <link>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21214#M357</link>
      <description>&lt;P&gt;I have BFD routing set up.&amp;nbsp; I want to be able to manually fail back over to primary route when the link comes back up.&amp;nbsp; How do I go about doing this?&amp;nbsp; Meaning BFD routing works fine and removes the route but I want the route to stay removed even when the path comes back.&amp;nbsp; Then at approved time go into the switch and bring up primary path and make sure BFD routing is enabled again.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Aug 2020 02:21:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/how-to-configer-failover-link-extreme-x460/m-p/21214#M357</guid>
      <dc:creator>treese</dc:creator>
      <dc:date>2020-08-29T02:21:00Z</dc:date>
    </item>
  </channel>
</rss>

