CentOS Linux防火牆配置及關閉

2021-09-06 14:48:37 字數 1221 閱讀 2253

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 Linux防火牆配置及關閉

centos 配置防火牆操作例項 啟 停 開 閉埠 注 防火牆的基本操作命令 查詢防火牆狀態 root localhost service iptables status 回車 停止防火牆 root localhost service iptables stop 回車 啟動防火牆 root loca...

CentOS Linux開啟和關閉防火牆命令

centos linux開啟和關閉防火牆命令有兩種,一種是臨時的,重啟即復原 另外一種是永久性的,重啟不會復原。1 臨時生效,重啟後復原 開啟 service iptables start 關閉 service iptables stop 2 永久性生效,重啟後不會復原 開啟 chkconfig i...

CentOS Linux開啟和關閉防火牆命令

centos linux開啟和關閉防火牆命令有兩種,一種是臨時的,重啟即復原 另外一種是永久性的,重啟不會復原。檢視防火牆狀態 service iptables status 1 臨時生效,重啟後復原 開啟 service iptables start 關閉 service iptables sto...