Created
June 29, 2014 16:46
-
-
Save fqrouter/72df962f3c25e6ea9b4d to your computer and use it in GitHub Desktop.
find out the top talkers
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
tcpdump -tnn -c 20000 -i venet0 src port 443 | awk -F "." '{print $1"."$2"."$3"."$4}' | sort | uniq -c | sort -nr | awk ' $1 > 100 ' | |
tshark -i venet0 -Y "ssl.handshake.extensions_server_name" -Tfields -e "ip.dst" -e "ssl.handshake.extensions_server_name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment