I'm checking my linux server's firewall and I'm seeing

"....IN=eth0 OUT= MAC=00:26:a9:7b:c9:30:00:17:0f:ac:6a:80:08:00"...

As far as I know MAC addresses have 12 Characters. Why are there 28 characters in front of MAC=?

Thanks

link|improve this question
Welcome to StackOverflow. We answer programming related questions. You question, however, does not cover programming and is better asked on ServerFault. – DarkDust Mar 7 '11 at 13:00
feedback

migrated from stackoverflow.com Mar 7 '11 at 13:32

This question came from our site for professional and enthusiast programmers.

1 Answer

6 bytes destination MAC, 6 bytes source MAC, 2 bytes frame type.

link|improve this answer
Thanks, could you please break up each part and tell me what the frame type is? I just can't work out how 28 characters represent 3 bytes. – Anonymous Mar 7 '11 at 13:14
00:26:a9:7b:c9:30 - Destination MAC, 00:17:0f:ac:6a:80 - Source MAC, 08:00 - Frame type (See iana.org/assignments/ethernet-numbers - your frame type is 0x0800 aka IPv4) – Erik Mar 7 '11 at 13:25
feedback

Your Answer

 
or
required, but never shown