Top Banner
Module 6 Module 6 Chapter 5 Chapter 5
26

Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Dec 22, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Module 6Module 6Chapter 5Chapter 5

Page 2: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

EthernetEthernet

• Ethernet is now the dominant LAN technology in the world.

• Ethernet is not one technology but a family of LAN technologies

• Ethernet specifications support different media, bandwidths, and other Layer 1 and 2 variations

Page 3: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

EthernetEthernet

• The success of Ethernet is due to the following factors:

– Simplicity and ease of maintenance

– Ability to incorporate new technologies

– Reliability

– Low cost of installation and upgrade

Page 4: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Ethernet

• Institute of Electrical and Electronics Engineers (IEEE) standards

• These standards start with the number 802

• The standard for Ethernet is 802.3

• IEEE wanted to make sure that its standards were compatible with the International Standards Organization

• Essentially, Ethernet and IEEE 802.3 are the same standards

Page 5: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Standards

• Standards guarantee: – minimum bandwidth – operability

• by specifying the maximum number of stations per segment,

– maximum segment length – maximum number of repeaters between

stations

Page 6: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Ethernet

• Ethernet speeds can be 10, 100, 1000, or 10,000 Mbps

• The basic frame format remain consistent across all

forms of Ethernet

Page 7: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

LLC & MAC

• Ethernet relies on base band signaling, which uses the entire bandwidth of the transmission medium

• Ethernet operates in two areas of the OSI model, the lower half of the data link layer, known as the MAC sub layer and the physical layer

Page 8: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

MAC Address

• Ethernet MAC addresses:

– MAC addresses are sometimes referred to as burned-in addresses (BIA)

– MAC addresses are burned into read-only memory (ROM) and

– MAC addresses are copied from ROM into random-access memory (RAM) when the NIC initializes.

Page 9: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

MAC Address

• Ethernet MAC addresses:

– 48 bits in length

– Expressed as twelve hexadecimal digits

– The first six hexadecimal digits, which are administered by the IEEE

Page 10: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Mac Address

• Ethernet MAC addresses:

– The first six hexadecimal digits identify the manufacturer

• This portion of the MAC address is known as the Organizational Unique Identifier (OUI)

– The remaining six hexadecimal digits represent the interface serial number, or a value administered by the specific equipment manufacturer

Page 11: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Layer 2 Framing

• A single generic frame has sections called fields

• The names of the fields are as follows: – Start frame field – Address field – Length / type field – Data field – Frame check sequence field 

Page 12: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Frame Fields

• Start frame field • All frames, regardless of technology, have a

beginning signaling sequence of bytes

• Address field • All frames contain naming information, such as

the name of the source node (MAC address) and the name of the destination node (MAC address

Page 13: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Frame Fields• Length / type field

• A length field specifies the exact length of a frame in bytes

• Some frames have a type field, which specifies the Layer 3 protocol making the sending request

• The field labeled Length/Type was only listed as – Length in the early IEEE versions

– Type in the DIX version

– These two uses of the field were officially combined in a later IEEE version

• Data field • The data package has two parts, the user application

data and the encapsulated bytes to be sent to the destination computer

Page 14: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Frame Fields

• Frame check sequence field• The Frame Check Sequence (FCS) field

contains a number that is calculated by the source node based on the data in the frame

• This FCS is then added to the end of the frame that is being sent

• When the destination node receives the frame the FCS number is recalculated and compared with the FCS number included in the frame

Page 15: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Media Access Control• There are two broad categories of

Media Access Control

– Deterministic (taking turns)• Token Ring and FDDI

– Token Ring is a collision less environment as only one host is able to transmit at any given time

– Non-deterministic (first come, first served) • CSMA/CD

– The NIC listens for an absence of a signal on the media and starts transmitting. If two nodes transmit at the same time a collision occurs and none of the nodes are able to transmit

Page 16: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

CSMA/CD

• CSMA/CD used in Ethernet performs three functions:

– Transmitting and receiving data packets

– Decoding data packets and checking them for valid addresses before passing them to the upper layers of the OSI model

– Detecting errors within data packets or on the network

Page 17: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

CSMA/CD

Page 18: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

CSMA/CD• A collision has occurred when the amplitude of the

signal on the networking media increases

• Each node that is transmitting will continue to transmit for a short time to ensure that all devices see the collision

• All the devices have detected the collision a back off algorithm is invoked and transmission is stopped

• Nodes stop transmitting for a random period of time

• When the delay period expires, all devices on the network can attempt to gain access to the networking media

Page 19: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Slot Time

• For all speeds of Ethernet transmission at or below 1000

Mbps Half duplex – A transmission may be no smaller than the slot time

• Slot time is calculated assuming maximum cable lengths on the network

• The calculated slot time is just longer than the theoretical amount of time required to travel to the furthest point

• Collide with another transmission at the last possible instant

• Then have the collision fragments return to the sending station and be detected

Page 20: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Slot Time

• Half duplex is not permitted in 10-Gigabit Ethernet– Because an entire minimum-sized frame would be

transmitted before the first bit reached the end of the first 100 meters of UTP cable

• Full-duplex eliminates the concept of slot time – Because the timing restriction for collision

detection is removed

Page 21: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Slot Time

• Slot Time only applies to half duplex Ethernet links

Page 22: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Interframe Spacing

• The minimum spacing between two non-colliding frames is called the interframe spacing

• Interframe spacing is measured from the FCS field of the first frame to the preamble of the second frame

Page 23: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Interframe Spacing

• If the MAC layer is unable to send the frame after sixteen attempts it gives an error to the network layer.

• This would happen:

– During heavy network loads

– When a physical problem exists on the network

Page 24: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Ethernet Errors

• Collision or runt– Simultaneous transmission occurring before slot

time has elapsed

• Late collision– Simultaneous transmission occurring after slot

time has elapsed

• Jabber, long frame and range errors– Excessively or illegally long transmission 

• Short frame, collision fragment or runt– Illegally short transmission

Page 25: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

Ethernet Errors

• FCS error – Corrupted transmission

• Alignment error – Insufficient or excessive number of bits transmitted

• Range error – Actual and reported number of octets in frame do

not match

• Ghost or jabber – Unusually long Preamble or Jam event

Page 26: Module 6 Chapter 5. Ethernet Ethernet is now the dominant LAN technology in the world. Ethernet is not one technology but a family of LAN technologies.

THE ENDTake a Break !