Last active
August 29, 2015 14:09
-
-
Save elvinio/494981bd6ed553c20070 to your computer and use it in GitHub Desktop.
Useful Linux Commands
This file contains hidden or 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
# doing a strace on a process | |
strace -c -f ./D4Adaptor | |
# listening on multicast group in iperf | |
/usr/local/bin/iperf -s -i 1 -u -B 224.0.28.46 -p 6313 | |
# spamming multicast | |
/usr/local/bin/iperf -c 224.0.28.46 -u -T 32 -t 60 -i 5 -p 6313 | |
# Scanning for igmp packets | |
sudo tcpdump -i eth0 igmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment