answersLogoWhite

0


Best Answer

Size is 64 bytes.

Destination Address (6 bytes)

Source Address (6 bytes)

Frame Type (2 bytes)

Data (46 bytes)

CRC Checksum (4 bytes)

46 bytes must be transmitted at a minumum, with additional pad bytes added to meet frame requirements.

There is a fundamental minimum frame size imposed by the headers, but that isn't it.

Think back to the days when ethernet was a multi-drop fat yellow coax, rather than the mesh of switched point to point cat5 links it is today.

A sender needed to send the packet and determine whether or not it got received by others on the wire. Reasons why it might not get received were mostly down to collisions with other transmitters transmitting on the same wire at the same time.

To determine if there was a collision, the sender listened to his own transmission to see if it could be recieved. If it was garbled due to a collision, it would know. Hence the name CSMA/CD (Carrier Sense Multiple Access with *Collision Detect*).

However transit time down the wire isn't instantaneous. If you could send a tiny packet at the same time as someone at the far end of the wire, a receiver in the middle of the wire might receive both signals at the same time, garbled, yet they pass over each other and get received by the far ends just fine. So they think the guy in the middle got it, but it didn't, thus breaking the Ethernet model on which 802.1D relies.

To prevent this, you want the head of the packet to transit from one end of the wire and back again before the tail of the packet finished transmission. If there's a transmission anywhere on the wire overlapping, you'll hear it collide at your receiver.

The maximum transmission time is lengthened by repeaters. You need to account for the time to transit through the maximum number of wires and repeaters on a LAN segment.

The header length issue is a red herring. The transit time is independent of bit rate. So as bit rates go up, the header length goes down. So trying to use header size to determine that the packet is long enough is not safe. Safe at 10MBPS might not be safe at 100MBPS, hence the need for a time based packet length minimum.

In short, the packet has to be long enough for the collision detect part of the CSMA/CD algorithm to work.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

Minimum Frame Size = 2 * Maximum distance *(data rate / propagation speed)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How explain the the basis for determining the Minimum Frame Size in Ethernet?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Ethernet frame required minimum of 64 bytes why?

ethernet frame required minimum of 64 bytes expalin why?


What is the minimum and maximum size of an Ethernet frame?

The minimum size of an Ethernet frame is 64 bytes. Even if the VLAN tag is 4 bytes, the Ethernet frame with VLAN tagging remains 64 bytes.


What are the minimum and max imum sizes for an Ethernet frame?

64 and 1518


What is the example of packet switching network?

IP, Ethernet, Frame Relay, ...IP, Ethernet, Frame Relay, ...IP, Ethernet, Frame Relay, ...IP, Ethernet, Frame Relay, ...


What are the Ethernet frame parts?

what are the ethernet frame parts The source and destination MAC addresses


What is the function of the FCS field in an Ethernet frame explain how it is used how it is used to make a header?

In an Ethernet frame, FCS stands for "Frame Check Sequence". It is a four-octet field used to verify that the frame was received without loss or error. The method used for verification is known as a Cyclic Redundancy Check (CRC).


Which encapsulation must be used to enable Ethernet II frame type on your Ethernet?

Arpa encapsulation must be used to enable Ethernet II frame type on your Ethernet.


What Ethernet II frame type contains a 2 byte field which differentiates it from the older Ethernet 802.3 and Ethernet 802.2 frame types?

Type


Does The Ethernet II frame type contains a 2-byte field which differentiates it from the older Ethernet 802.3 and Ethernet 802.2 frame types?

type


The Ethernet II frame type contains a 2-byte field which differentiates it from the older Ethernet 802.3 and Ethernet 802.2 frame types?

type


What Ethernet II frame type contains a 2-byte field which differentiates it from the older Ethernet 802.3 and Ethernet 802.2 frame types?

type


What is added when extra filler data is needed in a packet?

In Computer networking, you have data that is transmitted through packets. In which is what we call an Ethernet frame. That Ethernet frame broken up into several pieces. They are:The PreambleRecipient's MACSender MACTypeData (Your information)Pad (FILLER)FCSThe reason why we have the "Pad" is because your standard minimum for an Ethernet frame size is 64 bytes. However, it doesn't all have to be your actual data. For example, if you were to send data that was not 64 bytes. Your NIC (Network Interface Card) will automatically add extra data which is what we can the "Pad" portion. This adds data so that we are back up to the minimum value of 64 bytes within an Ethernet frame.