hmm, I know that this is a broadcast, but where does it come from? which host? which process?
Main Topics
Browse All Topicsin my iptraf I can see packets drop in with MAC address ffffffffffff .
Does anybody know what could be the source of them?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
datibbaW - I think you need additional options to tcpdump to get the info ahoffman is seeking (see below).
ahoffman - If your tcpdump is as nice as mine you can use:
tcpdump -l -n -e 'ether broadcast'
(the -l and -n are not necessary optons, but I like them. The -e is what you really want to use in order to see link-level info)
in order to see all ethernet broadcasts, and to see the source MAC address (which I think you said you wanted). Then just use your favorite inverse arp tool (i.e. rarp, arp -an, etc.) and you have the IP info.
All in all, I'd forget worrying about this (but I'll still take the pts hehe), unless you reeeeaallly want to give yourself a mind-numbingly granular, hands-on lesson in the different ways ethernet broadcasts are used, or are seeing abnomrally high levels of this sort of thing (ie.e abuse, DoS, etc)
Greetings to ahoffman - been a while.
Cheers,
-Jon
P.S. Hey hey - I took a vacation from EE, and now I'm a topic expert. Can't beat that.
The--Captain: could depend on the version of tcpdump i guess, cause the following command works as stated in the manual page.
# tcpdump ether dst 'ff.ff.ff.ff.ff.ff'
tcpdump: listening on eth0
...
>>> NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
09:33:59.299225 arp who-has 192.168.1.200 tell terminator
It seems that when a computer sends a raw mac-frame tcpdump will print the source address; however, if the same computer sends an IP-frame tcpdump will print the source IP address which needs pinging and searching in the arp tables.
One way or another the -e argument is easier to use because it simply always shows the mac-src.
Jon: i'm not here for the points and i hope you were just kiddin.
Think nobody denoted somebody for just gathering points here (including me). My english is not perfect, but in all the years I participated at EE, I managed to figure out "points gatherer" and usefull answers. Years ago anybody answered instead of commenting, in the hope of "autograding", this behaviour has gone --in most TA-- and we, questioner and experts, can enjoy the discussions.
Enjoy, and enlarge upon this friendly policy :-))
Back to the question: Jon, datibbaW,
the -e option seems to be necessary for the src MAC, otherwise these packets are not printed
This is at least on my Linux' and Solaris' tcpdump 3.4
Thank you all for giving me an answer which I should have found myself in the man-pages, shame on me ;-)
The only pts I need are to maintain my EE Pro, and I think that's covered regardless...
Sorry for the huge delay in response - email notifs only reach me about %50 of the time for some reason (the only way I noticed the additional responses here was because ahoffman recently pointed this out to me).
ahoffman - glad to hear I wasn't hitting the pipe too hard (as others have suggested hehe) when I was going on about the '-e' option...
>Jon: i'm not here for the points and i hope you were just kiddin.
I'm not here for them either, aside from my monthly EE PRo quota - EE Pro is not a solution panacea, btw, even though EE Pro members do not have to spend pts to access questions in the PAQ - if the search engine actually worked properly, I might take a different position... I originally thought that EE Pro would offer improved services in this area (searches), but I was sadly mistaken. Notice how I sign every response with "-Jon" - an EE pro search for "-Jon" reveals no results - go figure.
In any case, I thank Achim for the pt split...
Cheers,
-Jon
EE Pro: tried sevaral time times get used to it, gave up :-(( it requires JavaScript, and always crashes for me, that proofs why I insist on rejecting any JS-driven sites :-)
I also don't have any problems with notifications.
Meanwhile EE's search capability is not to bad: "The--Caption" produces more exact results than "Jon" (Jon, so you can omit your final tag).
I, build my own "EE Pro HomePage" with my favorite TAs, and a simple perl script removes the right and left column, so the whole window is used for the most interesting information ;-)
Business Accounts
Answer for Membership
by: datibbaWPosted on 2002-02-06 at 07:57:17ID: 6782878
ffffffffffff is the broadcast address for MAC-frames (just like for example 192.168.1.255 for IP-frames)