CCNA Cheat Sheet & Study Guide, 2018, 200-125

For a limited time, we are showing a sneak peek into the Cisco CCNA Cheat Sheet & Study Guide we’ve developed that has helped hundreds of people pass their Cisco CCNA 200-125 Exam on their First Attempt! The complete study guide (130+ pages) is available at Amazon in Hardcover or Ebook format.

CCNA Cheat Sheet Section 1
1.0 Network Fundamentals

CCNA Cheat Sheet Section 1.1

1.1 Compare and contrast OSI and TCP/IP models

OSI and TCP/IP models were both created to establish standards so applications could be developed at different layers of the stack without affecting or having to redevelop other layers.

OSI and TCP models were created to ease and foster the interoperability of different vendor’s protocols which operate at different conceptual layers of the OSI and TCP/IP stack.

These reference models leverage a layered approach where each layer clearly understands the format of what it will receive from its adjacent layers.

Benefits:
– Multi-vendor environments can fully interoperate
– Hardware and software can interoperate
Changes can be made at one layer without impacting and other layers, provided the standards are still conformed to.

Both are Hierarchical

Clearly defines which functions are performed at each layer

OSI model has 7 layers
– Top 3 layers focus on how applications interact with each other
o Application – layer 7
 User Interface
o Presentation – layer 6
 Handling of data, including encryption
o Session – layer 5
 Allows multiple data transmissions to occur simultaneously without interfering or disrupting one another
– Bottom 4 layers focus on data transmission
o Transport – layer 4
o Network – layer 3
o Data Link – layer 2
o Physical – layer 1

Easy way to remember: All People Seem To Need Data Processing

TCP/IP maps directly to the OSI model but layers are streamlined:
– Process/Application (maps to layers 5-7)
– Host-to-Host (maps to layer 4)
– Internet (maps to layer 3)
– Network Access (maps to layers 1-2)

Since the layers map evenly, we’ll simply reference the TCP/IP (DOD) layers in terms of functionality, knowing how they map to the OSI model.

The Application layer defines the end-user interface and the high-level device-to-device communications.

The Host-to-Host layer handles the transmission of services at a high-level for the upper-layer applications. This layer is responsible for ensuring communications is reliable and all data gets from point A to point B. Sequencing of packets and integrity of data are also done at this layer.

The Internet layer is where packets are created, sent, received and processed. IP addressing exists at this layer, as well as the routing of packets.

The lowest layer, Network Access, is where data is actually transferred between the network and the host itself. MAC (hardware) addressing happens at this layer.

CCNA Cheat Sheet Section 1.2

1.2 Compare and contrast TCP and UDP protocols

TCP is Connection Oriented
– Establishes handshake
– Confirms receipt of packets via “ack” (acknowledgment)

UDP is Connectionless
– No handshake
– No confirmation packets got there

TCP is more appropriate for packets that you need to be sure they got there (ie. Email, file transfers, etc).

UDP is more appropriate for transmission where if it’s not received on time, it’s not worth receiving any more (ie. Realtime traffic, such as voice conversation, video streaming, etc).

Know the TCP segment format for the exam!
– Source port (16 bits)
– Destination port (16 bits)
– Sequence number (32 bits)
– Acknowledgement number (32 bits)
– Header Length (4 bits)
– Window size (16 bits)
– TCP checksum (16 bits)
– Urgent pointer (16 bits)

There are also some reserved bits and flags, making total TCP header 160 bits (20 bytes) long.
– An additional 4 bytes (maximum) can be added for optional headers

Also know the UDP segment format for the exam!
– Source port (16 bits)
– Destination port (16 bits)
– Length (16 bits)
– Checksum (16 bits)

UDP header does not have any reserved bits and flags, so UDP header is always 64 bits (8 bytes) long.

TCP cares about sequencing (reordering packets in correct order before processing).

UDP does not care about sequencing – packets are processed as they arrive.

CCNA Cheat Sheet Section 1.3

1.3 Describe the impact of infrastructure components in an enterprise network

As data is prepared to be put onto the wire, it is encapsulated with various protocol headers (at each layer of the OSI model).

The encapsulation method is as follows:

Datasegmentspacketsframesbits

It’s also important to understand that all communications between hosts happens through “ports”. Each port has a number, which is unique to the protocol.

For example, TCP and UDP use ports in the 0 through 65535 range (2^16 possibilities). Ports 0 through 1023 are referred to as “well-known” ports, while ports 1024 through 65535 are considered “random” ports and can be used by any host at any given time for any reason.

CCNA Cheat Sheet Section 1.3.a

1.3.a Firewalls

Firewalls are used to block certain kinds of traffic from getting from one part of a network to another part of the network.

This “filtering” of traffic policy can be based off many different indicators, the most common of which are:
– Source IP address
– Source port
– Destination IP address
– Destination port
– Protocol type

Firewalls perform many additional functions, such as
– Intrusion Detection/Prevention Services (IDS/IPS)
– Deep packet inspection
o Application Visibility and Control
– URL filtering

Cisco IOS Firewall is based on Context-Based Access Control (CBAC)

CBAC has a deeper understand of the traffic traversing the network and can make security decisions based on the context of the traffic.

For example, external, untrusted web servers may not be able to send traffic directly into your organization. However, when you open your web browser and request a URL through your browser, the IOS Firewall can see this request and temporarily allow the external, untrusted web server to send you the data you requested through the firewall.

CBAC supports a number of protocols in this fashion (both UDP and TCP traffic).

Since UDP is connectionless, CBAC has a harder time determining which return traffic is tied with an initial request. It makes its best attempt by analyzing the protocol port number logic as well as considering the general timing between events in order to make its decisions.

Cisco’s acquisition of SourceFire have extended these services and expanded the next-generation firewalling capabilities offered on traditional firewalls.

Cisco IOS Intrusion Prevention System (IPS) is used to perform Deep Packet Inspection (DPI) on traffic passing through the Cisco router.
– Router functions as an inline IPS

Can be configured using GUI interface (Security Device Manager – or SDM), or via the traditional Command Line Interface.

Process to configure:
– Select within flash memory a directory to contain your IPS configuration lines
– Configure the IOS rule you want to enforce, including the directory referenced selected above
– Configure the rule you created to be applied either outbound and/or inbound to an interfaces or a subset of interfaces

Once these procedures above are completed, the router takes care of loading the signatures and enabling the IPS functionality.

Commands to know:
– Crypto key pubkey-chain rsa
– – named-key realm-cisco.pub signature
– Key-string [key on next line(s)]
– Ip ips signature-category
– – category all
– – retired true
– – category ios_ips basic
– – retired false
– (interface) ip ips name [name_of_ips]

There are many things to know about security today, that are changing each and every day. It’s important to stay on top of the latest security trends and protection strategies.

Most networks will include an array of firewalls, VPNs, IDS/IPS systems (network-based and host-based), as well as the extremely fast emergence of cloud-based security solutions.

Security policies are also an essential component of protecting your assets. These include acceptable use policies for your users, as well as incident handling procedures, disaster recovery procedures, etc.

The most important thing to know today is in regard to Denial of Service (DoS) attacks. DoS attacks are more common today than ever before and are becoming increasingly more difficult for organizations to protect against.

The exam may ask you about different types of DoS attacks on a networked environment. If so, these are the most important kinds for you to remember:
– Tribe Flood Network attack
– Ping of Death attack
– Stacheldraht attack
– TCP SYN flood attack

Tribe Flood Network attacks rely on faking (spoofing) the source IP address of a packet in an effort to simulate a massive attack using multiple source devices and targeting multiple destination devices.

A Ping of Death attack is a very simple attack that involves oversized pings that the destination host doesn’t know how to deal with, causing reboots or other seemingly erratic behavior.

A Stacheldraht attack is one that involves many different attack techniques and vectors, including encryption and root-level device access.

A TCP SYN flood attack is perhaps the most basic form of a network-based DoS attack. This type of attack involves a host (or multiple hosts) sending TCP SYNs to a target destination. When the target destination responds, offering to host the connection that was requested, the attacking machine simply never responds. The target machine keeps all of the resources reserved to host the connection requested for a set period of time. Those resources (connections) cannot be used for legitimate purposes while waiting for the attacking machine to respond. If the attacking machine can maliciously tie up enough resources on the target machine, this effectively causes a DoS for legitimate users. This is such a simple attack technique but has been very effective for quite a long period of time.

Important Note: To protect against these attacks, you must ensure your operating systems are current and contain the latest service packs and patches!

For the scope of this exam, it’s important to understand the security capabilities built into IOS. Dedicated security appliances are outside of the scope of this exam and will not be tested.

Cisco’s IOS firewall is the kid sister of a dedicated firewall. Since it runs on a device itself (like a router), it consumes system resources so you need to be careful which options you enable.

The most common features/functions of IOS Firewall are the following:
– Intrusion Detection
– Stateful firewall protection
– ICMP inspection
– DoS Detection and Prevention
– Blocking of Java Applets

There are other methods that can be used to filter potentially malicious traffic:
– Network Address Translation (NAT)
– Policy-based enforcement (based on a variety of factors)
– ACLs (basic as well as time-based)

The most common Cisco security appliance is by far and away the Adaptive Security Appliance (ASA). These are dedicated appliances that primarily perform firewall functionality, but can provide a plethora of additional services with current versions of hardware and software on the ASAs.

Intrusion Detection Systems (IDS), and more recently, Intrusion Prevention Systems (IPS), are used to find anomalous behavior in the environment and detect (or prevent it from happening in the first place) and report it.

Dynamic Access Control Lists (Dynamic ACLs) are also known as “lock and key” security. A certain packet transfer pattern can trigger an Access List to be created and enforced on a particular interface. This effectively can allow you to “open” access to some service or port dynamically by performing some traffic pattern.

Reflexive Access Control Lists (Reflexive ACLs) are ACLs that are created automatically in the opposite direction of traffic that is observed to allow return traffic to re-enter the network based on the specific requests (outbound traffic) that passes through a security device.

As mentioned earlier, ACLs (standard or enhanced) can also be enforced or changed during certain time ranges (e.g. during business hours, during lunch time, after business hours, weekends, etc).

Authentication proxy is another function included in Cisco security devices

There are some general “boilerplate” best practices that you should employ whenever deploying any new infrastructure or security devices.

Some of the “standard” configurations that should be used on Cisco equipment are as follows:
– Block the following addresses/directions:
– Block internal addresses from being sourced outside your organization
– Block all private IP addresses from being sourced outside your organization
– Block any packets sourced with invalid, multicast or loopback addresses

This is the end of the 5-page sample. The complete 130+ page CCNA cheat sheet and study guide is available at Amazon.

Preparing for Your CCNA Exam – Psychologically

Preparing for your CCNA Exam – Psychologically

When test-taking, perhaps the most important thing you could do for yourself is be prepared psychologically. This may sound simple but in reality it is not.

Why Prepare for CCNA – Psychologically

Taking a test is very stressful. This stress is actually part of the exam. The exam vendor wants to test how you do under pressure. The clock ticking on your screen when taking your exam may seem innocent, but in fact it’s there to make your exam more stressful. This is just one example of the things that make passing your exam that much more difficult. Fortunately, if you know these things in advance, you can anticipate and plan for them so you can be completely prepared psychologically before taking your exam.

How to Prepare for CCNA – Psychologically

Here are some things you should know or do to be prepared psychologically for your exam:

  • Ignore the Clock. Well, not entirely, but don’t let the clock distract you. Glance at it every 10 questions or so to see how you are doing on time, but don’t focus on it. And definitely don’t watch the time count down when you are taking a short break in between questions!

  • Ignore distractions. Of course there will always be distractions (like the guy coughing next to you). The key is not focusing on the distractions. If you feel yourself getting distracted, close your eyes, take a deep breath and start again. Do this as often as you need to stay focused on the task at hand.

  • Don’t get hung up if you don’t know an answer. Every exam has questions that seem nearly impossible. Remember you don’t need to get all of the questions right in order to pass. Pick your best guess on the hard questions and move on.

  • Don’t get tricked by the wording of questions. Sometimes, if you read too much into a question, you’ll choose a different answer. In this case, generally going with your first instinct is best.

  • Expect the Unexpected. What should you do if something goes wrong? What if your monitor shuts off, your mouse stops working or your computer freezes? Simple – Don’t panic and go straight to the testing administrator and ask for help.

Final Preparation for CCNA Exam

Once you have done all of the above, you need to ensure you review a solid CCNA cheat sheet right before you take your exam. This will give you the final edge you need to get your CCNA on your first attempt – we guarantee it 100%!

Physiology – Preparing for an IT Certification Exam

Physiology – Preparation for IT Certification Exam

If you’re like most test takers, you probably have a lot riding on your exam. You could need to pass your exam in order to receive a raise, a promotion or to improve your credentials and marketability in route to your next job opportunity.

Not Physiologically Prepared

All of these things leads to plenty of stress and anxiety for you while preparing for and taking your exam. You need to ensure you are as physiologically ready as possible prior to taking your exam. If you are ready physiologically, your body and mind will be best suited to answer the questions correctly the first time

How to Prepare Physiologically

Here are some things you should know or do to be prepared physiologically for your exam:

  • Control your breathing. Take deep breaths as often as you need. Count to 5 during your exhales. Proper breathing is key to staying calm and relaxed.

  • Close your eyes. If you feel yourself becoming stressed, close your eyes and imagine yourself in a location you find very relaxing. Maybe you want to visualize yourself on a cruise ship in the middle of the ocean with the waves gently crashing against the side of the ship. Imagine whatever works best for you.

  • Stretch often. Keeping your muscles relaxed is very important. Most importantly, stretch your neck, shoulders and upper back. Do this as often as you need. Sitting at a desk staring at a computer monitor can easily cause uncomfortable muscle tension.
  • When You are Physiologically Ready

    Once you are physiologically ready to take your exam, take a relaxing day the day before your exam. If you can take the day off from work and spend it laying on the beach or in front of a pool, go for it. Even better, take a vacation day. After all, once you pass your exam, you will be much more calm and be able to take more vacations than you ever imagined before!

Cisco Certification Exam Secrets

Cisco Certification Exam Secrets

To give yourself the best chances of passing on your first attempt, it’s important to know as much about the testing procedures as you can before taking the exam.

What Cisco Doesn’t Want You To Know

Here are Cisco Certification Exam Secrets that Cisco doesn’t not want you to know:

Cisco Secrets

  • Many exams are not scored out of 100 points. Some exam vendors, for example, grade their exams on a scale of 300 to 1000. If the passing score for an exam is 750, most people equate that to a 75 (meaning you need to answer correctly 3 out of ever 4 questions). However, there’s really only 700 points that can be earned (1000 minus 300). So a 750 score means you’ve earned 450 out of a possible 700 points (equivalent to roughly a 64/100). Big difference!

  • Exams sometimes have hidden “Beta” questions that are not scored. If you receive a question that is overly complex, strange or just different than the other questions on the exam, there’s a good chance you’ve hit a “Beta” question. “Beta” questions are not listed as such so you don’t know which ones they are. However, they are not counted towards your exam score. Testing vendors use this technique to try out different questions to see how many people answer correctly before adding them into the exam as “real” questions and counting them in your score report.

  • Not all questions are scored the same. There are many different types of questions on exams. There are multiple choice, drag-and-drop, free-text (commands), and simulated (click-based) questions, just to name a few. Each of these could be worth a varied amount of points. Usually, the most complicated the question, the more points it is worth.
  • Pass Your Cisco Exam

    Now that you know all of these secrets, the next step is to take and pass your Cisco Exam. If you are looking to start by taking your Cisco CCNA exam, be sure to download a top-notch CCNA Book and CCNA Cheat Sheet so you are ready to pass right away!

IT Exam Testing Center Secrets

IT Exam Testing Center Secrets

The two primary testing providers for IT certification exams are Pearson Vue and Prometric. Within each of these providers, there are many participating testing centers at which you can take your exam.

Things Testing Centers Don’t Want You To Know

Here are some things the testing centers do not want you to know:

  • Time slots for taking your exam are not overly enforced. It’s important to schedule your exam for the time you think you will be ready to take the exam. Officially, if you are more than 15 minutes late for your exam, the testing center does not have to allow you to take the exam and you will not receive a refund. However, this policy is tied to the testing center itself which is run independently from the testing provider. If you will be late or early, simply calling the testing center and let them know. Unless they are very busy with candidates that day, normally it will not be a problem to take your exam earlier or later in the day. The exam, however, must be taken during the same calendar day as it was scheduled for it or the exam fee will be forfeited.

  • Exam content (questions and your response) are stored on a server at the testing center. This is important to know because many times the computer you are using to take your exam will hang up during your exam. If the computer locks up, the first thing you may think is that all of your responses are lost and you will need to retake the exam again. Luckily, this is not the case. Since the exam questions and answers are actually stored on a server, simply rebooting your workstation will allow you to restart where you left off. However, never reboot the workstation yourself. Always inform the testing center administrator of your problem and let them resolve the issue for you.

  • You can request to have your seat changed. If for some reason you aren’t happy with where you are sitting (for example, if the guy next to you is coughing and sneezing constantly), you can ask to have your seat moved. Each testing center usually has multiple computers that are allocated for a particular testing provider (Pearson Vue or Prometric), so you can usually move your seat to an alternative workstation if you are uncomfortable using the one you were originally assigned.

CCNA Dumps – Beware!

CCNA Dumps

The Internet is a great place to find just about anything, and CCNA Dumps are no different. Quality CCNA certification study materials are hard to find, but there are many things you must consider before using CCNA Dumps. It is very important to be careful when deciding what materials to use to prepare for your exam.

What are CCNA Dumps?

There are many places on the Internet that will sell “practice exam questions”. Some people have reported that these “practice exam questions” are sometimes materially identical to some of the actual exam questions they receive on the exam. Aside from being morally wrong and borderline illegal, going down this route can be potentially disastrous for your certification career.

Where to find CCNA Dumps?

CCNA Dumps are not hard to find. You can simply google for the term “CCNA Dumps”. However, there are much better resources, both short-term and long-term, that you should use to study for your CCNA certification exam.

Reasons NOT to Use CCNA Dumps

Here are some reasons why you want to stay far away from CCNA Dumps:

  • Exam Vendors know when you’ve used these materials. It’s not very hard for exam vendors to determine when you’ve used these materials beyond a reasonable doubt. If an exam vendor believes you’ve used these materials, your certification can be revoked and you may even be banned for life from ever acquiring that exam vendor’s certifications again.

  • It’s just wrong. When you tell people you are certified, you’ll want to feel proud of your accomplishment because you’ve earned it.

  • You won’t be prepared to use the skills if you didn’t actually learn them. Once you are certified, employers will expect you to be an expert in the topic areas for which you are certified. You’ll need to have the skills to support any certification you’ve attained.

  • It’s simple enough to pass the “right” way. We’ve made it extremely simple for you to develop a plan and pass your certification exam. Don’t use materials that may jeopardize your certification career when you can attain the accomplishment with pride, dignity and confidence.

Alternative to CCNA Dumps

If you want to get certified and feel confident and good about how you attained your certification, use a rock-solid set of CCNA study materials created specifically to help you pass your CCNA exam quickly and easily on your first attempt. These materials are so effective, we offer a 100% guarantee you will pass on the first attempt!

CCNA Exam Strategies – CCNA Test Taking Strategies

CCNA Exam Strategies


CCNA Exam Strategies are essential when taking any exam, and technical exams are no different. Here are some very important CCNA Test Taking Strategies you can use to give yourself the best chance of passing your CCNA exam on your first attempt:

CCNA Exam Strategies – General

  • Start with the best CCNA Exam preparation materials. We aren’t talking about lengthy books or worthless practice exams. We are talking about the best, highest-rated CCNA Study Guide and CCNA Cheat Sheet available anywhere. Start by using the best content you can get and your path to Cisco CCNA Certification will be much smoother, quicker and easier.


  • Keep your eye on the clock. Do yourself a favor and do some quick math before your exam begins. If you have 2 hours to answer 120 questions, you know that’s about 1 minute per question, so pace yourself properly. Also, if you are halfway through your test and have about half the time remaining, you are on an acceptable pace. If not, speed up or don’t rush depending on how much time you have remaining.


  • Show up early. Most testing centers will allow you to start your exam if you get there early, but not all will allow you to take the exam if you get there late. Show up early and avoid the extra stresses associated with rushing to get there on time.

CCNA Test Taking Strategies – Multiple Choice

  • Think of the answer before looking at the available choices. This will help avoid a tricky answer throwing you off.


  • Read all of the choices before making a selection. Many times you will find a “better” answer by reading all of the choices.


  • Eliminate answers you know are incorrect. By narrowing down your choices, it helps you remain clear and focused so you can choose the correct answer. It also helps give you the best odds if you need to “guess” at the best response.


  • Watch for “all of the above” and “none of the above choices”. For questions that have answers that state “all of the above” or “none of the above”, do not choose “all of the above” if you know one of the choices is incorrect and do not choose “none of the above” if you know one of the choices is correct.

Other General CCNA Strategies (If All Else Fails!)

  • Watch for Positive vs. Negative choices. While not always the case, if given the choice of a positive response or a negative response, the positive choice is more often the correct answer


  • Watch for answers with more information included. Again, while not always the case, if given the choice of an answer with more information included than the alternative responses, the answer with more information included is more often the correct answer.

Preparing for CCNA Exam

Preparing for CCNA Exam

Everyone knows it’s important to be confident in your approach to preparing for CCNA exam since it is a technical exam. However, what some people don’t realize is it’s just as important (if not more important) to be prepared mentally as it is to be prepared technically.

How to Prepare for CCNA Exam

Most people know they should prepare for the Cisco CCNA exam before taking it for the first time. Where people get stuck though is figuring our what exactly to do to prepare and to be confident before the testing day.

Where to begin with Preparing for CCNA Exam

Of course, preparation starts by knowing your stuff backwards and forwards. If you are confident in the material being tested, it’s easier to relax to be prepared mentally.

Know Your Material

Get yourself a good CCNA Study Guide and know the content cold before taking the exam.

Aside from the technical preparation, here are a list of things you should do to prepare yourself mentally before taking your exam:

  • Know the Testing Center. If you’ve never tested there before, do you know how to get there? Do you need to print directions? Once you get to the building, do you know what floor number the testing center is located on? Do you have a name and phone number of a person you can call for information in case you cannot find your way to the testing center?

  • Know the Exam Details. You should know the exam name and number, know how much time you have to take the exam and know exactly what your strategy will be if you aren’t sure of the answer to a particular question.

  • Know the Exam Format and Structure. Can you skip or mark questions and return to them later? Are the exam questions multiple choice, single answer or some other variation? If there are multiple correct answers, will the question indicate how many correct answers to choose?

  • Know how the Exam is Scored. Is the exam scored out of 100 points? Or is it scored on a sliding scale with scores ranging from 300 to 1000? You should also know what the passing score is for the exam you are taking.

Or you can always take the easy way out and leverage our Cisco CCNA Shortcut!

Certification FastTrack

If you want to become certified quickly and easily, and simply don’t have 50-100 hours to study, you need a Certification FastTrack. A Certification FastTrack is a quick and easy 3-step process guaranteed to get you certified on your first attempt!

Step 1: Download a copy of the exam outline. Copy and paste the outline into a spreadsheet or word processor program in table format. Add rows and adjust the column sizes such that you will have room to make notes under each of the exam topics. Save and print the outline.

Step 2: As you study, take notes in the blank sections you created under each exam topic. Ensure you do not leave any sections blank since all sections will be tested on your exam.

Step 3: Review your notes immediately before you take your exam.

We’ve also made it easy for you by already doing Step 1 and Step 2 by creating study notes for you. By using these notes, all you need to do is Step 3 – review the notes and take your exam. We’ve already helped hundreds of people pass their certification exams using this exact method with these exact same notes! We are absolutely certain that with these notes, you will pass on your first attempt – guaranteed!

The key to this method is that it is mapped precisely to the exam topics, so you are spending your time studying only the things that matter. Some people feel you should study everything so you are fully prepared for whatever the exam throws at you. However, we know from experience that studying too much unnecessary information will cause you to not be able to remember the critical information you need to pass the exam. As such, our notes of specifically designed to help you pass your exams quickly and easily on your first attempt.

You can always request a 5-page sample of our CCNA study notes at any time.

Cisco Certifications Salary with No Experience

Cisco Certifications Salary without Experience

So you really want to figure out what kind of Cisco Certifications salary you can earn if you become Cisco certified? $50K? $75K? $100K? Try $125-$150K (or more!) salary (plus benefits), and that’s just for starters. Think I’m crazy? Let me explain.

Where do I begin with Cisco Certifications?

Employers today are interested in more than just what a candidate knows today. They are interested in a candidate’s ability to learn. By taking and passing your Cisco Certification exam (CCNA certification for starters), you are demonstrating to your prospective employer that you know how to learn. Employers view that as a critical factor in their hiring decisions. That’s why those individuals who are Cisco certified are often the first to get hired – even in a bad or tough economy!

How can I become certified TODAY?

It’s true that becoming Cisco certified is not easy for most people (unless you use our studying technique). But you must remember that the Cisco certifications will open up many doors for you that you wouldn’t have available to you without the Cisco certification. And if your goal is to ultimately become CCNP or CCIE certified, the CCNA certification lays the groundwork and provides you with immediate credibility to earn that $100K+ salary you deserve.

I only want a plan to “get rich fast”!

I should also mention that the latest CCNA-related information can be located on Cisco’s CCNA page, and PayScale had conducted a thorough CCNA Salary Survey.

I highly recommend you use our CCNA study guide and CCNA cheat sheet to become certified ASAP (pass your exam as early as tomorrow!) Time is money, and the faster you become Cisco CCNA certified, the faster you will be moving up the corporate ladder and cashing in on those super-sized paychecks!

Update: This is dated but there is a Salary Survey from Global Knowledge which includes information about Cisco’s CCNA certification.