当然、Current Connections とは違う。 ってことで、やはり一番簡単なのは普通に netstat の結果に grep かけて行数をカウントする方法。 netstat -an |grep :80 |wc -lhttp://blog.mattsatorius.com/technology/web-design/ssh-command-to-show-current-active-apache-connections/ まぁ、これでも良いんだけど、これだと全てのIPアドレスを一緒にしてカウントされてしまうので、もっといい方法が無いか調べてみました。 IP別に集計する って事で、色々見てたらかなり強引だけど、IP別に表示する方法がありました。 netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort