cat /proc/net/tcp |awk ‘{print $4}’ |grep -c 01
当然也可以:
netstat -nat |grep -c ESTABLISHED
或者:
netstat -s -t | grep connections\ established
经过time测试,netstat -s -t | grep connections\ established 这种方法是效率最高的。
当然也可以:
netstat -nat |grep -c ESTABLISHED
或者:
netstat -s -t | grep connections\ established
经过time测试,netstat -s -t | grep connections\ established 这种方法是效率最高的。