There are few types of Ethernet but then also we have 2 bytes for Ethernet Type in the frame structure. Is this not a wastage of space by under utilization of space? I mean is 1 byte not enough to fit all the possibilities of Ethernet Types or is it some other reason?
Asked
Active
Viewed 1,116 times
2 Answers
0
One possible reason is that those 2 bytes could be the payload length if LLC encapsulation. if length only 1 byte, then it's too small.
Also from the perspective of byte alignment, all fields (except payload) are at least 16 bit aligned.

user1500049
- 993
- 7
- 15
-1
Look at http://en.wikipedia.org/wiki/Ethertype. It's protocol definition of that frame

Jozef Dropčo
- 89
- 2
-
I know it is the definition but is that not wastage of space? I want to know some logical reason behind this. – Vaibhav Agarwal Oct 19 '12 at 07:04