centos – 阻止认证uid的传出连接(root,apache,nobody)

前端之家收集整理的这篇文章主要介绍了centos – 阻止认证uid的传出连接(root,apache,nobody)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用CentOS 5和6 Linux中的iptables – 如何防止以root用户,apache或无人启动的进程启动传出连接?

在CentOS 5 Linux上,我尝试将这些行放入/ etc / sysconfig / iptables:

-A OUTPUT -m owner --uid-owner root -j DROP
-A OUTPUT -m owner --uid-owner apache -j DROP
-A OUTPUT -m owner --uid-owner nobody -j DROP

但不幸的是得到错误

# sudo service iptables restart
iptables: Flushing firewall rules:                         [  OK  ]
iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
iptables: Unloading modules:                               [  OK  ]
iptables: Applying firewall rules: iptables-restore v1.4.7: owner: Bad value for "--uid-owner" option: "apache"
Error occurred at line: 27
Try `iptables-restore -h' or 'iptables-restore --help' for more information.
                                                           [Failed]
尝试使用数字UID而不是名称.例如:
-A OUTPUT -m owner --uid-owner 400 -j DROP

代替

-A OUTPUT -m owner --uid-owner apache -j DROP

您可以通过键入找到UID

id user
原文链接:https://www.f2er.com/centos/373923.html

猜你在找的CentOS相关文章