<?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: IDoes extreme have a feature like cisco's flexlink? in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99164#M22290</link>
    <description>&lt;P&gt;Awesome. It's very easy to use!&lt;BR /&gt;&lt;BR /&gt;Let me know if you need a hand.&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jan 2024 19:21:24 GMT</pubDate>
    <dc:creator>Brent_Addis</dc:creator>
    <dc:date>2024-01-31T19:21:24Z</dc:date>
    <item>
      <title>IDoes extreme have a feature like cisco's flexlink?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99044#M22245</link>
      <description>&lt;P&gt;Hi~&lt;/P&gt;&lt;P&gt;It turns out the customer keeps plugging their ip-phone into the DATA switch and is suffering from a LOOP.&lt;/P&gt;&lt;P&gt;Is there anything like flexlink out there?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 00:35:08 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99044#M22245</guid>
      <dc:creator>ADV1</dc:creator>
      <dc:date>2024-01-26T00:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: IDoes extreme have a feature like cisco's flexlink?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99053#M22251</link>
      <description>&lt;P&gt;Setup ELRP on the ports. Works flawlessly.&lt;/P&gt;&lt;P&gt;Alternatively, you could run a detection routine that detects a phone that's plugged in and configures the port using a universal port profile.&lt;/P&gt;&lt;P&gt;Below is a simplified version I took from an old Avaya doc and modified. There&lt;/P&gt;&lt;P&gt;create upm profile voip_company_generic&lt;BR /&gt;#********************************&lt;BR /&gt;# Last Updated: Jan 20, 2018&lt;BR /&gt;# Brent Addis - &amp;lt;brent.addis@fastcom.co.nz&amp;gt;&lt;BR /&gt;# Based on Avaya phone script with alterations&lt;BR /&gt;#********************************&lt;BR /&gt;# @META_DATA_START&lt;BR /&gt;# @FileDescription "This is a template for configuring network parameters for VoIP&lt;BR /&gt;#phones support LLDP but without 802.1x authentication. The module is triggered&lt;BR /&gt;#through the detection of an LLDP packet on the port.&lt;BR /&gt;#The following network side&lt;BR /&gt;#configuration is done: enable SNMP traps, QOS assignment, adjust POE reservation&lt;BR /&gt;#values based on device requirements, add the voiceVlan to the port as tagged."&lt;BR /&gt;# @Description "Voice VLAN name"&lt;BR /&gt;set var voicevlan voice&lt;BR /&gt;# @Description "Send trap when LLDP event happens (true or false)"&lt;BR /&gt;set var sendTraps false&lt;BR /&gt;# @Description "Set QoS Profile (true or false)"&lt;BR /&gt;set var setQuality true&lt;BR /&gt;# @META_DATA_END&lt;BR /&gt;#&lt;BR /&gt;if (!$match($EVENT.NAME,DEVICE-DETECT)) then&lt;BR /&gt;create log entry Starting_LLDP_Generic_Module_Config&lt;BR /&gt;# VoiceVLAN configuration&lt;BR /&gt;configure vlan $voicevlan add port $EVENT.USER_PORT tagged&lt;BR /&gt;#SNMP Trap&lt;BR /&gt;if (!$match($sendTraps,true)) then&lt;BR /&gt;create log entry Config_SNMP_Traps&lt;BR /&gt;enable snmp traps lldp ports $EVENT.USER_PORT&lt;BR /&gt;enable snmp traps lldp-med ports $EVENT.USER_PORT&lt;BR /&gt;else&lt;BR /&gt;disable snmp traps lldp ports $EVENT.USER_PORT&lt;BR /&gt;disable snmp traps lldp-med ports $EVENT.USER_PORT&lt;BR /&gt;endif&lt;BR /&gt;#Link Layer Discovery Protocol-Media Endpoint Discover&lt;BR /&gt;create log entry Config_LLDP&lt;BR /&gt;configure lldp port $EVENT.USER_PORT advertise vendor-specific med capabilities&lt;BR /&gt;configure lldp port $EVENT.USER_PORT advertise vendor-specific dot1 vlan-name vlan $voicevlan&lt;BR /&gt;configure lldp port $EVENT.USER_PORT advertise vendor-specific med policy application Voice vlan $voicevlan dscp 46&lt;BR /&gt;configure lldp port $EVENT.USER_PORT advertise vendor-specific med power-via-mdi&lt;BR /&gt;#Configure POE settings per device requirements&lt;BR /&gt;create log entry Config_POE&lt;BR /&gt;configure inline-power operator-limit $EVENT.DEVICE_POWER ports $EVENT.USER_PORT&lt;BR /&gt;#QoS Profile&lt;BR /&gt;if (!$match($setQuality,true)) then&lt;BR /&gt;create log entry Config_QOS&lt;BR /&gt;configure port $EVENT.USER_PORT qosprofile qp7&lt;BR /&gt;#create log entry Config_Isolation&lt;BR /&gt;#configure ports $EVENT.USER_PORT isolation on&lt;BR /&gt;create log entry Change_Port_Display&lt;BR /&gt;configure ports $EVENT.USER_PORT display-string "$EVENT.DEVICE"&lt;BR /&gt;endif&lt;BR /&gt;endif&lt;BR /&gt;if (!$match($EVENT.NAME,DEVICE-UNDETECT) &amp;amp;&amp;amp; $match($EVENT.DEVICE_IP,0.0.0.0)) then&lt;BR /&gt;create log entry Starting_LLDP_Generic_UNATUH_Module_Config&lt;BR /&gt;if (!$match($sendTraps,true)) then&lt;BR /&gt;create log entry UNConfig_SNMP_Traps&lt;BR /&gt;disable snmp traps lldp ports $EVENT.USER_PORT&lt;BR /&gt;disable snmp traps lldp-med ports $EVENT.USER_PORT&lt;BR /&gt;endif&lt;BR /&gt;create log entry UNConfig_LLDP&lt;BR /&gt;unconfig lldp port $EVENT.USER_PORT&lt;BR /&gt;if (!$match($setQuality,true)) then&lt;BR /&gt;create log entry UNConfig_QOS&lt;BR /&gt;unconfig qosprofile ports $EVENT.USER_PORT&lt;BR /&gt;endif&lt;BR /&gt;unconfig inline-power operator-limit ports $EVENT.USER_PORT&lt;BR /&gt;endif&lt;BR /&gt;if (!$match($EVENT.NAME,DEVICE-UNDETECT) &amp;amp;&amp;amp; !$match($EVENT.DEVICE_IP,0.0.0.0)) then&lt;BR /&gt;create log entry DoNothing_0.0.0.0&lt;BR /&gt;create log entry $EVENT.TIME&lt;BR /&gt;endif&lt;BR /&gt;create log entry End_LLDP_Generic_Module_Config&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jan 2024 19:13:50 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99053#M22251</guid>
      <dc:creator>Brent_Addis</dc:creator>
      <dc:date>2024-01-28T19:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: IDoes extreme have a feature like cisco's flexlink?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99144#M22284</link>
      <description>&lt;P&gt;Thank you for your reply!.&lt;/P&gt;&lt;P&gt;I'll use ELRP.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 04:44:30 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99144#M22284</guid>
      <dc:creator>ADV1</dc:creator>
      <dc:date>2024-01-31T04:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: IDoes extreme have a feature like cisco's flexlink?</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99164#M22290</link>
      <description>&lt;P&gt;Awesome. It's very easy to use!&lt;BR /&gt;&lt;BR /&gt;Let me know if you need a hand.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 19:21:24 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/idoes-extreme-have-a-feature-like-cisco-s-flexlink/m-p/99164#M22290</guid>
      <dc:creator>Brent_Addis</dc:creator>
      <dc:date>2024-01-31T19:21:24Z</dc:date>
    </item>
  </channel>
</rss>

