User Tools

Site Tools


howtos:tcpdump
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


howtos:tcpdump [02/12/2018 21:34] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== tcpdump goodies ======
 +
 +===== Capture only PXE traffic (tftp and dhcp requests) =====
 +
 +
 +<code>
 +sudo tcpdump -i eth0 -s 1600 -neeevvvX "proto (\udp or \tcp) and port (67 or 68 or 69)"
 +</code>
 +
 +The same but with a more simple output:
 +
 +<code>
 +sudo tcpdump -i eth0 -s 1600 -n "proto (\udp or \tcp) and port (67 or 68 or 69)"
 +</code>
 +
  
howtos/tcpdump.txt · Last modified: 02/12/2018 21:34 by 127.0.0.1