centos7使用iptables作為防火牆方法

2022-09-03 19:12:11 字數 637 閱讀 1584

centos7使用iptables作為防火牆方法

檢視firewalld狀態: systemctl status firewalld

將centos7預設的firewalld停止,並將iptables作為預設防火牆

關閉並禁用firewalld

systemctl stop firewalld

systemctl disable firewalld

接下來要安裝iptables服務,centos從7開始預設用的是firewalld,這個是基於iptables的,雖然有iptables的核心,但是iptables的服務是沒安裝的。

yum install iptables-services

接下來啟動並啟用iptables

systemctl start iptables

systemctl enable iptables

檢視當前iptables狀態:systemctl status iptables

如果使用了ipv6,還需要開啟ip6tables

啟動並啟用ip6tables

systemctl start ip6tables

systemctl enable ip6tables

更多關於linux技術分享,詳見 

CentOS7使用總結

ctrl alt 圖形介面 ctrl alt f1 命令列介面 ctrl alt f2 f3 f3 f4 f5 f6 應用程式 終端 檢視 放大,可以放大字型大小 touch 檔案名字 mkdir 資料夾名字 rm 檔案名字 rm rf 資料夾名字 su 然後輸入管理員密碼 需要切換到超級使用者 圖...

Centos 7 使用記錄

1.網路配置 url 2.防火牆詳解 url 加入永久開放埠 color darkblue firewall cmd permanent zone home add port 443 tcp firewall cmd permanent add port 5432 tcp color 臨時開發埠 c...

centos7使用筆記

檢視核心版本 uname a 檢視發行版本 cat etc elease 設定靜態ip cd etc sysconfig network scripts 看到類似這樣的乙個檔案 ifcfg eno16777736 vim ifcfg eno16777736 修改如下 bootproto改為stati...