Top talkers
From Tech-Wiki
Revision as of 20:04, 23 August 2016 by Fabricio.Lima (Talk | contribs) (Created page with "Category:Check Point '''Back to Gaia''' Display the top 50 Source/Destination combos fwaccel conns | awk '{printf "%-16s %-15s\n", $1,$3}' | sort |...")
Display the top 50 Source/Destination combos
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