Saturday, January 31, 2009

Cisco Ccna Certification Exam Tutorial The Ospf Rid

Writen by Chris Bryant

OSPF is a major topic on your CCNA exam, as well it should be. OSPF is a widely-used WAN protocol, and you need to learn the fundamentals before moving on to more complicated configurations. One such detail is the OSPF Router ID, or RID.

The RID is the dotted decimal value by which other OSPF routers will identify a given OSPF router. There are some interesting defaults for this value, and a command you should know to hardcode the RID. You had also better know what has to happen for this command to take effect, so let's take a more detailed look at the OSPF RID.

In this example, R1 has an adjacency with R2 and R3 over the 172.12.123.0/24 frame network. R1 is the hub, with R2 and R3 as the spokes. No other interfaces are OSPF-enabled on any of the routers. Running show ip ospf neighbor on R1, we see some unusual values under "Neighbor ID", which is another name for the OSPF RID.

R1#show ip ospf neighbor

Neighbor ID Pri State Dead Time Address Interface

3.3.3.3 0 FULL/DROTHER 00:01:57 172.12.123.3 Serial0

2.2.2.2 0 FULL/DROTHER 00:01:57 172.12.123.2 Serial0

Notice the Neighbor ID of each remote address is the loopback address. How can that be if they're not OSPF-enabled?

When determining the Router ID (RID) of an OSPF-enabled router, OSPF will always use the numerically highest IP address on the router's loopback interfaces, regardless of whether that loopback is OSPF-enabled.

What if there is no loopback? OSPF will then use the numerically highest IP address of the physical interfaces, regardless of whether that interface is OSPF-enabled.

BOTTOM LINE: An interface does not have to be running OSPF to have its IP address used as the OSPF RID.

The OSPF RID can be changed, but it requires a restart or to reinitialize the OSPF routing process. Use the router-id command to change the default RID of each router as shown, and clear the OSPF process to do so.

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#router ospf 1

R1(config-router)#router-id 11.11.11.11

Reload or use "clear ip ospf process" command, for this to take effect

R1#clear ip ospf process

Reset ALL OSPF processes? [no]: yes

1d05h: %OSPF-5-ADJCHG: Process 1, Nbr 3.3.3.3 on Serial0 from 2WAY to DOWN, Neighbor Down: Interface down or detached

1d05h: %OSPF-5-ADJCHG: Process 1, Nbr 2.2.2.2 on Serial0 from 2WAY to DOWN, Neighbor Down: Interface down or detached

After entering the router-id command, the router console informed you that you have to reload the router or reset the OSPF processes for this to take effect. You enter the clear ip ospf process command to do this. Notice that when you're asked if you really want to do this, the prompt is "no"? That's because all the OSPF adjacencies on this router will be lost and will have to begin the process again. That's OK on a practice rack, not good in a production network. Don't use that one at work.

The OSPF RID is not a complicated concept, but the fact that an interface doesn't have to be OSPF-enabled in order to have its IP address act as the RID takes some getting used to. And remember - when the router or switch asks you a question and the prompted answer is "no", take one step back and make sure you really want to do what you're about to do!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide from The Bryant Advantage!

Friday, January 30, 2009

Cisco Certification The Joy Of Hex

Writen by Chris Bryant

Cisco certification candidates, particularly CCNA candidates, must master binary math. This includes basic conversions, such as binary-to-decimal and decimal-to-binary, as well as more advanced scenarios involving subnetting and VLSM.

There's another conversion that might rear its ugly head on your Cisco exam, though, and that involves hexadecimal numbering.

Newcomers to hexadecimal numbering are often confused as to how a letter of the alphabet can possibly represent a number. Worse, they may be intimidated – after all, there must be some incredibly complicated formula involved with representing the decimal 11 with the letter "b", right?

Wrong.

The numbering system we use every day, decimal, concerns itself with units of ten. Although we rarely stop to think of it this way, if you read a decimal number from right to left, the number indicates how many units of one, ten, and one hundred we have. That is, the number "15" is five units of one and one unit of ten. The number "289" is nine units of one, eight units of ten, and two units of one hundred. Simple enough!

Hex numbers are read much the same way, except the units here are units of 16. The number "15" in hex is read as having five units of one and one unit of sixteen. The number "289" in hex is nine units of one, eight units of sixteen, and two units of 256 (16 x 16).

Since hex uses units of sixteen, how can we possibly represent a value of 10, 11, 12, 13, 14, or 15? We do so with letters. The decimal "10" is represented in hex with the letter "a"; the decimal 11 with "b"; the decimal "12" with "c", "13" with "d", "14" with "e", and finally, "15" with "f". (CCNA candidates will remember that a MAC address of "ffff.ffff.ffff" is a Layer 2 broadcast.)

Practice Your Conversions For Exam Success

Now that you know where the letters fall into place in the hexadecimal numbering world, you'll have little trouble converting hex to decimal and decimal to hex – if you practice.

How would you convert the decimal 27 to hex? You can see that there is one unit of 16 in this decimal; that leaves 11 units of one. This is represented in hex with "1b" – one unit of sixteen, 11 units of one.

Converting the decimal 322 to hex is no problem. There is one unit of 256; that leaves 66. There are four units of 16 in 66; that leaves 2, or two units of one. The hex equivalent of the decimal 322 is the hex figure 142 – one unit of 256, four units of 32, and 2 units of 2.

Hex-to-decimal conversions are even simpler. Given the hex number 144, what is the decimal equivalent? We have one unit of 256, four units of 16, and four units of 4. This gives us the decimal figure 324.

What about the hex figure c2? We now know that the letter "c" represents the decimal number "12". This means we have 12 units of 16, and two units of 2. This gives us the decimal figure 194.

Tips For Exam Day

Practice your binary and hexadecimal conversions over and over again before you take your CCNA exams. Binary math questions come in many different forms; make sure you have practiced all of them before exam day. The number one reason CCNA candidates fail their exam is that they're not prepared for the different types of binary math questions they're going to be asked, and that they aren't ready for hexadecimal questions at all.

You don't have time to learn how to do in on exam day. You've got to be ready before you go into the exam room, and the only way to be ready is a lot of practice.

Finally, make sure you read the question carefully. You've got hex, decimal, and binary numbers to concern yourself with on your CCNA exams. Make sure you give Cisco the answer in the format they're looking for.

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages. For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNA exam with The Bryant Advantage!

Thursday, January 29, 2009

The Secret To Passing The Microsoft Office Specialist Exam

Writen by Chris Le Roy

If you are trying to get ahead in you career today, you will know that the computer skills you have under your belt are what will make the difference between you moving up the ladder or down. When it comes to trying to prove your computer competency in using office applications there is no other certification path that stands out like the Microsoft Office Specialist program. With over 3 million exams now undertaken and well over 2 million Microsoft Office Specialist Certificates issued, this certification has become the one to get to prove your skills in using Microsoft Office.

One thing I have found though is that many people fail these exams first time around and there really is no reason for it. The way the Microsoft Office Specialist exam works is that you will be taken into a room and sat at a computer. On this computer you will be asked by the computer to carry out a series of tasks. Each set of tasks is designed to represent tasks you would be expected to do on a day-to-day basis.

These exams really are a good representation of what people would be expected to do on a day-to-day basis. I should say I am a little bias since I am a Microsoft Office Specialist Master Instructor and my company is a Microsoft Office Specialist Authorised Testing Centre but having trained about 4,000 to 5,000 students through my training centre in Townsville, Australia the certification exams really do represent the skills you would be expected to perform in your workplace.

There are in fact seven exams in the Microsoft Office Specialist Program and they are the Microsoft Word Core and Expert Exams, Microsoft Excel Core and Expert Exams, Microsoft Outlook Core Exam, Microsoft PowerPoint Core Exam and the Microsoft Access Core Exam. If you were a Secretary or Personal Assistant, I would expect at a minimum you would have passed the Microsoft Word Core Exam and the Microsoft Excel Core Exam. If you hold the position of a salesman, I would expect you to have the same certifications as the Personal Assistant or secretary plus the Microsoft PowerPoint Core certification and maybe the Microsoft Excel Expert Certification and Microsoft Access Core Certification.

Ok, so how do we prepare for these exams.

First of all, you need to choose how you want to study for these exams. In terms of passing these exams it doesn't matter whether you want to do a course at a training centre, buy a self paced training program or doing the training on the Internet. Use the form of training that you feel most comfortable with. Me personally, I prefer to use self-paced training where as many of my students prefer classroom based training. Each training method has its own advantages and disadvantages. One thing to note, if you are going to go to a training centre, make sure at the very least they are a Microsoft Office Specialist Testing Centre and that they will give you a training manual and exercise disk to take home with you to keep. If the training centre doesn't give you a manual then don't waste your time with the course even if they might be the cheapest. In computer training, cheapest definitely does not mean the best.

Step 1. Once you have done the course or studied the Self-Paced material make sure you redo all the material within 7-days!

One mistake many people make, is thinking that they can do a two-day computer training course then walk away as an expect. If that's what you think, than it is totally fanciful. Computer Training is like a sport, if you want to be a professional then you must train as a professional. The first step you need to do in any training regime is to go back through all the material you did in the computer training course in the first 7 days after you the finish of the course.

Studies have shown over the years, that each 7 days you don't review your material, you will loose 50% of the material. Each week you don't review the material you loose another 50% which means in 6 weeks or so, you will remember nothing from your course. All in all you may as well, not have done the course in the first place.

Step 2. Write a brief statement in your own words, the key terms used during your course.

The next thing you must DO! Is to write a brief statement in your own words about all the key terms you learnt during the course or in your self-paced material. One of the challenges you will have in the exam is deciphering what they are asking you to do. Sometimes, I have found the language is very difficult to understand because it is written in American English (no offence intended to my American colleagues). In one of my Microsoft Outlook Core Exams, I was certain I was going to fail the exam. The only reason I passed was by identifying the key terms in the text that related to the application and by knowing those I worked out in each question what exactly they were asking me to do.

Step 3. Practice, Practice, Practice – Get lots of Practice Exercises

The next thing you must do is to get as much practice as possible. Most training schools will have structured their material so that at the end of each topic you will have some questions to answer and also some sort of homework exercise to do that will put all the tasks together into one exercise. The key here is to practice as much as possible. Check out the internet for places where you can get lots of practical exercises or make up some of your own.

Step 4 – Do a Pre-Assessment Exam to see if you are ready.

One thing I have learnt from doing these professional exams is that they are absolutely nothing like the exams you would have undertaken at school, college or at University. My recommendation that I would make to anyone sitting computer certification exams is to purchase a pre-assessment exam for the exam you want to take. What the pre-assessment exams do is to test your skills prior to sitting the real exams. Most of the pre-assessment exams I have seen are pretty good and pretty close to the real exams. I personally recommend either the pre-assessment exams from Certiport, Transcender or Self-Test Software.

When you do the pre-assessment exam, you should score 80% or above on the first go. If you don't, do not do what I have seen many people do, and that is to just keep doing the exam till you get all the questions right. What will happen if you do this is you will build up a memory of the questions and you end up knowing the requirements of the question without truly being able to interpret what the question is asking you to do.

Once you have done the exam once; DO NOT under any circumstances re-do that exam for 7 days. This will help stop the memory build up, of the questions.

What you MUST do once you have completed the pre-assessment exam and got a result is to look at the results of the test and find out which questions you got wrong and go back and study those areas more thoroughly. Then, after you have reviewed the material and waited 7 days, then try the pre-assessment test again.

You should in the second attempt score 90% or better. If you do achieve this then you are ready to sit the real exam. If you don't, then you need to follow the same process again for the next 7-days.

After the third time using the same Pre-Assessment exam, I recommend people try a different pre-assessment exam before being 100% sure they will pass the exam. The more you use the same exam, the bigger risk you face in retaining that memory of questions.

Most pre-assessment exams usually come with 2 or 3 different exams to try. If after three attempts of each pre-assessment exam and you still find that you can't pass at 80% or better, I would strongly recommend finding a mentor and also checking to make sure the training material you have purchased is covering the required material.

Step 5 – Pass the Microsoft Office Specialist Certification Exam!

Obviously once you have done this much training and practice and you have passed your pre-assessment exams you are now ready to sit the real exam. One thing to remember, Microsoft Office Specialist Exams are commercial exams and because of this, if you fail the exam, you have to pay to resit the exam. The cost to resit these exams can vary from as low as $80 US to $135 US, in many cases the prices are set by the Microsoft Office Specialist Testing Centre.

The good news is that if you have followed the steps I have outlined, I will be very surprised if you didn't pass on your first attempt.

Step 6 – You Are Finally A Microsoft Office Specialist

The Author Chris Le Roy is a Microsoft Office Specialist Master Instructor and trains over 2000 students per year to become Microsoft Office Specialists. His company One-on-One Personal Computer Training has a range of training kits to help you prepare for the Microsoft Office Specialist Certification Exam. Chris also has a range of pre-assessment exams available for sale as well at his website at http://www.1-on-1.biz

Wednesday, January 28, 2009

Cisco Ccnp Bcmsn Exam Tutorial Multicasting And Reserved Addresses

Writen by Chris Bryant

Ever since you picked up your first CCNA book, you've heard about multicasting, gotten a fair idea of what it is, and you've memorized a couple of reserved multicasting addresses. Now as you prepare to pass the BCMSN exam and become a CCNP, you've got to take that knowledge to the next level and gain a true understanding of multicasting. Those of you with an eye on the CCIE will truly have to become multicasting experts!

Having said that, we're going to briefly review the basics of multicasting first, and then future tutorials will look at the different ways in which multicasting can be configured on Cisco routers and switches.

What Is Multicasting?

A unicast is data that is sent from one host to another, while a broadcast is data sent from a host that is destined for "all" host addresses. By "all", we can mean all hosts on a subnet, or truly all hosts on a network.

There's a quite a bit of a middle ground there! A multicast is that middle ground, as a multicast is data that is sent to a logical group of hosts, called a multicast group. Hosts that are not part of the multicast group will not receive the data.

Some other basic multicasting facts:

There's no limit on how many multicast groups a single host can belong to.

The sender is usually unaware of what host devices belong to the multicast group.

Multicast traffic is unidirectional. If the members of the multicast group need to respond, that reply will generally be a unicast.

The range of IP addresses reserved for multicasting is the Class D range, 224.0.0.0 - 239.255.255.255.

That range contains a couple of other reserved address ranges.

224.0.0.0 - 224.0.0.255 is reserved for network protocols only on a local network segment. Packets in this range will not be forwarded by routers, so these packets cannot leave the segment.

Just as Class A, Class B, and Class C networks have private address ranges, so does Class D. The Class D private address range is 239.0.0.0 - 239.255.255.255. Like the other private ranges, these addresses can't be routed, so they can be reused from one network to another.

The remaining addresses fall between 224.0.1.0 and 238.255.255.255. That's the "normal" range of multicast addresses. These addresses can be routed, so they must be unique and should not be duplicated from one network to the next.

In my next BCMSN / CCNP multicasting tutorial, we'll take a look at the different ways in which Cisco routers and switches interact to forward multicast traffic.

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", just visit the website! You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNP exam with The Bryant Advantage!

Tuesday, January 27, 2009

Cisco Ccna Certification Exam Tutorial Configuring And Troubleshooting Vtp

Writen by Chris Bryant

Not only is your CCNA exam going to have questions on VLAN trunking protocol, almost any network that has more than one VLAN is going to have VTP running. Whether you're planning on passing the CCNA exam or just brushing up on your networking skills, this VTP tutorial will help you learn the basics of this important protocol.

VTP allows switches to advertise VLAN information between other members of the same VTP domain. VTP allows a consistent view of the switched network across all switches. When a VLAN is created on one switch in a VTP server, all other VTP devices in the domain are notified of that VLAN's existence. VTP servers will know about every VLAN, even VLANs that have no members on that switch.

Switches run VTP in one of three modes. In server mode, VLANs can be created, modified, and deleted on a VTP server. When these actions are taken, the changes are advertised to all switches in the VTP domain. VTP Servers keep VLAN configuration information upon reboot.

In client mode, the switch cannot modify, create, or delete VLANs. VTP clients cannot retain VLAN configuration information upon reboot; they have to obtain this information from a VTP server.

In real-world networks, this is generally done to centralize the creation and deletion of VLANs. An interesting side effect of the server/client methodology is that if a VLAN is only to have ports on the VTP client switch, the VLAN must still first be created on the VTP server. The VTP client will learn about the VLAN from the VTP server, and ports can then be placed into that VLAN.

The third VTP mode is transparent mode. VTP switches in this mode ignore VTP messages. They do forward the VTP advertisements received from other switches. VLANs can be created, deleted, and modified on a transparent server, but those changes are not advertised to the other switches in the VTP domain.

For switches running VTP to successfully exchange VLAN information, three things have to happen. I've listed them for you in the order that you'll see them in the real world.

The VTP domain name must match. This is case-sensitive. "CISCO" and "cisco" are two different domains.

To distribute information about a newly-created VLAN, the switch upon which that VLAN is created must be in Server mode.

Learning VTP isn't just a good idea for passing your CCNA exams, it's a skill you must have to be effective in configuring and troubleshooting VLANs. I wish you the best in both of these pursuits!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide from The Bryant Advantage!

Monday, January 26, 2009

Cisco Ccna Ccnp Certification Exam Tutorial Floating Static Routes

Writen by Chris Bryant

To pass the Cisco CCNA and CCNP certification exams, as well as becoming a world-class networker, you've got to know how and when to use floating static routes. And if you're wondering what makes them "float" -- read on!

In this example, R1 and R2 are running OSPF over a Frame Relay network, 172.12.123.0 /24. They're also connected by a BRI ISDN link, 172.12.12.0 /24. R1 is advertising a loopback network, 1.1.1.1 /32, via OSPF. We want R2 to have a route to that loopback even if the frame goes down - and here, we'll use a floating static route to make that happen.

R2 sees the route to the loopback interface via OSPF, and can ping that interface successfully.

R2#show ip route ospf

1.0.0.0/32 is subnetted, 1 subnets

O 1.1.1.1 [110/65] via 172.12.123.1, 00:00:02, Serial0

R2#ping 1.1.1.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 68/68/68 ms

This is when it's important to know your administrative distances.... or at least know where to look to see them! The AD of OSPF is 110, which means we can configure a static route to 1.1.1.1 /32, and as long as the AD of the static route is higher than 110, it won't be used unless the OSPF route leaves the routing table. That's why this kind of route is called a "floating" static route - the route "floats" in the routing table and isn't seen unless the primary route leaves the table.

You learned how to write a static route in your CCNA studies, but you also remember that the default AD of a static route is either 1 or 0... and both of those values are less than 110! To change the AD of a static route, configure the desired distance at the end of the ip route command.

R2(config)#ip route 1.1.1.1 255.255.255.255 bri0 ?

<1-255> Distance metric for this route

A.B.C.D Forwarding router's address

name Specify name of the next hop

permanent permanent route

tag Set tag for this route

R2(config)#ip route 1.1.1.1 255.255.255.255 bri0 111

The static route has an AD that's only one higher than that of the OSPF route, but that's enough to make the route "float" and not yet be seen in the routing table.

R2#show ip route

1.0.0.0/32 is subnetted, 1 subnets

O 1.1.1.1 [110/65] via 172.12.123.1, 00:06:44, Serial0

172.12.0.0/24 is subnetted, 2 subnets

C 172.12.12.0 is directly connected, BRI0

C 172.12.123.0 is directly connected, Serial0

Let's see the effect on the routing table when the Serial0 interface is closed.

R2(config)#int s0

R2(config-if)#shutdown

12:04:53: %OSPF-5-ADJCHG: Process 1, Nbr 172.12.123.1 on Serial0 from FULL to DOWN, Neighbor Down: Interface down or detached

12:04:55: %SYS-5-CONFIG_I: Configured from console by console

12:04:55: %LINK-5-CHANGED: Interface Serial0, changed state to administratively down

12:04:56: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down

R2#show ip route

1.0.0.0/32 is subnetted, 1 subnets

S 1.1.1.1 is directly connected, BRI0

172.12.0.0/24 is subnetted, 1 subnets

C 172.12.12.0 is directly connected, BRI0

The floating static route appears in the table, but the ISDN link will not come up until the BRI interface has traffic to send. Let's ping 1.1.1.1 and see what happens. debug dialer was configured on R2 before sending the ping.

R2#ping 1.1.1.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:

12:16:01: BR0 DDR: Dialing cause ip (s=172.12.12.2, d=1.1.1.1)

12:16:01: BR0 DDR: Attempting to dial 8358661

12:16:01: %LINK-3-UPDOWN: Interface BRI0:1, changed state to up.!!

12:16:01: BR0:1 DDR: dialer protocol up!!

Success rate is 80 percent (4/5), round-trip min/avg/max = 36/37/40 ms

The link comes up and traffic can still reach 1.1.1.1. Once R2 becomes an OSPF neighbor of R1 again, the OSPF route will again become the primary path and the floating static route leaves the routing table.

R2(config)#int s0

R2(config-if)#no shut

R2#show ip ospf neighbor

Neighbor ID Pri State Dead Time Address Interface

172.12.123.1 1 FULL/DR 00:01:57 172.12.123.1 Serial0

R2#show ip route

1.0.0.0/32 is subnetted, 1 subnets

O 1.1.1.1 [110/65] via 172.12.123.1, 00:00:16, Serial0

172.12.0.0/24 is subnetted, 2 subnets

C 172.12.12.0 is directly connected, BRI0

C 172.12.123.0 is directly connected, Serial0

A floating static route is an excellent "back door" that will keep the ISDN link down while allowing that link to serve as a backup route. Just make sure the ISDN link comes down when you expect it to - always check that with show isdn status!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! And coming in 2007 -- Microsoft Vista certification from The Bryant Advantage!

Sunday, January 25, 2009

Cisco Certification Introduction To Isdn Part V

Writen by Chris Bryant

The major reason I recommend getting your hands on real Cisco equipment rather than a simulator is that real Cisco routers give you the chance to practice and learn show and debug commands.

The knowledge you acquire from debugs is invaluable. Frankly, it's this knowledge that puts you above the 'average” CCNA who doesn't have that hands-on experience. Watching debugs in action also gives you a head start on the CCNP. Since 90 - 95% of CCNAs go on to pursue the CCNP, it's a great idea to get started with debugs now.

Don't make the mistake of waiting until you're studying for your CCNP and CCIE to start learning debugs and shows. The work you do for the CCNA is the foundation for everything you'll do in the future.

Never, ever, ever practice debugs on a production network. There are debugs that will give you so much information that the router actually becomes overloaded and then locks up. Never practice debugs on a production network.

It's important to know the proper show and debug commands for ISDN for several reasons. First, by watching ISDN in operation, you can see its processes and better understand what's going on. Secondly, it's difficult if not impossible to properly troubleshoot ISDN without knowing the proper show and debug commands. (It's easy to overlook an ISDN authentication error just by looking at the configuration, but running debug ppp negotiation will quickly show you where the problem lies.)

Let's take a look at the ISDN show and debug commands that every CCNA and CCNP should know.

Show ISDN Status

If you only know one ISDN show command, it's got to be this one. Always use this command after configuring your ISDN switch type and any necessary SPIDs. The command will show you the switch type (and will also show you if you did not configure a switch type), and whether the SPIDs you entered are valid:

R1#show isdn status

Global ISDN Switchtype = basic-ni < ISDN switch type is correctly configured.> ISDN BRI0 interface

dsl 0, interface ISDN Switchtype = basic-ni

Layer 1 Status:

ACTIVE

Layer 2 Status:

TEI = 91, Ces = 1, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED

TEI = 92, Ces = 2, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED

Spid Status:

TEI 91, ces = 1, state = 5(init)

spid1 configured, no LDN, spid1 sent, spid1 valid < SPID 1 is good.>

Endpoint ID Info: epsf = 0, usid = 1, tid = 1

TEI 92, ces = 2, state = 5(init)

spid2 configured, no LDN, spid2 sent, spid2 valid

Endpoint ID Info: epsf = 0, usid = 3, tid = 1

Layer 3 Status:

0 Active Layer 3 Call(s)

Activated dsl 0 CCBs = 0

The Free Channel Mask: 0x80000003

Once in a while, you'll get this output from show isdn status:

R2#show isdn status The current ISDN Switchtype = basic-ni1 ISDN BRI0 interface

Layer 1 Status:

ACTIVE

Layer 2 Status:

Layer 2 NOT Activated

Spid Status:

TEI Not Assigned, ces = 1, state = 3(await establishment)

spid1 configured, no LDN, spid1 NOT sent, spid1 NOT valid

TEI Not Assigned, ces = 2, state = 1(terminal down)

spid2 configured, no LDN, spid2 NOT sent, spid2 NOT valid

Check your running configuration, and if the SPIDs look good, simply close the BRI interface and open it again. Then run show ISDN status again. If you then see 'spids are valid”, you're ready to proceed. If you still see a message that the spids are invalid, you've most likely mistyped the SPID.

Show Access-List

What's this command got to do with ISDN? Everything.

Remember how the ISDN link comes up in the first place? Interesting traffic. By default, there is no interesting traffic. You define interesting traffic with the dialer-list and dialer-group commands, AND the access-list command. If you have a problem with your link never coming up or with it coming up and staying up, use this command to see what traffic has been defined as interesting.

Show Dialer

Another helpful command to determine why an ISDN link is coming up and staying up. This command shows you how many successful calls and failed calls have taken place, what the current idle-timer value is (by default, it's 120 seconds), and most importantly, what the source and destination was for the current interesting traffic:

R1#show dialer
BRI0 - dialer type = ISDN
Dial String Successes Failures Last called Last status
8358662 1 0 00:00:59
successful
0 incoming call(s) have been screened.
0 incoming call(s) rejected for callback.

BRI0:1 - dialer type = ISDN
Idle timer (120 secs), Fast idle timer (20 secs)
Wait for carrier (30 secs), Re-enable (15 secs)
Dialer state is data link layer up
Dial reason: ip (s=172.12.21.1, d=172.12.21.2) < s=Source, d=Destination >
Time until disconnect 62 secs
< Idle timer, reset by interesting traffic only >
Connected to 8358662 (R2)

Here, you can see that the idle-timer value is at its default, that there are 62 seconds left until the link comes down (unless interesting traffic resets the timer), and that the source of the interesting traffic was 172.12.21.1 and the destination is 172.12.21.2. If that destination is the multicast address of a routing protocol - say, 224.0.0.5 for OSPF - you know what traffic is keeping the line up.

Show ISDN History

Want to see what calls have been made in the last 15 minutes? Just run this command. It's helpful if you're walking in to an ISDN troubleshooting situation and want to see what calls have been made.

R1#show isdn
history-------------------------------------------------------------------------------- ISDN CALL HISTORY--------------------------------------------------------------------------------History table has a maximum of 100 entries.History table data is retained for a maximum of 15 Minutes.--------------------------------------------------------------------------------Call Calling Called Remote Seconds Seconds Seconds ChargesType Number .Number Name Used Left Idle Units/Currency-----------------------------------------------------------------------------------------------------------Out 8358662 R2 121 0Out 8358662 R2 121 0-----------------------------------------------------------------------------------------------------

Debug PPP Negotiation

Not only do you need to know this command for your CCNA and CCNP exams, you MUST know it to be an effective ISDN troubleshooter.

When PPP authentication is first configured, it's simple to mistype a password, or forget to configure a 'username / password” combination. Instead of continually reading your running configuration to see what the problem is, run debug ppp negotiation and send a ping to bring the line up. You'll quickly see where the problem is.

R2#debug ppp negotiation PPP protocol negotiation debugging is on R2#ping 172.12.21.1

BR0:1 PPP: Phase is AUTHENTICATING, by both < Both routers are authenticating the other with CHAP. > BR0:1 CHAP: O CHALLENGE id 1 len 23 from "R2" < R2 is sending a challenge to the remote router. O = 'outgoing”. > BR0:1 CHAP: I CHALLENGE id 1 len 23 from "R1" < A CHAP challenge has come in from R1. I = 'incoming”> BR0:1 CHAP: O RESPONSE id 1 len 23 from "R2" < R2 is sending a response to the challenge. > BR0:1 CHAP: I SUCCESS id 1 len 4 < A success message has come in , indicating the challenge was successfully met. > BR0:1 CHAP: I RESPONSE id 1 len 23 from "R1" < A response to the challenge sent to R1 is now coming in. > BR0:1 CHAP: O SUCCESS id 1 len 4 < The challenge was successfully met by R1, and a success message is sent. >

By mastering these simple ISDN show and debug commands, you increase your chances of passing the CCNA and CCNP exams greatly, and vastly improve your on-the-job skills.

I recommend you visit www.cisco.com/univercd for more show and debug commands. Learning to negotiate this valuable online resource will truly help you become more valuable on the job. Every Cisco router and switch command, along with default and usage guidelines, can be found on this site. I'll have an article posted soon to help you learn your way around the site; in the meantime, I urge you to begin adding this website to your troubleshooting toolkit.

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages. For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNA exam with The Bryant Advantage!

Saturday, January 24, 2009

Know The Value Of Having Pmp Certification

Writen by Shawn Futterer

Foote Partners LLC, an IT workforce research company, assesses the skills and pay of more than 35,000 IT professionals in over 1,800 North American and European companies. In a recent survey, they found that the Project Management Professional certification provides the best bonuses for IT professionals, averaging 15% of base pay.

Just what is a PMP certification and why does it add so much value to the people who hold it? The reason is mostly due to the fact that the Project Management Institute issues the certification. The Project Management Institute, or PMI, is a global organization, with chapters in all but about four countries throughout the world. PMI has a rigorous criteria and a very difficult - many might say mentally abusive exam, which potential PMPs must pass before they can become certified.

There are two categories of people who can pursue PMP certification. The first category is for those who have college degrees. People in this category must have 4,500 hours of continuous, non-overlapping project management experience for 36 consecutive months within the past five years. The second category includes those project managers who have not attended college. People in this category must have 7,500 hours of continuous, non-overlapping project management experience for 60 months over an eight-year period. Both categories must also prove that they have participated in 35 hours of project management training within the past ten years.

Project Managers who meet either category must file an eligibility application with PMI. Once PMI reviews an application and determines if a candidate is eligible, they release an eligibility letter. A candidate then receives the eligibility letter to take the PMP certification exam.

The certification exam is a difficult one. The industry standard pass rate is rumored at 60%.

Presently there are in excess of 100,000 PMI members, with many others joining PMI to pursue the PMP certification.

Based on the salary increases experienced by IT professionals with the PMP, this credential carries some clout and is capturing great interest. Membership statistics from PMI indicate that the Computers/Software/DP and IT industries are the top two industry areas among PMI members, with about 15,000 and 12,000 members respectively in each industry category (estimated in 2005).

In whatever way people prepare to become certified Project Managers, the benefits are immeasurable to both the employee and the employer. Employees are rewarded with increased salaries, job promotions, and in general, better job prospects. Employers who use PMPs are assured that they have hired Project Managers who have a core competency in Project Management and the requisite experience to perform as a project manager. Studies have shown that projects managed by people who are not certified Project Managers have only a 25% chance of success, whereas projects run by those who are knowledgeable in Modern Project Management tools and techniques - as are people with the PMP certification - have a 75% success rate.

Who do you think companies would prefer to have at the helm of their projects?

Become a PMP! Put yourself in the spotlight, and start increasing your earning potential without further delay!

Friday, January 23, 2009

Get The Boot A Birdseye Look Into Mcse Boot Camps

Writen by James Croydon

MCSE boot camps have its supporters and its detractors. Some people do not understand why you should have to spend money on boot camp when you can get the MCSE study materials yourself at a fraction of the camp price. However, who has the willpower to actually sit through a self-imposed MCSE training? Not too many people! That is what the MCSE boot camps are for.

These boot camps are typically an intense two-week long MCSE training course that prepares you for the MCSE exams. Some companies that conduct boot camps offering Microsoft certification, especially the MCSE, guarantee that you will pass your MCSE exams. If you happen to fail, they will usually issue a voucher to try it again. For many people who attend these MCSE boot camps, it is preferable to have an intense two weeks with little to distract you rather than drawing out the classes for weeks with outside influences like work and family interfering with study time. Sure, being gone for two weeks is a temporary hassle, but you will have your certification in a fraction of the time.

Did you catch the being gone for two weeks bit? You can probably find a boot camp near your home, but most likely you will end up attending an MCSE boot camp away from your home, far enough away where it is not worth it to commute. Two weeks away from home? That doesn't sound like a picnic! But just think of the rewards you will reap after trudging through all that MCSE training and taking the MCSE exams.

If you are lucky, your company will pick up the tab on your Microsoft certification. Paying on your own is a major investment, usually a few thousand dollars depending on where the location is and if hotel and meals are included in the price. For your money, you will get a tough instructor, an MCSE drill sergeant for lack of a better description. That instructor's reputation is on the line, so he or she will be motivated to ensure your success. That is why the success rate for these MCSE boot camps is high, in some places as high as 95%!

For your investment, you will have numerous MCSE training sessions in Networking Basics as well as learning about the infrastructure of a network. You will study security design, directories and how to manage Windows network environments. Hands-on training in learning labs with after-hours access for extra practice is the norm. Practice MCSE exams are also given out as a study tool and to also help prepare you for your own test time.

Microsoft certifications are here to stay and the MCSE is a popular avenue to travel. If you have got the time and can swing the cost, MCSE boot camps will definitely give you a boost into a new career.

James Croydon, Microsoft Certified Professional and MCSE Online advisor - focusing on MCSE Online Certification and MCSE Courses Online

Thursday, January 22, 2009

Cisco Ccna Exam Tutorial Using Trivial File Transfer Protocol Ftp

Writen by Chris Bryant

One of the first things you do when you start studying for the CCNA exam is memorizing a list of port numbers and the protocols that run on those ports. If you're an experienced networker, you know most of the protocols that are mentioned - DNS, DHCP, FTP, SMTP, and so on. But there's one protocol that you might not have experience with, but is actually vital for CCNA exam success and success in working with Cisco routers and switches, and that's TFTP - Trivial File Transfer Protocol.

TFTP is basically FTP's non-secure relative. There are no passwords, no authentication scheme, no nothing! As someone once told me, "If I'm transferring my files, there's nothing 'trivial' about it."

Great. So you're thinking, "What the heck do we use TFTP for, anyway?"

TFTP is used in the Cisco world to perform IOS upgrades and to save configs to a TFTP Server. Cisco routers can themselves serve as TFTP servers, or you can use a workstation to fill that role.

If you needed to copy an IOS image to a router, for example, you could do so easily by connecting your PC to the router's console port (via a rollover cable, right?). Your PC would need to run TFTP server software. There are quite a few free TFTP server software programs that work quite well – just enter "free tftp server" into Google or your favorite search engine and you'll see what I mean.

Using TFTP in this fashion is a great way to have backup copies of IOS images or router configs right on your laptop. And take it from me, when the day comes that you need those backups, you'll be glad you did!

Remember that when using the copy command, you first indicate where you're copying from, then where you're copying to:

R1#copy flash tftp

Source filename []? Example

Address or name of remote host []?

When performing such a copy, you'll need to name the file you're copying, as well as the IP address of the device you're copying to.

Using TFTP to perform IOS upgrades takes a little getting used to, especially the syntax of the copy command. But knowing that syntax and how to use TFTP will indeed get you one step closer to the CCNA!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide with The Bryant Advantage!

Wednesday, January 21, 2009

Cisco Ccnp Bsci Exam Tutorial Ten Ip Routing Details You Must Know

Writen by Chris Bryant

To pass the BSCI exam and earn your CCNP, you've got to keep a lot of details in mind. It's easy to overlook the "simpler" protocols and services such as static routing and distance vector protocols. With this in mind, here's a quick review of some details you should know for success in the exam room and real-world networks!

When packets need to be routed, the routing table is parsed for the longest prefix match if multiple paths exist with the same prefix length, the route with the lowest AD is preferred. If there are still multiple valid paths, equal-cost load-sharing goes into effect.

The ip route command is used to create static routes the command ip route 0.0.0.0 0.0.0.0 < next-hop-IP or local exit interface> creates a default static route.

A static route with a next-hop IP address has an AD of one, while a static route with a local exit interface has an AD of zero.

A floating static route is a static route with an AD higher than that of the dynamic routing protocols running on the router, ensuring that the static route can only be used if the routing protocol goes down.

On-Demand Routing (ODR) is only appropriate in a hub-and-spoke network. The spokes effectively become stub routers. ODR uses Cisco Discovery Protocol (CDP) to send route information.

To propagate a default route with IP routing, use the ip default-network command. To do so with IP routing disabled, use ip default-gateway. You can also redistribute a static route into most protocols, but not IGRP. IGRP does not understand a static route to 0.0.0.0.

The ip helper-address command takes certain broadcasts and translates then into unicasts in order to allow the router to forward them. These default ports are:

TIME, port 37

TACACS, port 49

DNS, port 53

BOOTP/DHCP Server, port 67

BOOTP/DHCP Client, port 68

TFTP, port 69

NetBIOS name service, port 137

NetBIOS datagram services, port 138

To name other ports, use the ip forward-protocol command. To remove any of these ports from the default list, use the no ip forward-protocol command.

ICMP Router Discovery Protocol (IRDP) hosts hear multicast Hellos from routers, allowing host-router discovery. HSRP routers create a virtual router that hosts think is a real router. Both protocols help networks cut over to a functional router quickly when their primary router goes down.

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", just visit the website! You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNP exam with The Bryant Advantage!

Tuesday, January 20, 2009

Cisco Ccna Ccnp Certification Tutorial Frame Relay Endtoend Keepalives

Writen by Chris Bryant

One of the first things you learned about Frame is that the LMI also serves as a keepalive, or a heartbeat - and if three consecutive LMIs are missed, the line protocol goes down. There's a limitation to LMI as a keepalive, though. The LMI is exchanged only between the DTE and the closest DCE. The LMI is therefore a local keepalive that does not reflect any possible issues on the remote end of the virtual circuit.

Taking the LMI concept to the next logical level, Frame Relay End-To-End Keepalives (FREEK, one of the least-heard Cisco acronyms for some reason) are used to verify that endpoint-to-endpoint communications are functioning properly.

What you have to keep in mind about FREEK is that each and every PVC needs two separate keepalive processes. Remember, with a PVC, there's no guarantee that the path taking through the frame relay cloud to get from R1 to R2 is going to be the same path taken to go back from R2 to R1. One process will be used to send requests for information and handle the responses to these requests; this is the send side. When the send side transmits a keepalive request, a response is expected in a certain number of seconds. If one is not received, an error event is noted. If enough error events are recorded, the VC's keepalive status is marked as down.

The process that responds to the other side's requests is the receive side.

This being Cisco, we've got to have some modes, right? FREEK has four operational modes.

Bidirectional mode enables both the send and receive process enabled on the router, meaning that the router will send requests and process responses (send side) and will also respond to remote requests for information (receive side).

Request mode enables only the send process. The router will send requests and process responses to those requests, but will not answer requests from other routers.

Reply mode enables only the receive process. The router will respond to requests from other routers but will initiate no requests of its own.

Finally, passive reply mode allows the router to respond to requests, but no timers are set and no events are tracked.

Frame Relay End-To-End Keepalive defaults:

Two send or receive errors must be registered in order for the VC to be considered down.

The event window size is three. The event window is the number of events considered by the router when determining the status of the VC. Therefore, using the defaults, two send or receive errors would have to be received within the event window of three events for the VC to be considered down.

The timer mentioned earlier - the amount of time a router waits for a response - is set to 10 seconds

Working with Frame Relay end-to-end keepalives is just one Frame skill you'll need to pass the CCNP exams – and I wouldn't be surprised to see them on a CCIE exam. Know the details and you're on your way to Cisco certification exam success!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide from The Bryant Advantage!

Monday, January 19, 2009

Overview Of Major It Certifications

Writen by Natalie Aranda

In today's competitive IT job market, an IT certification is often a prerequisite to get a high-paying job or a salary increase. Professional certifications are the best way to demonstrate your skills and expertise in any given technical field to present to prospective employers. Through education and certification, professionals gain the skills, knowledge, and validation needed to be recognized as an expert in diverse products or technologies. MCSE Certification, CCNA Certification, A+ Certification, and SAP Certification are a few of the many certifications or credentials an IT professional may achieve.

Microsoft Certifications

Microsoft certification programs are considered to be the major advancement to gain both professional and education background. The Microsoft Certified Systems Engineer (MCSE) certification prove an individual's expertise in designing and implementing the required infrastructure for any type of business solutions based on the Microsoft Windows 2000 platform and Microsoft Windows Server System. Other Microsoft certifications include MCAD (Microsoft Certified Application Developer) certification, MCSA (Microsoft Certified Systems Analyst) and MCT (Microsoft Certified Trainer).

Cisco Certifications

The CCNA certification (Cisco Certified Network Associate) indicates a foundation in apprentice knowledge of networking with certified professionals able to install, configure, and operate WAN, LAN, and dial access services for small networks with 100 nodes or fewer. Operation and configuration services also includes but are not limited to use one but several of the following protocols: Serial, Frame Relay, IP RIP, IP, IGRP, VLANs, RIP, and Ethernet, Access Lists. CCNE, CCIE and CCNP are other Cisco certifications.

SAP Certification

SAP Certification is sponsored by SAP corporation - a leading business software (ERP, CRM and Supply Chain software) vendor. It is one of the few credentials in the world of business with additional value only issued to those professionals who demonstrated their abilities by passing demanding, process-oriented exams through rigorous study or direct experience.

A+ Certification

A+ certification is different from the others because it is not promoted by one company only, but by a whole group of PC manufacturers and other companies in the hardware market and its acceptance as an industry-wide credential offers additional benefits. A+ Certification prove the competency of entry-level service technicians in the computer industry and it is an internationally recognized testing program sponsored by the Computing Technology Industry Association (CompTIA).

Natalie Aranda writes about technology and learning. Computer Based Training (CBT) has been proven to be one of effective tools to help IT professionals to gain the desired certifications. Many CBT vendors offer courses in various format - software or online training course. The core competency of NETg is corporate and university training, where as Learnkey covers schools too. Before deciding on a particular vendor one need to keep in mind their individual needs and compare with the training service provided by the particular vendors by visiting their websites and contacting them.

Sunday, January 18, 2009

Cisco Ccnp Certification Introduction To Bgp

Writen by Chris Bryant

Cisco certification candidates are introduced to BGP at the CCNP level, but the reaction to its introduction always reminds me of something I see often as the CCNA level.

Whenever I teach distance-vector protocols in my Ultimate CCNA Boot Camp or Fast Track classes, I make sure my students understand the many rules of distance-vector routing thoroughly. After that, we move on to OSPF and link-state routing.

And what do I tell my students before we move on to OSPF and link-state? "Take all that great stuff you just learned about distance-vector routing and put it aside, because none of it applies here!"

That's about the time I get astonished looks and a few things thrown at me. :)

What's this got to do with BGP? Well, when you start studying BGP, you have to put a lot of preconceptions aside. It sounds like just another routing protocol, like RIP or OSPF, but it's not.

So... before we start studying BGP and looking at some of its many features, let's take a look at what BGP is and what it's not.

What BGP Does And Who Uses It

If you're in a position where you're used to seeing or working with routing protocols such as EIGRP and OSPF, you're probably now working with BGP. BGP is not a protocol you're going to configure at the office LAN. BGP is used to connect autonomous systems, which are very large "collections" of networks. (Those of you who have studied IGRP and EIGRP are familiar with the concepts of an AS.)

As opposed to routing protocols such as EIGRP and OSPF, BGP is an exterior routing protocol. BGP is not used to find a specific network instead, it's used to find the AS where that given network can be found.

A good way to look at it is that networks are contained in Autonomous Systems BGP helps you find the AS where a given network is found. Routing protocols such as OSPF and EIGRP take it from there.

BGP Terminology

You'll be happy to know that BGP has a terminology all its own. Well, you might not be happy about it, but it does! I'm not going to throw a bunch of terms at you right now, since these terms are better introduced to you when you can see what they do. Having said that, here are a couple of basic BGP terms that will help you make the transition from IGPs to BGP.

aggregation - This is just the BGP term for summarization. You're familiar with route summarization from your CCNA studies, and if not, it's time for a review from my Ultimate CCNA Study Guide. I told you you'd be using those skills for a long time!

IGP - Interior Gateway Protocol. These are routing protocols that run within an Autonomous System, such as OSPF and EIGRP.

EGP - Exterior Gateway Protocol. Remember from your CCNA studies that EIGRP routes are indicated by the letter "D" in your routing table? Ever wonder why? EGP, that's why. Run show ip route and take a look at the routing table key. EGP was BGP's predecessor, and is still in the routing table. EGP was there before EIGRP, so that's why "E" in the routing table doesn't indicate an EIGRP route.

We'll be adding to this list a great deal in the next few weeks.

Now that you've got a grasp on the differences between BGP and the IGPs you've been working with up to this point, it's time to start looking at some basic BGP concepts and configurations. Look for Part II of this BGP tutorial over the next few days!

To your success,

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages. For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", just visit the website! You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNP exam with The Bryant Advantage!

Saturday, January 17, 2009

Cisco Ccna Ccnp Certification Exam Tutorial Dialer Watch

Writen by Chris Bryant

Dialer Watch is a vital part of your CCNA and CCNP studies, particularly for the BCRAN exam, but it's one of the most misunderstood technologies as well. To help you pass the CCNA and CCNP certification exams, here's a detailed look at Dialer Watch.

Dialer Watch allows you to configure a route or routes as "watched" when the watched route leaves the routing table and there is no other valid route to that specific destination, the ISDN link will come up. In the following example, R1 and R2 are connected by both a Frame Relay cloud over the 172.12.123.0 /24 network and an ISDN cloud using the 172.12.12.0 /24 network. The routers are running OSPF over the Frame cloud, and R1 is advertising its loopback of 1.1.1.1/32 as well as an Ethernet segment, 10.1.1.0/24, via OSPF. R2 has both of these routes in its OSPF table, as shown below.

R2#show ip route ospf

1.0.0.0/32 is subnetted, 1 subnets

O 1.1.1.1 [110/65] via 172.12.123.1, 00:00:07, Serial0

10.0.0.0/24 is subnetted, 1 subnets

O 10.1.1.0 [110/128] via 172.12.123.1, 00:00:08, Serial0

We want R2 to place a call to R1 if either the loopback or Ethernet networks leave R2's routing table, but we don't want to have to depend on interesting traffic. That dictates the use of Dialer Watch.

First, configure the list of watched routes with dialer watch-list. Only one of the watched routes needs to leave the routing table for the ISDN link to come up. In this example, R2 will watch both routes from its OSPF routing table.

Be careful with this command. The entries here need to match exactly the routes and masks being watched. Dialer watch-lists use subnet masks, not wildcard masks.

R2(config)#dialer watch-list 5 ip 10.1.1.0 255.255.255.0

R2(config)#dialer watch-list 5 ip 1.1.1.1 255.255.255.255

Configure the dialer watch-group command on the BRI interface, AND frame map statements for the watched routes. As with dialer-list and dialer-group, the group number referenced in the dialer watch-group command must match the number assigned to the dialer watch-list.

The Dialer Watch configuration will not work without frame map statements for each watched route. I repeat this because this is the step a lot of people leave out.

R2(config)#interface bri0

R2(config-if)#dialer watch-group 5

R2(config-if)# dialer map ip 1.1.1.1 255.255.255.255. name R1 5557777 broadcast

R2(config-if)# dialer map ip 10.1.1.0 255.255.255.0 name R1 5557777 broadcast

To test Dialer Watch, the Serial0 interface on R2 will be shut down. Since we're running OSPF, the route table will be updated almost immediately and the ISDN link should come up right after that.

R2(config)#int s0

R2(config-if)#shut

01:12:47: %OSPF-5-ADJCHG: Process 1, Nbr 1.1.1.1 on Serial0 from FULL to DOWN, N eighbor Down: Interface down or detached

01:12:47: %LINK-3-UPDOWN: Interface BRI0:1, changed state to up

01:12:48: %SYS-5-CONFIG_I: Configured from console by console

01:12:48: %LINEPROTO-5-UPDOWN: Line protocol on Interface BRI0:1, changed state to up

01:12:49: %LINK-5-CHANGED: Interface Serial0, changed state to administratively down

01:12:50: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down

01:12:53: %ISDN-6-CONNECT: Interface BRI0:1 is now connected to 5557777 R1

Within five seconds, the ISDN link is up. show dialer verifies that Dialer Watch is the reason the line was brought up.

R2#show dialer

BRI0 - dialer type = ISDN

Dial String Successes Failures Last DNIS Last status

5557777 2 0 00:00:11 successful

0 incoming call(s) have been screened.

0 incoming call(s) rejected for callback.

BRI0:1 - dialer type = ISDN

Idle timer (120 secs), Fast idle timer (20 secs)

Wait for carrier (30 secs), Re-enable (15 secs)

Dialer state is data link layer up

Dial reason: Dialing on watched route loss

Time until disconnect 108 secs

Connected to 5557777 (R1) A final note regarding Dialer Watch ... it will not work with RIP, but will with all our other dynamic IGPs (IGRP, EIGRP, OSPF).

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide from The Bryant Advantage!

Friday, January 16, 2009

Cisco Ccnp Bcmsn Exam Tutorial Bpdu Skew Detection And Cisco Switches

Writen by Chris Bryant

You may look at that feature's name and think, "What is a BPDU Skew, and why do I want to detect it?" What we're actually attempting to detect are BPDUs that aren't being relayed as quickly as they should be.

After the root bridge election, the root bridge transmits BPDUs, and the non-root switches relay that BPDU down the STP tree. This should happen quickly all around, since the root bridge will be sending a BPDU every two seconds by default ("hello time"), and the switches should relay the BDPUs fast enough so every switch is seeing a BPDU every two seconds.

That's in a perfect world, though, and there are plenty of imperfect networks out there! You may have a busy switch that can't spare the CPU to relay the BDPU quickly, or a BPDU may just simply be lost in transmission. That two-second hello time value doesn't give the switches much leeway, but we don't want the STP topology recalculated unnecessarily either.

BDPU Skew Detection is strictly a notification feature. Skew Detection will not take action to prevent STP recalculation when BDPUs are not being relayed quickly enough by the switches, but it will send a syslog message informing the network administrator of the problem. The amount of time between when the BDPU should have arrived and when it did arrive is referred to as "skew time" or "BPDU latency".

A busy CPU could quickly find itself overwhelmed if it had to send a syslog message for every BPDU delivery that's skewed. The syslog messages will be limited to one every 60 seconds, unless the "skew time" is at a critical level. In that case, the syslog message will be sent immediately with no one-per-minute limit.

And what is "critical", according to BDPU Skew Detection? Any value greater than 1/2 of the MaxAge value, making the critical skew time level 10 seconds or greater.

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", just visit the website! You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNP exam with The Bryant Advantage!

Thursday, January 15, 2009

Cisco Ccnp Certification Training The New Ccnp Bcmsn 642812 Exam

Writen by Chris Bryant

Cisco CCNP certification is about to become more valuable and more difficult! Cisco is making major changes to the CCNP certification program, retiring two exams (BCRAN and CIT) while updating two old friends, the BSCI and BCMSN exam. Today, we'll take a look at the changes in the Building Converged Cisco Multilayer Switched Networks (BCMSN) exam.

According to Cisco's exam blueprint, there are some major additions with the introduction of the 642-812 exam. Wireless access, security, and voice are all rapidly growing features and concerns in today's real-world networks, and Cisco is responding to that by adding all three of these topics to the CCNP BCMSN exam. Cisco CCNP candidates should expect to be questioned on WLANs as well as wireless clients.

There were some security topics on the 642-811 BCMSN exam, port security and 802.1x among them. The successful Cisco CCNP certification candidate will now be expected to know about the different network attacks that can take place at the data link layer of the OSI model, including DHCP Spoofing and VLAN Hopping.

There was also just a bit of voice material on the 642-811 BCMSN exam, but you'll have to know more voice to pass the 642-812 exam. Voice VLANs, voice QoS, and IP Phone configuration are just some of the topics being added to the new BCMSN exam.

Cisco is obviously raising the bar with the new CCNP exams, and this certification is going to be harder to get than ever before. That also makes it more valuable than ever before, and 2007 will be the best year yet in which to earn your CCNP certification. Make your plans to earn this valuable Cisco certification, and then put that plan into action!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of over 100 free certification exam tutorials, including Cisco CCNA certification test prep articles. His exclusive Cisco CCNA study guide and Cisco CCNA training is also available!

Visit his blog and sign up for Cisco Certification Central, a daily newsletter packed with CCNA, Network+, Security+, A+, and CCNP certification exam practice questions! A free 7-part course, "How To Pass The CCNA", is also available, and you can attend an in-person or online CCNA boot camp with The Bryant Advantage!

Wednesday, January 14, 2009

Cisco Ccna Certification And Career Path

Writen by Natalie Aranda

Following your computer training toward your career path, you can go for the CCNA certification (Cisco Certified Network Associate), which indicates a foundation in the apprentice knowledge of networking. CCNA training allows you the ability for installations and operation of LAN, WAN, and dialup access services for small networks with 100 nodes or less.

The CCNA course includes, but not limited to use the different networking protocols such as Ethernet, Access Lists, Serial, IP, IGRP, Frame Relay, IP RIP, and VLANs. Cisco's CCNA Prep Center Pilot offers simulations and sample questions, besides the e-learning modules and laboratories.

Computer training includes also valuable tips from CCNA professionals, in addition to expert advice, and encouragement through CCNA certification success stories. CCNA training does not require any prerequisite and makes available many other resources to help students with the preparation of their CCNA certification exams.

CCNA course, exams and recommended training include the Introduction to Cisco Networking Technologies (INTRO), the Interconnecting Cisco Networking Devices (ICND) or both. CCNA training and additional training, probably cover most of your career path expectations.

However, Cisco's CCNA certifications are valid for 3 years, so it is necessary for additional computer training to re-certify. This is achieved by either passing the current CCNA exam at the moment of the original certification's expiration, passing the ICND exam, passing the 642 professional levels.

After CCNA training your can also re-certify by passing the Cisco Qualified Specialist exam, excluding the Sales Specialist exams, or passing a CCIE written exam, which is a re-certify form valid for individual who had a CCNA certification starting from October 1, 2004.

Cisco CCNA online training certification program, offers the same value, knowledge and skill earned on a traditional CCNA course, and it is a nationally recognized certification. With computer training online, you will gain knowledge of switched LAN Emulation networks, which are made up of Cisco original equipment.

CCNA training online focuses the coverage of Cisco router configuration procedures, mapped to exam objectives in order to prepare you for Cisco Exam 640-80, in partnership with major universities and colleges offering as well CCNA certification.

The Computer training program online consists of 2 sections; "Introduction to Network Engineering", allowing the student to understand the world of network engineering, learning fundamental facts of data network theory and current technologies making the Internet tick.

The second section of the online CCNA course, "Practical Network Engineering", is an approach to some of the most powerful networking technologies, involving extensive work on switches, Cisco routers, and firewalls in a simulated network environment, preparing students to earn the CCNA certification.

Natalie Aranda writes about computer and IT training. Computer training includes also valuable tips from CCNA professionals, in addition to expert advice, and encouragement through CCNA certification success stories. CCNA training does not require any prerequisite and makes available many other resources to help students with the preparation of their CCNA certification exams.

Tuesday, January 13, 2009

Certification Skullduggery

Writen by John Dir

On the surface, the race for certifications in software, hardware, networking, and other technical disciplines sounds like a wonderful idea for ensuring companies receive the level of expertise they need to receive optimal efficiency and talent for their operations. Many employers seeking the best talent have certainly bought in on this hype from the industry's rush to set up a certification test for almost anything. Despite the popularity of these practices, there is an ominous and insidious impact going on beneath the surface that both employers and technicians should consider.

When the certification craze first began to appear on the scene, it was instituted more as a means for vendors to extract a few extra dollars from their clients in exchange for a warm and fuzzy feeling that these tests would ensure a higher degree of competency from people who had received the vendor stamp of approval. The pitch here was simple, if vendors could come up with a skills test that demonstrated a level of experience that could only be attained from having worked in a particular discipline for a number of years in the field, companies who hired these individuals would then be assured that they were getting the best possible personnel in the field. In the beginning, vendors tapped into the brains of their own best talent to assemble the most obscure trivia they could devise regarding their products, to design a program of certification that could only be passed by someone who had intimate knowledge of the product. Even at this stage of the development, there was not necessarily as much focus on the practical application of this minutia as there was on the fact that most beginners in the field would be unable to pass the test.

With a sufficient amount of trivia collected, software and hardware vendors launched their certification testing plans at a price level that added enough credibility to the program to convince customers that they would really be getting something if they paid to have their employees engage in these testing procedures, at a level of difficulty which practically ensured that those who took these exams would have to repeat the testing process a number of times before they could pass. As technicians devised ways to prepare for passing these exams more easily, changes to the tests, revisions of the technologies, and requirements for new certifications on releasing new iterations of systems and software have kept the business of charging large sums of money for the process alive and well.

In practice, most capable technicians can pass just about any kind of certification they can afford if they persist in paying to take the exam, and research the information they are uncertain about between attempts. This does not mean they will be able to adequately perform the duties that will be required of them when applied to the workplace, but they have demonstrated an acuity for absorbing some of the trivial concepts associated with their field of endeavor.

Having participated on both sides of this practice, the one thing missing from this entire process is the ability to measure true talent. In recent developments associated with current business practices, there has been a sudden unhealthy shift in the trends previously experienced. Though companies have continued unabated in their insistence on hiring certified professionals, there are increasing numbers of organizations that are no longer willing to pay the costs associated with obtaining the certifications they demand from their employees and potential employees. To make matters worse, more and more companies are requiring potential candidates to have a huge number of technical certifications in a wide range of specialized areas in order to qualify for employment consideration.

With the costs of certification now being shifted to the individuals rather than to companies who require this questionable measure of skill, the net effect is a form of technical discrimination that effectively pushes out those talented individuals who cannot afford to keep up with the shifting sands of getting certified for every aspect of their working experience. In some cases, I have seen companies requiring levels of certifications and experience in their requirements that are literally impossible for anyone to meet. For example, one job requirement required both individual certification and more years of experience with a single product than the number of years that particular product had been in existence!

While working for a software vendor who had decided to initiate a certification program, I was chosen to become one a few engineers who were selected to provide support for certified customers. When told what we would be doing differently for these customers, the management said the approach would be to treat these companies like they knew a little more than a regular customer, and skip a few of the normal preliminary questions when initiating the process of opening a support issue. That was all we had for a guideline. In obtaining an enterprise certification for myself with another vendor, I took the exam several times before passing it. I used the information I had gained to create a pretest preparation study for other engineers who would also be taking the test, and they passed their exams on the first try.

The bottom line here is that the current form of technical certifications being used as a measure of ability are practically worthless in what they truly offer, and more insidious in their impact on professionals trying to maintain a viable career in the technical industry. As it stands now, the technical industry does not need any more barriers to progress in attracting experienced talent that has already proven itself in real time industry experience.

Director of Software Concepts
BHO Technologists - LittleTek Center HTTP://home.earthlink.net/~jdir
Please provide a rating for the article to help us determine future content choices.

Monday, January 12, 2009

What You Must Do To Get A Mcse Certification

Writen by Mark Kessler

Being an MCSE, or Microsoft Certified Systems Engineer, can bring in some good money and give you a greater range of jobs to be obtained. To obtain an MCSE certification, you need to be able to pass six core curriculum exams, an elected exam, and a design course exam. While most will go to university for an MCSE certification, they can be obtained through online courses and by studying online guides. Taking the exam and passing with at least an eighty five percent is needed to become a certified MCSE according to an MCSE who took the actual Microsoft courses.

MCSE study material ranges from books that can be ordered and sent to you to purchased and downloaded to your home computer. A thorough knowledge of Microsoft systems is key and you'll need to be able to know the inner workings of a computer system before you can think about taking an MCSE certification course.

Certain internet web sites contain examples of past exams as a way to prepare yourself and study for the MCSE certification exam. Whether you take the course online, through the Microsoft internet site or go to an accredited university for it, make sure that you go over the MCSE study materials thoroughly and study as hard as you can for the exam.

There are a wide range of locations of MCSE training centers. Some of these centers even have high end retreats to train you on the finer points of being an MCSE. For those who can afford it, one training center offers a forty day retreat in the Himalayan Mountains for just fewer than three thousand dollars.

This forty day, intense training session covers every single requirement needed in order to take the final MCSE certification exam and start your new career. If you can't afford to spend three thousand dollars on flying to the Himalayas, then a cheaper way to do it is to go through a rigorous online study schedule on your own. There are online advisers in case you need help or an explanation. Once you've completed the courses, you can earn up to one hundred dollars an hour.

Mark Kessler - his website MCSE 411 offers accelerated training information for MCSE Certification courses, MCSE Testing Centers, MCSE Boot Camps, MCSE Online training, MCSE study material, Links, Forums and Blogs

Sunday, January 11, 2009

Help I Have To Pass A Certification Exam

Writen by Rhonda Goetz

Are you nervous? You should be! One of the most difficult things I ever did was preparing and passing a certification exam. I wish someone had told me the things I am about to tell you.

So you are nervous about taking a certification exam? These exams are not easy. But preparing wisely will help reduce some of your anxiety and allow you to concentrate on important stuff, like the correct answers!

The very first thing to do is to identify your learning style. If you are not sure about yours, there are online assessments to help you.

  • Learning Style Inventory
  • How do you learn?

    Once you know how you learn best, you can tailor your test preparation around that fact.

    Preparing for the test:

    Identify the types of activities that help you retain and understand the material.

    Do you learn best by listening?

    Then get an audio review tape or have someone read sections in the book aloud. Or organize a study group to discuss the concepts.

    Do you learn best by reading and note taking?

    Then create outlines and flash cards. Take lots of notes, then synthesize them down into an outline or draw out a concept or mind map. Create study guides, ie. flash cards, mnemonics, course summaries, etc.

    Do you learn best by doing an activity?

    Then create a presentation on the areas that you are struggling with, go to a job site where the concepts are being used, build a diorama or present the material to someone else.

    Now that you have identified the best way for you to learn, let's look at some other areas that will help you prepare.

    Choose your study spot wisely.

    It is important to choose your place of study. If you do most of your studying at the kitchen table while someone is cooking or in the living room with the television on, expect to need more time for study.

    Choose your place for study wisely. It is important to have a place that belongs only to you during exam prep time. Think of it as a refuge as you prepare for your future!

    Where do you study best?

  • Keep distractions away from your study area. Don't bring the Nintendo™ or Playstation™ into that room.
  • Turn your phone off and lock the door, this is your time.
  • Don't study in a closet. Make sure you have sufficient space to spread out notes and books or work on a computer.
  • Make sure your environment works for you. Not too hot, not too cold, just right. Do you have plenty of light? You have to see to study.
  • Did you get enough sleep to even start studying. The environment may be perfect, but the body is too tired. Make sure rest is on the study schedule.

    Well, the time is almost here. You have studied, prepared, and reviewed all that you can. Now you need to resist the urge to second guess your abilities. No all nighters for you! '

    The day of the test is the time to do a quick review, break out the topic outlines. Give yourself plenty of time to get to the test center, factor in accidents, natural disasters, etc. Here are some tips for the night before and the day of the test.

    The Night Before the Test

  • Don't second guess yourself
  • Get lots of sleep, well try anyway
  • Do not stay up cramming. You know your stuff, have confidence!
  • Go to dinner or a movie with someone, spend time talking about anything but the test
  • Go take a walk, clear your head
  • Set your alarm, set multiple alarms

    The Day of the Test

  • Eat a light meal before you go
  • Review your outlines
  • Make sure you have the ID required to gain access. If they say 2 forms of ID w/picture, they mean it.
  • Show up early for the test, but not so early that you increase your anxiety waiting ~15 minutes
  • When you arrive, use the bathroom. That way you won't be distracted later.
  • Do not mingle with other test-takers, their anxiety is catching.

    THEN go in with confidence, you can do this! Good luck!

    Rhonda Goetz, Instructional Designer
    Chrome Zebra, Inc.
    Demo Courses
    866.241.9927

    Rhonda Goetz is the owner and CEO of Chrome Zebra, Inc. She is also a Certified Internet Webmaster, a certification test proctor, and an online instructional designer.

    Chrome Zebra designs technology certification courses. To find out more about certification courses or experience a "course Of a Different Color" visit the Chrome Zebra Academy demo course site.

  • Saturday, January 10, 2009

    Cisco Ccna Ccnp Certification Ospf E2 Vs E1 Routes

    Writen by Chris Bryant

    OSPF is a major topic on both the CCNA and CCNP exams, and it's also the topic that requires the most attention to detail. Where dynamic routing protocols such as RIP and IGRP have only one router type, a look at a Cisco routing table shows several different OSPF route types.

    R1#show ip route
    Codes:

    C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
    D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
    N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
    E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

    In this tutorial, we'll take a look at the difference between two of these route types, E1 and E2.

    Route redistribution is the process of taking routes learned via one routing protocol and injecting those routes into another routing domain. (Static and connected routes can also be redistributed.) When a router running OSPF takes routes learned by another routing protocol and makes them available to the other OSPF-enabled routers it's communicating with, that router becomes an Autonomous System Border Router (ASBR). Let's work with an example where R1 is running both OSPF and RIP. R4 is in the same OSPF domain as R1, and we want R4 to learn the routes that R1 is learning via RIP. This means we have to perform route redistribution on the ASBR. The routes that are being redistributed from RIP into OSPF will appear as E2 routes on R4:

    R4#show ip route ospf

    O E2 5.1.1.1 [110/20] via 172.34.34.3, 00:33:21, Ethernet0

    6.0.0.0/32 is subnetted, 1 subnets

    O E2 6.1.1.1 [110/20] via 172.34.34.3, 00:33:21, Ethernet0

    172.12.0.0/16 is variably subnetted, 2 subnets, 2 masks

    O E2 172.12.21.0/30 [110/20] via 172.34.34.3, 00:33:32, Ethernet0

    O E2 7.1.1.1 [110/20] via 172.34.34.3, 00:33:21, Ethernet0

    15.0.0.0/24 is subnetted, 1 subnets

    O E2 15.1.1.0 [110/20] via 172.34.34.3, 00:33:32, Ethernet0

    E2 is the default route type for routes learned via redistribution. The key with E2 routes is that the cost of these routes reflects only the cost of the path from the ASBR to the final destination; the cost of the path from R4 to R1 is not reflected in this cost. (Remember that OSPF's metric for a path is referred to as "cost".) In this example, we want the cost of the routes to reflect the entire path, not just the path between the ASBR and the destination network. To do so, the routes must be redistributed into OSPF as E1 routes on the ASBR, as shown here.

    R1#conf t

    Enter configuration commands, one per line. End with CNTL/Z.

    R1(config)#router ospf 1

    R1(config-router)#redistribute rip subnets metric-type 1

    Now on R4, the routes appear as E1 routes and have a larger metric, since the entire path cost is now reflected in the routing table.

    O E1 5.1.1.1 [110/94] via 172.34.34.3, 00:33:21, Ethernet0

    6.0.0.0/32 is subnetted, 1 subnets

    O E1 6.1.1.1 [110/100] via 172.34.34.3, 00:33:21, Ethernet0

    172.12.0.0/16 is variably subnetted, 2 subnets, 2 masks

    O E1 172.12.21.0/30 [110/94] via 172.34.34.3, 00:33:32, Ethernet0

    O E1 7.1.1.1 [110/94] via 172.34.34.3, 00:33:21, Ethernet0

    15.0.0.0/24 is subnetted, 1 subnets

    O E1 15.1.1.0 [110/94] via 172.34.34.3, 00:33:32, Ethernet0

    Knowing the difference between E1 and E2 routes is vital for CCNP exam success, as well as fully understanding a production router's routing table. Good luck in your studies!

    Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNP and CCNA tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages. For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", just visit the website! You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNP exam with The Bryant Advantage!

    Friday, January 9, 2009

    Mcse Certification

    Writen by Ken Marlborough

    To get a Microsoft certification is no easy task. It requires systematic study, completion of coursework and an examination. Candidates need to face multi-level testing of their design implementation and administration skills in Microsoft Windows platforms to provide business solutions. MCSE classes, boot camps, online study guides and practice exams can help them go a long way in getting certified.

    So, what do you need to get the certification? MCSE certification requires lot of hard work and focused studying. To help MCSE aspirants pass the certification exam with decent grades, there are boot camps that comprise of intense classes stretching over two to three weeks. These are different from traditional MCSE classes that are held weekly and help students prepare for the exams.

    MCSE certification involves seven levels of testing, with intense course modules in operating systems, design and other electives on implementation. The exams are broken into four exams in operating systems, design and two others chosen by the candidate. The first five exams are called core exams, and the remaining are elective exams. Though the students get a choice even in their core exams, they have to pass one exam from each set of operating systems exams namely client operating systems and networking systems. This effectively means they have to pass one out of two operating systems exams and one of three networking systems exams. And they need to pass only one out of six design exams set by the Microsoft and two out of more than a dozen electives.

    Microsoft recommends different requirements for certification for the Windows Server 2003 and Windows 2000 platform. Microsoft's recommendations for the former include MCSE on Windows 2000 and NT 4.0 with specializations in Messaging and Security on Windows Server 2003. For Windows 2000 platform, Microsoft recommends just MCSE in Windows 2000 with specialization in Messaging and Security in Windows 2000.

    MCSE provides detailed information on MCSE, MCSE Certification, MCSE Term Papers, MCSE Training and more. MCSE is affiliated with Online MCSE Certification.

    Thursday, January 8, 2009

    Passing Your Ccna And Ccnp Configuring And Troubleshooting Routeronastick

    Writen by Chris Bryant

    For CCNA and CCNP candidates, it's hard not to laugh the first time you hear the phrase "router on a stick". Let's face it, that's a pretty silly term. But as those who have passed the CCNA and CCNP exams know, this is a vital exam topic that you must know how to configure and troubleshoot.

    Basic Cisco theory states that for hosts in different VLANs to communicate, a Layer 3 device must be involved to handle the routing between the VLANs. That device is a router, and there are special considerations that must be taken into account for both the physical router itself and the configuration you'll be writing.

    The router will be connected to a switch via a FastEthernet port (or higher). The router port cannot be a regular Ethernet port, since the router port will need the ability to send and receive data at the same time.

    The configuration of the interface is where things get interesting. Let's say we have two VLANs that will be using router-on-a-stick to communicate. Here is the VLAN information:

    VLAN 20: 20.20.20.0 /24
    VLAN 40: 40.40.40.0 /24

    The port on the switch that will be connected to the router's FastEthernet port must be in trunking mode, and you must know the trunking protocol in use. We'll go with the Cisco-proprietary ISL here.

    The physical FE port on the router will not have an IP address. The use of router-on-a-stick mandates the use of logical subinterfaces. While we don't have to use the VLAN numbers for the subinterface numbers, I've found this helps you keep the interfaces straight. One subinterface must be given an IP address in VLAN 20, and the other will have an IP address in VLAN 40.

    After creating subinterfaces fast 0.20 and fast 0.40, the config looks like this:

    interface fastethernet0
    no ip address

    interface FastEthernet 0.20
    ip address 20.20.20.1 255.255.255.0

    interface FastEthernet 0.40
    ip address 40.40.40.1 255.255.255.0

    Believe it or not, you're almost done! Now we need the encapsulation statement under each subinterface. The subinterface statement must reflect both the VLAN number and the encapsulation type being used. When we're finished, the config would look like this:

    interface fastethernet0
    no ip address

    interface FastEthernet 0.20
    ip address 20.20.20.1 255.255.255.0
    encapsulation isl 20

    interface FastEthernet 0.40
    ip address 40.40.40.1 255.255.255.0
    encapsulation isl 40

    And that's it! Your hosts in VLAN 20 should now be able to communicate with hosts in VLAN 40, and vice versa.

    A couple of final troubleshooting points - the most common error with router-on-a-stick is to put the wrong vlan number in the encapsulation statement. Also, make sure you have configured the router's IP address in VLAN 20 as the default gateway for hosts in VLAN 20, and do the same for VLAN 40.

    I hope you've enjoyed this look at router-on-a-stick. While the name may get a chuckle out of you, it's still used in quite a few networks out there, and knowing how to configure and troubleshoot it will get you that much closer to earning your CCNA and CCNP.

    Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages. For a FREE copy of his latest e-books, "How To Pass The CCNA" and "How To Pass The CCNP", visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Pass the CCNA exam with The Bryant Advantage!