<?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 Script to change management IP in ExtremeSwitching (VSP/Fabric Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8569#M150</link>
    <description>I am working on upgrading a bunch of devices from 8.1.5.0. to 8.4.2.1. Currently they are using a CLIP/loopback as the management IP. I am setting the migrate-to-mgmt flag to maintain access to the devices. I would like to figure out if there is a way to run a few commands from a script like you can with the ERS switches so that I can remotely change the management addresses to our new IP scheme without cutting myself off since I must delete the old IP before I can configure the new one.</description>
    <pubDate>Mon, 13 Dec 2021 18:58:00 GMT</pubDate>
    <dc:creator>bfaltys</dc:creator>
    <dc:date>2021-12-13T18:58:00Z</dc:date>
    <item>
      <title>Script to change management IP</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8569#M150</link>
      <description>I am working on upgrading a bunch of devices from 8.1.5.0. to 8.4.2.1. Currently they are using a CLIP/loopback as the management IP. I am setting the migrate-to-mgmt flag to maintain access to the devices. I would like to figure out if there is a way to run a few commands from a script like you can with the ERS switches so that I can remotely change the management addresses to our new IP scheme without cutting myself off since I must delete the old IP before I can configure the new one.</description>
      <pubDate>Mon, 13 Dec 2021 18:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8569#M150</guid>
      <dc:creator>bfaltys</dc:creator>
      <dc:date>2021-12-13T18:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Script to change management IP</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8570#M151</link>
      <description>I didn't figure out the script, but was able to accomplish the end state by adding a mgmt vlan IP, the logging into that IP to change the CLIP/loopback. Then login to the new CLIP/loopback and remove the temporary mgmt vlan.&lt;BR /&gt;&lt;BR /&gt;vlan create 699 name "MGMT-TEMP" type port 0&lt;BR /&gt;vlan i-sid 699 10699&lt;BR /&gt;#Create temporary mgmt vlan and a static route. I only added a route for the subnet I was accessing the VSP from.&lt;BR /&gt;mgmt vlan 699&lt;BR /&gt;&amp;nbsp; ip address 10.99.99.250 255.255.255.0&lt;BR /&gt;&amp;nbsp; ip route 192.168.10.0/24 next-hop 10.99.99.251&lt;BR /&gt;&amp;nbsp; enable&lt;BR /&gt;&amp;nbsp; exit&lt;BR /&gt;#NOW SSH TO THE NEW, TEMP MGMT IP AND CHANGE THE CLIP/LOOPBACK IP&lt;BR /&gt;mgmt clip &lt;BR /&gt;&amp;nbsp;no ip address 10.1.1.28&lt;BR /&gt;&amp;nbsp;ip address 172.31.1.36/32&lt;BR /&gt;&amp;nbsp;exit&lt;BR /&gt;#NOW SSH TO THE NEW MGMT CLIP/LOOPBACK IP&lt;BR /&gt;no mgmt vlan&lt;BR /&gt;​</description>
      <pubDate>Mon, 13 Dec 2021 20:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8570#M151</guid>
      <dc:creator>bfaltys</dc:creator>
      <dc:date>2021-12-13T20:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Script to change management IP</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8571#M152</link>
      <description>Hi bfaltys,&lt;BR /&gt;&lt;BR /&gt;On VOSS device, you can execute script (cli commands) with the command "source".&amp;nbsp;&lt;BR /&gt;You can copy your script file on intflash and run it.&amp;nbsp;&lt;BR /&gt;Source myscript.txt debug syntaxe (check syntaxe error but don't apply it)&lt;BR /&gt;Source my script.txt debug (run file and display execution)&lt;BR /&gt;Source myscript.txt (run file without any display)&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Théo</description>
      <pubDate>Tue, 14 Dec 2021 09:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8571#M152</guid>
      <dc:creator>TQU</dc:creator>
      <dc:date>2021-12-14T09:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Script to change management IP</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8572#M153</link>
      <description>On those lines, there is an XIQ-SE python script which does something similar on Gihub:&lt;BR /&gt;&lt;A href="https://github.com/extremenetworks/ExtremeScripting/tree/master/XMC_XIQ-SE/oneview_CLI_scripts" target="_blank" rel="noopener"&gt;https://github.com/extremenetworks/ExtremeScripting/tree/master/XMC_XIQ-SE/oneview_CLI_scripts&lt;/A&gt;&lt;BR /&gt;The one called "Move to Clip Mgmt IP". It is designed to go into a switch, give it a new mgmt clip IP, then delete the existing one (clip IP or mgmt vlan IP) and re-add the device to XIQ-SE using the new IP.&lt;BR /&gt;It uses the same approach of packing the necessary CLI commands in a text file, then making the switch get that text file by tftp and sourcing it locally.&lt;BR /&gt;You can extract the variuos functions from it.</description>
      <pubDate>Tue, 14 Dec 2021 11:13:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8572#M153</guid>
      <dc:creator>Ludovico_Steven</dc:creator>
      <dc:date>2021-12-14T11:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Script to change management IP</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8573#M154</link>
      <description>Awesome. This could be useful for other tasks. Just tried it out for some changes that required me to disable IS-IS and then re-enable it.</description>
      <pubDate>Wed, 22 Dec 2021 17:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-vsp-fabric/script-to-change-management-ip/m-p/8573#M154</guid>
      <dc:creator>bfaltys</dc:creator>
      <dc:date>2021-12-22T17:58:00Z</dc:date>
    </item>
  </channel>
</rss>

