Created
November 29, 2011 14:54
-
-
Save mattm7n/1405067 to your computer and use it in GitHub Desktop.
Monitor DHCP traffic with tcpdump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Monitoring on interface eth0 | |
tcpdump -i eth0 -n port 67 and port 68 |
Thanks, it works
capture dhcpv6 packets
tcpdump -i eth0 -n -vv '(udp port 546 or port 547)'
We can get more tcpdump examples from here.
it's good!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tcpdump -i eth0 -pvn port 67 and port 68