Linux關閉防火牆 設定埠

2021-09-26 14:04:49 字數 1238 閱讀 5097

1)重啟後生效 

開啟: chkconfig iptables on 

關閉: chkconfig iptables off 

驗證防火牆是否關閉:chkconfig --list |grep iptables

2) 即時生效,重啟後失效 

開啟: service iptables start 

關閉: service iptables stop 

centos 7:

systemctl stop firewalld.service #停止   

systemctl disable firewalld.service #禁用

firewall-cmd --state #檢視預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)

之前的版本:

service iptables stop #停止

chkconfig iptables off #禁用

需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。 

在開啟了防火牆時,做如下設定,開啟相關埠, 

修改/etc/sysconfig/iptables 檔案,新增以下內容: 

-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 22 -j accept

在防火牆中開啟要用到的埠

第一步開啟防火牆

chkconfig iptables on

第二步啟動防火牆

service iptables start

第三步編輯防火牆

先檢視防火牆資訊 service iptables status

然後編輯 vi /etc/sysconfig/iptables

2181,2888,3888三行資訊是拷貝上面22的資訊

第四部重啟防火牆

service iptables restart

然後檢視防火牆資訊 service iptables status

vi /etc/selinux/config

selinux=disabled

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防火牆埠設定

開放8080埠 root centos7 firewall cmd zone public add port 8080 tcp permanent 查詢埠號8080 是否開啟 root centos7 firewall cmd query port 80 tcp 重啟防火牆 root centos7...

Linux關閉防火牆 開放埠

linux的網路可以ping通,但是linux啟動的應用如tomcat nginx等都無法訪問?問題分析 解決思路 預設linux中的防火牆會關閉埠不允許訪問,但是可以ping的通linux的位址,所以想要訪問需要配置埠開放或者關閉防火牆。centos 6 處理方法 臨時關閉 service ipt...