Archive

Archive for January, 2011

Flash cards

January 31, 2011 4 comments

I am going to create flash cards for my CCIE lab studys. A sample question could look like this:

Question:

Routers R1 and R2 are EIGRP neighbors. 155.1.48.0/24 is the transit link between them.
R1 also has a loopback with the IP-address 150.1.1.1/24. The default settings are
enabled for EIGRP and the correct network statements are in place. What netmask will R2
have for R1’s loopback?

Answer:

The netmask is 255.255.0.0 or /16 since auto-summary is on by default.

I am going to create the flashcards in Anki, if there is interest I will make it publically available for download and it will be updated whenever I add content to it.

Categories: Anki, Announcement, CCIE Tags: , ,

Quickly opening multiple sessions with Putty

January 28, 2011 12 comments

If you as I are studying for the CCIE R&S you should be using Putty? Why? Because for the
R&S track Putty is used in the lab. Yes, I an many others use SecureCRT and love the tabs
but you don’t want to go to the lab and do anything for the first time, except get your number!
Therefore we should use Putty to practice.

I use rack rentals and Dynamips for my studies, in either case I need to connect to a least 10
devices, the 6 routers and the 4 switches. This can be a bit tedious to do everytime you
want to study. Here is my solution for it. Start by installing Putty, I usually just use the
executable but you want to install it to be able to use it from the command line.
Download it here.

Install it to a directory of your preference.

Open a command prompt and type putty, what happens? Nothing, because Windows
doesn’t know where Putty is located. Either you can type C:\Program files\Putty\Putty.exe
or where you installed it everytime you want to use it but there is a better way.

Start by clicking the Start button and then right clicking on “Computer” and then
choose “Properties”.

Then we will have a new screen where we whant to choose “Advanced system settings”.

After that choose “Environment Variables…”.

Scroll down the “System variables” until you see “Path”. Select this and then choose edit.

After every entry there needs to be a semicolon. Scroll to the right and after your
final entry put “;C:\Program files\PuTTY” or the directory where you installed it.
You do not need the “”.

Windows will now know where Putty is located. If you type Putty from the
command prompt Putty will load. The advantage now is that we can use Putty from the
command line, you can used putty -telnet or putty -ssh to open sessions from the
command line but we are interested in putty -load. This is how I have things setup.

We need to create sessions in the GUI that we can load from the command prompt.
If you are using rack rentals like graded labs you telnet to a terminal server and
can create sessions by using different usernames. You can see that I connect
to racks.ine.com on port 23.

Some things that you might like to change, in the “Windows” section change
the scrollback. I use 5000 lines of scrollback. You want to be able to run debugs
and then scroll back and go through the output.

I use a different font than standard, you can change this in “Appearance”.
The one I use is called Lucida Console.

I also like to change the selection behaviour. The default is to paste on right click.
I change it to bring up a menu on right click. If I want to paste something directly
I can use shift+insert.

This is enough to get us started but first lets make some more changes.
Under “Behaviour” we can set “Window title:”.
Set this to the device name like R1, R2, SW1 etc.
This will help us to know which device we are logged in to.

When you have edited your settings you need to save them to a session.
Choose “Session” and then “Saved Sessions” and enter a name for the session
and then click “Save”. To save more sessions leave the settings as they are, enter
a new name under “Saved sessions”, change the window title under behaviour, when
this is done click save and the session will be saved with the new name.
Do this for all the devices.

To load the sessions from the commandline we use putty -load.
I made a quick .bat file to start all my sessions. The code looks like this:

start “R1” “C:\Program Files\PuTTY\putty.exe” -load rr-r1
timeout /T 2 > nul
start “R2” “C:\Program Files\PuTTY\putty.exe” -load rr-r2
timeout /T 2 > nul
start “R3” “C:\Program Files\PuTTY\putty.exe” -load rr-r3
timeout /T 2 > nul
start “R4” “C:\Program Files\PuTTY\putty.exe” -load rr-r4
timeout /T 2 > nul
start “R5” “C:\Program Files\PuTTY\putty.exe” -load rr-r5
timeout /T 2 > nul
start “R6” “C:\Program Files\PuTTY\putty.exe” -load rr-r6
timeout /T 2 > nul
start “SW1” “C:\Program Files\PuTTY\putty.exe” -load rr-sw1
timeout /T 2 > nul
start “SW2” “C:\Program Files\PuTTY\putty.exe” -load rr-sw2
timeout /T 2 > nul
start “SW3” “C:\Program Files\PuTTY\putty.exe” -load rr-sw3
timeout /T 2 > nul
start “SW4” “C:\Program Files\PuTTY\putty.exe” -load rr-sw4

I have implemented a 2 second wait between each session because the sessions
time out quite fast and we need time to type username and password.
The timeout may not be availabe in systems older than Vista but you may
solve this by using a ping command or so. This bat-file can also be used to open
remote sessions to a Dynamips-server. The only thing that changes in the Putty
sessions is that we connect via ssh and then ports 2000 and upward.
If you connect to Dynamips you don’t need to implement the timeout command.

Hopefully this post has showed you new ways of using Putty and has speeded up your labstudies.

Dos2unix

January 28, 2011 1 comment

There is a difference in how Windows and Unix-based systems end their lines. Why does this matter to us?
When converting the configs for the INE workbook vol1 the configs have been made by someone using Windows.

Windows uses a carriage return and a linefeed for each new line. The carriage return can be expressed as \r or ^M.
After that we have a linefeed which is expressed \n or ^J. When using a Unixbased system only the \n is used.

How can I convert from DOS-format to Unix, well there are a lot of different ways of doing this.
We can do it by using sed but there is a easier way. There is a utility called dos2unix, I run Debian on my Dynamips
box and I couldn’t find a package called dos2unix but there is a package named tofrodos that contains dos2unix.
To install it use:

sudo apt-get install tofrodos

Then answer yes to install it. Using it is easy, this is the syntax:

dos2unix r1.txt

This will clean up the file and output it with the same name it already has (overwriting). If you want to put the result in a new file then use:

dos2unix r1.txt r1-new.txt

If you have had issues with running my script this might be why. If you open a DOS-formatted text-file with Nano it will say that it has been
converted from DOS-format. I probably could have solved this in the script but my Unix skills are very limited and as I pick things up I will
try to improve it. Please leave comments if you use the script and if you have made any improvements to it. I want the community and all
us future CCIEs to have the tools needed readily available for sucessful studies.

Categories: Linux, Scripts Tags: , ,

5000 hits

January 26, 2011 1 comment

May not sound like much but still a  milestone for me. Traffic is increasing for every month which is a good sign. I hope you enjoy the site and that more people join in on the fun 🙂

Categories: Announcement Tags:

Script updates

January 25, 2011 Leave a comment

Some more updates to script:

  • Had missed to remap some serial interfaces on r4-r6
  • Port Fa0/6 on SW2 wasn’t remapped which led to connectivity issues between R1 and R6
Categories: CCIE, Dynamips, Scripts Tags: , ,

Script updated again

January 24, 2011 1 comment

Found some more bugs:

  • Wasn’t matching specific enough in the sed statements for bb1
  • Added 100/full to backbone routers ethernet interfaces
  • Redid how I delete interfaces for backbone routers

Should be pretty close to finished now but I find something almost every day.

Categories: CCIE, Dynamips, Scripts Tags: , ,

Script updated

January 23, 2011 1 comment

Found a lot of errors in my script and added some features. Things that got fixed:

  • Searching for interfaces for r1-r6 that didn’t need to be changed
  • Setting all interfaces to 100/full since Dynamips doesn’t like auto
  • Some patterns weren’t specific enough which led to multiple entries
  • Switchport mode dynamic desirable not available, set to hardcoded trunk
  • Switchport host not available, using switchport mode access instead
  • Delete some of interfaces on BB1 because we have separate frameswitch in topology

That should take care of most of the errors, if you find anything else please report it. Script is still avaible here.

Categories: CCIE, Dynamips, Scripts Tags: , ,

Converting INE vol1 configs to Dynamips

January 23, 2011 19 comments

I have done mostly rack rentals so far and for pure layer 2 it’s a must but I want to mix with Dynamips for labs that are not heavy on layer 2. I wanted to use the configs provided for vol1 in Dynamips but the interfaces does not match since the serial interfaces is in a different slot. The NM-16ESW only has 16 ports instead of 24 and there are also some differences on the backbone routers. Going through each configuration before each lab would take a lot of time and be very tedious. Since I couldn’t find anything that suited my need I wrote a shellscript to convert the configs for me. Disclaimer: I have very little experience with scripting and if you want to use the script, do it at your own risk. The code is very ugly and can probably be more efficient but it works. If you find any errors please post them in comments. The script uses sed to replace text in the configs. You can find the script here. The only thing you need to modify is the newdir=”/home/reaper/INE/configs/Dynamips”. Change it to your homedir, I store the files for r1-r6 etc in INE/configs and the script creates the Dynamips dir.

Categories: CCIE, Scripts Tags: , , ,

INE workbool vol1 labs 2.1 – 2.8

January 21, 2011 Leave a comment

Went through the frame-relay labs today. I have never used frame-relay in real life so although it wasn’t very difficult to configure I think I need to go through some videos and documentation to understand the details of inverse ARP and LMI. I know that LMI tells the DTE about the PVC’s available (DLCI’s) and that inverse ARP or static mappings is needed for the layer 3 to layer 2 resolution. I just need to work out which combos are available and how the DTE knows when using inverse ARP which DLCI to use when sending traffic out.

Started labbing

January 20, 2011 2 comments

I have now oficially started to prepare for the lab. Yesterday I did my first rack rental via Graded labs. This worked flawlessly even though I am located in Sweden. Getting access to the equipment was easy and the command prompt was responsive. The only thing that’s a drag is that it takes so long to load the configurations via the control panel.

I am following this program from INE. I was able to finish 1.1 – 1.12 yesterday. I was a bit shocked first even at the first lab since you need to get the right feel for the diagrams and how to get the information from them that you want. I had to draw a new diagram to get the information I wanted. To do this “show cdp neighbor” and “show interface trunk” is very usable.

Feels very good to have started. I had a pretty good grasp of the labs during this session, it still is easy to forget easy things like creating a VLAN or so. One time I didn’t know the command to do a task and I then looked it up in  the DOC-CD. I will try to only use this as my source for configuring and not rely on google to search.