The link below is an excellent read from INE that you should really take the time to read.
I am working on a post about the OSPF forwarding address, as well as some MPLS stuff. Stay tuned
I just wanted to get the link out there.

The link below is an excellent read from INE that you should really take the time to read.
I am working on a post about the OSPF forwarding address, as well as some MPLS stuff. Stay tuned
I just wanted to get the link out there.

The new CCIE lab version is in effect. Called version 4.
The first guy on OSL (Online Study List) has been through it, and there’s certainly some changes.
First up, is the annoying OEQ (Open Ended Questions), these were on the retired version 3 as well. Lots of people have issues with them, so I wont bother commenting on them other than saying they scare me too
Second is the trouble-shooting section. According to feedback, this is a doable task, but not easy by any means. You are assigned trouble-shooting tickets which you have to resolve. Apparently its some kind of new user-interface which will be interesting to hear more about. Apparently between 6-12 tickets will be assigned to you.
Third is the lab section. This is as we know it, but scaled to be only 5,5 hours in length to give time for trouble-shooting section. Apparently the passing mark is now 80 instead of 70 which is of some concern. This is the 2nd most interesting thing for me to hear more about… The number one being:
You dont have lab workbooks in physical format
This is really bad if you ask me. To switch back and forth on the screen between your topology diagrams is a nightmare. It will certainly take out a good portion of your time, to recreate stuff on paper. I know that apparently the labs have large monitors, but still, a hassle none the less.
Another member of OSL is up for tomorrow. I really hope he pass it. I also hope he will provide some more insight into the new version of the CCIE lab.

This small post will be about a little feature called “views”.
This feature is used to create a sort of profile, for which you could have a certain user do certain things. As you might know, the only way to do this previously was to use the priviledge level command. This command would in effect set the command to be available at a certain priviledge level. This can be very cumbersome to maintain, especially if you work in a large enterprise environment or a service provider.
I will use an example of such a scenario to demonstrate the goal of the view feature. First off, a very small topology to ease our life a bit when trying out different commands:

View Topology
First of, a small config snippet on R1 to allow the telnet from R2:
R1(config-if)#line vty 0 4Check out that it works before we start anything:
R2#telnet 192.168.12.1Okay, great! we have a working telnet session.
Scenario:
Lets imagine that we work in an enterprise where we have multiple network folks around. Some of them are senior engineers, others are junior engineers. We might have a company policy that states that junior engineers are only allowed to login and view a routers interface status, view the local logging buffer and bounce the interfaces. Nothing else, nothing more.
Back in the day, you would have to create a set of rules governing your policy regarding what priviledge level you wanted certain commands in. Administratively this is a nightmare.
Lets accomplish the above criteria using views!
First of, AAA is required in order to use views, lets enable it:
R1(config)#aaa new-modelSecondly, to start off with, you need an enable password:
R1(config)#enable secret blahThen you enable the root view using the enable password:
R1#enable view rootNow, what we can do is to issue commands to the parser. Lets create a new profile:
R1(config)#parser view JuniorSo, we created the Junior view. Lets assign a password to enter this new view:
R1(config-view)#secret imajuniorGreat. Now lets see what the effect is, if we telnet into R1 from R2:
R2#telnet 192.168.12.1Oops! Remember that we enabled AAA on R1. This means that we must now have a username/password combination. Lets fix this on R1:
R1(config-line)#Lets try R2 again
:
Cool. We are onto the router. Now this is where the views come into play:
R1>ena view JuniorNow we are logged into the router, with the view Junior. Lets see what commands are available to us:
R1#?Not a whole lot
Lets add some functionality so the Junior Engineer can actually get some work done:
R1(config)#parser view Junior R1(config-view)#commands exec include show interfacesWhat this means, is that from the exec level prompt, the command “show interfaces” is allowed.
Lets try again from R2:
R1#show interfacesGreat! that was one of our objectives. Now for the remaining two (show local logging and bounce interfaces):
R1(config-view)#commands exec include show logging R1(config-view)#commands exec include configure terminal R1(config-view)#commands configure include interface R1(config-view)#commands interface include shutdownNext, include the command “show logging” from the exec prompt. Allow us to use the command “configure terminal”, again from the exec prompt. Now from the configure prompt lets be able to use the interface command. This command needs both the “interface” by itself, and also the interface you will allow it to include commands under. At the interface level, we want to include both a shutdown and a no shutdown command.
And now, lets verify it:
R1#sh loggingGreat! thats it. We can now create any username/password combination and tell the Junior engineer to use the view Junior in able to do the tasks at hand.
Please note that this is in my opinion a pretty buggy feature at times. For some commands, you must log out and back in again, and others you dont need to. It seems inconsistent sometimes, so use with care.
Hope that sheds some light on the View feature. Take care!

I want to show the behavior of the uRPF feature. Unicast Reverse Path Forwarding.
Basically this is a security feature, to prevent spoofed source IP address (very basic). Its function is to prevent a router from processing a packet comming from an unknown source/wrong interface.
So there are two modes of uRPF: Loose and Strict.
Loose Mode: This mode says, that as long as we have a route to the source IP address, its okay to route/process this packet. It doesnt matter what interface the packet comes in on. Please note, that default, it does not accept a default route as a valid return path. We will change this behavior later on.
Strict Mode: This mode will further enforce the uRPF check, so that the incomming interface of the packet, must be the correct one, as dictated by the routing table.
This is the topology I will use to demonstrate the functionality:

uRPF Topology
This topology is set up, so that R1 will have the IP address of .1 in the end on each subnet, R2 will have .2 and finally R3 will have .3. A loopback on each of the spoke routes have been set up with the ip address of 10.0.0.100/32. This is the IP address we will use to “spoof”. No routing protocols will be in effect at all. Output will be from “debug ip packet”.
First, lets ping the R1 IP address of 192.168.12.1 from R2’s loopback interface, without any configuration on s0/0 on R1:
R1#As can be seen, R1 actually receives the packet and tries to route it accordingly. Since there’s no route to return the traffic its unroutable. The important thing to remember here, is that the router will try to route the traffic. Something we dont want in the case of a spoofing attack.
Now we enable the uRPF loose mode feature on s0/0:
R1(config-if)#ip verify unicast source reachable-via anyWe try to ping from R2 again:
R1#Nothing at all. R1 does not have any route to reach the source IP address of 10.0.0.100 address, so it wont even try to route it! great!
Lets try to make a route back to R2 from R1 and do a ping from R2 to R1 again:
R1(config)#ip route 10.0.0.0 255.255.255.0 192.168.12.2 *Mar 1 00:05:30.307: IP: tableid=0, s=10.0.0.100 (Serial0/0), d=192.168.12.1 (Serial0/0), routed via RIBEverything works out! We have a route match, and uRPF allows the traffic to pass through.
If we now enable uRPF on s0/1 on R1, and ping from R3:
R1(config)#int s0/1Watch R2:
*Mar 1 00:08:30.603: IP: tableid=0, s=192.168.13.1 (Serial0/0), d=10.0.0.100 (Loopback0), routed via RIBWhat happens here, is actually the spoof attack itself, even though we have loose mode on. R3 pings to R1 with the source of 10.0.0.100. R1’s uRPF checks if it has a route. It does! so everything is fine as far as uRPF is concerned. Now we route it accordingly, which means sending it to R2! By doing this manipulation we are actually sending traffic to R2, from R3. This is certainly not what we want.
Now, instead of using the loose mode, lets use the strict mode and try pinging from R3 again:
R1(config-if)#ip verify unicast source reachable-via rx R1#Nothing! since the traffic from R3, with the IP address of 10.0.0.100 does not match the interface where R1 expects it, it drops it immediately, and does not try to route it at all! We have, by using the strict mode, prevented the spoofing attack.
Allow-Default:
Lets delete the route we created on R1, and install a default route instead:
R1(config)#no ip route 10.0.0.0 255.255.255.0 192.168.12.2 R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.12.2Pinging from R2 to R1 now doesnt succeed! Remember that by default, default routes are not considered valid for uRPF check. We can disable this by using the “allow-default” parameter:
R1(config-if)#ip verify unicast source reachable-via any allow-default R1#And we have reachability again
I hope this little post has shed some light on the uRPF command. A little overseen, but pretty cool feature.

The role of the designated router has been bothering me every now and again. I always end up forgetting its role, where its present, and how its elected. So i thought i would post some info on it, maybe to keep my own mind fresh
In any lan environment, a designated router will be elected by PIM (Protocol Independent Multicast). Its role is to handle joins in a sparse-mode environment, and if IGMP version 1 is used, to elect the querier of the lan. If version 2 (or 3) is being used, the lowest IP address will be the lan querier.
The DR will also be the one that sends a source-register message to the rendevouz point, on behalf of a source.
By default, your DR will be the one with the highest IP address. In newer IOS releases, a priority can be set on the interface level to change which one will be the DR. The command is “ip pim dr-priority <priority-level>”. Default priority is 1.
I hope this small post will provide some useful information, at least for reference. I certainly hope it will for me.

I have just landed a new job. It is a networking company, doing alot of security, ip telephony and general network consulting. The company can be found here. It is called NetIP. The company is located about 30km from where I live, so a little drive in each direction is nessecary. I will start Thursday the 1st of October. I am looking forward to it. My last day at the previous job was yesterday, and it went by okay. Ofcourse its sad to loose some coworkers, some of which i have been working with for close to 9 years. But life goes on.
The job thing has taken up quite alot of time from my studying routine. I will need to get back on track again as soon as possible. Hopefully Narbik Kocharian will announce a date for the next bootcamp in the UK within the next couple of weeks. The new work is very supportive of my effort to attain the CCIE, which im very pleased with, so when the bootcamp opens up for registration, i will take a week off (on my own dime though) and fly out to the UK to attend the bootcamp. Right now though, its all VOD from IPexpert. Its been really good so far.
I have managed to get a full replication of the IPexpert workbook lab going. Unfortunally im waiting for a new internet connection to be installed. Until then I cant access it from the global internet.
I will try and make a post about BGP regular expressions. They are very interesting, but also very confusing at the same time, so when i have un-confused them myself, i will try and explain it to others
Until then, take care!!

Its been a while, and for that im sorry.
I have been very busy watching VOD (Video On Demand) classes from IPexpert. Scott Morris has done these videos, and he is pretty good at it in my opinion. There are alot of new stuff as well. Things such as Multilink Frame-relay (FRF.16) and PPP over frame-relay. IRB (Integrated Routing and Bridging) was also new for me. Basically you can extend your L2 over a L3 ip routed network. All very interesting stuff.
I have also spent quite some time picking up my physical exercise plans. I am beginning to notice a difference in my attention span and general tiredness. Attention span going up while tiredness going down. This is good
Last time, i wrote about putting together a home lab compared to renting lab time, and what options you would have. I would like to give some more information on this here.
As far as i see it, first of all you need to figure out what sort of budget you are working on. Using rack-rental is more flexible budget wise, in that you can purchase the time you need, and nothing more. This will probably save you in the long run. The big drawback of this solution is that you can only use your allotted time on the rack. That means that if you have a slot for 8 in the evening until midnight, thats when you will practice your technologies. If you dont feel like it, or are not prepared to do it at that time, you waste the slot you paid for. You cant study something, and then wanting to test it out quickly, right there and then. As mentioned, this is a big drawback, at least for me.
The other option is to build your own home lab, where you can practice everything, and physically touch it! (at least some of it). This option is far more expensive no matter how good you are at finding the right stuff and the right price.
On a side note, if Cisco really wanted to help students out, they should have a rental plan in place. You would be able to rent the physical gear from them for a period of time, and return it after you are done with it. Ofcourse there are some costs involved in this, but it would mean you could get physical access to the exact gear thats being tested on the lab exam.
I chose to build my own lab. The main reason for this, is that i like to have gear available to me when i need it, and not go about selecting when i think i might need it. The last piece of this puzzle should arrive any day now. Will elaborate more when i get everything running.
After this, I need to relocate the lab to a different location, since my internet connection at home will be down for a while. I will then have access to the entire rack remotely at any time.
Right now… back to VOD.

So a simple concept right?
Tunnel your L2 protocols through a switched network? I agree, but as usual, i put more complication into it. Basically a VOD from IPexpert on L2protoco-tunnel used to create a trunk connection. In the video it is shown that you can create a trunk by using a l2protocol-tunnel (STP in particular). Through extensive testing and discussion on OSL, this is possible, but you will only get the native-vlan traffic through.
I will assemble my thoughts on this and elaborate with some diagrams shortly. But the conclussion will still be the same. If you need to pass data from more than one vlan over a switched SP network, use Q-in-Q. Use l2protocol-tunnel to pass the L2 protocols, CDP, STP and VTP, but dont rely on it for anything else.

I am getting used to hearing Scott Morris’s voice by now
I am doing Video On Demand classes at the moment. Im starting from the beginning and going through them one by one. Lots of new things to learn and study. Today for example i learned about “real” bridging. Since its not on any blueprint for CCNA, CCNP or even CCIE R&S, its not something ive come across before. It is a pretty cool feature. In the VOD, it was configured over frame-relay over a certain DLCI. You could then have the same subnet on both sides and do ARP request (Well, any ethernet (ieee) stuff) and get a response, and then transfer data.
I set up the same scenario between two routers just running plain old HDLC (Cisco’s version
). It worked like a charm. Its good to have those commands under my belt, just in case.
Next up is switching, which im really looking forward to, but before i hit those, im going to do a few more practice labs on CHAP and PAP authentication, as well as EAP. It was an eye-opener about one-way authentication and how a basically non-configured router would still respond to auth requests, so i better explore this some more.
Most of today was spent setting up cable trays at appartment 2 as its affectionally called. This is a real hazzle, and one im not too keen on as we are only having this appartment until january which makes it seem like such a waste. Anyways, it looks awesome, and the job is well finished, which i really like. Nothing sucks like having cables floating around.
Will be back shortly, now for the last night with girlfriend before heading back tomorrow…