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

From Kolmisoft Wiki
Jump to navigationJump to search
m
Line 6: Line 6:
To install Wireshark put this command to Terminal:
To install Wireshark put this command to Terminal:


yum install Wireshark
yum install Wireshark


==Usage==
==Usage==

Revision as of 14:39, 17 November 2011

About

Wireshark is the world's foremost network protocol analyzer.

It lets you capture and interactively browse the traffic running on a computer network. more about Wireshark

Install

To install Wireshark put this command to Terminal:

yum install Wireshark

Usage

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.