zoukankan      html  css  js  c++  java
  • Linux服务器维护统计连接数查看外部IP

     
     
     服务器上的一些统计数据:
     
      1)统计80端口连接数
     
      netstat -nat|grep -i "80"|wc -l
     
      1
     
      2)统计httpd协议连接数
     
      ps -ef|grep httpd|wc -l
     
      1
     
      3)、统计已连接上的,状态为“established'
     
      netstat -na|grep ESTABLISHED|wc -l
     
      2
     
      4)、查出哪个IP地址连接最多,将其封了。
      
     netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r +0n
    netstat -na|grep SYN|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r +0n
    Linux服务器维护统计连接数查看外部IP
     
     服务器上的一些统计数据:
     
      1)统计80端口连接数
     
      netstat -nat|grep -i "80"|wc -l
     
      1
     
      2)统计httpd协议连接数
     
      ps -ef|grep httpd|wc -l
     
      1
     
      3)、统计已连接上的,状态为“established'
     
      netstat -na|grep ESTABLISHED|wc -l
     
      2
     
    4)、查出哪个IP地址连接最多,将其封了。
      
     netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r +0n
    netstat -na|grep SYN|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r +0n
     
    5)
    netstat -na|grep ESTABLISHED|awk '{print $5}'|sort -k1n|awk '/:.*$/{ print $1}'  > /tmp/error_ip
    grep -E -o '([0-9]{1,3}[.]){3}' /tmp/error_ip|sort -k1n|uniq -c -d| awk '$1>100 {print $2"0" " "}' >/tmp/error_ip2

  • 相关阅读:
    「题解」洛谷 P1169 [ZJOI2007]棋盘制作
    「题解」洛谷 P4147 玉蟾宫
    dsu on tree 学习笔记
    [USACO08FEB]Hotel G「线段树」
    城市环路「树形DP」
    Siano「线段树」
    Emiya 家今天的饭「容斥+DP」
    Matlab调用其他文件夹下的函数
    基于小波金字塔的简单图像融合算法matlab实现
    知网引文网络使用方法
  • 原文地址:https://www.cnblogs.com/fenle/p/4612873.html
Copyright © 2011-2022 走看看