Beginner trying to make display filter to only show DNS request and later responses
Hello,
I'm a beginner at display filters. I'm trying to make a filter to only show DNS requests and plan on make a filter to only show responses for use in the I/O graph. I selected a request packet and found the field that showed dns.flags in the bottom bar. The hex value of the field is 01 00. I typed in the display filter dns.flags==0x0100 and applied the filter. It showed only DNS respones in which the filed value is 81 80. What is going wrong?
So, you applied the display filter
dns.flags==0x0100
and the result is the output of applyingdns.flags==0x8180
? Maybe you should try again, since I'm unable to reproduce that result.I've checked and tried several times already. I can't figure it out.Here are all version numbers from Wireshark > help > about::
(more)How about using the display filter
dns.flags.response == 0
anddns.flags.response == 1
? Does that show any difference?