nethogs 可以查出占用带宽的进程
lsof 可以查出所有在读写的文件
lsof | grep <nethogs>查到的占用带宽的进程> 可以查出下载哪个文件导致带宽被占用
也可以尝试tail -f /var/log/nginx/access.log
查到扫描的IP后可用fail2ban禁用:fail2ban-client set nginx-404 banip 125.179.20.18
参考:https://www.binarytides.com/linux-commands-monitor-network/
评论