My Account | View Cart | Wishlist | Checkout | About Us | Contact Us

Login

Categories

Posts Tagged ‘ccna test’

CCNA 640-802: IP Addressing

Monday, June 7th, 2010 by sales@ciscokits.com

IP Addressing, conversions between binary and decimal

Today we will continue your preparation for the CCNA exam. We will talk about IP addressing and conversions between binary and decimal. Understanding how IP addressing works is a critical step in your preparation for Cisco’s CCNA exam because it will help you learn easily how routers take decisions to forward packets in your network.

IP addressing is the key function of every IP network to function. Today, when you say IP, you talk about IPv4. Soon, IPv6 will take its place, but now, every time when we’ll say IP we will talk about IPv4.

IP enables hosts to communicate with each other at the Network layer. In IPv4 each packet contains a source and destination address. That’s how the routers on the network knows where the packet is coming from and where they must forward the packet. The IP addresses fields are represented in 32 bits. Routers know how to interpret those numbers, but for a human to understand them would be too difficult. From our point of view, we use what’s called a dotted decimal address. A dotted decimal address is the human representation of the binary address. For example, the address 192.168.10.1 is a dotted decimal address. In its binary form, the address is 11000000101010000000101000000001. IP addresses have 4 octets. For example, 192 is the first octet, 168 the second, 10 the third and 1 the last octet. In its binary form, 11000000 is the first octet, 10101000 the second, 00001010 the third and 00000001 the last octet. Every octet, in its decimal form, can get a value from 0 to 255.

In the binary system there are only 1s and 0s. Depending on their position in the octet, they get different values. Each position is a power of 2. To get the decimal number you have to sum up those number.  

1

1

1

1

1

1

1

1

2^7 = 128

2^6 = 64

2^5 = 32

2^4 = 16

2^3 = 8

2^2 = 4

2^1 = 2

2^0 = 1

 

For example, we know that 10101000 is 168. But let’s see if we get the same number after we make the calculations.

2^7 * 1 + 2^6 * 0 + 2^5 * 1 + 2^4 * 0 + 2^3 * 1 + 2^2 * 0 + 2^1 * 0 + 2^0 * 0 = 128 + 32 + 8 = 168

Let’s now learn how to convert those numbers from decimal to binary. The decimal to binary conversion is similar to binary to decimal conversion. Keep in mind those powers of 2. When you calculate the binary value, you take those powers of 2 and compare them with your number. If your number is greater, you write down 1 and you subtract that power of 2 from the number. If your number is lower than the power of 2, you write down 0. You continue to make the calculations until you reach 2^0.

Let’s take the same number, 168, and convert it to binary.

168 is greater than 128. We write down 1 and we subtract 128 from 168. We get 40. 40 is lower than 64. We write 0 and we continue. 40 is greater than 32. We write 1 and we subtract 32 from 40, getting us 8. 8 is lower than 16. Write 0. We continue to 8, which is equal to 8. We write down 1 and from this point we can fill the remaining 3 spaces with 0s. Finally, we get 10101000.

168 >= 128?               1      168 – 128 = 40
40 >= 64?                   0
40 >= 32?                   1       40 – 32 = 8
8 >= 16?                     0
8 >= 8?                       1        8 – 8 = 0
0 >= 4?                       0
0 >= 2?                       0
0 >= 1?                       0

Try to practice these conversions. This is a requirement in the CCNA exam, and you may have to do some calculations. You can start for example to find out what’s the binary representation of 215? What about 110 or 16? Are you able to calculate the decimal value for 11010011, 00010110, 01110001?

We continue in our CCNA certification topic with the types of IP addresses.

In the range of a network, there are three types of IP addresses: network address, broadcast address and host address.

The network address is the address by which we refer a network. It is always the first address in an IP address range.

The broadcast address is a special address used to send data to all hosts on a network. It is always the last address in an IP address range.

The host address is the address assigned to a single host in a network. The value of the IP address must have a value between the network and the broadcast address.

We will discuss these types of addresses in the IP address components lesson.

An IPv4 host can communicate in different ways: unicast, broadcast and multicast.

In Unicast a host sends packets to only one host on the network and a host in other network.

Broadcast is the process of sending packets to all hosts in a network. Broadcast messages are not routed in other networks, allowing hosts to communicate on their network.

Multicast traffic is the traffic sent from one host to a selected group of hosts using a special IP address. Multicast is often used by routing protocols, in video and audio distribution and software distribution. In IPv4, there is a special block of addresses reserved for multicasting: 224.0.0.0 to 239.255.255.255.

IPv4 has 3 types of addresses: host addresses, multicast addresses and experimental addresses.

Host addresses are from 0.0.0.0 to 223.255.255.255 and are used for IPv4 hosts.

Multicast addresses, as stated above, are from 224.0.0.0 to 239.255.255.255 and are used for special purposes.

Experimental addresses are used only for research and experimentation and cannot be used in IPv4 networks. The range is from 240.0.0.0 to 255.255.255.254.

However, not all host addresses can be routed through the internet. There is a private address space used for communications in your internal network, which can be freely used by anyone. The private address blocks are: 10.0.0.0 to 10.255.255.255 (10.0.0.0/8), 172.16.0.0 to 172.31.255.255 (172.16.0.0/12) and 192.168.0.0 to 192.168.255.255 (192.168.0.0/16).

Although these addresses cannot be routed in the Internet, you can still have Internet connectivity. This process is called Network Address Translation (NAT). In this process, one or many hosts having private IP addresses are mapped to a router’s public IP address.

There are 4 more types of special addresses. The default route address is 0.0.0.0. This is used as a “catch all” route when a specific route is not available. The loopback address is by default 127.0.0.1, but the whole 127.0.0.1 to 127.255.255.255 is used. The loopback address is used by a host to communicate with himself. A link-local address is an address assigned automatically to a host which has no IP configuration present. The reserved space is from 169.254.0.0 to 169.254.255.255. There’s one more special type of address, called TEST-NET addresses. The reserved space, 192.0.2.0 to 192.0.2.255 is used for teaching and learning purposes. Unlike the experimental range of addresses, these addresses can be assigned to network devices.

Back in the days, when classless routing was not used, the IP addresses were classified in 5 different classes.

Class A addresses were the ones from 0.0.0.0 to 127.255.255.255. A class A network is has a default netmask of 255.0.0.0 allowing for up to 16,777,214 hosts per network ( 2^24 – 2). However, there’s possible to create only 128 network from the whole class A space. Or at least it was, back in the days, when classless routing was not used.

Class B addresses are from 128.0.0.0 to 191.255.255.255. The whole class B was able to create 16,384 networks (2^14) with a maximum number of 65,534 hosts per network (2^16 – 2). The default netmask si 255.255.0.0.

Class C networks were found within the 192.0.0.0 – 223.255.255.255 range. This class allowed for more networks -2,097,150 ( 2^21 ) but the maximum hosts per network was only 254 (2^8 – 2).

The class D and the class E address blocks are the same used today for multicasting, respectively the experimental addresses.

However, these days we use classless addressing. The process of assigning classless addresses is called subneting. We will learn you how to subnet on a separate, dedicated topic.

We hope we have found this introduction in IP addressing helpful. We must note that you must be able to effectively use IP addressing and convert the addresses between their decimal and binary forms when you’ll take the CCNA exam.

CCNA 640-802: OSI Model

Tuesday, May 18th, 2010 by sales@ciscokits.com

OSI Model

As part of our Cisco CCNA certification study, we will now introduce you to Open System Interconnection Reference Model (OSI Model).

The OSI Reference Model divides the network architecture in seven separate layers which, from top to bottom, are the Application, Presentation, Session, Transport, Network, Data Link and Physical Layer.

  osi

The first and the lowest layer of the OSI Model, the Physical Layer, defines the electrical and physical specifications for the devices, specifically the relationship between a device and a physical medium, such as a LAN Network Interface Card (NIC) and the UTP Cat 5e twisted pair cable. In the simplest terms, the Physical layer tells a device how to receive or to transmit on a specific physical medium. The data unit used in by the Physical layer is the Bit, meaning all data here is represented in its binary form, of 0’s and 1’s. Other examples include EIA RS-232, DSL, ISDN, Firewire, IRDA, USB, SONET/SDH, Fiber Media Converters, modems.

The Data Link Layer, handles the functional and the procedural ways to transfer data between network devices and to detect and to eventually correct errors that occur at the Physical layer. The Data Link Layer is concerned with the local delivery of frames between devices on the same LAN. The Data Link Layer has two sublayers: the Logical Link Control (LLC) layer and the Media Access Control (MAC) Layer.

The LLC sublayer handles the multiplexing of the protocols, provides flow control, acknowledgement and error notification.

The MAC sublayer of the Data Link Layer is sometimes referred as the layer which determines who is allowed to access the media at any one time and other times it refers to a frame structure with a MAC address inside. Example of services at this sublayer are: Physical Addressing (MAC addressing), LAN switching, Spanning tree protocol, Quality of Service (QoS), Virtual LANs (VLANs).

The Data Link Layer also handles the encapsulation of the Network Layer packets into frames.

The Network Layer is the third one in the OSI Reference Model. The Network Layer is responsible for end-to-end packet delivery and routing while maintaining QoS and error control functions. The Network Layer also provides the connection model: connection-oriented or connectionless. For example, the telephone system is connection-oriented, because the called user has to pick up the phone before a communication can be established. The logical IP addressing is also handled by the Network Layer for both IPv4 and IPv6. At this layer, data is represented as packets.

The forth layer of the OSI Model is the Transport Layer. The Transport Layer provides transparent data transfer, controls the reliability of a given link through flow control, segmentation/desegmentation, same order delivery, port numbering and error control. Typical example of Layer 4 protocols are Transmission Control Protocol (TCP) and User Datagram Protocol (UDP). Other examples include AppleTalk Transaction Protocol (ATP), Fiber Channel Protocol (FCP), NetBIOS Frames Protocol (NBF), and Stream Control Transmission Protocol (SCTP). At this layer, data is represented as segments.

Upper in the hierarchy is the Session Layer. This layer is responsible for opening, closing and managing a session between end-user application processes. It also provides full-duplex, half-duplex and simplex operation, session checkpointing an recovery. Example of session protocols are: L2TP (Layer 2 Tunneling Protocol), NetBIOS, PAP (Password Authentication Protocol), PPTP (Point-to-Point Tunneling Protocol), RPC (Remote Procedure Call protocol).

The Presentation Layer is handling the delivery and formatting of information to the application layer for further processing or display and vice-versa. At this layer encryption and data compression are usually made, also. Examples of Presentation Layer protocols are: ASCII (American Standard Code for Information Interchange), EBCDIC (Extended Binary Coded Decimal Interchange Code), LPP (Lightweight Presentation Protocol), RDP (Remote Desktop Protocol), and NCP (NetWare Core Protocol).

The 7th Layer of the OSI Reference Model, the Application Layer, is the closest layer to the user, which means, both the OSI application layer and the user interact directly with the software application. An easy to understand example is Telnet. Telnet is a remote terminal program. When a user tries to enter a command, the application layer will take that command, send it to the lower layers in a format which is understandable, and when the data is received by the other end, the command is executed. Other examples of Application Layer protocols include: HTTP (Hyper-Text Transfer Protocol), FTP (File Transfer Protocol), SMTP (Simple Mail Transfer Protocol), SNMP (Simple Network Management Protocol).

In this lesson, we have tried to explain to you as easily as possible the OSI Reference Model. We hope we did a great job and you found this information helpful in your study for the CCNA exam.

CCNA 640-802: Cisco 3 Layer Model

Wednesday, May 12th, 2010 by sales@ciscokits.com

Cisco Three Layered Hierarchical Model

Welcome to a new lesson from our Cisco CCNA certification exam preparation series. We would like to present you today Cisco’s 3 Layered Hierarchical Model.

Understanding hierarchy is important and it’s simple too. In real life we have all kinds of hierarchical models. For example, when you were in school, you, as a student, were at the bottom of the hierarchy. At the next level of the hierarchy were the teachers. Above the teacher there was one or many directors.

In the networking world, hierarchy helps you separate some parts of your network from others. When you design your network, you should use a hierarchical model to separate your network in different layers. Every layer of your network should perform only some functions. Avoid using network equipments as all-in-one equipments. For example, a border router, connected to your service provider, should do only the process of routing and some basic filtering maybe. Don’t use this router to implement QoS policies or VoIP services. This way, your network will be more predictable and you will be able to troubleshoot problems faster.

1

After years in the networking industry, Cisco developed its own hierarchical model, Cisco’s Three Layered Hierarchical Model. This is probably the most basic model ever known, and Cisco even developed its network in accordance with this model. Benefits of using Cisco’s hierarchical model are network stability, reliability and cost-effectiveness.

Cisco’s 3 Layered model consist from the core, the distribution and the access layers.

The Core layer is actually the backbone, or the core, of your network. This is the most critical layer because its purpose is to provide fault isolation and backbone connectivity. The core layer must be able to switch traffic at the highest speeds possible in a timely fashion. Also, at the core layer, the network must have a level of redundancy, used in case of link or hardware failure. You should not use this layer to create services for your users.

Because it has to be a fast and reliable layer of your network, you should not implement at this layer anything that can slow down the traffic, like ACLs, Inter-VLAN routing, packet filtering. Also, don’t add support for group access and do not expand the core layer. If your current devices are not supporting the traffic, upgrade them, instead of adding more devices.

When you design the Core layer of your network you must make sure it will be reliable, meaning you have to use technologies able to carry large amounts of traffic and also provide a high level of redundancy, such as FDDI, Fast/Gigabit Ethernet or ATM. Also, a good practice is to use routing protocols with lower convergence times to avoid downtimes. Again, you have to design this with speed in mind. At the Core layer you should have very little latency.

Examples of network equipments used in the core layer are: high speed WAN routers and switches, multiplexers, ATM networks, such as Cisco 7000, 7200, 7500 and 12000 series for WAN and Cisco 4000, 5000 and 6000 series for LAN.

In smaller networks you may see high-speed routers instead of switches at the core layer.

The Distribution layer is used as a communication point between the access and the core layer. Basically, this layer handles the routing, packet filtering, WAN access and determines how packets can reach the core if needed. This layer includes all OSI Layer 3 devices, such as routers and layer 3 switches.

At the distribution layer, generally you would implement:

  • Routing
  • ACLs, packet filtering and QoS
  • Security and network policies, including NAT and firewalls
  • Route Reflectors (RRs) to distribute routes across your network
  • Inter-VLAN routing
  • Workgroup functions

Examples of network equipments used at the distribution layer are: LAN routers, layer 3 switches, firewalls, VPN access router.

Finally, the Access layer, also called the desktop layer, focuses on connecting client devices, such as workstations, laptops, servers and peripherals on the internal network (same broadcast domain). If a host must access a resource in some other network, the Distribution layer handles to traffic to reach that network.  The access layer is used also to separate collision domains, filter MAC addresses and implement load balancing.

At this layer, the most used technology is Ethernet. Routing protocols are rarely used, instead static routing is often being seen.

As we already told you, this is the easiest hierarchical model and Cisco uses it in its network with great success. Although is not a big topic for your CCNA exam, you must know what are the layers of Cisco’s Three Layered Hierarchical Model and what is their purpose.

Preparing for the CCNA 640-802 exam

Saturday, April 24th, 2010 by CiscoKits

Preparing for the CCNA 640-802 exam

The Cisco Certified Network Associate (CCNA) is one of the most popular certification programs in the IT industry. It was introduced in April 1998 and soon became Cisco’s most popular certification. The CCNA certification is the entry-level certification.

After you pass the CCNA exam, you are certified to know various Internetworking concepts, such as fundamental networking concepts, routing and switching concepts and WAN technologies. You are also able to configure and troubleshoot Cisco equipments, routing protocols and many more.

Being a Cisco Certified Network Associate gives you more job opportunities and opens your road to higher level Cisco Certification programs, such as CCNP and CCIE.

The main CCNA exam objectives include:

  • Networking basics
  • OSI Reference Model
  • LAN and WAN technologies
  • Routing protocols
  • Switching
  • Wireless LAN
  • Using Cisco’s IOS to configure and troubleshoot Cisco equipments

In our courses, we will explain each topic in higher detail and we will provide you with hands-on examples. We will cover every concept, protocol or technology required to pass the CCNA certification exam.

Taking the CCNA exam doesn’t have any prerequisites. However, before you take the exam you must be sure you fully understand the topics presented in our lessons.

The questions in the Cisco CCNA exam have multiple formats: multiple-choice single answer, multiple-choice multiple answer, drag-and-drop, fill-in-the-blank and simulation.

The CCNA exam has a heavy focus on Routing protocols, Switching, Access lists, subnetting and simulation. You must fully understand how routing protocols and switching works, how to create access lists, you should be able to subnet in your head and you definitely must be able to configure Cisco equipments as required for the CCNA exam.

In addition to learning you should do some simulations before taking the exam. Setup a lab or rent one and experiment some network scenarios. This way you will better understand what’s going on with your network and how to configure and troubleshoot on different scenarios.

We, at CiscoKits, help you achieve the knowledge required to pass the CCNA. We are offering you instructor-led training, cram sheets, test engines, study guides and lab kits. Our instructor-led classes are held by highly-skilled certified instructors which will explain you in detail every topic you should be aware of for passing the CCNA exam. We are also offering you cram sheets so you can easily find the information you need without searching through the whole study guides. Our study guides are written by certified instructors and professionals and are covering all CCNA exam topics in an easy to understand fashion. We make our best to describe every topic as detailed as it can be and as easy to understand as possible. We are also offering you test engines. We carefully made these test engines to cover all topics in the CCNA exam. You will find hundreds of questions in our test engines. We are proud to deliver lab kits. With our lab kits, you will be able to setup different lab scenarios. Practice makes perfect and our lab kits help you achieve perfectness.

You may think why not studying for the CCNA exam with simulators and brain dumps. You could, but this is not guaranteeing that you will pass the exam. Simulators can be able to help you setup some topologies, but until now, no simulator is able to really simulate what happens in reality. Cisco’s IOS is very a very complex Internetworking Operating System. Simulators do not use the IOS, the only thing they do is to try to simulate it, and there’s no simulator out there who’s doing it well. Using real equipments, you use the real IOS, with all its features. Using brain dumps is also not a good thing to do if you really want to pass the exam from the first time. Brain dumps do not include all the information covered in the CCNA exam. You must have some previous knowledge or you must learn from other sources too. When you learn from our study guides you don’t need another external source of information. We are covering all you need to pass the CCNA exam.

When you take the CCNA exam, you will have only 90 minutes to answer all questions. It’s up to you how you manage your time, and you must do that well. Be careful because if you answered a question you can’t go back and review it. But, if you don’t know the answer to one question don’t spend too much time trying to figure out the correct answer. Simulations will usually take more time, but their score is higher. Take your time and do the simulations. Most important when you take the simulations, don’t panic. As we already told you, you will find a lot of subnetting questions. Before you go to your exam, practice subnetting properly until you are able to do the calculations in your mind. And you have to do that fast.

The Cisco CCNA exam can be taken in the Prometric or Pearson VUE testing centers. You must schedule the date when you’ll take the exam with one of these two testing centers. On the exam day, we strongly advise you to arrive earlier than scheduled and have a valid ID with you, such as a Passport or your Driving License. You will be required to sign a confidentiality statement. You can’t disclose the contents of your exam to other people. In the exam room you will not be allowed with books or notes, phones and calculators. Food or drinks however, may be allowed, depending on the training center. If you are not alone in the exam room, do not talk with the others. This can disqualify you from the exam. After you finished the exam, your supervisor will give you the certified copy of your exam result.

Because Internetworking technologies evolve very fast, the CCNA certification is valid for three years from the day you passed the exam. If three years have passed, you must recertify. However, if in these three years you attain a higher level certification such as CCNP or CCIE, you must not take the CCNA certification exam again.

In our lessons we will teach you everything you need to know to pass the CCNA certification exam. We will also give you real-world examples to help you better understand some concepts, technologies or protocols. This way, not only you will pass the CCNA exam, but you will also have hands-on experience on the topics covered in the CCNA exam.

CiscoKits CCNA Voice 640-460 Lab Workbook!

Monday, March 29th, 2010 by CiscoKits

Today is going to be a real short post introducing the ability to download our brand new CiscoKits CCNA Voice 640-460 Lab Workbook in eBook format.   We saw a need out there for a CCNA Voice lab workbook and I am sure you will agree this fills that need!  You can review the contents of the CCNA Voice 640-460 lab workbook here are our store at this link:

http://www.ciscokits.com/ccna-voice-lab-workbook/

CCNA Voice 640-460 Lab Workbook Trial Download

One of the nice things about the download version, is that you can download the CCNA Voice 640-460 Lab Workbook and preview some of the chapters FREE that are not password protected. If you like it, you can purchase a license to unlock the entire CCNA Voice 640-460 Lab Workbook.

So without further ado, here is the link to the electronic version of our Cisco CCNA Voice 640-460 Lab Workbook

http://www.ciscokits.com/ebooks/CCNA-Voice-640-460-Lab-Workbook.zip

We hope you enjoy this new offering from CiscoKits assisting in your CCNA Voice exam studies!

1 labworkbook

CiscoKits ASA 5500 & PIX Firewalls Demystified! Lab Workbook

Thursday, March 18th, 2010 by CiscoKits

Today is going to be a real short post introducing the ability to download our brand new CiscoKits ASA 5500 & PIX Firewall Demystified! Theory, Labs & Real World Scenarios Lab Workbook in eBook format.   We saw a need out there for a quality ASA book and I am sure you will agree this fills that need!  You can review the contents of the ASA 5500 & PIX Firewall Demystified! Theory, Labs & Real World Scenarios here are our store at this link:

http://www.ciscokits.com/asa-5500-pix-firewall/

ASA 5500 & PIX Firewall Demystified! Lab Workbook Download!

One of the nice things about the download version, is that you can download the ASA 5500 Lab Workbook and preview some of the chapters FREE that are not password protected. If you like it, you can purchase a license to unlock the entire ASA 5500 Lab Workbook.

So without further ado, here is the link to the electronic version of our ASA 5500 & PIX Firewall Demystified! Lab Workbook

http://www.ciscokits.com/ebooks/CiscoKits-ASA-Firewall-Lab-Workbook.zip

We hope you enjoy this new offering from CiscoKits assisting in your CCNA Security exam studies!

 ASA5500PIXFirewalls

CCNA Certification: WAN Concepts

Tuesday, March 2nd, 2010 by CiscoKits

Cisco CCNA Certification: WAN Concepts

We are welcoming you to a new lesson from our Cisco CCNA 640-802 exam preparation series. As outlined in the CCNA exam requirements, the CCNA candidate must have at least a basic understanding about WANs.

Wide Area Networks, or WANs for short, is a network that operates beyond the geographic scope of a LAN. A LAN is used to connected computers and network devices in a small geographic area, while WANs are extending to larger geographical areas. For example, you have one office located in USA and another office located in London. It would be impossible to create a LAN network between these two offices, but bigger services providers or carriers can be able to connect these two offices for you using WAN technologies. To operate, WANs use serial connections of various types.

WANs operate at OSI Layer 1 and Layer 2, specifically the Physical Layer and the Data Link Layer. To review, OSI Layer 1 describes how to provide electrical, mechanical and operational connections, while Layer 2 defines how data is encapsulated for transmission to a remote location and the mechanisms for transferring the resulting frames. Different technologies are used, such as Frame Relay and ATM. WAN access standards are defined and managed by a number of recognized authorities like, International Organization of Standardization (ISO), Telecommunication Industry Association (TIA) and Electronic Industries Alliance (EIA).

When you prepare for the CCNA exam, you must be able to describe some specific WAN terms. Some terms are related to the Physical Layer, some to the Data Link Layer and some about the WAN Switching methods. In this lesson we will discuss the terms related to the Physical Layer and the ones related to WAN Switching. The Data Link layer, specifically the encapsulation types and frame formats will be left for another lesson.

At the Physical Layer of a WAN you must be able to recognize and describe some key concepts:

  • Customer Premises Equipment (CPE) – is the device located in the premises of the subscriber (company) and connected to a service provider or carrier. The subscriber can either own or lease the equipment from the carrier. Example of CPE equipments are telephones, DSL and Cable modems, set-top boxes.
  • Data Communications Equipment (DCE) – sometimes called data circuit-terminating equipment, the DCE provides an interface to connect subscribers to the WAN cloud and consists of devices that put data on the local loop. Usually, the DCE equipment is a modem.
  • Data Terminal Equipment (DTE) – are the customer devices that pass the data from its network for transmission over the WAN. The DTE connects to the local loop through the DCE. The DTE device is usually a router.
  • Demarcation Point – is the border which separates the customer equipment from the service provider equipment. Physically, the Demarcation Point is usually the cabling junction box from the customer premises.
  • Local Loop – is the copper or fiber cable that connects the CPE at the subscriber to the Central Office (CO) of the service provider. Sometimes is called “last-mile”.
  • Central Office (CO) – is the service provider’s facility where local telephone cables link to long-haul, all-digital, fiber-optic communications lines through a system of switches and other equipments.

Several types of devices are used in WANs:

  • Modem – used to modulate an analog carrier signal to encode digital information and also demodulate the carrier signal to decode the transmitted information.
  • CSU/DSU – used by digital lines such as T1 or T3. The CSU provides termination for the digital signal and the DSU converts the line frames so the LAN can interpret them and vice versa.
  • WAN Switch – is a multiport internetworking device used by carriers able to switch WAN traffic types such as Frame Relay, ATM or X.25. They operate at the Data Link Layer.
  • Router – provides internetworking and WAN access interface ports used to connect to the service provider network, such as serial interfaces. Some types of interfaces require an external device such as a DSU/CSU or modem (analog, cable, DSL).
  • Core Router – is the router located in the middle or backbone of the WAN. The router must be able to support multiple types of interfaces and must be able to forward IP packets at full speed on those interfaces. The router must also support the routing protocols used in the core.

As we already told you, several authorities are handling the WAN standards. These protocols establish the codes and electrical parameters used by devices to communicate with each other. We will cover the most important ones, as requested by the Cisco CCNA exam.

  • EIA/TIA-232 – this protocol is able to signal speeds of up to 64kb/s using a 25-pin D-connector over short distances. It is also known as RS-232. The ITU-T V.24 specification is effectively the same.
  • EIA/TIA-449/530 – this is the faster version of EIA/TIA-232, being able to carry frames at speeds up to 2Mb/s. It uses a 36-pin D-connector and is also able to reach longer destinations. Also know as RS422 and RS-423.
  • EIA/TIA-612/613 – describes the High-Speed Serial Interface (HSSI) protocol, which provides speeds up to 52Mb/s using a 60-pin D-connector.
  • V.35 – ITU-T standard for synchronous connections between a network access device and a packet network using a 34-pin rectangular connector. Originally designed to support speeds up to 48kb/s, now supports speeds of up to 2.048Mb/s.
  • X.21 – ITU-T standard for synchronous digital communications. Uses a 15-pin D-connector.

WAN protocols are not able to run over LAN technologies, such as Ethernet and vice versa because the frame formats, encapsulation methods and the signaling at the physical layer differ from WAN to LAN.

WAN connections are generally grouped in three connection types: Point-to-Point, Circuit-switched and Packet-switches. In your preparation for the CCNA exam you must study Circuit-switched and Packet-switched technologies.

Circuit-switched networks are networks that are establishing a dedicated circuit between nodes and terminals before users may communicate. Let’s take for example a connection between two modems. The first one tries to make a connection with the other one by dialing its number. The dialed number is used to set the switches in the exchanges along the route of the call so that there is a continuous circuit between the two modems. However, the internal path between the exchanges is shared with a number of other connections. Time-division multiplexing (TDM) assures that a fixed capacity is allocated to each connection. Examples of Circuit-switched networks are the Public Switched Telephone Network (PSTN) and Integrated Services Digital Network (ISDN).

Packet-switched networks, unlike circuit-switched, route packets over a shared network. They do not require a circuit to be established and they allow multiple devices to communicate over the same channel. The switches are able to determine the link required to be used for forwarding the packet to the next switch or device using the addressing information found in each packet. The link determination can be made in two ways: connectionless or connection-oriented. Connectionless systems carry full addressing information in each packet and each switch must evaluate the address to be able to figure out where to send it, while connection-oriented systems are able to predetermine the route for a packet and each packet carries only an identifier. In packet switched networks, because the internal links are shared by many users, you may encounter delays and jitter (variability of delay).

The predetermined routes in a packet-switched network are called virtual circuits (VCs). A VC is a logical circuit between two network devices through the shared internal network. There are two types of VCs:

  • Permanent Virtual Circuit (PVC) – PVCs are used when data transfer between devices is constant.
  • Switched Virtual Circuit (SVC) – is an on-demand VC. The virtual circuit comes up when a data transfer begins and terminates when the transfer is complete. The first phase in a SVC is to establish the VC itself and then the data transfer begins. When the transfer completes, the VC disconnects from the remote device. SVCs are cheaper than PVCs.

Examples of packet-switched connections include: X.25, Frame Relay and ATM.

We will go deeper in this CCNA topic by studying different circuit-switched and packet-switched connections.

Analog dialup and ISDN are examples of circuit switched connections.

Analog dialup is using the traditional telephony copper cables. The data is modulated and demodulated by a modem and sent through the local loop to the CO. Advantages of using analog dialup are simplicity, available and low implement costs, but the main disadvantage is the low data rate, 56kb/s due to the PSTN network limitations. If your company needs a data connection only occasionally and is not sending or receiving large amounts of data, this connection may be adequate. However, voice and video traffic is not supposed to work at these lot bit rates.

Integrated Services Digital Network, or ISDN for short, are also circuit-switched networks. They allow a local loop to carry digital signals, resulting in higher data rates. ISDN turns the analog signals to time-division multiplexed (TDM) digital signals. TDM allows two or more signals to be transferred as subchannels in one communication channel. ISDN connections are using 64kb/s bearer channels (B) for voice or data and a signaling delta channel (D) for call setup and other purposes.

There are two types of ISDN interfaces:

  • Basic Rate Interface (BRI) – provides two 64 kb/s B channels and a 16kb/s D channel.
  • Primary Rate Interface (PRI) – allows for higher speeds. In North America, an ISDN PRI deliver 23 B channels at 64kb/s and one D channel, also at 64kb/s, totaling to 1.544MB/s, corresponding to a T1 connection. In the other parts of the world, PRI provides 30 B channels and one D channel, totaling to 2.048MB/s, corresponding to an E1 or a J1 connection.

Common packet-switched technologies used today include X.25, Frame Relay and ATM.

X.25 is a packet-switched technology mainly used these days for point-of-sale (POS) card readers. X.25 works at the Network Layer. Subscribers are provided with a network address. SVCs are established using call request packets and are identified using a channel number. Available speeds vary from 2400b/s to 2Mb/s, but they rarely exceed above 64kb/s. Due to the speed limitations, this type of networks are now being replaced by other technologies such as Frame Relay, ATM and ADSL.

Frame Relay is a protocol that works at the Data Link Layer, implementing flow control. Frame relay offers speeds up to 4Mb/s, and is able to carry both voice and data traffic. The VCs in Frame Relay are identified using an unique DLCI. You will find more details about Frame Relay in its dedicated lesson.

Asynchronous Transfer Mode (ATM) has a cell-based architecture. You may find someone referring to ATM as a cell-switched network. ATM cell are always 53 bytes, containing a 5 byte ATM header followed by 48 bytes of ATM payload. ATM networks are suitable for voice, video and data traffic. However, due to its small cells, it’s is less efficient than X.25 and Frame Relay and you need at least 20% more bandwidth than Frame Relay to carry the same amount of data. The biggest advantage of ATM is that it is able to operate at very high speeds – from T1/E1 to OC-12 (622Mb/s) and higher. In most cases, ATM uses PVCs, but can be configured as a SVCs too and allows multiple VCs on a single leased-line connection.

This concludes our lesson today. We hope you find it useful in your preparation for the CCNA exam. Understanding these key WAN concepts is very important, as well as for taking the CCNA certification but for real-life scenarios too.

CiscoKits CCNA Security 640-553 Lab Workbook Download!

Saturday, February 20th, 2010 by CiscoKits

Today is going to be a real short post introducing the ability to download our brand new CCNA Security 640-553 Lab Workbook in eBook format. We have had many customers who do not want to wait for a physical copy to arrive via UPS. I understand that as you want to get to doing your CCNA Security labs as quickly as possible. So we are offering a solution in which you can purchase to download our CCNA Security 640-553 Lab Workbook. You can review the contents of the CCNA Security Lab Workbook here are our store at this link:

http://www.ciscokits.com/ccna-security-640-553-workbook/

CiscoKits CCNA Security 640-553 Lab Workbook Download!

One of the nice things about the download version, is that you can download the CCNA Security Lab Workbook and preview some of the chapters FREE that are not password protected. If you like it, you can purchase a license to unlock the entire CCNA Security Lab Workbook.

So without further ado, here is the link to the electronic version of our CCNA Security Lab workbook

http://www.ciscokits.com/ebooks/CiscoKits-CCNA-Security-640-553-Lab-Workbook.zip

We hope you enjoy this new offering from CiscoKits assisting in your CCNA Security exam studies!

slabworkbook

CCNA Certification: EIGRP 640-802 Concepts

Tuesday, January 19th, 2010 by CiscoKits

EIGRP Concepts

In this lesson, we will introduce you to EIGRP, as requested by the Cisco CCNA certification exam.

Enhanced Interior Gateway Routing Protocol (EIGRP) is a Cisco proprietary, distance vector, classless routing protocol used for routing inside a network (IGP). In addition to other distance vector routing protocol, like RIP and IGRP, EIGRP has some unique features like: Reliable Transport Protocol (RTP), which provides reliable and unreliable delivery of EIGRP packets, Bounded Updates, Diffusing Update Algorithm (DUAL) to guarantee loop-free paths and backup paths, Neighbor and Topology Tables. EIGRP can operate as a classful routing protocol, as well as a classless one.

Unlike other distance vector routing protocols, EIGRP does not send periodic updates, so the route entries to not age out, instead, EIGRP uses a lightweight Hello protocol to monitor connection status with its neighbors.

Every EIGRP packet includes the EIGRP Packet Header. The important fields in this header are the Opcode field and the Autonomous System Number field. The Opcode specifies the packet type, which can be Update, Query, Reply and Hello. The Autonomous System (AS) Number specifies the EIGRP routing process. Unlike RIP, a Cisco router can run multiple instances of EIGRP. The AS number is used to track multiple instances of EIGRP.

Reliable Transport Protocol (RTP) is used by EIGRP for the delivery and reception of EIGRP packets. RTP sends packets to either unicast address or the reserved multicast address 224.0.0.10.

As we already told you, EIGRP uses five different packet types:

·         Hello packets – are used to discover neighbors and form adjacencies with them. These packets are multicast and use unreliable delivery and are sent typically every 5 seconds.

·         Update packets – are used to propagate the routing information. Update packets are sent only when a change in the topology occurs and only to those routers who require them. EIGRP update packets use reliable delivery and are sent to the multicast address when multiple routers require them, and to the unicast address when they are required by a single router.

·         Acknowledgement (ACK) packets – are sent when reliable delivery is used. They contain a nonzero acknowledgement number and are always sent to the unicast address.

·         Query and Replay packets – are used by DUAL when searching for networks and other tasks. Queries are sent to the multicast address and use reliable delivery, while replies are sent as unicast and they are also using reliable delivery.

In EIGRP, the default administrative distance (AD) is 170 when used as an Exterior Gateway Protocol (EGP), 90 when used as an IGP and 5 for EIGRP summary routes.

EIGRP also supports authentication to ensure the information transmitted over the network is authentic and from a trusted source.

To better understand EIGRP, we will use the following topology to configure an EIGRP network.

eigrp 

First, let’s configure the IP addresses on the interfaces of the routers.

R0(config)#int Fa0/0
R0(config-if)#ip addr 172.16.1.1 255.255.255.0
R0(config-if)#no shutdown
R0(config-if)#int Fa0/1
R0(config-if)#ip addr 192.168.1.1 255.255.255.0
R0(config-if)#no shutdown

R1(config)#int Fa0/0
R1(config-if)#ip addr 172.16.1.2 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#int Fa0/1
R1(config-if)#ip addr 192.168.2.1 255.255.255.0
R1(config-if)#no shutdown

R2(config)#int Fa0/0
R2(config-if)#ip addr 192.168.1.2 255.255.255.0
R2(config-if)#no shutdown

R3(config)#int Fa0/0
R3(config-if)#ip addr 192.168.2.2 255.255.255.0
R3(config-if)#no shutdown

Now, let’s enable EIGRP and specify what networks to advertise to our neighbors. We will use EIGRP autonomous system (AS) 1.

R0(config)#router eigrp 1
R0(config-router)#network 172.16.1.0 0.0.0.255
R0(config-router)#network 192.168.1.0

Optionally, in EIGRP, you can specify the wildcard bits when you chose to advertise a network. By default, when using the network command and a classful network address such as 172.16.1.0, all interfaces will be enabled for EIGRP. Although this is not our case, if you don’t want to enable all of them, you must specify the wildcard mask. To calculate the wildcard mask, you must substract the subnet mask from 255.255.255.255. For example, the wildcard mask for 255.255.255.252 is 255.255.255.255 – 255.255.255.252 = 0.0.0.3.

Let’s continue to configure the other routers now.

R1(config-router)#router eigrp 1
R1(config-router)#network 172.16.1.0
R1(config-router)#
*Mar  1 00:14:27.267: %DUAL-5-NBRCHANG
E: IP-EIGRP(0) 1: Neighbor 172.16.1.1 (FastEthernet0/0) is up: new adjacency
R1(config-router)#network 192.168.2.0

R2(config)#router eigrp 1
R2(config-router)#network 192.168.1.0
R2(config-router)#
*Mar  1 00:16:17.475: %DUAL-5-NBRCHANG
E: IP-EIGRP(0) 1: Neighbor 192.168.1.1 (FastEthernet0/0) is up: new adjacency

R3(config)#router eigrp 1
R3(config-router)#network 192.168.2.0
R3(config-router)#
*Mar  1 00:17:02.279: %DUAL-5-NBRCHANG
E: IP-EIGRP(0) 1: Neighbor 192.168.2.1 (FastEthernet0/0) is up: new adjacency

Now, let’s check the routing table.

R3#show ip route
Codes: C – connected, S – static, 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
       i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
       ia – IS-IS inter area, * – candidate default, U – per-user static route
       o – ODR, P – periodic downloaded static route

Gateway of last resort is not set


D    172.16.0.0/16 [90/307200] via 192.168.2.1,
00:00:35, FastEthernet0/0
D    192.168.1.0/24 [90/332800] via 192.168.2.1,
00:00:35, FastEthernet0/0
C    192.168.2.0/24 is directly connected, FastEthernet0/0

As you can see, the routing table is already populated with the routes. Let’s check the neighbors.

R0#show ip eigrp neighbors
IP-
EIGRP neighbors for process 1
H   Address                 Interface       Hold Uptime   SR
TT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
1   192.168.1.2             Fa0/1             10
00:04:27    8   200  0  4
0   172.16.1.2              Fa0/0             13
00:06:17    6   300  0  9

The fields of this command show you the following:

·         H column – lists the neighbors in the order they were learned.

·         Address – the IP address of the neighbor.

·         Interface – the local interface on which the Hello packet was received.

·         Hold – the current hold time. Every time a Hello packet is received, this value is reset to the maximum hold time for that interface and then counts down to zero. If zero is reached, the neighbor is considered down.

·         Uptime – amount of time since the neighbor was added to the neighbor table

·         SRTT (Smooth Round Trip Timer) and RT0 (Retransmit Interval ) – used by RTP to manage reliable EIGRP packets.

·         Queue Count – should always be zero, else EIGRP packets are waiting to be sent.

·         Sequence Number – used to track updates, queries and reply packets.

As with the other routing protocols, you can use the show ip protocols command to check detailed information about your routing protocols.

R0#show ip protocols
Routing Protocol is “eigrp 1
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
 
EIGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
 
EIGRP maximum hopcount 100
 
EIGRP maximum metric variance 1
  Redistributing: eigrp 1
 
EIGRP NSF-aware route hold timer is 240s
  Automatic network summarization is in effect
  Automatic address summarization:
    192.168.1.0/24 for Fast
Ethernet0/0
    172.16.0.0/16 for Fast
Ethernet0/1
      Summarizing with metric 281600
  Maximum path: 4
  Routing for Networks:
    172.16.1.0/24
    192.168.1.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    (this router)         90      00:16:06
    172.16.1.2            90      00:11:56
  Distance: internal 90 external 170

When automatic summarization is enabled or at least one subnet was learned via EIGRP, EIGRP includes a summary route. Null0 is the interface used for summary routes. This is a “virtual” interface used only for advertising purposes.

R0#show ip route
Codes: C – connected, S – static, 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
       i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
       ia – IS-IS inter area, * – candidate default, U – per-user static route
       o – ODR, P – periodic downloaded static route


Gateway of last resort is not set

     172.16.0.0/16 is variably subnetted, 2 subnets, 2 masks
D       172.16.0.0/16 is a summary,
00:37:40, Null0
C       172.16.1.0/24 is directly connected, Fast
Ethernet0/0
C    192.168.1.0/24 is directly connected, Fast
Ethernet0/1
D    192.168.2.0/24 [90/307200] via 172.16.1.2,
00:33:30, FastEthernet0/0

To calculate the preferred path on a network, EIGRP uses the following values in its composite metric:

·         Bandwidth

·         Delay

·         Reliability

·         Load

The default composite formula is: metric = [K1 * bandwidth + K3*delay]

By default, K1 and K3 are set to 1, and K2, K4 and K5 are set to 0. These values can be changed with metric weights tos k1 k2 k3 k4 k5 EIGRP router configuration command.

To find out the values used by EIGRP for the bandwidth, delay, reliability and load use the show interface interface interface-number command.

R0#show interface Fa0/0
Fast
Ethernet0/0 is up, line protocol is up
  Hardware is Gt96k F
E, address is c400.039f.0000 (bia c400.039f.0000)
  Internet address is 172.16.1.1/24
  MTU 1500 bytes, BW 10000 Kbit/sec, DLY 1000 usec,
     reliability 255/255, txload 1/255, rxload 1/255
 
Encapsulation ARPA, loopback not set
  Keepalive set (10 sec)
  Half-duplex, 10Mb/s, 100BaseTX/FX
  ARP type: ARPA, ARP Timeout 04:00:00

When you use Serial interfaces, the default bandwidth value may not match your real bandwidth which may cause EIGRP to not work properly. In this case, you have to manually configure the bandwidth value for your interface. Although, this is not our case, because we use FastEthernet interface, we will demonstrate you how to accomplish this, with the bandwidth kilobits interface configuration command.

R0(config)#interface Serial 0/0/0
R0(config-if)#bandwidth 1024

EIGRP is one of the most used Interior Gateway Protocols (IGP) used these days. In your preparation for your CCNA exam, you must know the basics of EIGRP and we hope you found this article useful for achieving the basic knowledge required for the CCNA certification exam. Remember that practice is best way to prepare for the CCNA exam, and we can provide you with many training resources, including labs prepared specially for the exam on which you can setup your own EIGRP enabled topologies.

CCNA Certification 640-802: Inter-VLAN Routing

Tuesday, January 5th, 2010 by CiscoKits

Inter-VLAN Routing

Welcome to a new lesson from the Cisco CCNA exam preparation series. In this lesson, we will talk about Inter-VLAN routing and different methods to accomplish this. Inter-VLAN Routing is used to allow devices on separate VLANs communicate with each other.

Inter-VLAN Routing is the process of routing traffic between VLANs in a network. As we explained to you in the previous lesson about VLANs, VLANs are used to create logical networks from a physical network, isolating hosts from one VLAN from the ones in other VLANs. Most of the times, although you want to create different broadcast domain in your network by creating more logical networks, you want the hosts from those networks to communicate with each other, even if they are not belonging to the same VLAN.

A host belonging to a VLAN attached on a specific physical port, for example VLAN 10 in port FastEthernet0/10 is usually not able to communicate to a host attached to another VLAN, for example VLAN11 attached to port FastEthernet0/11. They belong to different networks, different broadcast domains and switches do not know how to forward packets from one network to another. The process of forwarding packets from a network to another is called routing and you must use a router to accomplish this.

In classic networks that are using multiple VLANs, routing is performed by connecting multiple physical interfaces on the router to multiple physical interfaces on the switch. The switch ports are connected to the router in access mode, and a different static VLAN is assigned to every interface. An access mode switch port can belong to only one VLAN and is usually used to connect to an end user device.

Usually, this is not a desired behavior because you end up using too many physical interfaces, and sooner or later you will run out of interfaces. A typical switch can have up to 48 ports. This means, you can use that switch to route traffic between VLANs for up to 48 VLANs. In smaller networks this may be enough, but in larger enterprise networks, 48 VLANs may not be enough.

Router-on-a-stick ” is a type of router configuration in which you are able to use a single physical interface to route traffic between multiple VLANs. The router interface is configured as a trunk link and is connected to a trunk switch port. The router is accepting the tagged traffic on the trunk interface and routes it internally using subinterfaces. Trunk links are able to accept multiple VLANs on one physical interface. Switches are able to recognize the VLAN used for a specific packet through the use of encapsulation protocols that encapsulate or tag the frames. The protocols used are 802.1Q or Cisco’s proprietary Inter-Switch Link (ISL). To find out more about these encapsulation protocols check the Trunking Concepts lessons from our Cisco CCNA exam preparation series.

Subinterfaces are virtual interfaces associated with a single physical interface. These subinterfaces have their own IP address and VLAN assignment to be able to operate on a specific VLAN.

However, if your switch is capable of doing Layer 3 functions, you don’t need a router anymore. The switch will handle the Inter-VLAN routing decisions too. These switches are called multilayer switches .

The router acts as a Gateway for devices on a VLAN. The subinterface configured for a particular VLAN has an IP assigned from the range of IPs used in that VLAN. The other devices on the VLAN are sending packets for devices in other VLANs through the router. The router then, takes the routing decision and sends the packet to the destination.

Usually, when you configure a router, you assign IPs to interfaces, and once the IPs are assigned, the routing table shows how to reach the networks those IPs are part of.

Router(config)#interface Fa0/0
Router(config-if)#ip address 172.16.10.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#interface Fa0/1
Router(config-if)#ip address 172.16.30.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#end
Router#show ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – O
SPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 2 subnets
C 172.16.10.0/24 is directly connected, FastEthernet0/1
C 172.16.30.0/24 is directly connected, FastEthernet0/1

As you can see, the only chance to route traffic between those two networks is to connect both interfaces to the switch. This could be a solution if you have a small number of VLANs on your network and you are sure your network will never evolve, but if you have for example 120 VLANs what would you do?

The solution is to use subinterfaces. When you use subinterfaces,

Router(config)#interface Fa0/0.10
Router(config-if)#encapsulation dot1q 10
Router(config-if)#ip address 172.16.10.1 255.255.255.0
Router(config-if)#interface Fa0/0.30
Router(config-if)#encapsulation dot1q 30
Router(config-if)#ip address 172.16.30.1 255.255.255.0
Router(config-if)#interface Fa0/0
Router(config-if)#no shutdown
Router(config-if)#end
Router#show ip route
Codes: C – connected, S – static, 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
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 2 subnets
C 172.16.10.0/24 is directly connected, FastEthernet0/0.10
C 172.16.30.0/24 is directly connected, FastEthernet0/0.30

As you can see in this example, we use only the FastEthernet 0/0 interface for both VLANs. We have created the Fa0/0.10 and Fa0/0.30 subinterfaces, specified the encapsulation type dot1q which is IEEE’s 802.1Q, and the VLAN they belong to and we assigned an IP address. In this case, the physical interface, FastEthernet 0/0, does not need an IP address configuration, the only thing you must do is to use the no shutdown command so that the interfaces comes up.

If you use a multilayer switch, to enable to routing features you must also enable ip routing .

Switch(config)#ip routing

However, different issue may arise when you use Inter-VLAN Routing. A switch for example can have an incorrect VLAN assigned to a switch port or the switch port may be configured in access mode instead of trunk. A router also, can have the wrong VLAN assigned to an interface or subinterface or the wrong encapsulation type. Assigning an IP address belonging to a class not used in that specific VLAN will also cause Inter-VLAN routing to not function properly. If your network is not working as expected, these are the most common places to look for errors.

This concludes our lesson. When you’ll take your Cisco CCNA certification exam, you must be able to correctly configure and troubleshoot a network using Inter-VLAN Routing. Practicing is the best way to learn how things work and we hope you found our hands-on example a great starting point.