CentOS配置防火牆操作例項

2022-05-04 15:24:12 字數 1442 閱讀 7427

centos 配置防火牆操作例項(啟、停、開、閉埠):

注:防火牆的基本操作命令:

查詢防火牆狀態:

[root@localhost ~]# service iptables status《回車》

停止防火牆:

[root@localhost ~]# service iptables stop 《回車》

啟動防火牆:

[root@localhost ~]# service iptables start 《回車》

重啟防火牆:

[root@localhost ~]# service iptables restart 《回車》

永久關閉防火牆:

[root@localhost ~]# chkconfig iptables off《回車》

永久關閉後啟用:

[root@localhost ~]# chkconfig iptables on《回車》

1、檢視防火牆狀態

[root@localhost ~]# service iptables status《回車》

用編輯器開啟/etc/sysconfig/iptables

3、依葫蘆畫瓢,我們新增8080埠和9990埠

4、儲存/etc/sysconfig/iptables檔案,並在終端執行

[root@localhost ~]# service iptables restart 《回車》

5、從新檢視防火牆狀態

[root@localhost ~]# service iptables status《回車》

6、這時候,伺服器的8080和9990埠就可以對外提供服務了。

7、其他埠的開放模式就是類似如此開放模式。

CentOS防火牆配置

參考 抵禦外網攻擊等高階配置 centos 配置防火牆操作例項 啟 停 開 閉埠 注 防火牆的基本操作命令 查詢防火牆狀態 root localhost service iptables status 回車 停止防火牆 root localhost service iptables stop 回車 ...

CentOS防火牆配置

一 centos7使用的是linux kernel 3.10.0的核心版本 uname a 或 cat proc version 命令檢視linux核心 新版的kernel核心已經包含了防火牆netfilter,並且firewalld的使用效能更高,穩定性更好。1 使用xml配置檔案的方式配置 2 ...

CentOS配置防火牆

當執行firewall cmd permanent zone public add port 80 tcp,提示firewalld is not running 問題在於還沒有開啟防火牆 檢視防火牆狀態 開啟防火牆 systemctl start firewalld 再次檢視防火牆狀態 開放3306...