The objective of this task is to capture live network packets using Wireshark, identify basic protocols, and analyze traffic types.
- Wireshark
- Npcap
- Installed Wireshark along with Npcap for packet capturing.
- Opened Wireshark and selected the active network interface (
Wi-Fiin my case). - Started packet capture and generated traffic by:
- Browsing websites
- Running
ping google.comin Command Prompt
- Captured packets for approximately 1 minute.
- Stopped the capture and applied display filters for specific protocols:
httpβ to view HTTP trafficdnsβ to view DNS queries and responsestcpβ to view TCP connections
- Saved the capture file as
task5_capture.pcap. - Took screenshots of filtered packet views for documentation.
| Protocol | Description | Example Packet Observation |
|---|---|---|
| HTTP | Hypertext Transfer Protocol β used for web communication | Request to example.com with status code 200 OK |
| DNS | Domain Name System β resolves domain names to IP addresses | Query for google.com resolved to IP 142.250.x.x |
| TCP | Transmission Control Protocol β connection-oriented reliable protocol | 3-way handshake observed between client and server |
task5_capture.pcapβ Packet capture fileREADME.mdβ This reportscreenshots/β Folder containing all protocol screenshots
- Learned to capture live network traffic using Wireshark.
- Understood the role of HTTP, DNS, and TCP in network communication.
- Practiced filtering and analyzing specific protocol traffic.
- Gained basic awareness of packet structures and network troubleshooting.


