防火牆和系統安全防護和優化

2021-10-01 10:36:56 字數 2118 閱讀 3087

本次部落格針對centos 7

centos 7.2關閉防火牆

centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆步驟。

firewall-cmd --state #檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)
執行的截圖:

檢查防火牆的狀態:

firewall-cmd --state
檢查防火牆的狀態:

從centos7開始使用systemctl來管理服務和程式,包括了service和chkconfig。

執行的截圖:

systemctl list-unit-files|grep firewalld.service      --防火牆處於關閉狀態
執行結果:

centos 7 firewall 命令:檢視已經開放的埠:

firewall-cmd --list-ports
執行結果:

代表並沒有開放任何埠

重啟防火牆

firewall-cmd --reload #重啟firewall

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall開機啟動

firewall-cmd --state #檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)

執行截圖:

centos 7預設使用的是firewall作為防火牆,使用iptables必須重新設定一下

1、直接關閉防火牆

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall開機啟動

截圖:

2、設定 iptables service

yum -y install iptables-services
如果要修改防火牆配置,如增加防火牆埠3306

vi /etc/sysconfig/iptables
截圖:

增加規則

-a input -m state --state new -m tcp -p tcp --dport 3306 -j accept

儲存退出後

systemctl restart iptables.service #重啟防火牆使配置生效

systemctl enable iptables.service #設定防火牆開機啟動

最後重啟系統使設定生效即可。

systemctl start iptables.service #開啟防火牆

systemctl stop iptables.service #關閉防火牆

防火牆 系統安全防護和優化

防火牆 firewall 也稱防護牆,是由check point創立者gil shwed於1993年發明並引入國際網際網路 us5606668 a 1993 12 15 它是一種位於內部網路與外部網路之間的網路安全系統。一項資訊保安的防護系統,依照特定的規則,允許或是限制傳輸的資料通過。防火牆具有很...

防火牆和系統安全防護和優化

啟動 root izbp1f0xuq9rc815r5u5b0z systemctl start firewalld 關閉 root izbp1f0xuq9rc815r5u5b0z systemctl stop firewalld 檢視狀態 root izbp1f0xuq9rc815r5u5b0z s...

防火牆和系統安全防護和優化

1 firewalld的基本使用 啟動 systemctl start firewalld root instance rrkkmshy systemctl start firewalld關閉 root instance rrkkmshy systemctl stop firewalld 檢視狀態 ...