Tag Archives: labs

Learning Product Review – Cisco Learning Labs for CCNP SWITCH v2.0

I was very excited to check out the Cisco Learning Labs for CCNP SWITCH v2.0 50-hour 180-day Labs. So many students are looking for SWITCH practice since GNS3 falls short here (in my opinion) and sometimes we do not have access to the horsepower required for Cisco VIRL. Or more accurately for me, I do not feel like making my VPN connection to my central VIRL box. 🙂

Lab Product Overview:

So here is the premise – for a price tag of $85 (at this time), we get 50 hours of access (over a maximum of 180 days) to the routers and switches we need to practice for SWITCH. We also get plenty of lab exercises to follow if we are not feeling creative enough to create our own. If my math is correct – this is $1.70 per hour of lab time. That is a screaming deal. The rack rental vendor I sometimes use is $10 for 3 hours. I thought that was a deal before this came along!

Purchasing the Labs:

The purchase was painless, although my password was not synced in the lab site to the Cisco.com site. I took care of this with a simple password reset procedure that was available. To purchase, just use this link – Cisco Learning Labs for CCNP SWITCH v2.0 50-hour 180-day Labs. For some reason the price shows as $100 from that link, but I believe you get a discount once you log in.

The Lab Experience:

Logging in provides a friendly interface that shows the labs and provides information on how much time I have remaining.

Lab Interface

NOTE: The picture above is not showing all of the many labs that are available…that was cut off.

Choosing Start Lab brings you to a topology map complete with clickable router and switch images. Click on one of these and a terminal window appears ready for you to follow the lab steps that are also provided.

The Lab

I was thrilled to see that I could not tell this equipment from live gear. In fact, I had no idea what I was dealing with from a technology standpoint. The devices sure seemed “real”, which is exactly what you want in your practice lab. Out of intense curiosity I ran a show version to learn that this is indeed powered by virtual images (Cisco IOS on UNIX for the device I checked).

Recommendations:

I would be sure to check the requirements for these labs, of course. I was on a Mac and tested them in Safari and Google Chrome. They worked flawlessly in each browser. Just be sure you are on equipment they support and obviously your Internet connection is stable. Also, I would recommend you have a printer handy. Even though your instructions pop out, I am guessing that freshers would want to print out instructions to go over them very carefully as they sit at their command line windows.

Enjoy this incredible learning opportunity at an incredible price tag! Bravo Cisco!

The Modular Quality of Service CLI (MQC) Review – Class Maps

Ant_Keith_QoS

The MQC is king when it comes to almost all of our QoS configurations these days. Let’s review the first step – the Class Map step.

The Class Map step is where we take traffic forms and place them into pails. Notice I am avoiding the term bucket because we use that already for another QoS topic :-).

When you are learning your QoS configs, be sure to use context-sensitive help every step of the way. This helps you discover what is possible, and helps you avoid potential pitfalls and gotchas.

Well, let’s fire up Cisco VIRL and examine these important structures in great detail…

iosv-1(config)#class-map ?
WORD           class-map name
match-all      Logical-AND all matching statements under this classmap
match-any    Logical-OR all matching statements under this classmap
type                Configure CPL Class Map

We begin by examining the options after our class-map command to create the class map. Notice we can go right to naming it, or, most importantly, selecting whether we must match ALL of the criteria that follow or ANY of them in order to have the traffic fall within this pail. There is a default here, but I can never remember what it is, so I always pick match-all or match-any. Notice also we can configure a type of class map. This is because the MQC has been extended and called the Modular Policy Framework and can now do more than just QoS for us. Let’s create a match-any class map named CM_TEST.

iosv-1(config)#class-map match-any CM_TEST
iosv-1(config-cmap)#

Now we are in class map configuration mode where we use the match command to match on a ton of options – here are just some:

access-group                   Access group
any                                      Any packets
application                      Application to match
cac                                      Call Admission Control
class-map                        Class map
cos                                      IEEE 802.1Q/ISL class of service/user priority values
destination-address    Destination address
discard-class                  Discard behavior identifier
dscp                                   Match DSCP in IPv4 and IPv6 packets

Note that while we can use QoS to mark traffic, if our traffic is already marked, we can match on the Layer 2 or Layer 3 markings easily in the class map.

Here is the rest of my sample configuration based on these facts:

iosv-1(config-cmap)#match access-group 100
iosv-1(config-cmap)#match protocol icmp

The match access-group 100 matches an ACL (not shown) that specifies traffic we want, and the match protocol ICMP ensures that Network Based Application Recognition (NBAR) is at work to automatically recognize any ICMP traffic.

Remember, thanks to our match any logic, this class map will gather traffic that matches either of these or both!

I hope you enjoyed this review of class maps. Obviously the next post will review our second step of the MQC process – policy maps! Here is where we take action on the traffic that we have matched.

Questions, comments, hate mail? Use the comments below! 🙂