<?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 Feature similar to Cisco IP SLA and track in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19595#M1032</link>
    <description>Hi  I new in Extreme stuff. Pls advise how can I configure to change default route based on ping check. Something similar to cisco ip lsa and tracking. Flow redirect doesn't meet my requirements , I need to change default route because it is propagated by ospf to others switches.    Thanks in advance</description>
    <pubDate>Sun, 18 Sep 2016 19:38:00 GMT</pubDate>
    <dc:creator>Pawel_Zwierzyn1</dc:creator>
    <dc:date>2016-09-18T19:38:00Z</dc:date>
    <item>
      <title>Feature similar to Cisco IP SLA and track</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19595#M1032</link>
      <description>Hi  I new in Extreme stuff. Pls advise how can I configure to change default route based on ping check. Something similar to cisco ip lsa and tracking. Flow redirect doesn't meet my requirements , I need to change default route because it is propagated by ospf to others switches.    Thanks in advance</description>
      <pubDate>Sun, 18 Sep 2016 19:38:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19595#M1032</guid>
      <dc:creator>Pawel_Zwierzyn1</dc:creator>
      <dc:date>2016-09-18T19:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Feature similar to Cisco IP SLA and track</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19596#M1033</link>
      <description>You can use the keyword "protection ping"&lt;BR /&gt;
&lt;BR /&gt;
e.g.&lt;BR /&gt;
&lt;BR /&gt;
configure iproute add 100.0.0.0/24 1.2.3.4 protection ping&lt;BR /&gt;
configure iproute add 100.0.0.0/24 1.2.3.5 protection ping&lt;BR /&gt;
&lt;BR /&gt;
if both gateways anwer you have a l3 load balancing. &lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
André</description>
      <pubDate>Sun, 18 Sep 2016 22:10:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19596#M1033</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-09-18T22:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: Feature similar to Cisco IP SLA and track</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19597#M1034</link>
      <description>The "ping" protection on a static route is supported in 16.1, 21.1 or later. You can modify parameters (interval and number of miss) for the ping protection with the following command.&lt;BR /&gt;
&lt;BR /&gt;
# configure iproute protection ping interval &lt;SEC&gt; miss &lt;NUMBER of="" miss=""&gt;&lt;/NUMBER&gt;&lt;/SEC&gt;</description>
      <pubDate>Mon, 19 Sep 2016 05:18:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19597#M1034</guid>
      <dc:creator>Kevin_Kim</dc:creator>
      <dc:date>2016-09-19T05:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Feature similar to Cisco IP SLA and track</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19598#M1035</link>
      <description>If you have an earlier EXOS you can still use upm:&lt;BR /&gt;
&lt;BR /&gt;
Below a script, that does similar by disabling an Port to an ISP:&lt;BR /&gt;
&lt;BR /&gt;
create upm profile pingtest&lt;BR /&gt;
&lt;BR /&gt;
set var primeport 31&lt;BR /&gt;
# the port of the primary ISP router&lt;BR /&gt;
set var target 10.2.100.100&lt;BR /&gt;
# the target IP address used to determine the health of connectivity to the&lt;BR /&gt;
# primary ISP&lt;BR /&gt;
set var CLI.OUT 0&lt;BR /&gt;
ping count 1 vr vr-default $target&lt;BR /&gt;
set var pinglist $TCL(split ${CLI.OUT} "\n")&lt;BR /&gt;
delete var CLI.OUT&lt;BR /&gt;
set var pingrespln $TCL(lsearch -glob $pinglist *received*)&lt;BR /&gt;
set var pingresp $TCL(lindex $pinglist $pingrespln)&lt;BR /&gt;
set var pingnorcv $TCL(regexp -nocase {0 packets received} $pingresp)&lt;BR /&gt;
if ($pingnorcv == 1) then&lt;BR /&gt;
   disable port $primeport&lt;BR /&gt;
   create log entry "Failed Uplink "&lt;BR /&gt;
   disable upm profile pingtest&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
create upm timer pingtest&lt;BR /&gt;
configure upm timer pingtest profile pingtest&lt;BR /&gt;
configure upm timer pingtest after 1 every 1&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
André</description>
      <pubDate>Mon, 19 Sep 2016 10:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19598#M1035</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-09-19T10:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: Feature similar to Cisco IP SLA and track</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19599#M1036</link>
      <description>Thank you for responses.  I have ExtremeOS 16.1.2.14, protection ping is available from 16.1.3. By the way it isn't meet requirements completly, I want to ping host which I can define.  Andre thank you for the script. What in case that route became available?</description>
      <pubDate>Mon, 19 Sep 2016 11:25:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/feature-similar-to-cisco-ip-sla-and-track/m-p/19599#M1036</guid>
      <dc:creator>Pawel_Zwierzyn1</dc:creator>
      <dc:date>2016-09-19T11:25:00Z</dc:date>
    </item>
  </channel>
</rss>

