Difference between revisions of "How to capture packets using wireshark"

From Kolmisoft Wiki
Jump to navigationJump to search
Line 19: Line 19:
tshark
tshark


More options with command tshark you can find [http://www.wireshark.org/docs/wsug_html_chunked/AppToolstshark.html find here:]
More options with command tshark you can find [http://www.wireshark.org/docs/wsug_html_chunked/AppToolstshark.html find here].

Revision as of 14:12, 17 November 2011

Wireshark is a network protocol analyzer.

To install wireshark put this command to Terminal:

yum install wireshark

After that you can use command:

tethereal -i eth0 -w /home/capture.pcap

To save a dump of packets.

Packets will be saved to directory /home/capture.pcap

You can send captured file capture.pcap from your server and open with Wireshark GUI and analyse the packets.

You can analyse network packets on real time on server using command:

tshark

More options with command tshark you can find find here.