Let's perform the following steps:
- Open Wireshark using the following command:
wireshark
The output of the preceding command is shown in the following screenshot:
- Select the interface we want to capture traffic on:
- Then we click on Start. Display filters are used to see general packet filtering while capturing the network traffic:
tcp.port eq 80
The output of the preceding command can be seen in the following screenshot:
- Applying the filter will show only the traffic on port 80. If we want to view requests only from ...