iptables和firewalld是兩種不同的防火牆策略配置服務(不作深究
# 檢視firewall服務狀態
systemctl status firewalld
# 檢視firewall的狀態
firewall-cmd --state
# 開啟
service firewalld start
# 重啟
service firewalld restart
# 關閉
service firewalld stop
# 禁止firewall開機啟動
systemctl disable firewalld.service
# 檢視防火牆規則
firewall-cmd --list-all
# 查詢埠是否開放
firewall-cmd --query-port=8080/tcp
# 開放80埠
firewall-cmd --permanent --add-port=80/tcp
# 移除埠
firewall-cmd --permanent --remove-port=8080/tcp
# 重啟防火牆(修改配置後要重啟防火牆)
firewall-cmd --reload
# 引數解釋
1、firwall-cmd:是linux提供的操作firewall的乙個工具;
2、--permanent:表示設定為持久;
3、--add-port:標識新增的埠;
# 檢視防火牆狀態
service iptables status
# 停止防火牆
service iptables stop
# 啟動防火牆
service iptables start
# 重啟防火牆
service iptables restart
# 永久關閉防火牆
chkconfig iptables off
# 永久關閉後重啟
chkconfig iptables on
centos 防火牆關閉 開啟
從配置選單關閉防火牆是不起作用的,索性在安裝的時候就不要裝防火牆 檢視防火牆狀態 etc init.d iptables status 暫時關閉防火牆 etc init.d iptables stop 禁止防火牆在系統啟動時啟動 sbin chkconfig level 2345 iptables ...
CentOS 關閉防火牆
centos 6 1 永久性生效,重啟後不會復原 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後復原 開啟 service iptables start 關閉 service iptables stop centos 7 s...
centos防火牆開啟 關閉 檢視狀態
關閉命令 service iptables stop 永久關閉防火牆 chkconfig iptables off 兩個命令同時執行,執行完成後檢視防火牆關閉狀態 service iptables status 1 關閉防火牆 service iptables stop 2 啟動防火牆 servic...