- 查看哪些IP连接本机
netstat -an
- 查看TCP连接数
2.1 统计80端口连接数
[root@master ~]# netstat -nat | grep -i "80" | wc -l
9
[root@master ~]#
2.2 统计httpd协议连接数
ps -ef | grep httpd | wc -l
2.3 统计已连接上的,状态为“established
netstat -anp | grep ESTABLISHED | wc -l
2.4 查出哪个IP地址连接最多,将其封了
netstat -anp | grep ESTABLISHED | awk {print $5}|awk -F: {print $1} | sort | uniq -c | sort -r +0n
netstat -anp | grep SYN | awk {print $5}|awk -F: {print $1} | sort | uniq -c | sort -r +0n
网友评论