linux-日常運維-firewalld的9個zone
阿新 • • 發佈:2018-10-30
ces ext -i one 如果 tables mar cfa star 打開firewalld
systemctl disable iptables #在開機時禁用服務
systemctl stop iptables #停止 iptables 服務
systemctl enable firewalld #在開機時啟用服務
systemctl start firewalld #開啟firewalld服務
firewalld默認有9個zone #zone是firewalld的一個單位,默認zone為public,每個zone相當於一個規則集,zone自帶一些規則. firewall-cmd --get-default-zone //查看默認的zone
zone的區別 firewall-cmd --zone=dmz --remove-interface=eth0 //針對網卡刪除zone
firewall-cmd --get-active-zones //查看系統所有網卡所在的zone
systemctl disable iptables #在開機時禁用服務
systemctl stop iptables #停止 iptables 服務
systemctl enable firewalld #在開機時啟用服務
systemctl start firewalld #開啟firewalld服務
firewalld默認有9個zone #zone是firewalld的一個單位,默認zone為public,每個zone相當於一個規則集,zone自帶一些規則.
firewall-cmd --get-zones //查看所有zone
zone的區別
firewall-cmd --set-default-zone=work //設定默認zone
firewall-cmd --get-zone-of-interface=eth0 //查指定網卡 #如果看到是no zone ,重啟一下網卡就看到了
firewall-cmd --zone=public --add-interface=eth0 //給指定網卡設置zone
firewall-cmd --zone=dmz --change-interface=eth0 //針對網卡更改zone
firewall-cmd --get-active-zones //查看系統所有網卡所在的zone
linux-日常運維-firewalld的9個zone