In Wireshark display filters, ip.dst==192.168.1.2 selects:

Study for the Wireshark Block 5 Exam. Prepare with flashcards and multiple choice questions, each offering hints and explanations. Ace your exam with the best resources!

Multiple Choice

In Wireshark display filters, ip.dst==192.168.1.2 selects:

Explanation:
ip.dst==192.168.1.2 selects IP packets whose destination address is exactly 192.168.1.2. The ip.dst field refers to the destination IP in the IP header, and the == operator tests for an exact match, so only packets headed to that specific address pass. If you wanted the packets where that address is the source, you’d use ip.src==192.168.1.2. To cover an entire subnet you’d use a CIDR form like ip.dst==192.168.1.0/24. To get everything except those packets, you’d filter with ip.dst!=192.168.1.2.

ip.dst==192.168.1.2 selects IP packets whose destination address is exactly 192.168.1.2. The ip.dst field refers to the destination IP in the IP header, and the == operator tests for an exact match, so only packets headed to that specific address pass. If you wanted the packets where that address is the source, you’d use ip.src==192.168.1.2. To cover an entire subnet you’d use a CIDR form like ip.dst==192.168.1.0/24. To get everything except those packets, you’d filter with ip.dst!=192.168.1.2.

Subscribe

Get the latest from Passetra

You can unsubscribe at any time. Read our privacy policy