|
|
@@ -2645,7 +2645,7 @@ ___ |
|
|
|
###### Graph # of connections for each hosts |
|
|
|
|
|
|
|
```bash |
|
|
|
netstat -an | awk '/ESTABLISHED/ { split($5,ip,":"); if (ip[1] !~ /^$/) print ip[1] }' | \ |
|
|
|
netstat -an | awk '/ESTABLISHED/ { split($5,ip,":"); if (ip[1] !~ /^$/) print ip[1] }' | \ |
|
|
|
sort | uniq -c | awk '{ printf("%s\t%s\t",$2,$1) ; for (i = 0; i < $1; i++) {printf("*")}; print "" }' |
|
|
|
``` |
|
|
|
|
|
|
|