Read more

netstat: Sum open connections by IP (and sort it)

Thomas Eisenbarth
February 26, 2016Software engineer at makandra GmbH

The following sums up all connections (ESTABLISHED, TIME_WAIT, FIN_WAIT, etc.) and sorts it:

netstat -n | awk ' $5 ~ /^[0-9]/ {print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

Works on FreeBSD and Linux.

Posted by Thomas Eisenbarth to makandra dev (2016-02-26 11:26)