First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

I can't get the eth.ig==0 display filter to work

  • retag add tags

I have a trace of broadcasts and a few unicast destinations. I want to filter to see only the destinations that are not broadcasts or multicasts, only unicasts.

When I filter eth.ig==0 it returns the broadcasts too. It should only return packets that match the filter. I clearly get broadcasts too.

It appear the reason is that this filter is for both source and destination address eth.ig bits.

How do I get it to filter only on what I might think should be: eth.dst.ig==0

Appreciate the help!

Bill

Packetman007's avatar
1
Packetman007
asked 2018-09-30 13:15:44 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

0

(not eth.dst == ff:ff:ff:ff:ff:ff && eth.ig==0) && (not eth.addr == 33:33:00:01:00:02 && eth.ig==0) This seems to work.

Packetman007's avatar
1
Packetman007
answered 2018-09-30 13:25:09 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

That works, but we really should make filters such as eth.dst.ig == 0 work.

Please file an enhancement request for this on the Wireshark Bugzilla.

Guy Harris's avatar
19.9k
Guy Harris
answered 2018-09-30 21:16:33 +0000
edit flag offensive 0 remove flag delete link

Comments

Indeed, both src and dst are using the same header field definitions for lg and ig bits(which is fine) but should probably have their own src and dst specific ones as well (for all parts of the MAC address).

Jaap's avatar Jaap (2018-10-01 05:34:53 +0000) edit
add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer