<?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: DHCP Snooping auto configuration in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47631#M12298</link>
    <description>Does this refer to when you manually move a port from one VLAN to another, or is there some automated process involved (e.g. policy, or 802.1x)?&lt;BR /&gt;
&lt;BR /&gt;
If the former, then you should be able to write an .xsf file to automate the process. It would not necessarily be very elaborate. Please confirm and I could write an example for you.</description>
    <pubDate>Wed, 15 Mar 2017 22:43:00 GMT</pubDate>
    <dc:creator>Matthew_Helm1</dc:creator>
    <dc:date>2017-03-15T22:43:00Z</dc:date>
    <item>
      <title>DHCP Snooping auto configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47630#M12297</link>
      <description>Hi Experts,&lt;BR /&gt;
&lt;BR /&gt;
I have a quick question about DHCP Snooping.&lt;BR /&gt;
When I move a port  from a VLAN to another, I need to change the dhcp snooping configuration too.&lt;BR /&gt;
&lt;BR /&gt;
Is there a way to automate this action???&lt;BR /&gt;
&lt;BR /&gt;
Thansk for your help,&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Mar 2017 13:46:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47630#M12297</guid>
      <dc:creator>frederic_ragot</dc:creator>
      <dc:date>2017-03-15T13:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: DHCP Snooping auto configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47631#M12298</link>
      <description>Does this refer to when you manually move a port from one VLAN to another, or is there some automated process involved (e.g. policy, or 802.1x)?&lt;BR /&gt;
&lt;BR /&gt;
If the former, then you should be able to write an .xsf file to automate the process. It would not necessarily be very elaborate. Please confirm and I could write an example for you.</description>
      <pubDate>Wed, 15 Mar 2017 22:43:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47631#M12298</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-03-15T22:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: DHCP Snooping auto configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47632#M12299</link>
      <description>Thanks for your answer, yes it's when I move a port manually from one VLAN to another.&lt;BR /&gt;
It would be great to have an example of .xsf, thank you!&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Mar 2017 13:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47632#M12299</guid>
      <dc:creator>frederic_ragot</dc:creator>
      <dc:date>2017-03-16T13:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: DHCP Snooping auto configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47633#M12300</link>
      <description># usage load/run script vpdhcps {target_vlan_name} {port_number}&lt;BR /&gt;
#&lt;BR /&gt;
# This script assumes 15.7.2.9 or higher EXOS version&lt;BR /&gt;
# &lt;BR /&gt;
# This strips off all VLANs currently on the port given in arguments&lt;BR /&gt;
# and then assigns that port to the target VLAN untagged and enables&lt;BR /&gt;
# DHCP-snooping on that VLAN and port.&lt;BR /&gt;
#&lt;BR /&gt;
set var v $(CLI.ARGV1)&lt;BR /&gt;
set var p $(CLI.ARGV2)&lt;BR /&gt;
disable clip&lt;BR /&gt;
set var cli.out 0&lt;BR /&gt;
show vlan port $p&lt;BR /&gt;
set var s $TCL(split ${cli.out} "\n")&lt;BR /&gt;
set var i $TCL(lsearch $s *\/Total*)&lt;BR /&gt;
if ($i &amp;gt; -1) then&lt;BR /&gt;
   set var i ($i + 2)&lt;BR /&gt;
   set var e $TCL(lsearch $s *Flags\ \:*)&lt;BR /&gt;
   set var e ($e - 1)&lt;BR /&gt;
   while ($i &amp;lt; $e) do&lt;BR /&gt;
      set var l $TCL(lindex $s $i)&lt;BR /&gt;
      set var ov $TCL(lindex $l 0)&lt;BR /&gt;
      config vlan $ov delete port $p&lt;BR /&gt;
      set var i ($i + 1)&lt;BR /&gt;
   endwhile&lt;BR /&gt;
endif&lt;BR /&gt;
config vlan $v add port $p&lt;BR /&gt;
enable ip-security dhcp-snooping vlan $v port $p violation-action none&lt;BR /&gt;
enable clip&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Mar 2017 22:22:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47633#M12300</guid>
      <dc:creator>Matthew_Helm1</dc:creator>
      <dc:date>2017-03-16T22:22:00Z</dc:date>
    </item>
    <item>
      <title>RE: DHCP Snooping auto configuration</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47634#M12301</link>
      <description>Thank you for you answer and sorry for the delay I didn't see your answer.&lt;BR /&gt;
I will test this script.&lt;BR /&gt;
&lt;BR /&gt;
Have a good day.</description>
      <pubDate>Fri, 24 Mar 2017 13:40:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/dhcp-snooping-auto-configuration/m-p/47634#M12301</guid>
      <dc:creator>frederic_ragot</dc:creator>
      <dc:date>2017-03-24T13:40:00Z</dc:date>
    </item>
  </channel>
</rss>

