We have to mention Wireshark, since it is an unbelievably powerful network "sniffer": It watches the packets being sent on your local area network, decodes them and displays them in a graphical display.
How to install Wireshark
The Wireshark package is on the Red Hat CD or you can
download Wireshark.
Then install Wireshark:
rpm -iv wireshark*rpm
X Update list of packets in real time
X Automatic scrolling in live capture
Then click on Start.
You can Filter which packets are shown by this method: Click your mouse in the rectangle to the right of the Filter: are in the upper part of the window. Then type something like:
tcp.port==80
(ip.addr eq ldap.baylor.edu) ldap ip.addr == 10.205.0.170 tcp.dstport == 80 http icmp udp.dstport == 162
You can also specify a filter on the command-line to Wireshark. For example to capture only packets between two hosts named nfsserver and myclient you could type:
wireshark -f "host nfsserver and myclient"
Linux Quick Reference Home
Linux Migration Home