Top talkers
From Tech-Wiki
Revision as of 19:11, 9 January 2019 by Fabricio.Lima (Talk | contribs)
Display the top 50 Source/Destination pairs:
fwaccel conns | awk '{printf "%-16s %-15s\n", $1,$3}' | sort | uniq -c | sort -n -r | head -n 50;
Display the top 50 Sources:
fwaccel conns | awk '{print $1}' | sort | uniq -c | sort -n -r | head -n 50
Display the top 50 Destinations:
fwaccel conns | awk '{print $3}' | sort | uniq -c | sort -n -r | head -n 50
Display Connections From a Specific Host (large list):
fwaccel conns | awk -v DPT=200.1.1.1 '$1==DPT{print}'| sort | sort -n -r | less
Display Connections To a Specific Host (large list):
fwaccel conns | awk -v DPT=200.1.1.1 '$3==DPT{print}'| sort | sort -n -r | less