CentOS 7.0默認使用的是firewall作為防火牆;若沒有啟用iptables 作為防火牆,則使用以下方式關閉防火牆:
systemctl stop firewalld.service
關閉開機啟動防火牆:
systemctl disable firewalld.service
查看查狀態
firewall-cmd --state
若已經啟用iptables作為防火牆,則使用以下方式關閉:
service iptables stop #臨時關閉防火牆
chkconfig iptables off #永久關閉防火牆