12-21-2005 12:40 PM - edited 03-03-2019 01:12 AM
Is there a tool that will covert your existing supervisor configuration to a native IOS configuration?
Solved! Go to Solution.
12-21-2005 12:51 PM
Hello Jeff,
are you looking for this ?
Catalyst OS to Cisco IOS Configuration Converter
http://www.cisco.com/cgi-bin/Support/CatCfgConversion/catcfg_xlat.pl
Regards,
GP
12-21-2005 01:04 PM
Please be aware that not all configs will convert properly with this tool You might want to understand equivalent commands under each OS before you do the migration.
Check this link.
http://www.cisco.com/en/US/products/hw/switches/ps700/products_tech_note09186a008010e9d5.shtml
HTH
PS: please remember to rate helpful replies!
12-21-2005 12:51 PM
Hello Jeff,
are you looking for this ?
Catalyst OS to Cisco IOS Configuration Converter
http://www.cisco.com/cgi-bin/Support/CatCfgConversion/catcfg_xlat.pl
Regards,
GP
01-09-2006 07:12 AM
This tool does not seem to be working at least over the last 5 days.
I have tried to upload and convert 8.3 catos config, and also tried cutting and pasting in the conversion box.
Browser status says: Opening page http://...catcfg_xlat.pl..
But conversion never happens, browser just times out.
Anyone else having problems?
01-09-2006 09:20 AM
Yes, I had the same problem. I finally wrote a perl script to do the port-level configuration because I had a ton of ports. Adjust as you see fit:
open (PORTS,"sw2.txt");
open (NEWSW1,">sw2-new.txt");
@ports =
foreach (@ports) {
($port,$desc,$conn,$vlan) = /(\d+\/\d+)\s+(.*)\s+(connected|notconnect)\s+(\d+)\s+/;
if ($conn) {
print NEWSW1
"interface g$port\n desc $desc\n switchport host\n switchport access vlan $vlan\n no shutdown\n";
}
}
12-21-2005 01:04 PM
Please be aware that not all configs will convert properly with this tool You might want to understand equivalent commands under each OS before you do the migration.
Check this link.
http://www.cisco.com/en/US/products/hw/switches/ps700/products_tech_note09186a008010e9d5.shtml
HTH
PS: please remember to rate helpful replies!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide