Linux防火牆埠設定

2021-10-03 16:50:59 字數 2301 閱讀 1403

開放8080埠:

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

查詢埠號8080 是否開啟:

[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的示例:

# firewall configuration written by system-config-securitylevel

# manual customization of this file is not recommended.

*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防火牆的設定修改。

Linux 防火牆埠設定

搭建好伺服器後,本機可以正常訪問,外部機器無法正常訪問,防火牆問題 1.在 etc sysconfig iptables裡新增 a rh firewall 1 input m state state new m tcp p tcp dport 8080 8082 j accept a rh fire...

linux防火牆 埠檢視設定

防火牆1 firewalld.server 一般是linux系統自帶的系統服務,usr lib systemd system 在 usr lib systemd system下的服務,可以使用systemctl指令去操作 2 iptables 服務一般是需要自己手動安裝 上面兩種都是啟到防火牆的作用...

Linux關閉防火牆 設定埠

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 驗證防火牆是否關閉 chkconfig list grep iptables 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service ip...