data_frame_format.diag 585 B

1234567891011121314151617
  1. #Ethernet Data Frame Format
  2. rackdiag ethernet_data_frame {
  3. node_width = 500;
  4. default_fontsize = 15;
  5. ascending;
  6. 8U;
  7. description = "Ethernet Data Frame Format";
  8. 1: Preamble (7 Bytes) [color = lightgrey];
  9. 2: Start-of-Frame Delimiter (1 Byte) [color = lightgrey];
  10. 3: Destination Address (6 Bytes) [color = lightblue];
  11. 4: Source Address (6 Bytes) [color = lightblue];
  12. 5: Type / Length (2 Bytes) [color = lightyellow];
  13. 6: Payload (0 ~ 1500 Bytes) [2U];
  14. 6: Pad (if necessary) [2U];
  15. 8: Frame Check Sequence (4 Bytes) [color = lightgrey];
  16. }