SlideShare uma empresa Scribd logo
1 de 30
McGraw-Hill
McGraw-Hill
4th
2016 - 20
Topic
Mam, Qoseen
BS(IT)
311, 315, 317,
323
ETHERNET
Semester
Roll No
Class
Submitted to
Session
McGraw-Hill ©The McGraw-Hill Companies, Inc., 2000
SR:#
STATEMENT
1 ETHERNET
2 HISTORY OF ETHERNET
3 INTRODUCTION
4 TYPES & CATEGORIES OF ETHERNET CABLES
5 WORKING
6 ADRRESSING SCHEME
7 SCOPE
8 ADVANTAGES & DISADVANTAGES
McGraw-Hill
13-1 IEEE STANDARDS13-1 IEEE STANDARDS
Ethernet: It is a LAN protocol that is used in Bus and Star
topologies and implements CSMA/CD as the medium access
method
Original (traditional) Ethernet developed in 1980 byOriginal (traditional) Ethernet developed in 1980 by
three companies:three companies: DDigital,igital, IIntel,ntel, XXerox (DIX).erox (DIX).
In 1985, the Computer Society of the IEEE started aIn 1985, the Computer Society of the IEEE started a
project, calledproject, called Project 802Project 802, to set standards to enable, to set standards to enable
intercommunication among equipment from a variety ofintercommunication among equipment from a variety of
manufacturers.manufacturers.
 Current version is calledCurrent version is called IEEE EthernetIEEE Ethernet
McGraw-Hill
Ethernet
Frame formats. (a) DIX Ethernet , (b) IEEE 802.3.
FCS
FCS
 Ethernet Frame format
McGraw-Hill
Figure 13.4 802.3 MAC frame
McGraw-Hill
IEEE Ethernet
 In IEEE 802.3 Ethernet Data link layer is split into two
sublayers:
 Bottom part: MAC
 The frame is called IEEE 802.3
 Handles framing, MAC addressing, Medium Access control
 Specific implementation for each LAN protocol
 Defines CSMA/CD as the access method for Ethernet LANs and Token
passing method for Token Ring.
 Implemented in hardware
 Top part: LLC (Logical Link Control)
 The subframe is called IEEE 802.2
 Provides error and flow control if needed
 It makes the MAC sublayer transparent
 Allows interconnectivity between different LANs data link layers
 Used to multiplex multiple network layer protocols in the data link layer
frame
 Implemented in software
McGraw-Hill
Figure 13.1 IEEE standard for LANs
McGraw-Hill
Ethernet Provides Unreliable, connectionless Service
 Ethernet data link layer protocol provides
connectionless service to the network layer
 No handshaking between sending and receiving adapter.
 Ethernet protocol provides Unreliable service to the
network layer :
 Receiving adapter doesn’t send ACK or NAK to sending adapter
 This means stream of datagrams passed to network layer can have gaps (missing data)
 Gaps will be filled if application is using reliable transport layer protocol
 Otherwise, application will see the gaps
McGraw-Hill
 Preamble:
 8 bytes with pattern 10101010 used to synchronize receiver, sender clock rates.
 In IEEE 802.3, eighth byte is start of frame (10101011)
 Addresses: 6 bytes (explained latter)
 Type (DIX)
 Indicates the type of the Network layer protocol being carried in the payload
(data) field, mostly IP but others may be supported such as IP (0800), Novell IPX
(8137) and AppleTalk (809B), ARP (0806) )
 Allow multiple network layer protocols to be supported on a single machine
(multiplexing)
 Its value starts at 0600h (=1536 in decimal)
 Length (IEEE 802.3): number of bytes in the data field.
 Maximum 1500 bytes (= 05DCh)
 CRC: checked at receiver, if error is detected, the frame is discarded
 CRC-32
 Data: carries data encapsulated from the upper-layer protocols
 Pad: Zeros are added to the data field to make the minimum data length = 46 bytes
Ethernet Frame
McGraw-Hill
Ethernet address
 Six bytes = 48 bits
 Flat address not hierarchical
 Burned into the NIC ROM
 First three bytes from left specify the vendor. Cisco
00-00-0C, 3Com 02-60-8C and the last 24 bit should
be created uniquely by the company
 Destination Address can be:
 Unicast: second digit from left is even (one
recipient)
 Multicast: Second digit from left is odd (group
of stations to receive the frame – conferencing
applications)
 Broadcast (ALL ones) (all stations receive the
frame)
 Source address is always Unicast
McGraw-Hill
McGraw-Hill
The least significant bit of the first byte
defines the type of address.
If the bit is 0, the address is unicast;
otherwise, it is multicast.
Note
McGraw-Hill
The broadcast destination address is a
special case of the multicast address in
which all bits are 1s.
Note
McGraw-Hill
Figure 13.7 Unicast and multicast addresses
McGraw-Hill
Show how the address 47:20:1B:2E:08:EE is sent out on
line.
Solution
The address is sent left-to-right, byte by byte; for each
byte, it is sent right-to-left, bit by bit, as shown below:
Example 13.2
McGraw-Hill
Define the type of the following destination addresses:
a. 4A:30:10:21:10:1A b. 47:20:1B:2E:08:EE
c. FF:FF:FF:FF:FF:FF
Solution
To find the type of the address, we need to look at the
second hexadecimal digit from the left. If it is even, the
address is unicast. If it is odd, the address is multicast. If
all digits are F’s, the address is broadcast. Therefore, we
have the following:
a. This is a unicast address because A in binary is 1010.
b. This is a multicast address because 7 in binary is 0111.
c. This is a broadcast address because all digits are F’s.
Example 13.1
McGraw-Hill
Figure 13.5 Minimum and maximum lengths
McGraw-Hill
Frame length:
Minimum: 64 bytes (512 bits)
Maximum: 1518 bytes (12,144 bits)
Note
McGraw-Hill
Figure 13.3 Ethernet evolution through four generations
McGraw-Hill
13.4 Fast Ethernet
 100 Mbps transmission rate
 same frame format, media access, and collision
detection rules as 10 Mbps Ethernet
 can combine 10 Mbps Ethernet and Fast Ethernet
on same network using a switch
 media: twisted pair (CAT 5) or fiber optic cable
(no coax)
 Star-wire topology
 Similar to 10BASE-T
McGraw-Hill
Figure 13.19 Fast Ethernet topology
McGraw-Hill
Full Duplex Operation
 Traditional Ethernet is half duplex
 Either transmit or receive but not both simultaneously
 With full-duplex, station can transmit and receive data simultaneously
 With full duplex, Throughput (actual transmission rate) is doubled.
 10-Mbps Ethernet in full-duplex mode, theoretical transfer rate
becomes 20 Mbps
 100-Mbps Ethernet in full-duplex mode, theoretical transfer rate
becomes 200 Mbps
 Changes that should be made with any computer in order to operate
in Full-Duplex Mode
1) Attached stations must have full-duplex NIC cards
2) Must use two pairs of wire one pair for transmitting from host to
switch (inbound) and the other pair for transmitting from switch to
host (outbound)
3) Must use a switch as a central device not a hub
4) Devices must be connected point-to-point (dedicated) to the switch
 Each station constitutes separate collision domain
 CSMA/CD algorithm no longer needed (no collision)
 No limit on the segment length
 Same 802.3 MAC frame format used
McGraw-Hill
Figure 13.18 Full-duplex switched Ethernet
McGraw-Hill
Figure 13.17 Switched Ethernet
McGraw-Hill
13.5 Gigabit Ethernet
 Speed 1Gpbs
 Minimum frame length is 512 bytes
 Operates in full/half duplex modes mostly full duplex
McGraw-Hill
In the full-duplex mode of Gigabit
Ethernet, there is no collision;
the maximum length of the cable is
determined by the signal attenuation
in the cable.
Note
McGraw-Hill
Figure 13.22 Topologies of Gigabit Ethernet
McGraw-Hill
10Gbps Ethernet
 Maximum link distances cover 300 m to 40 km
 Full-duplex mode only
 No CSMA/CD
 Uses optical fiber only
McGraw-Hill

Mais conteúdo relacionado

Mais procurados

Ethernet networking
Ethernet networkingEthernet networking
Ethernet networking
Raghu nath
 
Network Topologies
Network TopologiesNetwork Topologies
Network Topologies
Jason Hando
 
Carrier ethernet essentials
Carrier ethernet essentialsCarrier ethernet essentials
Carrier ethernet essentials
beachghim
 
Ethernet frame format
Ethernet frame formatEthernet frame format
Ethernet frame format
myrajendra
 
Computer_Networking_and_Data_Communications_Day2_AM
Computer_Networking_and_Data_Communications_Day2_AMComputer_Networking_and_Data_Communications_Day2_AM
Computer_Networking_and_Data_Communications_Day2_AM
Elias Choka
 

Mais procurados (20)

Ethernet
EthernetEthernet
Ethernet
 
IEEE standards 802.3.&802.11
IEEE standards 802.3.&802.11IEEE standards 802.3.&802.11
IEEE standards 802.3.&802.11
 
Ethernet technology
Ethernet technologyEthernet technology
Ethernet technology
 
Ethernet protocol
Ethernet protocolEthernet protocol
Ethernet protocol
 
Ethernet
EthernetEthernet
Ethernet
 
Ethernet networking
Ethernet networkingEthernet networking
Ethernet networking
 
01 Introduction (CN)
01 Introduction (CN)01 Introduction (CN)
01 Introduction (CN)
 
Network Topologies
Network TopologiesNetwork Topologies
Network Topologies
 
Carrier ethernet essentials
Carrier ethernet essentialsCarrier ethernet essentials
Carrier ethernet essentials
 
5 IEEE standards
5  IEEE standards5  IEEE standards
5 IEEE standards
 
Ethernet,token ring
Ethernet,token ring Ethernet,token ring
Ethernet,token ring
 
Ethernet Frames Explained
Ethernet Frames ExplainedEthernet Frames Explained
Ethernet Frames Explained
 
Ethernet - LAN
Ethernet - LANEthernet - LAN
Ethernet - LAN
 
Ethernet frame format
Ethernet frame formatEthernet frame format
Ethernet frame format
 
Networking Ethernet
Networking EthernetNetworking Ethernet
Networking Ethernet
 
Ethernet
EthernetEthernet
Ethernet
 
Computer_Networking_and_Data_Communications_Day2_AM
Computer_Networking_and_Data_Communications_Day2_AMComputer_Networking_and_Data_Communications_Day2_AM
Computer_Networking_and_Data_Communications_Day2_AM
 
Chap.1 ethernet introduction
Chap.1 ethernet introductionChap.1 ethernet introduction
Chap.1 ethernet introduction
 
Gigabit Ethernet
Gigabit EthernetGigabit Ethernet
Gigabit Ethernet
 
Ethernet_Networks
Ethernet_NetworksEthernet_Networks
Ethernet_Networks
 

Semelhante a Ethernet

Internetworking devices
Internetworking devicesInternetworking devices
Internetworking devices
A Singh
 
Networking Technologies02.pptx
Networking Technologies02.pptxNetworking Technologies02.pptx
Networking Technologies02.pptx
ANISHTP
 
Chapter 8 lan_technologies_and_network_topology
Chapter 8 lan_technologies_and_network_topologyChapter 8 lan_technologies_and_network_topology
Chapter 8 lan_technologies_and_network_topology
Aman Jaiswal
 

Semelhante a Ethernet (20)

Ethernet 802.3.pptx
Ethernet 802.3.pptxEthernet 802.3.pptx
Ethernet 802.3.pptx
 
IT_210_Week06_Forouzan_Chapter_13.ppt
IT_210_Week06_Forouzan_Chapter_13.pptIT_210_Week06_Forouzan_Chapter_13.ppt
IT_210_Week06_Forouzan_Chapter_13.ppt
 
Chapter 4ver2
Chapter 4ver2Chapter 4ver2
Chapter 4ver2
 
Internetworking devices
Internetworking devicesInternetworking devices
Internetworking devices
 
3c ethernet
3c ethernet3c ethernet
3c ethernet
 
Networking Technologies02.pptx
Networking Technologies02.pptxNetworking Technologies02.pptx
Networking Technologies02.pptx
 
Chapter9
Chapter9Chapter9
Chapter9
 
Intro_Net_91407.ppt
Intro_Net_91407.pptIntro_Net_91407.ppt
Intro_Net_91407.ppt
 
Intro_Net_91407.ppt
Intro_Net_91407.pptIntro_Net_91407.ppt
Intro_Net_91407.ppt
 
Intro_Net_91407 (2).ppt
Intro_Net_91407 (2).pptIntro_Net_91407 (2).ppt
Intro_Net_91407 (2).ppt
 
Intro_Net_91407.ppt
Intro_Net_91407.pptIntro_Net_91407.ppt
Intro_Net_91407.ppt
 
Chapter 8 lan_technologies_and_network_topology
Chapter 8 lan_technologies_and_network_topologyChapter 8 lan_technologies_and_network_topology
Chapter 8 lan_technologies_and_network_topology
 
Introduction to networking
Introduction to networkingIntroduction to networking
Introduction to networking
 
IEEE Standards
IEEE StandardsIEEE Standards
IEEE Standards
 
Advanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture noteAdvanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture note
 
class28.ppt
class28.pptclass28.ppt
class28.ppt
 
Advanced TCP/IP-based Industrial Networking for Engineers & Technicians
Advanced TCP/IP-based Industrial Networking for Engineers & TechniciansAdvanced TCP/IP-based Industrial Networking for Engineers & Technicians
Advanced TCP/IP-based Industrial Networking for Engineers & Technicians
 
Networks A2
Networks  A2Networks  A2
Networks A2
 
class30.ppt
class30.pptclass30.ppt
class30.ppt
 
Ch08
Ch08Ch08
Ch08
 

Último

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 

Último (20)

On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 

Ethernet

  • 2. McGraw-Hill 4th 2016 - 20 Topic Mam, Qoseen BS(IT) 311, 315, 317, 323 ETHERNET Semester Roll No Class Submitted to Session
  • 3. McGraw-Hill ©The McGraw-Hill Companies, Inc., 2000 SR:# STATEMENT 1 ETHERNET 2 HISTORY OF ETHERNET 3 INTRODUCTION 4 TYPES & CATEGORIES OF ETHERNET CABLES 5 WORKING 6 ADRRESSING SCHEME 7 SCOPE 8 ADVANTAGES & DISADVANTAGES
  • 4. McGraw-Hill 13-1 IEEE STANDARDS13-1 IEEE STANDARDS Ethernet: It is a LAN protocol that is used in Bus and Star topologies and implements CSMA/CD as the medium access method Original (traditional) Ethernet developed in 1980 byOriginal (traditional) Ethernet developed in 1980 by three companies:three companies: DDigital,igital, IIntel,ntel, XXerox (DIX).erox (DIX). In 1985, the Computer Society of the IEEE started aIn 1985, the Computer Society of the IEEE started a project, calledproject, called Project 802Project 802, to set standards to enable, to set standards to enable intercommunication among equipment from a variety ofintercommunication among equipment from a variety of manufacturers.manufacturers.  Current version is calledCurrent version is called IEEE EthernetIEEE Ethernet
  • 5. McGraw-Hill Ethernet Frame formats. (a) DIX Ethernet , (b) IEEE 802.3. FCS FCS  Ethernet Frame format
  • 7. McGraw-Hill IEEE Ethernet  In IEEE 802.3 Ethernet Data link layer is split into two sublayers:  Bottom part: MAC  The frame is called IEEE 802.3  Handles framing, MAC addressing, Medium Access control  Specific implementation for each LAN protocol  Defines CSMA/CD as the access method for Ethernet LANs and Token passing method for Token Ring.  Implemented in hardware  Top part: LLC (Logical Link Control)  The subframe is called IEEE 802.2  Provides error and flow control if needed  It makes the MAC sublayer transparent  Allows interconnectivity between different LANs data link layers  Used to multiplex multiple network layer protocols in the data link layer frame  Implemented in software
  • 8. McGraw-Hill Figure 13.1 IEEE standard for LANs
  • 9. McGraw-Hill Ethernet Provides Unreliable, connectionless Service  Ethernet data link layer protocol provides connectionless service to the network layer  No handshaking between sending and receiving adapter.  Ethernet protocol provides Unreliable service to the network layer :  Receiving adapter doesn’t send ACK or NAK to sending adapter  This means stream of datagrams passed to network layer can have gaps (missing data)  Gaps will be filled if application is using reliable transport layer protocol  Otherwise, application will see the gaps
  • 10. McGraw-Hill  Preamble:  8 bytes with pattern 10101010 used to synchronize receiver, sender clock rates.  In IEEE 802.3, eighth byte is start of frame (10101011)  Addresses: 6 bytes (explained latter)  Type (DIX)  Indicates the type of the Network layer protocol being carried in the payload (data) field, mostly IP but others may be supported such as IP (0800), Novell IPX (8137) and AppleTalk (809B), ARP (0806) )  Allow multiple network layer protocols to be supported on a single machine (multiplexing)  Its value starts at 0600h (=1536 in decimal)  Length (IEEE 802.3): number of bytes in the data field.  Maximum 1500 bytes (= 05DCh)  CRC: checked at receiver, if error is detected, the frame is discarded  CRC-32  Data: carries data encapsulated from the upper-layer protocols  Pad: Zeros are added to the data field to make the minimum data length = 46 bytes Ethernet Frame
  • 11. McGraw-Hill Ethernet address  Six bytes = 48 bits  Flat address not hierarchical  Burned into the NIC ROM  First three bytes from left specify the vendor. Cisco 00-00-0C, 3Com 02-60-8C and the last 24 bit should be created uniquely by the company  Destination Address can be:  Unicast: second digit from left is even (one recipient)  Multicast: Second digit from left is odd (group of stations to receive the frame – conferencing applications)  Broadcast (ALL ones) (all stations receive the frame)  Source address is always Unicast
  • 13. McGraw-Hill The least significant bit of the first byte defines the type of address. If the bit is 0, the address is unicast; otherwise, it is multicast. Note
  • 14. McGraw-Hill The broadcast destination address is a special case of the multicast address in which all bits are 1s. Note
  • 15. McGraw-Hill Figure 13.7 Unicast and multicast addresses
  • 16. McGraw-Hill Show how the address 47:20:1B:2E:08:EE is sent out on line. Solution The address is sent left-to-right, byte by byte; for each byte, it is sent right-to-left, bit by bit, as shown below: Example 13.2
  • 17. McGraw-Hill Define the type of the following destination addresses: a. 4A:30:10:21:10:1A b. 47:20:1B:2E:08:EE c. FF:FF:FF:FF:FF:FF Solution To find the type of the address, we need to look at the second hexadecimal digit from the left. If it is even, the address is unicast. If it is odd, the address is multicast. If all digits are F’s, the address is broadcast. Therefore, we have the following: a. This is a unicast address because A in binary is 1010. b. This is a multicast address because 7 in binary is 0111. c. This is a broadcast address because all digits are F’s. Example 13.1
  • 18. McGraw-Hill Figure 13.5 Minimum and maximum lengths
  • 19. McGraw-Hill Frame length: Minimum: 64 bytes (512 bits) Maximum: 1518 bytes (12,144 bits) Note
  • 20. McGraw-Hill Figure 13.3 Ethernet evolution through four generations
  • 21. McGraw-Hill 13.4 Fast Ethernet  100 Mbps transmission rate  same frame format, media access, and collision detection rules as 10 Mbps Ethernet  can combine 10 Mbps Ethernet and Fast Ethernet on same network using a switch  media: twisted pair (CAT 5) or fiber optic cable (no coax)  Star-wire topology  Similar to 10BASE-T
  • 22. McGraw-Hill Figure 13.19 Fast Ethernet topology
  • 23. McGraw-Hill Full Duplex Operation  Traditional Ethernet is half duplex  Either transmit or receive but not both simultaneously  With full-duplex, station can transmit and receive data simultaneously  With full duplex, Throughput (actual transmission rate) is doubled.  10-Mbps Ethernet in full-duplex mode, theoretical transfer rate becomes 20 Mbps  100-Mbps Ethernet in full-duplex mode, theoretical transfer rate becomes 200 Mbps  Changes that should be made with any computer in order to operate in Full-Duplex Mode 1) Attached stations must have full-duplex NIC cards 2) Must use two pairs of wire one pair for transmitting from host to switch (inbound) and the other pair for transmitting from switch to host (outbound) 3) Must use a switch as a central device not a hub 4) Devices must be connected point-to-point (dedicated) to the switch  Each station constitutes separate collision domain  CSMA/CD algorithm no longer needed (no collision)  No limit on the segment length  Same 802.3 MAC frame format used
  • 26. McGraw-Hill 13.5 Gigabit Ethernet  Speed 1Gpbs  Minimum frame length is 512 bytes  Operates in full/half duplex modes mostly full duplex
  • 27. McGraw-Hill In the full-duplex mode of Gigabit Ethernet, there is no collision; the maximum length of the cable is determined by the signal attenuation in the cable. Note
  • 28. McGraw-Hill Figure 13.22 Topologies of Gigabit Ethernet
  • 29. McGraw-Hill 10Gbps Ethernet  Maximum link distances cover 300 m to 40 km  Full-duplex mode only  No CSMA/CD  Uses optical fiber only