Thomas, Thanks for contributing the script.
Regards, Tyson Scott - CCIE #13513 R&S, Security, and SP Managing Partner / Sr. Instructor - IPexpert, Inc. Mailto: [email protected] Telephone: +1.810.326.1444, ext. 208 Live Assistance, Please visit: www.ipexpert.com/chat eFax: +1.810.454.0130 IPexpert is a premier provider of Self-Study Workbooks, Video on Demand, Audio Tools, Online Hardware Rental and Classroom Training for the Cisco CCIE (R&S, Voice, Security & Service Provider) certification(s) with training locations throughout the United States, Europe, South Asia and Australia. Be sure to visit our online communities at www.ipexpert.com/communities and our public website at www.ipexpert.com -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Thomas Raabo - Zitcom A/S Sent: Friday, January 28, 2011 3:08 AM To: O'Brien, Neil; Di Bias, Steve; [email protected] Subject: Re: [OSL | CCIE_RS] BLS and GNS3 Now you could help yourself a little bit.... My setup is almost the same as IPexperts but all my routers er 3700 series so I need to change all configs... the way I do it is with a little script. #!/bin/bash TEMPFILE="/tmp/rework.sed" if [ -f $TEMPFILE ] then rm $TEMPFILE fi if [ -f R2.txt ] then sed -e 's/GigabitEthernet0/FastEthernet0/g' \ -e 's/media-type/! media-type/g' \ -e 's/Serial0\/1\/0/Serial0\/0/gI' \ -e 's/Serial0\/2\/0/Serial0\/1/gI' \ R2.txt > $TEMPFILE mv $TEMPFILE R2.txt fi if [ -f R4.txt ] then sed -e 's/Serial0\/0\/0/Serial0\/0/gI' \ R4.txt > $TEMPFILE mv $TEMPFILE R4.txt fi if [ -f R5.txt ] then sed -e 's/Serial0\/1\/0/Serial0\/0/gI' \ -e 's/Serial0\/2\/0/Serial0\/1/gI' \ R5.txt > $TEMPFILE mv $TEMPFILE R5.txt fi if [ -f R6.txt ] then sed -e 's/Serial0\/1\/0/Serial2\/0/gI' \ -e 's/Serial0\/2\/0/Serial2\/1/gI' \ -e 's/Serial0\/2\/1/Serial2\/2/gI' \ R6.txt > $TEMPFILE mv $TEMPFILE R6.txt fi if [ -f R7.txt ] then sed -e 's/Serial0\/0\/0/Serial0\/0/gI' \ R7.txt > $TEMPFILE mv $TEMPFILE R7.txt fi Med venlig hilsen | Best regards Thomas Raabo Netværks ansvarlig _____________________________________________ [email protected] | Direkte: +45 69 10 60 18 | Tlf.: +45 70 23 55 66 -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of O'Brien, Neil Sent: 27. januar 2011 21:13 To: Di Bias, Steve; [email protected] Subject: Re: [OSL | CCIE_RS] BLS and GNS3 Thanks Steve, Neil -----Original Message----- From: Di Bias, Steve [mailto:[email protected]] Sent: 27 January 2011 14:56 To: O'Brien, Neil; [email protected] Subject: Re: [OSL | CCIE_RS] BLS and GNS3 You will needto manually edit the configs to fit (e.g. interfaces, etc) its a bit of a pain but once you do that you're good to go "O'Brien, Neil" <[email protected]> wrote: Hi Guys, I have the BLS V4 package and I have also downloaded the "Dynamips support files" from the blog. I haven't really started using any of the labs from BLS, I'm just preparing. Am I supposed to have initial configs for the devices in the topology and if so where do I get them. I did download some configs from my members area but they don't seem to transfer directly over to the devices in the GNS3 support files. Am I missing something?? Thanks in advance, Neil _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com UHS Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient (s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution of this information is prohibited. If this was sent to you in error, please notify the sender by reply e-mail and destroy all copies of the original message. _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com _______________________________________________ For more information regarding industry leading CCIE Lab training, please visit www.ipexpert.com
