Can you show me a filter i can use to see who is looking at my server for DNS resolution. I have used tcp.port == 53 but need a more refined filter showing clients talking to the DNS server only. asked 27 Apr '12, 11:10 bilweiser |
3 Answers:
How about "ip.addr == 192.168.1.1 && tcp.port == 53" but substitute the address of your DNS server in place of 192.168.1.1. answered 27 Apr '12, 12:32 Jim Aragon |
If you're looking for a capture filter, then something like this may narrow it down (assuming standard UDP to port 53 for DNS):
If it's a display filter, then something like this:
answered 30 Apr '12, 09:00 rickg421 |
tshark -n port 53 and dst 192.168.30.2 0.000000 192.168.30.148 -> 192.168.30.2 DNS Standard query A www.leo.org Replace 192.168.30.2 with the ip address of your DNS server. Alternatively: tshark -n -T text -E 'separator=;' -Tfields -e ip.src -e dns.qry.name port 53 and dst 192.168.30.2 192.168.30.148;www.leo.org Regards answered 30 Apr '12, 09:32 Kurt Knochner ♦ edited 30 Apr '12, 13:23 |