- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
03-11-2020 10:01 AM
the following search string
( app eq dns ) and ( port.dst eq 53 ) and ( addr.dst in 8.8.8.8 )
searches and displays all dns traffic using port 53 that has the destination ip of 8.8.8.8
I would like to know if I can look at all dns traffic traveling on port 53 except the traffic going to 8.8.8.8
03-11-2020 10:20 AM - edited 03-11-2020 10:22 AM
In the filter, you can modify it as ( app eq dns ) and ( port.dst eq 53 ) and ( addr.dst notin 8.8.8.8 ).
This helps in filtering the dns traffic excluding the traffic going to 8.8.8.8.
Hope this helps.
03-11-2020 11:01 AM - edited 03-11-2020 11:02 AM
adding to what @atluri4b8 already said you can also use a bang
!(addr.dst in 8.8.8.8) will exclude 8.8.8.8
03-11-2020 10:20 AM - edited 03-11-2020 10:22 AM
In the filter, you can modify it as ( app eq dns ) and ( port.dst eq 53 ) and ( addr.dst notin 8.8.8.8 ).
This helps in filtering the dns traffic excluding the traffic going to 8.8.8.8.
Hope this helps.
03-11-2020 11:01 AM - edited 03-11-2020 11:02 AM
adding to what @atluri4b8 already said you can also use a bang
!(addr.dst in 8.8.8.8) will exclude 8.8.8.8
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!