This chapter introduces many concepts, the following among them:
Concepts:Before beginning the first chapter, it is recommended that the student skim over the introduction to the text. It covers some history of the Cisco company, some reasons for studying Cisco material, and an overview of various Cisco certifications. This course deals with the first half of the text, which is roughly half of the material you will need to know to pass the Cisco Certified Network Associate exam. The introduction ends with a 40 question test over material from the entire text. Students are not expected to be able to pass this test without studying the material, which is the point of studying the text. Chapter 1 begins with a discussion of using network hardware to segment a network. In this sense, network segmentation is breaking the network into parts to reduce congestion. Each subnetwork still communicates with the rest of the network as needed, and each subnetwork functions better than it would in a network that is too busy. A LAN can be congested by many causes. The text offers a list of possible causes:
As the author does throughout the text, terms are introduced, then defined. He explains that a broadcast domain is "the set of all devices on a network segment that hear all broadcasts sent on that segment". Why is that a bad thing? If every device on a network were in the same broadcast domain, each device would have to "listen" to every broadcast transmission from every device. This puts an unnecessary load on the processing power of each device, and on the bandwidth of your network. If you break a network into subnetworks, connected by routers, those routers do not pass broadcasts from one network to the next (unless you configure them to do so). This increases the number of broadcast domains, and reduces the amount of broadcast traffic on each of them. The next term that is defined is collision domain. A collision occurs when two or more signals are sent on a channel meant to carry one at a time. A collision domain is any media segment in which devices contend for access. This is why the author tells us that it is typically an Ethernet problem: Ethernet is one of the most popular network methods, and it works by contention: every device is allowed to attempt to use the network medium at any time it is not already in use. Only one device at a time may transmit within a collision domain. A hub is a device used to connect several network nodes together. This is good. However, every signal that goes into a port on a hub comes out every other port on the hub. This puts all devices plugged into that hub in one collision domain. Bridges and switches are superior to hubs because they can determine where a signal is bound, and pass it only where needed. A bridge with two ports creates three collision domains. Assume nodes 1-5 are plugged into a hub connected to bridge port 1. Nodes 6-10 are plugged into a hub connected to bridge port 2. Each of the hubs, and the nodes plugged into them represent one of the collision domains. If traffic originates in one of these domains and is meant for another device in that domain, the bridge does not pass that traffic across. However, if traffic originates in one domain, and is meant for a device in the other domain, that effectively creates a third domain which is the sum of both. In this case, all the devices are still on one network, and are part of one broadcast domain: every device must receive every broadcast transmission. Switches are used in place of hubs. A switch filters traffic by MAC addresses (the hardware address burned into a network card), and only sends output to the ports that need it, which means that it allows the other ports to be used independently. This has the effect of increasing the bandwidth of the LAN because more users can use it simultaneously. Each device plugged into a switch is on its own collision domain. However, all of those devices are still on the same broadcast domain. A broadcast signal sent into a switch will be sent out all ports. The way a network works can be understood in terms of a model of a network that was created by the International Organization for Standardization, called the ISO for short. (No it isn't an acronym, it is from the Greek word isos, meaning equal.) Their model is called the Open Systems Interconnection (OSI) Reference Model, hence the ISO-OSI model. Once you understand this model, you will have a general, powerful reference for examining and comparing networks. In the Novell curriculum, we spent nine chapters on this model. I will present an overview here, in keeping with your text. For those who would like to understand the subject better, without the Cisco spin, look over the notes for course CNE 250. The seven layers of the model are usually written in a list, numbering
the top as layer seven and the bottom as layer one.
Several mnemonic sentences exist to help us remember the proper order. I recommend "Please Do Not Throw Sausage Pizza Away", because this is in the correct numeric order (bottom to top). If you must have one that goes from top to bottom, try "All People Studying This Need Drastic Psychotherapy". Warning: you MUST remember the correct order, the correct numbers, and the correct details for each layer. The processes that happen in each layer communicate with the next layer. Which way is next, up or down? It depends whether data is being passed out of the stack (down) or into it (up). Typically, a computer generates a request starting at the top layer, and working down. The request is passed across the network (probably to a server) and the received request is passed up the layers. When a response is generated, the process reverses. The Novell texts for this subject provide another metaphor for the model: think of each layer of the model as being like a shelf in a bookcase. There are seven shelves, and each shelf has several books on it. The books represent the topics that we discuss in our study of that layer. In fact, in each book are discussions of the various methods that relate to that topic. A method is a way of implementing a task the topic covers. For instance, the Physical layer includes the Connection Type topic (a task), and we will see that there are two classic methods for making connections (ways to do it). Traditionally, the layers are described from the bottom up. Your text explains them from the top down. This is the order in which they would be encountered by a signal leaving your computer, bound for the network. As a request is passed down the layers, a header is added to the request at each new layer. The header holds information that is added to the request by processes at that layer. So, by the time the request leaves the computer, it has had six more parts added to it. When the request is received by the server, the receiving layers strip off the information added to the request by their counterpart layers. The request increases in size as it leave the requester, and decreases in size as it is processed by the receiver.
The chapter changes focus to describe Ethernet networks. Ethernet is a networking method invented by Bob Metcalf at a place called Xerox PARC (Palo Alto Research Center). As stated above, it is a popular method that uses contention. Contention systems work by letting each device try to send a message on the net as needed, contending (competing) with all the other devices for the bandwidth. Ethernet uses CSMA/CD (Carrier Sensing Multiple Access, with Collision Detection). Carrier Sensing means listening to the medium, and only transmitting when it is not in use. Multiple Access means all devices can attempt to access the medium as needed. A collision occurs when two signals collide on the medium, causing signal loss. In a CSMA/CD system, collisions are detected and the devices that cause them each wait a random number of nanoseconds before sending again. The text refers to this waiting period as "backoff". (Sounds like a test question, doesn't it?) This usually results in one device going ahead of the other, avoiding a new collision. The text explains that Cisco thinks of Ethernet as running half-duplex or full-duplex (duplex). The author describes half-duplex as using one circuit, and transmissions flow both directions. This does not mention the part about the transmissions only flowing one direction at a time. Cisco describes a hub passing information to a switch in half-duplex mode, because the stations would have to watch for collisions. We are further told that such a system would only run at 30 to 40 per cent of the theoretical bandwidth. If every device were connected through switches instead, each device would be on its own collision domain, which Cisco says allows the network to run in full-duplex mode, using two circuits for each connection. This system, according to the text, would use those two circuits at 100% efficiency, taking us to 200% of the theoretical bandwidth. The author cautions that this is theory, and it may not occur in practice. Three kinds of connections are listed as candidates for full-duplex connections: host to switch, switch to switch, and host to host using a crossover cable (which, of course, is defined later in the chapter). It is explained that the Data Link layer creates frames to hold data passed to it from the Network layer. There are several types of frames, four of which are listed and described:
The author digresses for a bit into what he calls Ethernet addressing. Think of it this way: MAC addresses are unique identifiers for individual machines. If you did not need to send traffic from one network to another, MAC addresses could be the only addresses you might need. This is why we are told that Ethernet addressing uses MAC addresses. We are also told that MAC addresses are used as the host (individual device) identifier on networks that use the IPX/SPX protocol suite. (These would be older Novell networks, from before the time that Novell built in support for the TCP/IP protocol suite.) Back to frames... all frames have some common characteristics. Frames have fields that contain different types of information. Ethernet_II and 802.3 frames both contain 8 bytes of preamble (like a warning that data is coming), 6 bytes of Destination Address (recipient's MAC address), and 6 bytes of Source Address (sender's MAC address). I told you above how theses two addresses are constantly rewritten when routers pass data between them. These fields are followed by Type OR Length fields (see below), a data field of up to 1500 bytes, and a Frame Check Sequence (FCS) field holding error checking data. (Other fields exist, but these are the important ones.) Ethernet_II frames have a Type field next, that tells the type of protocol to hand the data to on the Network layer. The text tells us the Type 08-00 stands for IP. 802.3 frames do not have a Type field. They have a Length field. The designers of this frame type created it for Novell networks that only used IPX/SPX, so they did not see a need for a Type field. Darn. To overcome this lack of information the other two frame types are like 802.3, with this information included.
802.2 frames include Destination SAP and Source SAP fields. These fields hold data to identify the upper layer protocol to hand off to. The example in the text shows the value 0xe0, which stands for NetWare, which means IPX/SPX. SNAP frames have Destination SAP and Source SAP fields, as well, but they always hold the value 0xAA, which means they are SNAP frames. The protocol information is stored in a Protocol field. The author warns us that Cisco uses a SNAP frame with their proprietary protocol Cisco Discovery Protocol (CDP). The author uses the acronym IEEE several times, but I did not see his definition of it. The Institute of Electrical and Electronic Engineers (IEEE) is a standards organization that has specified many of the rules used in building networks. Their standards are often referred to by number. In this chapter, we discuss some of the IEEE 802.x standards. LAN protocols that support the IEEE 802 standards can be referred to as 802.x protocols.
Traditionally, networks have been built with cable of various types. Some classic types of cable media:
For images of cable media, I recommend following this link to online catalog of the Black Box company. Your text discusses one cable type in detail: Unshielded Twisted Pair
(UTP). The graphic on this page shows several twisted pairs of wires.
Each wire is covered with an insulator, and the two wires in each pair
are meant to be used as a circuit. These wires suffer from crosstalk,
leakage of signal from one circuit to another. The twists help cancel out
such leaks. The graphic shows a UTP cable with eight wires in it, making
four pairs. This type of cable comes in several varieties: two pair, three pair and four pair are common. Also, each variety may be available in grades, such as CAT 1 (Category 1) through CAT 5 (Category 5). There are several categories, and a major difference between them is the number of twists per foot in each pair. CAT 1 will have less than 5 twists per foot, CAT 5 will have 25 or more twists per foot (so it is better, and costs more). Note that the better the class of cable, the more bits per second can be passed across it. Connecting a system with twisted pair wiring is easy. You may use either
hubs or switches, but switches are preferred, for the reasons noted above.
The tables below describe a straight-through cable, a crossover cable,
and a rollover cable.
Your text suggests that making a rolled cable is easy, since you just cut the end off a good straight-through cable, and crimp a new end on it that has been rolled over. In the real world, the crimping part is not easy until you are practiced at it. The text describes configuring Hyperterminal to use as your connection to the Cisco console. It does not mention how to start Hyperterminal. On my XP workstation, I clicked Start | Programs | Accessories | Communications | Hyperterminal. The text also specifies that the default port settings in Hyperterminal will not work for a connection to the Cisco console. The recommended port settings are:
The text continues with a few statements about wireless networking. This topic includes several technologies. At this time, the most popular seem to be Broadband Personal Communication Service (PCS) and Wi-Fi (IEEE 802.11b and g). You should be aware of the usual bandwidth limits for Wi-Fi: 802.11b is limited to 11 Mbps (Megabits per second), 802.11g is limited to 54 Mbps. These are theoretical limits: actual bandwidth may be less. The text returns to the OSI model by telling us that as data packets are passed down from one layer to another, they are wrapped in an envelope by each new layer. That envelope includes information from each protocol that acts on the data at that layer. The process of wrapping new information around the message is called encapsulation. Each message passed down the layers has a series of wrappers placed on it. Notably, the Transport layer adds a Segment wrapper, the Network layer adds a Packet wrapper, the Data Link layer adds a Frame wrapper, and the Physical layer adds a Bit wrapper. Encapsulation is also used to send data across networks that do not support specific protocols. I once worked on a system that supported IPX/SPX, but not TCP/IP. The problem was that we had to pass data to distant IPX networks across IP networks that would not recognize our IPX traffic. The solution was to encapsulate our IPX traffic in IP wrappers, pass it across the IP networks, and remove the wrappers at the receiving systems. The text discusses the specific name given to protocol data units
(globs of data) at each layer. All layers involve the term packets,
and most have other terms specific to them as well:
The last major topic in the chapter is the Cisco hierarchical model for networks. It describes three layers and the relationship between devices found in those layers. This is a logical model, so devices may perform functions on more than one layer. The hierarchy is a structure of functions, not of physical layout of the network.
|