'Identifying a frame, Ethernet or IEEE 802.3?

I've been asked to determine whether a frame is an Ethernet or IEEE 802.3 frame. I have researched Ethernet and IEEE 802.3 and found the format of each frame, but nothing about the frame in question points to eithe rof these

This is the frame :

000f fea6 e743 000f fea6 e84c 0800 4510
0040 018d 4000 4006 2709 0a02 7f03 0a02
7f0b f257 0017 918b 996e 0000 0000 b002
ffff 2287 0000 0204 05b4 0103 0301 0101
080a 0658 dea6 0000 0000 0402 0000
  • Preamble: 000f fea6 e743 000f
  • Destination Address: fea6 e84c 0800
  • Source Address: 4510 0040 018d
  • Type: 4000 = 16384 > does it mean anything?

    • Could someone please help me identify the type of frame this is?
    • what do we they mean when they say: these frames have different constructors?


Solution 1:[1]

The DIX Ethernet Type field and IEEE 802.3 Length field are in the same position. If the value is less than 0x600 (1536) then it is interpreted as a frame length. If the value is larger than 0x600 (1536) then it is interpreted as a Type value.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Pham Huy