Tags: CCIE Data Center, CCIE DC
The first two CCIE Data Center Full Scale Labs are now available on the INE Members Site, with more labs currently in development. Click here for the direct link to them. These labs are included with any purchase of the CCIE Data Center Technology Lab Online Workbook, so if you currently have access to the Nexus and UCS Technology Labs, then you also have access to these new Full Scale Labs.
These labs use a separate topology from the Nexus and UCS Technology Labs, and this topology will be available for public rack rentals starting July 1st. In brief, this new topology is as follows:
- 1 x Nexus 7010 with M132XP and F132XP line cards
- 2 x Nexus 5548UPs
- 2 x MDS 9200s
- 2 x UCS 6248 Fabric Interconnects
- 1 x UCS B 5108 Blade Chassis
- 2 x UCS B200 M2 Blade Servers
- 1 x UCS C200 Rack Mount Server
- 1 x Catalyst 3750G
- Fibre Channel SAN
More specific details for the topology will be available when the rack rentals go public. Beta access to these racks will be running the week of June 24th. If you would like to beta test the new rack rentals and these full scale labs please send me an email at bmcgahan@ine.com. Please include in the email when your lab date is scheduled, as I will be prioritizing beta access based on people who have their lab exams coming up first.
These labs are similar in format to what you may already be familiar with as our “Volume 2″ labs for other tracks, however for simplicity both the Technology Labs and the Full Scale Labs are packaged together as one product, so you don’t have to buy them separately. In the near future you will also see our other tracks, e.g. R&S, Security, Voice/Collaboration, etc. go this route with a single lab “workbook” that covers both the individual technologies and combined technologies, and they will be delivered through our new online content system.
Each labs starts with a set of initial configurations and a logical topology:
Labs are broken down into four major sections, which are Data Center Infrastructure, Data Center Storage Networking, Unified Computing, and Data Center Virtualization. Each of these sections contains individual tasks which are assigned separate point values, similar to the format of the actual CCIE Lab Exam.
Solutions for each of the labs feature the configuration broken down on a task by task basis:
Verification sections guide you as to which show, debug, etc. commands you can run to ensure that the devices are configured properly. The verification sections also highlight the specific relevant output, and contain explanations about the specific configurations and outputs.
For UCS related tasks, screenshots of the UCSM GUI walk you step-by-step through the configuration of each of the required tasks, and include any relevant explanations as to why this solution was chosen over other possible solutions.
As previously mentioned, more labs will continue to be added to the Full Scale Labs section of the workbook, and will automatically show up in the table of contents when posted.
Tags: CCIE DC, full-scale labs
This evening it’s topping 100 degrees in Reno, NV where our rack rental equipment is located. I’m looking at the temperature in our new data center to see how it’s holding up in regards to the high exterior temperature. We have temperature sensors for each cage in our existing data center but so far only have a few installed in our new data center. I’m looking to see what the temperature is in a couple new cages in the new data center that don’t have a temperature senor installed yet. So how can we get the temperature without a dedicated senor and only Cisco devices installed?
Relatively newer Cisco hardware has the ability to display the numerical temperature values by using the show environment command along with polling via SNMP. For the ISR G1′s (1800, 2800, 3800) the internal-ambient, CPU, intake and backplane temperature (3845) and for the ISR G2′s (1900, 2900, 3900) the intake left(bezel), intake left, exhaust right(bezel), exhaust right, CPU and power supply unit temperature can be displayed/polled. I wanted to see the temperature of the management access server (3825′s) located at the top of each cage. I assumed I would just login and issue the show environment command to see the values. Good idea but I don’t want to check it manually every few hours.
I could just login to SolarWinds and see the temperature but as we network engineers know, network management applications aren’t that fun to use. You buy them, install them, swear they are the best thing since sliced bread, drool over the fancy graphs and then two months later you never log back into them unless something is wrong. Plus my normal thought process is to always try and do whatever possible via the IOS as it’s the most fun.
To start I’ll display the values via the show environment command and then poll the values using the SNMP via TCLSH and finally wrap it up with an EEM applet to log the values.
Row8Cage1AS#show environment
Redundant Power System is not present OR in standby mode.
SYS PS1 is present.
Type: AC
AUX(-48V) PS1 is absent.
Fan 1 OK
Fan 2 OK
Fan 3 OK
Fan Speed Setting: Normal
Alert settings:
Intake temperature warning: Enabled, Threshold: 55
Core temperature warning: Enabled, Threshold: 70 (CPU: 95)
Board Temperature: Normal
Internal-ambient temperature = 33, Normal
CPU temperature = 50, Normal
Intake temperature = 32, Normal
Voltage 1(3300) is Normal, Current voltage = 3300 mV
Voltage 2(5150) is Normal, Current voltage = 5153 mV
Voltage 3(2500) is Normal, Current voltage = 2525 mV
Voltage 4(1200) is Normal, Current voltage = 1215 mV
Nominal frequency
Row8Cage1AS#
Now I need to find the SNMP OID related to temperature for the platform. Note that SNMP has previous been setup on this router.
Row8Cage1AS#show snmp mib | in Temperature ciscoEnvMonTemperatureStatusEntry.2 ciscoEnvMonTemperatureStatusEntry.3 ciscoEnvMonTemperatureStatusEntry.4 ciscoEnvMonTemperatureStatusEntry.5 ciscoEnvMonTemperatureStatusEntry.6 c3gModemTemperature Row8Cage1AS#
I know it’s one of the ciscoEnvMonTemperatureStatusEntry values but which one? One should be the name, another should be the actual values and another should be the thresholds. Seems like Google should be used here but we know the values via the show environment command so we could poll them and see which one matches. We’ll learn more this way over using Google. We’ll start with the first one and walk down 99.
Row8Cage1AS#tclsh
Row8Cage1AS(tcl)#snmp_getbulk
usage: snmp_getbulk community_string non_repeaters max_repetitions oid [oid2 oid3 ...]
Row8Cage1AS(tcl)#
Row8Cage1AS(tcl)#snmp_getbulk XXXXXX 0 99 ciscoEnvMonTemperatureStatusEntry.2
{<obj oid='ciscoEnvMonTemperatureStatusEntry.2.1' val='Internal-ambient'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.2.2' val='CPU'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.2.3' val='Intake'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.1' val='33'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.2' val='50'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.3' val='32'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.4.1' val='70'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.4.2' val='95'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.4.3' val='55'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.5.1' val='0'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.5.2' val='0'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.5.3' val='0'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.6.1' val='1'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.6.2' val='1'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.6.3' val='1'/>}
Row8Cage1AS(tcl)#
Row8Cage1AS(tcl)#snmp_getbulk XXXXXX 0 3 ciscoEnvMonTemperatureStatusEntry.3
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.1' val='33'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.2' val='50'/>}
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.3' val='32'/>}
Row8Cage1AS(tcl)#
That was easy. The ciscoEnvMonTemperatureStatusEntry.3 is what we are looking for and ciscoEnvMonTemperatureStatusEntry.3.1 is a good value to use as it’s giving us the “internal ambient” temperature.
Row8Cage1AS(tcl)#snmp_getone
usage: snmp_getone community_string oid [oid2 oid3 ...]
Row8Cage1AS(tcl)#
Row8Cage1AS(tcl)#snmp_getone XXXXXX ciscoEnvMonTemperatureStatusEntry.3.1
{<obj oid='ciscoEnvMonTemperatureStatusEntry.3.1' val='33'/>}
Row8Cage1AS(tcl)#
Now how about having this value logged every 5 minutes so we can check back in the morning to see any changes overnight. An easy way to do this is to poll the SNMP OID using EEM and log the value returned using syslog if it’s above 1 degree which we know it will always be. This way EEM will always log the value to syslog.
Row8Cage1AS(tcl)#tclquit Row8Cage1AS#conf t Enter configuration commands, one per line. End with CNTL/Z. Row8Cage1AS(config)#event manager applet EEM_TEMP_MON Row8Cage1AS(config-applet)#event snmp oid ciscoEnvMonTemperatureStatusEntry.3.1 get-type exact entry-op gt entry-val 1 poll-interval 300 Row8Cage1AS(config-applet)#action 1.0 syslog msg "Row8Cage1AS Temperature $_snmp_oid_val" Row8Cage1AS(config-applet)#^Z Row8Cage1AS# Jun 7 06:53:42.011: %SYS-5-CONFIG_I: Configured from console by bdennis on vty0 Row8Cage1AS# Jun 7 06:54:12.012: %HA_EM-6-LOG: EEM_TEMP_MON: Row8Cage1AS Temperature: 33
We could convert the value to fahrenheit if we wanted by using this TCL expression: set temp [expr {9.0*$_snmp_oid_val/5.0+32.0}].
Of course using a network management application or script on a server would be easier but doing it via the IOS was fun. There are a few other ways to do this via the IOS and one being SNMP MIB BULKSTAT.
After a huge outcry by many on Twitter, Facebook and even a Change.org petition with currently almost 1,200 signatures gathered in less than a week, Cisco seems to have recanted their position, and will be allowing current CCIE Voice certified individuals, as well as those that certify before the February 14, 2014 switchover date, to migrate to the new CCIE Collaboration, simply by taking and passing the new CCIE Collaboration Written exam, which will debut on November 21, 2013.
Here is the official statement from Cisco.
To all of our CCIE Voice professionals. Here is a statement from Fred Weiller, Director of Marketing at Learning@Cisco:
“We are listening to the feedback from our valued CCIE community, and will be adjusting the CCIE Collaboration requirements. As a quick preview of the evolution of the CCIE Collaboration certification, a current holder of the CCIE Voice designation will now be able to migrate to a CCIE Collaboration credential by taking the CCIE Collaboration written exam only. We appreciate all of the great feedback and patience of the community while we update our webpages to reflect this change. We will be communicating further details about this modification as soon as possible.”
I put together a new playlist on our All Access Pass geared toward helping those that have decided to study primarily with the new CCIE Collaboration in mind. What will be included in this playlist is primarily new technologies, specifically those that haven’t yet been covered elsewhere in our CCIE Voice v3 products. As the weeks go on, I will continue to update this list with more and more videos covering new technologies in UC v9.1. Keep in mind that until I have this list complete with everything that is newer than UCM 7.x, that you can and should still study all of our CCIE Voice v3 products, as everything except for H.323 RAS/Gatekeeper will still be completely relevant and a very much needed base for your understanding. Once I complete this list, I will probably leave it up for those only wanting to learn the new stuff, like those of you that are already CCIE Voice v3 certified (if you certified on CCIE Voice v2 or v1, and haven’t really used it in a while, you’re going to want to watch all the material over again as quite a LOT changed from v2 to v3). Also, once I complete this playlist with all the new technologies, I will be recording a completely new top-to-bottom CCIE Collaboration Advanced Technologies Class, that will include everything. And of course, the workbook is being completely re-written as well in our new online format, which you can see a sample of here and here. This video playlist is meant to not only hold you over until then, but also to be able to release material to you in a timely, incremental fashion.
To start with, here is 4.5 hours of material on Call Control Discovery over Service Advertisement Framework (CCDoSAF). At a most basic description, this is dynamic routing of DNs over an enhanced version of EIGRP. It is much more detailed and complex than ILS (a newer built-in dynamic routing in UCM), but it is also far more powerful and allows for things like powerful SRST configurations as well as cluster-to-cluster PSTN failover, should the primary SIP trunk become un-usable. Cisco pushes ILS much more in production, but given my last statement, and the fact that no CCIE Lab exam has ever been that much interested in real-world design -favoring complexity over ease of configuration and good design- and the fact that it is very much on the new blueprint, I’d say you best get used to it now. Who knows, you might even like it once you see what it can do. Also, I recorded these videos on a UCM v8.5 cluster, but that shouldn’t matter as this feature hasn’t changed much since then.
The link for CCDoSAF on the UCM 9.1 Features and Services Guide can be found here.
The link for the playlist is here.
I start off with a general overview including a few slides just for concept, and then I move into hands-on demonstration of the following topic areas:
- CUCM Inter-Cluster Call Routing
- CUCM Call Routing with PSTN Failover
- CUCM Call Routing during SRST Fallback
- CUCM to CME Call Routing
- Inter-Cluster RSVP via SIP Preconditions
Enjoy.
Tags: Call Control Discovery, CCD, ccie collaboration, CCIE Video, CCIE Voice v4, SAF, Service Advertisement Framework, UCM 9.1
We recognize that there is new content in the new CCIE Collaboration blueprint. We also recognize that a change to the name of CCIE Voice is long overdue. Furthermore, we recognize that there is about an 80% overlap in content, and only about 20% worth of new material. To this end, we will not be requiring our CCIE Voice v3 customers to re-purchase any CCIE Voice track materials when follow Cisco in rebranding it to CCIE Collaboration.
What this means is that if you have purchased any CCIE Voice v3 product such as a workbook or video course download, you will get all of the upgrades to that product, even when we rebrand the title of our products to CCIE Collaboration to stay in keeping with Cisco’s new title. This goes for bootcamps as well, if you paid for and sat one our CCIE Voice v3 bootcamps, you are welcome to come back and re-sit for one of our CCIE Collaboration bootcamps just the same – in keeping with our Bootcamp Reseat Policy.
Tags: ccie collaboration, CCIE Voice v4, CCIE Voice Workbook, Video, voice bootcamp
9 Months and counting to get your CCIE Voice v3 finished before CCIE Voice v4 –err, I mean before CCIE Collaboration– debuts.
UPDATE:
See this newer blog entry before reading anything in this current post. Some of what’s below is accurate, but anything in this newer post usurps what may have been said here.
Important
Overwhelmingly, the question I have been asked over and over again in the short time since this was announced is: “If I get the CCIE Voice certification, will I lose it come February when the new CCIE Collaboration debuts?”. In short, No, you will not lose your CCIE Voice. Once you obtain the CCIE Voice certification, then provided that you maintain any CCIE Written exam every two years, you will still be called a CCIE Voice. If you take and pass both, then you will in fact be a double CCIE.
Overview
So we finally have our answer. Those of us who are already CCIE Voice – we are not grandfathered in as CCIE Collaboration. CCIE Collaboration is a completely new CCIE track. Voice had a good 10 year run. Now it’s time to get busy and move on with the new CCIE that’s in town. At least that is what Cisco is telling us. It actually makes very little sense why they have done this. The hardware blueprint is almost identical, with a few slight enhancements. Testing days don’t overlap. Cisco even calls it CCIE Voice v4 on a few docs. Why the full retirement vs. a simple name change is beyond me. CCIE R&S has gone through massive changes over the 20 years it’s been out (next year) -it clearly looks nothing like it did in 1994- and it’s still called the CCIE R&S. Security as well. CCIE Communications and Services looks nothing like the CCIE Service Provider of today, but a simple name change sufficed in that case. At any rate, let’s take a look as to what has changed.
Continue Reading
Tags: ccie collaboration, CCIE Voice, CCIE Voice v4, FAQ
I’m going through R&S Volume II Workbook for the final time before starting on the new R&S CCIE Version 5 labs. If you have any requests as to what you would like to see added to this final revision let me know.
The main focus of this final update will be the first 10 labs. My plan is that after the first 10 labs are done I’m going to go back and create a few different variants of these labs (one with more IP services, one with more IGP, one with just core topics, etc). Additionally I’m going to kill off the Troubleshooting porton and add in full scale Troubleshooting labs using our Troubleshooting racks (28 ISR’s and 4 switches).
Once this is released it will mean the Vol 3 and Vol 4 workbooks will be incorporated into the updated Vol 2. We will have two workbooks for the R&S version 4 blueprint at that point.
Update: I received a lot of questions as to the R&S version 5 update and this update. If you own the version 4 workbooks (Vol 2, 3 or 4) then you will receive this update free of charge. If you own any of the R&S workbooks (Vol 1, 2, 3 or 4) then you will be receive the R&S version 5 workbook when it’s released. All of the R&S version 5 material will be in a single workbook. We will start releasing the new technology focused labs for IOS 15.1T and 15.3T around July once this update is done.
Tags: ccie labs, CCIE R&S, ccie worbook
Edit: The INE party will be at the Hard Rock *Hotel*, not the Hard Rock *Cafe*.
I would like to thank the over 600 people who RSVP’d for INE’s 2013 Party at the Hard Rock Hotel in Orlando during Cisco Live. Registration is closed as of today for our party but I wanted to be the first to let everyone know about the grand prize giveaway we are doing. On top of the standard giveaway prizes (iPads, MacBook Airs, AAP Memberships, Bootcamps, etc) we are giving away a Harley Davidson 2013 XL 1200X Forty-Eight to a lucky winner during our party.
On top of the Harley Davidson 2013 XL 1200X Forty-Eight we’re having a second grand prize giveaway. Details on the second grand prize giveaway will be revealed after the drawing for the winner of the Harley Davidson at the party.
As a side note I don’t personally ride anymore but that bike really does look cool when it’s all blacked out.
Tags: ccie party, Cisco Live Party
Again, while not officially a blueprint change just yet, it’s clearly coming. To that end we have gone ahead and taken the initiative to add another CCIE Voice bootcamp based on the current v3 blueprint.
The new date and location will be from Oct 7 – 18 in our brand new Seattle/Bellevue WA classroom and you can now register for it here.
A quick check of the Cisco CCIE Voice testing seats just now showed that there are still plenty available – with nearly one available every day between now and November in SJC, RTP and Tokyo, and fewer, but still plenty in Brussels, Bangalore and Sydney.
Those will all go quickly, just like our bootcamp seats will, so book both soon!
Tags: bootcamp, ccie redacted, CCIE Voice








