Dump Packet across operating systems
Last updated
Download Windows x64 Installer or PortableApps version from Wireshark's official website.
Run Wireshark and select main Interface (typically Ethernet) to start packet capture.

Stop capture immediately when anomaly is detected.

Save and provide capture file to technical staff for investigation.

Install tcpdump using apt package manager: apt install tcpdump

Identify main Interface using ip addr (e.g., eth0)

Start capture: tcpdump -i <Interface> -s 65535 -w output.pcap
Press Ctrl + C to stop when anomaly occurs, provide output.pcap file with timestamp.

Last updated