CentOS服務搭建 防火牆

2021-08-18 18:32:48 字數 1704 閱讀 8748

1.centos預設使用firewall作為防火牆,關閉預設防火牆,更改為iptables防火牆

檢視防火牆狀態    

命令1:firewall-cmd --state

命令2:systemctl list-unit-files|grep firewalld.service

命令3:systemctl status firewalld.service

2.關閉firewall防火牆

命令:systemctl stop firewalld.service #停止firewall

命令:systemctl disable firewalld.service #禁止firewall開機啟動此處

此處重啟後執行以上命令

現在使用putty可以登入,我的目的是簡單的配置防火牆

3.檢視是否安裝iptables

命令:service iptables status

沒有安裝

安裝iptables並更新

命令:yum install -y iptables #安裝iptables

命令:yum update iptables #更新iptables

命令:yum install iptables-services #安裝iptables-services

4.編輯 iptables 

命令:vi /etc/sysconfig/iptables

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

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

命令:systemctl start iptables.service #開啟防火牆

命令:systemctl stop iptables.service #關閉防火牆

5.重啟後檢視防火牆

命令:service iptables status

可以看到redis的6379埠已經可以測試成功

於人於己方便

CentOS防火牆配置

參考 抵禦外網攻擊等高階配置 centos 配置防火牆操作例項 啟 停 開 閉埠 注 防火牆的基本操作命令 查詢防火牆狀態 root localhost service iptables status 回車 停止防火牆 root localhost service iptables stop 回車 ...

CentOS防火牆配置

一 centos7使用的是linux kernel 3.10.0的核心版本 uname a 或 cat proc version 命令檢視linux核心 新版的kernel核心已經包含了防火牆netfilter,並且firewalld的使用效能更高,穩定性更好。1 使用xml配置檔案的方式配置 2 ...

CentOS配置防火牆

當執行firewall cmd permanent zone public add port 80 tcp,提示firewalld is not running 問題在於還沒有開啟防火牆 檢視防火牆狀態 開啟防火牆 systemctl start firewalld 再次檢視防火牆狀態 開放3306...