如果我做
netstat -n|grep :80|cut -c 45-|cut -f 1 -d ':'|sort|uniq -c|sort -nr|more
我会得到哪个IP正在访问我的服务器
我应该怎么做才能获取哪个用户代理正在访问我的服务器?
答案1
如果您使用 CentOS 和 Apache,您可以使用:
cut -f6 -d\" /var/log/httpd/access_log
如果我做
netstat -n|grep :80|cut -c 45-|cut -f 1 -d ':'|sort|uniq -c|sort -nr|more
我会得到哪个IP正在访问我的服务器
我应该怎么做才能获取哪个用户代理正在访问我的服务器?
如果您使用 CentOS 和 Apache,您可以使用:
cut -f6 -d\" /var/log/httpd/access_log