Here are the bottom 10 or so lines after running:
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
2 210.213.238.11
2 213.96.228.45
2 65.54.188.142
2 66.249.65.162
2 67.170.117.81
6 127.0.0.1
7 203.59.162.161
20
26 60.230.255.210
Should I be concerned about line #20 there?
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
2 210.213.238.11
2 213.96.228.45
2 65.54.188.142
2 66.249.65.162
2 67.170.117.81
6 127.0.0.1
7 203.59.162.161
20
26 60.230.255.210
Should I be concerned about line #20 there?