Difference between revisions of "Tcpdump"

From Gangplank
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:tcpdump}} '''tcpdump''' <ref>wikipedia:Tcpdump</ref> is a packet analyzer <ref>wikipedia:Packet_analyzer</ref> which is able to intercept and log networ...")
 
m
Line 3: Line 3:


== Example ==
== Example ==
In a terminal window type:


tcpdump -i lo udp port 6454 -vv -X
sudo tcpdump -i lo udp port 6454 -vv -X


The resulting output will show UDP datagrams which are captured on the loopback interface on port 6454 (Art-Net).
The resulting output will show UDP datagrams which are captured on the loopback interface on port 6454 (Art-Net).

Revision as of 15:47, 15 April 2021

tcpdump [1] is a packet analyzer [2] which is able to intercept and log networktraffic. Packet analyzers are particularly helpfull in detecting networking issues.

Example

In a terminal window type:

sudo tcpdump -i lo udp port 6454 -vv -X

The resulting output will show UDP datagrams which are captured on the loopback interface on port 6454 (Art-Net).

References

External links

https://www.tcpdump.org/