linux关闭防火墙
emer 发布于 2018-8-6 13:00 2410 次阅读
3. 关闭防火墙和selinux
Redhat使用了SELinux来增强安全,关闭的办法为:
1. 永久有效
修改 /etc/selinux/config 文件中的 SELINUX="" 为 disabled ,然后重启。
2. 即时生效
setenforce 0
添加udp端口:
iptables -A INPUT -p udp --destination-port 2000 -j ACCEPT
关闭防火墙的方法为:
1. 永久性生效
开启:chkconfig iptables on
关闭:chkconfig iptables off
2. 即时生效,重启后失效
开启:service iptables start
关闭:service iptables stop