Download Windows x64 Installer or PortableApps version from Wireshark's official websitearrow-up-right.
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
apt install tcpdump
Identify main Interface using ip addr (e.g., eth0)
ip addr
eth0
Start capture: tcpdump -i <Interface> -s 65535 -w output.pcap
tcpdump -i <Interface> -s 65535 -w output.pcap
Press Ctrl + C to stop when anomaly occurs, provide output.pcap file with timestamp.
Last updated 1 year ago