CentOS 7快速開放埠

2021-10-23 05:41:15 字數 2297 閱讀 9296

一、centos 7快速開放埠:

centos公升級到7之後,發現無法使用iptables控制linuxs的埠,baidu之後發現centos 7使用firewalld代替了原來的iptables。下面記錄如何使用firewalld開放linux埠:

開啟埠

[root@centos7 ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent

查詢埠號80 是否開啟:

[root@centos7 ~]# firewall-cmd --query-port=80/tcp

重啟防火牆:

[root@centos7 ~]# firewall-cmd --reload

查詢有哪些埠是開啟的:

[root@centos7 ~]# firewall-cmd --list-port

命令含義:

–zone #作用域

–add-port=80/tcp #新增埠,格式為:埠/通訊協議

–permanent #永久生效,沒有此引數重啟後失效

關閉firewall:

systemctl stop firewalld.service #停止firewall

systemctl disable firewalld.service #禁止firewall開機啟動

二、centos6防火牆開放埠:

在我們使用centos系統的時候,centos防火牆有時是需要改變設定的。centos防火牆預設是開啟的,設定centos防火牆開放埠方法如下:

開啟iptables的配置檔案:vi /etc/sysconfig/iptables

修改centos防火牆時注意:一定要給自己留好後路,留vnc乙個管理埠和ssh的管理埠

下面是乙個iptables的示例:

*filter

:input accept [0:0]

:forward accept [0:0]

:output accept [0:0]

:rh-firewall-1-input - [0:0]

-a input -j rh-firewall-1-input

-a forward -j rh-firewall-1-input

-a rh-firewall-1-input -i lo -j accept

-a rh-firewall-1-input -p icmp –icmp-type any -j accept

-a rh-firewall-1-input -p 50 -j accept

-a rh-firewall-1-input -p 51 -j accept

-a rh-firewall-1-input -m state –state established,related -j accept

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 53 -j accept

-a rh-firewall-1-input -m state –state new -m udp -p udp –dport 53 -j accept

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 22 -j accept

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 25 -j accept

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 80 -j accept

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 443 -j accept

-a rh-firewall-1-input -j reject –reject-with icmp-host-prohibited

commit

修改centos防火牆需要注意的是,你必須根據自己伺服器的情況來修改這個檔案。

舉例來說,如果你不希望開放80埠提供web服務,那麼應該相應的刪除這一行:

-a rh-firewall-1-input -m state –state new -m tcp -p tcp –dport 80 -j accept

全部修改完之後重啟iptables:service iptables restart

你可以驗證一下是否規則都已經生效:iptables -l

這樣,我們就完成了centos防火牆的設定修改。

centos7 開放埠管理

centos7 用firewalld管理開放的埠 centos7預設安裝了firewalld,如果沒有安裝的話,可以使用yum install firewalld firewalld config進行安裝。常用命令 1.啟動防火牆 systemctl start firewalld2.禁用防火牆 s...

CentOS 7 開放3306埠訪問

centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...

CentOS 7 開放3306埠訪問

centos 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。1 關閉firewall systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewal...