Linux关闭防火墙
Linux虚拟机关闭防火墙是不安全的,但在仅主机的模式下是没问题的,关闭防火墙是为了让虚拟机集群可以相互访问。
命令:service iptables stop
验证:
service iptables status
显示iptables: Firewall is not running.
但是虚拟机在重启后,防火墙可能会自动重启,因为配置文件配置成了“随系统自动重启”,具体有没有,可以看下配置,
命令:chkconfig --list |grep iptables
显示某项有“on”,说明在某些情况下是会自动启动的,需要关闭它,
命令: chkconfig iptables off
验证:chkconfig --list |grep iptables,显示都为off,代表真正防火墙关闭了。