From ba27047d4eee79d71d6fe49352dc5a5bb549cf3d Mon Sep 17 00:00:00 2001 From: laaraujo Date: Wed, 8 May 2024 02:40:34 -0300 Subject: [PATCH] add missing ARP Packet Ethernet type code --- contents/ethernet_lan_switching/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contents/ethernet_lan_switching/README.md b/contents/ethernet_lan_switching/README.md index a081632..2cecc4a 100644 --- a/contents/ethernet_lan_switching/README.md +++ b/contents/ethernet_lan_switching/README.md @@ -74,6 +74,7 @@ LANs use L2 layer frames. * value of `1536 or less` in this field indicates the `TYPE` of the encapsulated packet (usually IPv4 or IPv6), and the length is determined via other methods * IPv4 = 0x0800 (Hexadecimal) = `2048` in decimal * IPv6 = 0x86DD (Hexadecimal) = `34525` in decimal +* ARP Packet = 0x0806 (Hexadecimal) = `2054` in decimal ### FCS (Frame Check Sequence)