Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
What is IEEE 802.3?
IEEE 802.3 is a set of standards and protocols that define Ethernet-based networks. Ethernet technologies are primarily used in LANs, though they can also be used in MANs and even WANs. IEEE 802.3 defines the physical layer and the medium access control (MAC) sub-layer of the data link layer for wired Ethernet networks.
The IEEE 802.3 standard specifies how data is transmitted over various physical media, including coaxial cables, twisted pair cables, and fiber optic cables. It also defines the CSMA/CD (Carrier Sense Multiple Access with Collision Detection) access method used in traditional Ethernet networks.
IEEE 802.3 Popular Versions
There are numerous versions of the IEEE 802.3 protocol, each designed for different physical media and transmission speeds. The most popular ones include:
-
IEEE 802.3 (10BASE-5) − The original standard that used thick single coaxial cable. Connections were made by drilling into the cable to reach the core. The "10" represents 10 Mbps throughput, "BASE" denotes baseband transmission, and "5" refers to the maximum segment length of 500 meters.
-
IEEE 802.3a (10BASE-2) − Standard for thin coaxial cable, using thinner coax segments connected by BNC connectors. The "2" refers to the maximum segment length of approximately 200 meters (185 meters precisely).
-
IEEE 802.3i (10BASE-T) − Standard for twisted pair cables using unshielded twisted pair (UTP) copper wires. This became the foundation for modern Ethernet networks.
-
IEEE 802.3u − Extended the standard to Fast Ethernet with 100BASE-TX, 100BASE-T4, and 100BASE-FX variants, supporting 100 Mbps transmission speeds.
-
IEEE 802.3ab (1000BASE-T) − Gigabit Ethernet over twisted pair cables, providing 1 Gbps transmission speeds over Category 5e cables.
Frame Format of IEEE 802.3
The IEEE 802.3 frame structure consists of several key fields that facilitate reliable data transmission:
-
Preamble − A 7-byte field providing synchronization and timing information for the receiving station.
-
Start of Frame Delimiter (SOF) − A 1-byte field containing the pattern 10101011 that marks the beginning of the frame.
-
Destination Address − A 6-byte field containing the MAC address of the receiving station.
-
Source Address − A 6-byte field containing the MAC address of the sending station.
-
Length − A 2-byte field that specifies the number of bytes in the data field.
-
Data − A variable-sized field (46-1500 bytes) that carries the actual information from upper layers.
-
Padding − Additional bytes added to ensure the data field meets the minimum requirement of 46 bytes.
-
Frame Check Sequence (FCS/CRC) − A 4-byte field containing cyclic redundancy check information for error detection.
