Quiz : How Well Do You Know Wireshark?

Reviewed by Godwin Iheuwa
Godwin Iheuwa, MS (Computer Science) |
Database Administrator
Review Board Member
Godwin Iheuwa, a Database Administrator at MTN Nigeria, holds an MS in Computer Science, specializing in Agile Methodologies and Database Administration from the University of Bedfordshire and a Bachelor's in Computer Science from the University of Port Harcourt. His proficiency in SQL Server Integration Services (SSIS) and SQL Server Management Studio contributes to his expertise in database management.
, MS (Computer Science)
By Ed Walsh
E
Ed Walsh
Community Contributor
Quizzes Created: 1 | Total Attempts: 5,137
| Attempts: 5,137 | Questions: 20
Please wait...
Question 1 / 20
0 %
0/100
Score 0/100
1. You can use Wireshark's Expressions to build display filters.

Explanation

Wireshark's Expressions can indeed be used to build display filters. Display filters allow users to selectively view specific network traffic based on various criteria such as source or destination IP addresses, protocols, port numbers, and more. By using Wireshark's Expressions, users can customize and fine-tune their display filters to focus on the specific network traffic they are interested in analyzing.

Submit
Please wait...
About This Quiz
Quiz : How Well Do You Know Wireshark? - Quiz


Wireshark is an open-source, free packet analyzer. How well do you know about it? The program is mainly used for analysis, troubleshooting, education, software, and communications protocol development,... see moreetc. Are you well aware of the intricate details of this software? Well then, let's test your knowledge with a super fun quiz! Just answer a few questions, and you will get your scores immediately! You are expected to answer all the questions. Keep learning and have fun! see less

2. Which display filter operator is the equivalent of AND?

Explanation

The correct answer is "&&". The "&&" operator in display filtering is the equivalent of the logical AND operator. It is used to combine multiple conditions in a display filter and returns only the packets that satisfy all the specified conditions simultaneously.

Submit
3. A custom column can be added to and rearranged in the Packet List pane.

Explanation

A custom column can be added to and rearranged in the Packet List pane, allowing users to customize the display of information in the pane according to their preferences. This feature provides flexibility and convenience for users to organize and view the packet data in a way that best suits their needs.

Submit
4. Both of the the display filters below will provide the same output.   ip.dst==10.100.0.1 or ip.dst==10.100.0.1   ip.dst==10.100.0.1 || ip.dst==10.100.0.1  

Explanation

Both of the display filters provided in the question are the same, as they both specify the same condition for the destination IP address. The "==" operator is used to check for an exact match, and the "||" operator is used for logical OR. In this case, both filters are checking if the destination IP address is equal to 10.100.0.1. Therefore, both filters will provide the same output, which makes the answer true.

Submit
5. Which statement about the TCP stream shown above is correct?

Explanation

The correct answer is that the HTTP client sent an HTTP GET request to the HTTP server. This can be inferred from the information given in the question, which states that the TCP stream shown above is related to an HTTP transaction. The HTTP GET request is the most common method used by an HTTP client to request a resource from an HTTP server.

Submit
6. Which Display filter will show only packets for the source address of 192.168.0.25?

Explanation

The correct answer is "ip.src == 192.168.0.25". This display filter will only show packets that have a source address of 192.168.0.25. It filters out all other packets and only displays the ones that match the specified source address.

Submit
7. How do you quickly spot large gaps in time between packets in a trace file containing 10,000 packets?

Explanation

By setting the Time column to "Seconds Since Previously Displayed Packet" and sorting the Time column, you can quickly spot large gaps in time between packets in the trace file. This will allow you to easily identify any significant delays or interruptions in the packet transmission.

Submit
8.   Which statement about the setting is shown in the Preference window above

Explanation

The correct answer is "Wireshark will only capture traffic to the local adapter, broadcast, or multicast address." This means that Wireshark will only capture network traffic that is sent to the local network adapter, as well as any broadcast or multicast traffic on the network. It will not capture traffic that is sent to other devices or addresses on the network.

Submit
9. This display filter would remove all packets destined for host 10.0.0.5 ip.dst == 10.100.0.5!

Explanation

The given display filter "ip.dst == 10.100.0.5!" would not remove all packets destined for host 10.0.0.5. The filter is checking for packets with a destination IP address of 10.100.0.5, not 10.0.0.5. Therefore, the statement is false.

Submit
10. Display filters and capture filters can be interchanged because they use the same syntax.

Explanation

Display filters and capture filters cannot be interchanged because they serve different purposes and use different syntax. Display filters are used to filter the packets that are displayed in a network capture, while capture filters are used to filter the packets that are actually captured by a network capture tool. Although both types of filters use a similar syntax, they are not interchangeable as they operate at different stages of the packet-capturing process.

Submit
11. Which of these filters can be used as either a capture or display filter?

Explanation

The UDP filter can be used as either a capture or display filter. UDP (User Datagram Protocol) is a transport layer protocol that allows data to be sent between applications on the internet. It is a connectionless protocol that does not provide error checking or flow control. As a capture filter, it can be used to capture UDP packets and analyze their contents. As a display filter, it can be used to filter and display only UDP packets in a packet capture file or network traffic.

Submit
12. When you select Prepare a filter, the filter is immediately applied to the traffice

Explanation

When you select "Prepare a filter," the filter is not immediately applied to the traffic. Instead, the filter is created and prepared for future use. It is not until you manually apply the filter that it will take effect and filter the traffic. Therefore, the correct answer is false.

Submit
13. The following capture filter will capture all FTP traffic on port 21 regardless of the destination or source host. host www.wiresharkbook.com && port 21

Explanation

The given capture filter will only capture FTP traffic on port 21 for the host www.wiresharkbook.com. It will not capture FTP traffic for any other destination or source host. Therefore, the statement that it will capture all FTP traffic on port 21 regardless of the destination or source host is false.

Submit
14. Which feature is only available with promiscuous mode operation?

Explanation

Promiscuous mode operation allows an interface to capture packets that are sent to any MAC address. This means that the interface can capture all network traffic, regardless of the destination MAC address. This is useful for network monitoring and troubleshooting purposes, as it allows for the analysis of all packets on the network, including those not intended for the interface itself. It is a feature commonly used by network administrators and security professionals.

Submit
15. Which statement about the Capture Options window shown above is correct?

Explanation

The correct answer is "Wireshark will scroll to display the most recent packet captured." This means that when capturing packets in Wireshark, the program will automatically scroll to show the most recent packet that has been captured.

Submit
16. Which statement about capture filters is correct?

Explanation

Wireshark includes a default set of capture filters. This means that when using Wireshark to capture network traffic, there are pre-defined filters available that can be applied to capture specific types of network packets. These capture filters can help in narrowing down the captured data to only the packets of interest, making it easier to analyze and troubleshoot network issues.

Submit
17. Which drive is used to capture packets when Wireshark is running on a Apple computer?

Explanation

Libpcap is the correct answer because it is a portable library used for packet capture and it is compatible with various operating systems, including Apple's macOS. Wireshark, a network protocol analyzer, relies on Libpcap to capture packets on Apple computers and analyze network traffic. Macpcap is a deprecated library that was used in older versions of Wireshark for macOS, while Airpcap is a library specifically designed for capturing wireless packets on Windows systems.

Submit
18. Type in the name of the pcap driver used when running Wireshark on  a Windows computer

Explanation

The correct answer is Winpcap, winpcap, WinPcap. These are the names of the pcap driver used when running Wireshark on a Windows computer.

Submit
19. Based on the image shown above, Wireshark's time display format is set to Seconds Since the Beginning of Capture.

Explanation

The correct answer is False because based on the image shown above, Wireshark's time display format is set to Seconds Since Previous Displayed Packet.

Submit
20. Which display filter is used to display all DHCP traffic?

Explanation

The correct answer is "bootp". BOOTP (Bootstrap Protocol) is an older version of DHCP (Dynamic Host Configuration Protocol) used to assign IP addresses to devices on a network. By using the "bootp" display filter, all DHCP traffic can be displayed, including both DHCPv4 and DHCPv6 traffic.

Submit
View My Results
Godwin Iheuwa |MS (Computer Science) |
Database Administrator
Godwin Iheuwa, a Database Administrator at MTN Nigeria, holds an MS in Computer Science, specializing in Agile Methodologies and Database Administration from the University of Bedfordshire and a Bachelor's in Computer Science from the University of Port Harcourt. His proficiency in SQL Server Integration Services (SSIS) and SQL Server Management Studio contributes to his expertise in database management.

Quiz Review Timeline (Updated): Mar 21, 2024 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2024
    Quiz Edited by
    ProProfs Editorial Team

    Expert Reviewed by
    Godwin Iheuwa
  • Nov 11, 2010
    Quiz Created by
    Ed Walsh
Cancel
  • All
    All (20)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
You can use Wireshark's Expressions to build display filters.
Which display filter operator is the equivalent of AND?
A custom column can be added to and rearranged in the Packet...
Both of the the display filters below will provide the same output. ...
Which statement about the TCP stream shown above is correct?
Which Display filter will show only packets for the source address of...
How do you quickly spot large gaps in time between packets in a trace...
  ...
This display filter would remove all packets destined for host...
Display filters and capture filters can be interchanged because they...
Which of these filters can be used as either a capture or display...
When you select Prepare a filter, the filter is immediately applied to...
The following capture filter will capture all FTP traffic on port 21...
Which feature is only available with promiscuous mode operation?
Which statement about the Capture Options window shown above is...
Which statement about capture filters is correct?
Which drive is used to capture packets when Wireshark is running on a...
Type in the name of the pcap driver used when running Wireshark on...
Based on the image shown above, Wireshark's time display format is...
Which display filter is used to display all DHCP traffic?
Alert!

Advertisement