CentOS 7 使用iptables 開放埠

2022-09-02 00:09:25 字數 921 閱讀 7152

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

1、關閉firewall:

systemctl stop firewalld.service

systemctl disable firewalld.service

systemctl mask firewalld.service

2、安裝iptables防火牆

yum install iptables-services -y

3.啟動設定防火牆

# systemctl enable iptables

# systemctl start iptables

4.檢視防火牆狀態

systemctl status iptables

5編輯防火牆,增加埠

vi /etc/sysconfig/iptables #編輯防火牆配置檔案

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

-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

:wq! #儲存退出

3.重啟配置,重啟系統

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

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

//新建mysql使用者並授權

grant all privileges on *.* to test@localhost identified by 'q123456';

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...