Linux 關閉防火牆

2021-07-26 16:48:29 字數 1971 閱讀 4732

一.linux下開啟/關閉防火牆命令

1) 永久性生效,重啟後不會復原開啟: chkconfig iptables on關閉: chkconfig iptables off

2) 即時生效,重啟後復原開啟: service iptables start關閉: service iptables stop

需要說明的是對於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

二.ubuntu關閉防火牆

三.centos 

1、firewalld的基本使用

啟動: systemctl start firewalld

檢視狀態: systemctl status firewalld 

停止: systemctl disable firewalld

禁用: systemctl stop firewalld

2.systemctl是centos7的服務管理工具中主要的工具,它融合之前service和chkconfig的功能於一體。

啟動乙個服務:systemctl start firewalld.service

關閉乙個服務:systemctl stop firewalld.service

重啟乙個服務:systemctl restart firewalld.service

顯示乙個服務的狀態:systemctl status firewalld.service

在開機時啟用乙個服務:systemctl enable firewalld.service

在開機時禁用乙個服務:systemctl disable firewalld.service

檢視服務是否開機啟動:systemctl is-enabled firewalld.service

檢視已啟動的服務列表:systemctl list-unit-files|grep enabled

檢視啟動失敗的服務列表:systemctl --failed

3.配置firewalld-cmd

檢視版本: firewall-cmd --version

檢視幫助: firewall-cmd --help

顯示狀態: firewall-cmd --state

檢視所有開啟的埠: firewall-cmd --zone=public --list-ports

更新防火牆規則: firewall-cmd --reload

檢視區域資訊:  firewall-cmd --get-active-zones

檢視指定介面所屬區域: firewall-cmd --get-zone-of-inte***ce=eth0

拒絕所有包:firewall-cmd --panic-on

取消拒絕狀態: firewall-cmd --panic-off

檢視是否拒絕: firewall-cmd --query-panic

那怎麼開啟乙個埠呢

新增

firewall-cmd 

--zone=public --add-port=80/tcp --permanent    (--permanent永久生效,沒有此引數重啟後失效)

重新載入

firewall-cmd --reload

檢視firewall-cmd --zone= public --query-port=80/tcp

刪除

firewall-cmd 

--zone= public --remove-port=80/tcp --permanent

Linux 關閉防火牆

centos 6 中防火牆預設是 iptables,而 centos 7 中防火牆預設是 firewall。a 檢視防火牆狀態 service iptable statusb 臨時關閉防火牆 臨時關閉防火牆 servcie iptables stop 臨時啟動防火牆 service iptables...

linux關閉防火牆

1 重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令...

linux防火牆關閉

0x00 臨時關閉防火牆 1 檢視防火牆的狀態 etc init.d iptables status 2 臨時關閉防火牆 etc init.d iptables stop 3 檢視關閉後的狀態 etc init.d iptables status 0x01 永久關閉防火牆 命令 chkconfig ...