Posts Tagged ‘cisco certification’
Cisco Home Lab FAQ | CCNA | CCNP
There is a real revolution today among CCNA and CCNP candidates. More and more of you are turning your back on “router simulators” and putting your own CCNA and/or CCNP Home Lab together, which is the best way to totally prepare to pass these tough Cisco exams.
I get hundreds of emails every month from CCNA and CCNP candidate who are putting together their first lab or adding to their existing one. I’m always glad to help with suggestions, and I thought I’d list five common questions regarding home labs here.
Do I have to spend thousands of dollars?
No! There are vendors all over the web, as well as on ebay, who sell used Cisco routers and switches to Cisco exam candidates like you every single day. They sell kits that consist of multiple routers and switches, as well as single routers and switches. You can add one piece at a time, or make a larger investment. You can spend just a few hundred dollars and put together a very nice lab.
What’s an “access server“?
It’s not what it sounds like. When I first heard the term, I thought of a typical server like we see in LANs every single day. An access server is actually a Cisco router that allows you to connect to multiple other routers and switches without continually moving the rolled cable around.
You don’t have to have an access server right away, but once you add a few more routers and switches to your lab, you’ll get tired of moving the rollover cable from console port to console port. (The console port is used to directly connect your PC to the router.) You’ll find an access server is easy to set up and configure, and will save you quite a bit of time.
What’s a “frame relay switch“?
Again, it’s not quite what it sounds like. A frame relay switch is not a switch; it’s a Cisco router that has been configured to serve as a frame relay provider in your home lab.
This is very close to being a “must” for your home lab. You don’t need it right away if your budget allows for only one or two routers to get started. To truly practice frame relay map statements and see the effect of different frame relay statements, you’ll need a Cisco router to serve as a frame switch. Again, the configuration is easy, and having a frame relay switch in your home lab will give you practice that will be invaluable on exam day.
Do I need a switch? What switch should I buy?
I recommend you get at least one switch in your lab; two if your budget allows. Make sure that at least one of your switches has an IOS; 1900 switches do not have an IOS and while they’re better than not having a switch, they’re not going to give you the practice you need to pass the CCNA and CCNP. Look to the 2500 family of switches.
I want to build my CCNP lab and then use it for the CCIE. What should I buy?
It’s impossible to tell what technologies and devices will be on the CCIE lab, even if you zip through the CCNP and then take the IE within six months. Cisco refreshing the CCIE lab blueprint every six months, and different technologies can be taken off the lab. While Cisco gives plenty of notice that these changes are going to take effect, it can be a big pain in your wallet if Cisco takes something off of the exam after you spend a bundle to add it to your lab.
As an example, Cisco is in the process of removing ISDN and ATM from the CCIE Routing & Switching lab. If you bought an ATM switch for your lab, you’ve got an expensive paperweight right now. While you may be able to practice your core protocols on a CCIE home lab, it’s going to be difficult and expensive to keep your home lab totally current with the Cisco lab blueprint.
The decision to put together your own CCNA or CCNP home lab is the best decision you can ever make – and I speak from experience. With home labs becoming less expensive every day, it’s becoming more affordable as well. Start looking into used Cisco router vendors today (ebay is a great place to find some vendors, as is Google), and you can be practicing on REAL Cisco routers and switches soon – and be totally prepared for CCNA and CCNP exam success.
Possibly related posts: (automatically generated)- Related posts on Access Server
- DPM agent installing Error 337 « Ingazat Information Technology …
- Google Dorks « Kid zoom!
- Cisco Certification: Building Your Home Lab, Part II | Sachiko …
- Related posts on ccie
- INE Blog Redesign | CCIE Blog
- Juniper vs Cisco. « Gungajim’s Blog
Route Summarization
Preparing to pass the BSCI exam and earn your Cisco CCNP? Route summarization is just one of the many skills you’ll have to master in order to earn your CCNP. Whether it’s RIP version 2, OSPF, or EIGRP, the BSCI exam will demand that you can flawlessly configure route summarization.
Route summarization isn’t just important for the BSCI exam. It’s a valuable skill to have in the real world as well. Correctly summarizing routes can lead to smaller routing tables that are still able to route packets accurately – what I like to call “concise and complete” routing tables.
The first skill you’ve got to have in order to work with route summarization is binary math more specifically, you must be able to take multiple routes and come up with both a summary route and mask to advertise to downstream routers. Given the networks 100.16.0.0 /16, 100.17.0.0 /16, 100.18.0.0 /16, and 100.19.0.0 /16, could you quickly come up with both the summary address and mask? All you need to do is break the four network numbers down into binary strings. We know the last two octets will all convert to the binary string 00000000, so in this article we’ll only illustrate how to convert the first and second octet from decimal to binary.
100 16 = 01100100 00010000
100 17 = 01100100 00010001
100 18 = 01100100 00010010
100 19 = 01100100 00010011
To come up with the summary route, just work from left to right and draw a line where the four networks no longer have a bit in common. For these four networks, that point comes between the 14th and 15th bits. This leaves us with this string: 01100100 000100xx. All you need to do is convert that string back to decimal, which gives us 100 for the first octet and 16 for the second. (The two x values are bits on the right side of the line, which aren’t used in calculating the summary route.) Since we know that zero is the value for the last two octets, the resulting summary network number is 100.16.0.0.
But we’re not done! We now have to come up with the summary mask to advertise along with the summary route. To arrive at the summary route, write out a mask in binary with a “1″ for every bit to the left of the line we drew previously, and a “0″ for every bit to the right. That gives us the following string:
11111111 11111100 00000000 00000000
Converting that to dotted decimal, we arrive at the summary mask 255.252.0.0. The correct summary network and mask to advertise are 100.16.0.0 252.0.0.0.
For the BSCI exam, emphasis is put on knowing how to advertise these summary routes in RIPv2, EIGRP, and OSPF. For RIP v2 and EIGRP, route summarization happens at the interface level – it’s not configured under the protocol. On the interface that should advertise the summary route, use the command “ip summary-address”. Here are examples of how the above summary route would be configured on ethernet0 in both RIPv2 and EIGRP.
R1(config-if)#ip summary-address rip 100.16.0.0 255.252.0.0
R1(config-if)#ip summary-address eigrp 100 100.16.0.0 255.252.0.0
The main difference between the two is that the EIGRP command must specify the AS number – that’s what the “100″ is in the middle of the EIGRP command. Since RIPv2 does not use AS numbers, there’s no additional value needed in the configuration.
For OSPF, the commands differ. If you’re configuring inter-area route summarization, use the “area range” command. The number following “area” is the area containing the routes being summarized, not the area receiving the summary.
R1(config)#router ospf 1
R1(config-router)#area 1 range 100.16.0.0 255.252.0.0
If you are summarizing routes that are being redistributed into OSPF, use the summary-address command under the OSPF routing process on the ASBR.
R1(config)#router ospf 1
R1(config-router)#summary-address 100.16.0.0 255.252.0.0
I speak from experience when I tell you that practice makes perfect on the BSCI exam, especially with binary and summarization questions. The great thing about these questions is that there are no grey areas with these questions – you either know how to do it or you don’t. And with practice and an eye for detail, you can master these skills, pass the exam, and become a CCNP. Here’s to your success on these tough Cisco certification exams!
Incoming search terms:Don’t Depend On Practice Exams to Excel in Cisco Certification
Ask a CCNA candidate how they’re preparing for exam day, and you’ll get different answers. Different books, different websites, different practice exams.
One trend I’ve noticed is that some candidates answer the question by reeling off the number and names of the practice exams they’ve purchased. Basically, the candidate is studying by taking a lot of practice exams. And in some cases, I mean a lot of them.
The intent of this article isn’t to slam practice exams. I do want to address this trend among Cisco certification candidates of purchasing as many practice exams as they can find, attempting to pass the CCNA exam by “brute forcing” it, as one Cisco employee recently said.
I have nothing against practice exams. I sell flash cards that serve as a practice exam, if that’s the way the candidate wants to use them. However, you can’t be dependent on them to pass your exams. As I tell students every day, “When you’re in front of a rack of routers, there is no A, B, C, and D choice. You’ve got to know what you’re doing.”
If practice exams are a candidate’s primary tool for exam preparation, though, they’ll most likely be disappointed on exam day. The current Cisco CCNA exams are designed to weed out those who have memorized a chart or two there is a premium not only on knowledge, but the ability to apply that knowledge. Just taking one practice exam after the other will not develop this skill.
Simulators are fine to a certain extent as well, but don’t become dependent on them. The simulators I’ve seen don’t really let you make mistakes in your configuration, and it’s when you have to fix your own mistakes that you truly learn what’s going on.
Keep the long-range view when preparing for your CCNA exams. You’re not just studying for exam day you’re laying the groundwork for a successful career. The study you do for your CCNA exam will be some of the most important study you ever do, since all the work you do for future certifications like the CCNP (and yes, the CCIE!) are based on the foundation you’re building today.
Make it a solid foundation. Stick to a well-rounded study plan, using books, practice exams, and routing equipment, and you’re on your way to success in the Cisco field.
CCVP Certification
I hardly have to tell you how important voice technologies are in today’s networks; what we all need to keep in mind to maximize our career potential is how important knowing voice is going to be tomorrow.
We’ve always got to look forward in IT, both in our work and out studies. Cisco, always the pioneer in technical certifications, now offers a Cisco Certified Voice Professional certification that is gaining a lot of attention from IT professionals looking to add to their skills and their resume.
Cisco’s CCVP track is a rigorous five-exam track that requires you to earn your CCNA (Cisco Certified Network Associate) certification before getting started. The five exams cover a myriad of topics – they’re not giving this one away! Here are the exam numbers and codes you’ll need to know to register for the exams:
642-642 Quality Of Service (QOS)
642-432 Cisco Voice Over IP (CVOICE)
642-425 IP Telephony Troubleshooting (IPTT)
642-444 Cisco IP Telephony (CIPT)
642-452 Cisco Voice Gateways (GWGK)
Many newly-minted CCNAs wonder if they should pursue this or the Security Professional certification immediately after getting their CCNA. I recommend that a new CCNA pursue and achieve the CCNP before going after these more-specialized certifications. While it is not required by Cisco, the routing and switching knowledge your will acquire on your way to the CCNP will be invaluable to your career as well as being helpful with your CCVP pursuits.
Besides, these certifications won’t be going anywhere soon. Think of how valuable you will be with a CCNP, CCVP, and CCSP!
Recertifying Your CCNA and CCNP | Cisco Recertification
Once you get your CCNA and CCNP, you can’t just rest on your accomplishment. You’ve got to continue to study and add to your skill set – and then prove to Cisco you’ve been doing just that by recertifying.
Cisco recertification sounds like a pain, but it’s actually one of the best things to ever happen to computer certification, and it helps your career as well. One trap many LAN and WAN personnel fall into is that they fail to keep up with changes in technology, and if they happen to be laid off or want to change jobs, they’re unable to because they didn’t keep their skill set up.
Cisco’s recertification policies ensure that if you want to keep your CCNA, CCNP, or one of the other valuable Cisco certifications, you’ve got to take a Cisco recertification exam.
As of November 2005, to recertify as a CCNA, you need to pass either the current CCNA exam, ICND exam, or any 642 professional level or Cisco Qualified Specialist exam. (This does not include Sales Specialist exams.) Passing a CCIE written qualification exam also recertifies you as a CCNA. CCNAs are valid for three years.
For the CCNP, you need to pass the 642-891 Composite exam, a CCIE written qualification exam, or BOTH the BSCI and BCMSN exams (642-801 and 642-811, respectively.) CCNP certifications are valid for three years.
As you can see, you’ve got quite a few options either way. The one classic mistake you must not make is waiting too long to begin preparing for the exams, and give yourself a little leeway just in case you don’t recertify the first time around. Once the deadline passes, your certification is gone, and in the case of the CCNP that means taking all the exams again.
As a professional, it’s your responsibility to keep up with changes in the Cisco certification world, and this includes changes in the recertification program. Make a point of visiting the “Learning And Events” section of Cisco’s website regularly to look for changes in the certification program. And while you’re there, you just might see another cert that catches your eye!
Incoming search terms: