© 2005 Cisco Systems, Inc. All rights reserved.INTRO v2.12-1 Building a Simple Ethernet Network Understanding How an Ethernet LAN Works.

Презентация:



Advertisements
Похожие презентации
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Building a Simple Serial Network Understanding the OSI Model.
Advertisements

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Module Summary LANs are networks that are located in a limited area, with their components.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Growing the Network Understanding the Challenges of Shared LANs.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Constructing Network Addresses Classifying Network Addressing.
© 2006 Cisco Systems, Inc. All rights reserved. ICND v Configuring Catalyst Switch Operations Introducing Basic Layer 2 Switching and Bridging Functions.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Constructing Network Addresses Calculating Subnet Masks.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Constructing Network Addresses Understanding Binary Basics.
© 2005 Cisco Systems, Inc. All rights reserved. INTRO v Module Summary A network is a connected collection of devices (computers, interconnections,
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Connecting to Remote Networks Understanding WAN Technologies.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Connecting to Remote Networks Using Dedicated Connections for WANs.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Connecting Networks Understanding How TCP/IP Works.
© 2005 Cisco Systems, Inc. All rights reserved. INTRO v Growing the Network Maximizing the Benefits of Switching.
© 2005 Cisco Systems, Inc. All rights reserved. INTRO v Module Summary TCP/IP is the most widely used networking protocol, with functions that can.
© 2006 Cisco Systems, Inc. All rights reserved. ICND v Managing IP Traffic with ACLs Introducing ACLs.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v BGP Overview Understanding BGP Path Attributes.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Ensuring the Reliability of Data Delivery Establishing a TCP Connection.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Ensuring the Reliability of Data Delivery Understanding How UDP and TCP Work.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Connecting Networks Exploring the IP Packet Delivery Process.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Connecting to Remote Networks Using Packet Switching in WANs.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Building a Simple Ethernet Network Defining a LAN.
Транксрипт:

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Building a Simple Ethernet Network Understanding How an Ethernet LAN Works

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Outline Overview Ethernet Ethernet Addresses The Role of CSMA/CD in Ethernet Ethernet LAN Standards Ethernet Frames Ethernet Frame Addressing MAC Addresses and Binary-Hexadecimal Numbers Converting Numbers from Decimal to Binary Format Binary-to-Hexadecimal Number Conversion Hexadecimal-to-Binary Number Conversion Summary

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Ethernet Evolution

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v MAC Address Components

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v CSMA/CD

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v LAN Standards

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Ethernet Frame Structure

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Communicating Within the LAN

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v MAC Addresses

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Base 2 Numbering System

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Decimal-to-Binary-Conversion

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Decimal, Binary, and Hexadecimal Number Systems

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Binary and Hexadecimal Number Comparisons

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Binary-to-Hexadecimal Conversion Example

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Hexadecimal-to-Binary Number Conversion

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Hexadecimal-to-Binary Conversion Example

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Summary Ethernet, the most common type of LAN, was originally developed in the 1970s by DEC, Intel, and Xerox, and was called DIX Ethernet. When a work group of this body (referred to as IEEE 802.3) defined new standards for Ethernet in the mid-1980s to define Ethernet-like networks for public use, the standard was called Ethernet and The address used in an Ethernet LAN is the means by which data is directed to the proper receiving location. Stations on a CSMA/CD LAN can access the network at any time. Before sending data, CSMA/CD stations listen to the network to determine whether it is already in use. If it is in use, they wait. If the network is not in use, the stations transmit. A collision occurs when two stations listen for network traffic, hear none, and transmit simultaneously.

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Summary (Cont.) Ethernet LAN standards specify cabling and signaling at both the physical and data link layers of the OSI model and divide the OSI data link layer into these two separate sublayers: LLC (transitions up to the network layer) and MAC (transitions down to the physical layer). An Ethernet frame consists of fields, including preamble, start-of-frame delimiter, destination address, source address, type/length, data and pad, and frame check sequence. There are three major kinds of communications in networks: unicast, in which frame is sent from one host addressed to a specific destination; broadcast, in which a frame is sent from one address to all other addresses; and multicast, in which a destination addresses a specific group of devices.

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Summary (Cont.) The MAC sublayer handles physical addressing issues, and the physical address is a 48-bit number usually represented in hexadecimal format. Computers can recognize and process data only in a binary format. The binary number system is made up of 0s and 1s. Decimal numbers can be converted to binary numbers, and binary numbers can be converted to hexadecimal numbers (and vice versa) by following specific procedures. The hexadecimal number system is used frequently at higher levels of representation. The hexadecimal number system uses 16 symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F.

© 2005 Cisco Systems, Inc. All rights reserved.INTRO v