centos6和7的防火牆開關

来源:https://www.cnblogs.com/Ai-Hen-Jiao-zhi/archive/2018/08/22/firewall.html
-Advertisement-
Play Games

CentOS6.5查看防火牆的狀態: 1 [linuxidc@localhost ~]$service iptable status 1 [linuxidc@localhost ~]$service iptable status 1 [linuxidc@localhost ~]$service ip ...


CentOS6.5查看防火牆的狀態:

1 [linuxidc@localhost ~]$service iptable status

  顯示結果:

1 2 3 4 5 [linuxidc@localhost ~]$service iptable status Redirecting to /bin/systemctl status  iptable.service ● iptable.service    Loaded: not-found (Reason: No such file or directory)    Active: inactive (dead)  --表示防火牆已經關閉

    CentOS 6.5關閉防火牆

1 2 [root@localhost ~]#servcie iptables stop                    --臨時關閉防火牆 [root@localhost ~]#chkconfig iptables off                    --永久關閉防火牆

    CentOS 7.2關閉防火牆

CentOS 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆步驟。


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

1 2 [root@localhost ~]#firewall-cmd --state not running

   檢查防火牆的狀態:

從centos7開始使用systemctl來管理服務和程式,包括了service和chkconfig。

1 2 [root@localhost ~]#systemctl list-unit-files|grep firewalld.service            --防火牆處於關閉狀態 firewalld.service                          disabled

  或者

1 2 3 4 [root@localhost ~]#systemctl status firewalld.service ● firewalld.service - firewalld - dynamic firewall daemon    Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)    Active: inactive (dead)

   關閉防火牆:

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

1 2 [root@localhost ~]#systemctl stop firewalld.service [root@localhost ~]#systemctl disable firewalld.service
1 2 3 4 5 6 7 8 啟動一個服務: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;echo $? 查看已啟動的服務列表:systemctl list-unit-files|grep enabled

Centos 7 firewall 命令:

查看已經開放的埠:

firewall-cmd --list-ports

開啟埠

firewall-cmd --zone=public --add-port=80/tcp --permanent

命令含義:

–zone #作用域

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

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

重啟防火牆

firewall-cmd --reload #重啟firewall
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall開機啟動
firewall-cmd --state #查看預設防火牆狀態(關閉後顯示notrunning,開啟後顯示running)

CentOS 7 以下版本 iptables 命令

如要開放80,22,8080 埠,輸入以下命令即可

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

然後保存:

/etc/rc.d/init.d/iptables save

查看打開的埠:

/etc/init.d/iptables status

關閉防火牆 
1) 永久性生效,重啟後不會複原

開啟: chkconfig iptables on

關閉: chkconfig iptables off

2) 即時生效,重啟後複原

開啟: service iptables start

關閉: service iptables stop

查看防火牆狀態: service iptables status

下麵說下CentOS7和6的預設防火牆的區別

CentOS 7預設使用的是firewall作為防火牆,使用iptables必須重新設置一下

1、直接關閉防火牆

systemctl stop firewalld.service #停止firewall

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

2、設置 iptables service

yum -y install iptables-services

如果要修改防火牆配置,如增加防火牆埠3306

vi /etc/sysconfig/iptables 

增加規則

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

保存退出後

systemctl restart iptables.service #重啟防火牆使配置生效

systemctl enable iptables.service #設置防火牆開機啟動

最後重啟系統使設置生效即可。

systemctl start iptables.service #打開防火牆

systemctl stop iptables.service #關閉防火牆

解決主機不能訪問虛擬機CentOS中的站點

前陣子在虛擬機上裝好了CentOS6.2,並配好了apache+php+mysql,但是本機就是無法訪問。一直就沒去折騰了。    具體情況如下 
1. 本機能ping通虛擬機  2. 虛擬機也能ping通本機  3.虛擬機能訪問自己的web  4.本機無法訪問虛擬機的web 
  後來發現是防火牆將80埠屏蔽了的緣故。    檢查是不是伺服器的80埠被防火牆堵了,可以通過命令:telnet server_ip 80 來測試。    解決方法如下: 
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 
然後保存: 
/etc/rc.d/init.d/iptables save 
重啟防火牆 
/etc/init.d/iptables restart 
  CentOS防火牆的關閉,關閉其服務即可: 
查看CentOS防火牆信息:/etc/init.d/iptables status  關閉CentOS防火牆服務:/etc/init.d/iptables stop 

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 使用場景 最近用 .net core mvc 寫了一個工具類的項目,作為我們項目的後臺管理網站使用。第一次被老大拿去部署的時候被告知不可用,同樣的代碼在我電腦和我的iis上都可以使用的啊。 後來才知道,原來老大是把這個項目作為某一個項目的應用程式發佈上去了,在使用過程中會有一個目錄問題。 解決方案一 ...
  • /// <summary> /// 根據條件,使用存儲過程分頁查詢電影 /// </summary> /// <param name="name"></param> /// <param name="time"></param> /// <param name="size"></param> /// ...
  • 一、前言 開發環境: 部署環境 ASP.NET Core 示例項目 項目創建完成後,需要修改Program.cs文件手動指定啟動的Url為:http://*:5000 http://*:5000 可以相容 http://localhost:5000,http://127.0.0.1:5000,htt ...
  • ASP.NET Core的實時庫: SignalR -- 預備知識 ...
  • 記憶體映射數據處理類主要函數及變數如下: 科學數據結構體定義如下: 圖像數據結構體如下: ...
  • PS:之前因為需要擴展了微信和QQ的認證,使得網站是可以使用QQ和微信直接登錄。github 傳送門 。然後有小伙伴問,能否讓這個配置信息(appid, appsecret)按需改變,而不是在 ConfigureServices 裡面寫好。 先上 官方文檔 : https://docs.micros ...
  • 在excel中設置保存之後的編碼格式,需要獲取到Microsoft.Office.Interop.Excel.Workbook然後設置其中的webOpetions的編碼格式就可以了。 在word中設置編碼格式,可以直接在獲取到的Microsoft.Office.Interop.Word.Docume ...
  • 使用iSCSI服務部署網路存儲 iSCSI技術實現了物理硬碟設備與TCP/IP網路協議的相互結合,使得用戶可以通過互聯網方便地訪問遠程機房提供的共用存儲資源.下麵介紹如何在Linux上部署iSCSI服務端程式,並分別給予Linux系統和Windows系統來訪問遠程的存儲資源. 實驗環境 主機名稱 | ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...