Tag Archive | "ccie"

Cisco CCNA Certification: How And Why Switches Trunk


Your CCNA studies are going to include quite a bit of information about switches, and for good reason. if you don’t understand basic switching theory, you can’t configure and troubleshoot Cisco switches, either on the CCNA exam or in the real world. That goes double for trunking!

Trunking is simply enabling two or more switches to communicate and send frames to each other for transmission to remote hosts. There are two major trunking protocols that we need to know the details of for exam success and real-world success, but before we get to the protocols, let’s discuss the cables we need.

Connecting two Cisco switches requires a crossover cable. As you know, there are eight wires inside an ethernet cable. In a crossover cable, four of the cables “cross over” from one pin to another. For many newer Cisco switches, all you need to do to create a trunk is connect the switches with a crossover cable. For instance, 2950 switches dynamically trunk once you connect them with the right cable. If you use the wrong cable, you’ll be there a while!

There are two different trunking protocols in use on today’s Cisco switches, ISL and IEEE 802.1Q, generally referred to as “dot1q”. There are three main differences between the two. First, ISL is a Cisco-proprietary trunking protocol, where dot1q is the industry standard. (Those of you new to Cisco testing should get used to the phrases “Cisco-proprietary” and “industry standard”.) If you’re working in a multivendor environment, ISL may not be a good choice. And even though ISL is Cisco’s own trunking protocol, some Cisco switches run only dot1q.
Read the full story

Posted in Computer CertificationComments (0)

Cisco CCNA Certification: Cisco Switching Modes Tutorial


To pass the CCNA exam and earn that coveted certification, you’ve got to know Cisco switches inside and out. Among the many important details you’ve got to know are the three methods that Cisco switches use to forward frames, and the differences between the three.

The first switching method is Store-and-Forward. The name is the recipe, because that’s just what the switch does – it stores the entire frame before beginning to forward it. This method allows for the greatest amount of error checking, since the Frame Check Sequence (FCS) can be run before the frame is forwarded. As always, there is a tradeoff, since this error checking process makes this the slowest of the three frame forwarding methods.

The quickest method is Cut-Through, where only the destination MAC address of the frame is examined before the forwarding process begins. This means that the part of the frame is actually being forwarded as it is still being received! The tradeoff here is that the FCS does not run, so there is absolutely no error checking with Cut-Through switching.
Read the full story

Posted in Computer CertificationComments (0)

Cisco CCNA Certification: Broadcasts, Unicasts, And Multicasts


When you begin your CCNA studies, you get hit with a lot of different networking terms right away that you might not be familiar with. What makes it a little more confusing is that a lot of these terms sound a lot alike. Here, we’re going to discuss the differences between broadcasts, multicasts, and unicasts at both the Data Link (Layer 2) and Network (Layer 3) layers of the OSI model.

A broadcast is simply a unit of information that every other device on the segment will receive. A broadcast is indicated by having every bit of the address set to its highest possible value. Since a hexadecimal bit’s highest value is “f”, a hexadecimal broadcast is ff-ff-ff-ff-ff-ff (or FF-FF-FF-FF-FF-FF, as the upper case does not affect hex value). The CCNA exam will demand you be very familiar with hex conversions, so if you’re not comfortable with these conversions, get comfortable with them before taking the exam!

At layer 3, a broadcast is indicated by setting every bit in the 32-bit binary string to “1″, making the dotted decimal value 255.255.255.255. Every host on a segment will receive such a broadcast. (Keep in mind that switches will forward a broadcast, but routers do not.) In contrast to a broadcast, a unicast is a packet or frame with only one destination.
Read the full story

Posted in Computer CertificationComments (0)

Cisco CCNA / CCNP Home Lab Tutorial: The 2501 Router


To be truly prepared for your CCNA and CCNP exams, you need real hands-on experience with real Cisco routers and switches. However, a production network is a really bad place to practice your configurations, but an excellent way to get fired and/or sued. The key to becoming a true CCNA and CCNP is assembling your own Cisco home lab.

You don’t have to spend a lot of money to do so; used Cisco equipment is cheaper than ever. It’s robust as well – I’ve bought literally hundreds of used routers and switches over the years and have had very few problems. I owe much of my skill to practicing configurations and troubleshooting in my own home lab.
Read the full story

Posted in Computer CertificationComments (0)

Cisco CCNA / CCNP Home Lab Tutorial: Planning Ahead For IE Study


Candidates preparing to pass the CCNP exams are putting together Cisco home labs like never before. With CCNA and CCNP home lab equipment more affordable than ever, candidates have realized the importance of working on real Cisco routers and switches on the way to earning their certifications.

One question I get often from CCNP candidates is goes something like this: “I’m planning on pursuing the CCIE after I get my CCNP. What kind of routers and switches should I buy now in order to use the same equipment in my CCIE home lab?”

This is going to sound strange coming from me, because I’m the #1 proponent of CCNA and CCNP candidates buying their own home labs. When it comes to the CCIE, though, I have to say that you’re probably better off using rack rentals instead of investing big money now to buy more expensive equipment with which to earn your CCNP.
Read the full story

Posted in Computer CertificationComments (0)

Cisco CCNA / CCNP Home Lab Tutorial: Buying And Configuring An Access Server


A Cisco access server is generally the last item a CCNA or CCNP candidate has on their mind when they’re putting together a home lab. The thinking tends to be that since this router isn’t really doing anything in the production part of your practice lab, it’s not really important.

Once you have more than two devices in your home lab, though, you’ll realize that constantly moving the console cable around from one router to another gets very tiresome. That’s what an access server does for a home lab – it allows you to connect your PC to a single device when working in your home lab, with no need to constantly disconnect and reconnect the console cable. The console cable will be connected directly to the access server, and the access server is connected to all the other devices in your home lab. Once you start working with one, you’ll wonder how you got along without it!

The term “access server” is a little misleading. This is not a server in the traditional sense, it’s a Cisco router with asynchronous serial ports. It is these ports that you’ll use to connect to the other devices in your home lab. Two affordable models of access servers are Cisco 2509s and Cisco 2511s. They can be found on ebay as well as other vendors on the Net.

You will also need an octal cable. On one end, the cable has a large connector that will connect to the access server. The other end is actually eight separate cables, each with RJ-45 connectors. These connectors are numbered 1 – 8 and will be connected to the console port on each router and switch. It is important to note the number on each connector you’re connecting to the other lab devices.

Now that you’ve got the physical equipment, let’s take a look at a typical configuration of an access server:

no service password-encryption

no service udp-small-servers

no service tcp-small-servers

! hostname BRYANT_ADVANTAGE_AS4

no ip domain-lookup

ip host r1 2001 10.4.4.4

ip host r2 2002 10.4.4.4

ip host r3 2003 10.4.4.4

ip host sw1 2004 10.4.4.4

ip host sw2 2005 10.4.4.4

ip host FrameSwitch 2006 10.4.4.4

interface Loopback555

ip address 10.4.4.4 255.255.255.0

line con 0

exec-timeout 0 0

logging synchronous\

line 1 16

no exec

transport input all

You can assign any loopback address and number here the important thing to note is that the IP HOST table you will build constantly refers back to the loopback address on the access server.

In this configuration, I have the octal cable’s connector 1 in R1, 2 in R2, 3 in R3, 4 in SW1, 5 in SW2, and 6 in my frame relay switch. The number “2001″ in the first line of the IP HOST table refers to that connector. That’s why it is important to note the number on a given connector you place in the console port of a router or switch.

The asynchonous lines are identified by “line 1 16″. This access server has 16 possible connections many will just have 8, which is usually plenty. Regardless of how many lines you have, you’ll need the commands transport input all and no exec to allow reverse telnet to work effectively.

There’s one more thing to watch out for. When you first connect to the AS for a practice session, you will need to open the line to each device by using the full hostname of the device as shown in the IP HOST table. Here, you would begin by entering R1, R2, R3, SW1, SW2, and FrameSwitch to open the line to each device. After that, you need to enter the line number – 1, 2, 3, 4, 5, and 6. It sounds a little confusing at first, but after just a few minutes of practice you’ll be doing it without even thinking about it.

When you are working in your home lab, you will not go from one device to another that is, when you are done on R1 and want to configure R2, you must go back to the access server and then to R2. The keystroke to do this is . Again, it may sound complicated, but after a little practice you will again do this without thinking about it.

Adding an access server to your CCNA or CCNP home lab may not be on your mind now, but once you add a few more routers or switches to the lab, you’ll want to spend more time configuring and practicing and less time moving a cable around. And once you get one, you’ll wonder how you did without it!

Posted in Computer CertificationComments (0)