centos常用命令

centos统计服务器当前IP连接数

netstat -tun | awk '{print $5}' | cut -d: -f1 |sort | uniq -c | sort -n
原文地址:https://www.cnblogs.com/binz/p/15759236.html