What is Ethernet?
Ethernet was developed by Robert Metcalfe at Xerox PARC in the early 70s and is a packet switching technology that uses Carrier Sense Mulit-access with Collision Detection (CSMA/CD).
- Carrier Sense
The device (Network Inteface Card) determines if the media (wire) is available, no electrical signalling we can transmit.
- Multi-access
All devices can sense the media at the same time. The wire is a shared connection versus a point to point with a central controller.
- Collision Detection
The detects electrical signalling that is higher than usual and defines that as collision. Typically, this is jump in voltage outside the expected values.
A real world example of how human use CSMA/CD is when talking. We have talking protocol just like Ethernet’s CSMA/CD. In face to face discussions, we use cues to determine if we speak, the media is air or device(s) are our mouth (transmit) and ears (receive). When talking, we wait to see if the media is available, no one else talking. If we are interrupted while talking by another, we stop and wait for them to stop to continue. Sometimes they don’t stop and we wait till they do by sensing if the media (air) is free.
CSMA/CD was created when the media was shared, but with the introduction of switching technology the collision domains were not across 24 port hubs backplane, but with switches just the wire between its port and the attached end device. Another, real world example is why we separate people into rooms so they don’t talk over each other.
Ethernet Frames carry the source and destination information of where the data is to be sent. Frame formats have been updated as Ethernet has become the predominant method for moving data at Layer 2 of the OSI model.
- Ethernet II
ETHERNET FIELD | DEFINITION |
Destination MAC Address | NIC card that is recieve it, the device sending |
Source MAC Address | NIC card that sent it, the device receiving |
Type | Defines the PDU it’s carrying, or the length of the Frame with value less than 0x0600 |
Payload | Upper Layer PDU |
Frame Check Sequence FCS | Integrity Check, verifies the Frame has valid info |
- Jumbo
- 802.1q
802.1q TAG | DEFINITION |
TPID | 0x8100 identifies the Frame as holding a 802.1q TAG |
TCI | TAG Control Indicator |
PCP | Priority Code Point, Class of Service with 8 values, 0-7 |
DEI | Drop Eligible Indicator, determine the eligibility of dropping frame from buffer |
VID | VLAN identifier, 1-4094 possible values |
A variety of traffic is defined to be carried in Ethernet here is subset of the Ethertypes available
EtherType | Protocol |
0x0800 | Internet Protocol version 4 (IPv4) |
0x0806 | Address Resolution Protocol (ARP) |
0x0842 | Wake-on-LAN |
0x22F3 | IETF TRILL Protocol |
0x6003 | DECnet Phase IV |
0x8035 | Reverse Address Resolution Protocol |
0x809B | AppleTalk (Ethertalk) |
0x80F3 | AppleTalk Address Resolution Protocol (AARP) |
0x8100 | VLAN-tagged frame (IEEE 802.1Q) |
0x8137 | IPX |
0x8138 | IPX |
0x86DD | Internet Protocol Version 6 (IPv6) |
0x8847 | MPLS unicast |
0x8848 | MPLS multicast |
0x8870 | Jumbo Frames |
0x888E | EAP over LAN (IEEE 802.1X) |
0x88A8 | Shortest Path Bridging (IEEE 802.1aq) |
0x88CC | Link Layer Discovery Protocol (LLDP) |
0x88E5 | MAC security (IEEE 802.1AE) |
0x8906 | Fibre Channel over Ethernet (FCoE) |
0x8914 | FCoE Initialization Protocol |
0x8915 | RDMA over Converged Ethernet (RoCE) |
0x9100 | Q-in-Q |
###
<-Previous What is Cabling?
Next-> What is Switching?
Comments
No comment yet.