Linux服务器维护 统计连接数查看外部IP
Linux服务器维护 统计连接数查看外部IP 服务器上的一些统计数据:
1)统计80端口连接数
- netstat -nat|grep -i "80"|wc -l
netstat -nat|grep -i "80"|wc -l
2)统计httpd协议连接数
- ps -ef|grep httpd|wc -l
ps -ef|grep httpd|wc -l , pstree -aup|grep httpd|wc -l
3)、统计已连接上的,状态为“established'
- netstat -na|grep ESTABLISHED|wc -l
netstat -na|grep ESTABLISHED|wc -l
4)、查出哪个IP地址连接最多,将其封了.
- netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r
netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r
- netstat -na|grep SYN|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r
【推荐】博客园的心动:当一群程序员决定开源共建一个真诚相亲平台
【推荐】开源 Linux 服务器运维管理面板 1Panel V2 版本正式发布
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步