Trace: netstat

Count number of connection on port 80

netstat -an | grep :80 | wc -l

Count connection by status

netstat -ant | awk '{print $6}' | sort | uniq -c | sort -n
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki