小樱 发表于 2021/4/28 18:58

centos 7 关闭 rpcbind 服务,防止被用于ddos反射流量攻击,禁用111 udp端口提高安全性,禁用开机自启动

centos 7 关闭 rpcbind 服务,防止被用于ddos反射流量攻击,禁用111 udp端口提高安全性,禁用开机自启动

查询,如果有显示代表当前已被开启,会遭受到DDOS反射流量攻击
netstat -apn | grep rpcbind

停止当前服务
service rpcbind stop

关闭开机启动
systemctl disable rpcbind;systemctl disable rpcbind.socket

rpcbind 流量反射攻击相关介绍,利用端口为udp 111
https://blog.cloudflare.com/reflections-on-reflections/

不可名 发表于 2021/7/19 02:45

{:3038:}{:3027:}
页: [1]
查看完整版本: centos 7 关闭 rpcbind 服务,防止被用于ddos反射流量攻击,禁用111 udp端口提高安全性,禁用开机自启动