<?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: Tracking feature on X480-24x switches in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68226#M18513</link>
    <description>Good afternoon eiortizj8,&lt;BR /&gt;
&lt;BR /&gt;
I am not aware of an actual command that does this, however, this is possible via a UPM script&lt;BR /&gt;
&lt;BR /&gt;
&lt;OL&gt; 
&lt;LI&gt;Create a UPM profile 
&lt;/LI&gt;&lt;LI&gt;Create a UPM log target that receives the portLinStateDown event 
&lt;/LI&gt;&lt;LI&gt;Create a log filter that can match only on the port you want to cause the trigger 
&lt;/LI&gt;&lt;LI&gt;Enable the UPM profile and Filter 
&lt;/LI&gt;&lt;/OL&gt;
Here's an example.  I want port 10 to be disabled when port 1 goes down.  I want this link down event to be passed to UPM&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;# create log filter upmFilter&lt;BR /&gt;# configure log filter upmFilter add events vlan.msgs.portLinkStateDown match port "1"&lt;BR /&gt;# create log target upm p1&lt;BR /&gt;# enable log target upm p1&lt;BR /&gt;# configure log target upm p1 filter upmFilter severity Info&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# create upm profile p1&lt;BR /&gt;##start##&lt;BR /&gt;disable port 10&lt;BR /&gt;create log message "Port 1 has gone down, disabling Port 10"&lt;BR /&gt;##end##&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
So now if I run the &lt;B&gt;disable port 1&lt;/B&gt; command, the following is logged:&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;03/19/2019 00:21:51.69  Port 1 has gone down, disabling Port 10&lt;BR /&gt;03/19/2019 00:21:51.44  Launched profile p1 for the event log-message&lt;BR /&gt;03/19/2019 00:21:51.44  Port 1 link down&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
You can then do the opposite for when port 1 comes back up, enable port 10.&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.</description>
    <pubDate>Mon, 18 Mar 2019 22:33:50 GMT</pubDate>
    <dc:creator>Kawawa</dc:creator>
    <dc:date>2019-03-18T22:33:50Z</dc:date>
    <item>
      <title>Tracking feature on X480-24x switches</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68225#M18512</link>
      <description>Hi,&lt;BR /&gt;
 &lt;BR /&gt;
I would like to know if there is a feature for X480-24x switches with ExtremeXOS version 16.2 that tracks an interface in L2 and place a condition on it.&lt;BR /&gt;
For example: If Interface X has a  L2 “track” and the interface comes down, then it makes another interface Y come down as well.&lt;BR /&gt;
Both interfaces would be carrying traffic of the same vlan.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for your comments&lt;BR /&gt;
Erendira Ortiz</description>
      <pubDate>Fri, 08 Mar 2019 05:55:24 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68225#M18512</guid>
      <dc:creator>eiortizj8</dc:creator>
      <dc:date>2019-03-08T05:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking feature on X480-24x switches</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68226#M18513</link>
      <description>Good afternoon eiortizj8,&lt;BR /&gt;
&lt;BR /&gt;
I am not aware of an actual command that does this, however, this is possible via a UPM script&lt;BR /&gt;
&lt;BR /&gt;
&lt;OL&gt; 
&lt;LI&gt;Create a UPM profile 
&lt;/LI&gt;&lt;LI&gt;Create a UPM log target that receives the portLinStateDown event 
&lt;/LI&gt;&lt;LI&gt;Create a log filter that can match only on the port you want to cause the trigger 
&lt;/LI&gt;&lt;LI&gt;Enable the UPM profile and Filter 
&lt;/LI&gt;&lt;/OL&gt;
Here's an example.  I want port 10 to be disabled when port 1 goes down.  I want this link down event to be passed to UPM&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;# create log filter upmFilter&lt;BR /&gt;# configure log filter upmFilter add events vlan.msgs.portLinkStateDown match port "1"&lt;BR /&gt;# create log target upm p1&lt;BR /&gt;# enable log target upm p1&lt;BR /&gt;# configure log target upm p1 filter upmFilter severity Info&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# create upm profile p1&lt;BR /&gt;##start##&lt;BR /&gt;disable port 10&lt;BR /&gt;create log message "Port 1 has gone down, disabling Port 10"&lt;BR /&gt;##end##&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
So now if I run the &lt;B&gt;disable port 1&lt;/B&gt; command, the following is logged:&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;03/19/2019 00:21:51.69  Port 1 has gone down, disabling Port 10&lt;BR /&gt;03/19/2019 00:21:51.44  Launched profile p1 for the event log-message&lt;BR /&gt;03/19/2019 00:21:51.44  Port 1 link down&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
You can then do the opposite for when port 1 comes back up, enable port 10.&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.</description>
      <pubDate>Mon, 18 Mar 2019 22:33:50 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68226#M18513</guid>
      <dc:creator>Kawawa</dc:creator>
      <dc:date>2019-03-18T22:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tracking feature on X480-24x switches</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68227#M18514</link>
      <description>Hi &lt;A href="https://ext.connectedcommunity.org/profile?UserKey=a65d5063-6897-4e99-8560-6101b7af6aa3" target="_blank" rel="nofollow noreferrer noopener"&gt;Kawawa, &lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Thanks so much for your answer, that is exactly what I was looking for!!&lt;BR /&gt;
&lt;BR /&gt;
BR, &lt;BR /&gt;
Erendira Ortiz</description>
      <pubDate>Mon, 18 Mar 2019 22:43:30 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/tracking-feature-on-x480-24x-switches/m-p/68227#M18514</guid>
      <dc:creator>eiortizj8</dc:creator>
      <dc:date>2019-03-18T22:43:30Z</dc:date>
    </item>
  </channel>
</rss>

