Centos7 Friewalld 防火牆配置

2021-07-08 14:46:25 字數 1373 閱讀 6431

centos 7防火牆換用friewalld了,其實跟iptable一樣,就命令不一樣。

啟用區域埠和協議組合

firewall-cmd [--zone=] --add-port=[-]/[--timeout=]

新增埠

firewall-cmd --permanent --add-port=8080/tcp

刪除埠

firewall-cmd --permanent --remove-port=8080/tcp

執行完畢會看到 success 這樣的輸出

重啟服務才會生效:

firewall-cmd --reload

檢視埠是否開啟

firewall-cmd --permanent --query-port=8080/tcp

檢視開放的埠:

firewall-cmd --list-ports

centos7以下設定防火牆的方法:

檢視/etc/sysconfig/iptables

[root@ydpttest2 /]# cat /etc/sysconfig/iptables

# firewall configuration written by system-config-firewall

# manual customization of this file is not recommended.

*filter

:input accept [0:0]

:forward accept [0:0]

:output accept [0:0]

-ainput -m state --state established,related -j accept

-ainput -p icmp -j accept

-ainput -i lo -j accept

-ainput -m state --state new -m tcp -p tcp --dport 22 -j accept

-ainput -j reject --reject-with icmp-host-prohibited

-aforward -j reject --reject-with icmp-host-prohibited

commit

按照埠22的配置方式進行配置,配置完重啟下iptables服務。
/etc/init.d/iptables restart  #stop 停止 #start 開啟 

或者是:

service iptables restart

內容參考網路。

這個鏈結講述的比較詳細:

centos7 安裝centos桌面

一 輸入命令 yum groupinstall gnome desktop graphical administration tools 二 設定系統啟動等級。systemctl get default 獲取當前系統執行形式,會顯示multi user.target 命令列終端 或者 graphic...

7 centos7 使用者管理

useradd meng如果建立使用者時沒有指定屬於哪個組,則缺省會建立乙個名字與使用者相同的組並歸屬於此組 對應的home目錄下回建立乙個meng的資料夾 passwd meng 之後會提示輸入密碼 userdel meng 刪除使用者,會保留home檔案 userdel r meng 刪除使用者...

centos7 r語言安裝 centOS7安裝R

在安裝時發現一般教程中說的 yum install r 這個命令不管用了啊,然後去官網了解了一波 發現官網上表示r語言已經屬於epel倉庫管理了。1.安裝epel倉庫 yum install epel release 隨後報錯 這是由於centos7自帶的python版本為2.7,因此要將該檔案的p...