Centos7防火牆用iptables(舊)

2021-10-11 09:25:30 字數 921 閱讀 6212

centos7系統預設用firewall防火牆,先要停止firewall,然後安裝iptables防火牆。注意在centos7.0版本下,/etc/init.d/iptables restart 這樣的命令是無效的,應該用systemctl命令。

#先關閉firewall

systemctl stop firewalld.service

#禁止firewall開機啟動

systemctl disable firewalld.service

#檢視防火牆狀態

firewall-cmd –state

#安裝iptables

yum install -y iptables

#安裝iptables_services

yum install iptables-services

配置防火牆

vim /etc/sysconfig/iptables
允許80埠和3306通過防火牆

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

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

#設定iptables開機啟動

systemctl enable iptables.service

#開啟防火牆

systemctl start iptables.service

#檢視狀態

systemctl status iptables.service

結果顯示:actice:active(exited)(高亮顯示)

centos7防火牆用firewall

systemctl start firewalld.service systemctl status firewalld.service a.實現一般訪問需要開放 80 tcp 埠 firewall cmd zone public add port 80 tcp permanent b.實現ssh訪...

centos7防火牆配置

centos7防火牆配置 centos7使用的是linux kernel 3.10.0的核心版本,新版的kernel核心已經有了防火牆netfilter,並且firewalld的使用效能更高,穩定性更好。centos7配置防火牆的兩種方法 一 使用xml配置檔案的方式配置 方法一cp usr lib...

Centos7 關閉防火牆

centos7 關閉防火牆 centos 7.0預設使用的是firewall作為防火牆,使用iptables必須重新設定一下 1 直接關閉防火牆 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.servi...