Open In App

What is Minimum Ethernet Frame Size?

The minimum size of an Ethernet frame is 64 bytes. The Ethernet protocol is responsible for Network Interface Card (NIC) to Network Interface Card (NIC) communication of hosts on the same network. It is a protocol of the Layer 1 (Physical Layer) and Layer 2 (Datalink Layer) of the OSI Reference Model. 

The Ethernet Protocol is used for NIC-to-NIC communication where the Sender and the Receiver are hosts on the same network.



For example, when a host on the network has to send a message to the receiver, it formulates an ethernet frame using the Media Access Control (MAC) addresses (The MAC address is the permanent unique address provided to the Network Interface Card (NIC) of a computer system by the manufacturer. It uniquely identifies a computer system over a network) of the sender and the receiver, and the message as the payload along with other data necessary for communication.

This frame(message) is then sent over the transmission media to the receiver. In Ethernet, the transmission medium is generally a twisted-pair cable. The receiver receives the frame, verifies the Destination MAC address as its own, and if the destination MAC address of the ethernet frame matches its own MAC address, proceeds to accept the packet.



The Ethernet Frame:

The Ethernet Frame

The Ethernet frame consists of the following parts:

10101010 10101010 10101010 10101010 10101010 10101010 10101010

10101011

Preamble

Start Frame Delimiter

An example of preamble and Start Frame Delimiter (SFD)

2C:54:91:88:C9:E3

00:00:5E:00:53:AF

Destination MAC Address Source MAC Address

An example of Destination and Source MAC Addresses

0x86dd IPv6

Length/Type of field of IPv6

10101101……..1011011

00000……….00000

                    Data (32 Bytes)                     Padding (14 Bytes)

Payload

 

00:20:2D:3A

The Frame Check Sequence (FCS)

The Preamble and the Start Frame Delimiter are not taken into consideration when calculating the Ethernet frame size. The overall size of the Ethernet frame must be a minimum of 64 bytes to ensure that the transmission media is occupied by the sender for the entire time it is sending the ethernet frame in order to prevent a collision. With the fixed size of the Destination MAC Address, the Source MAC Address, the Length/Type field, and the Frame Check Sequence adding up to 18 bytes, the minimum size of the Payload must be 64-18=46 bytes. If the actual data to be sent is less than 46 bytes, it must be padded to make the Payload size 46 bytes.

Applications of Ethernet:

Ethernet has become the de facto networking standard for Local Area Network (LAN) and Wide Area Network (WAN) connections due to its speed, security, and dependability. It is used in LAN and WAN connections of organizations, schools, hospitals, etc. It can also be used to generate a non-lag high-speed connection between hosts for online gaming. For any network, aiming to be mostly local and inexpensive, Ethernet is the best bet.

Advantages of Ethernet:

Disadvantages of Ethernet:

Conclusion

The minimum size of an Ethernet frame is 64 bytes, consisting of a 6-byte Destination MAC address, a 6-byte Source MAC Address, a 2-byte Length/Type field, a 46-byte Payload, and a 4-byte Frame Check Sequence. The Payload may vary in size up to 1500 bytes, with 46 bytes being the lower limit in order to ensure that the transmission media is occupied by the sender for the entire time it is sending the ethernet frame in order to prevent a collision. If the actual data is smaller than 46 bytes, it is padded by trailing zeroes.

Article Tags :