1、firewalld的基本使用
啟動: systemctl start firewalld
關閉: systemctl stop firewalld
檢視狀態: systemctl status firewalld
開機禁用 : systemctl disable firewalld
開機啟用 : systemctl enable firewalld
改完後重啟防火牆
contos7關閉防火牆方式:
1 關閉防火牆—–service iptables stop
2 啟動防火牆—–service iptables start
3 重啟防火牆—–service iptables restart
4 檢視防火牆狀態–service iptables status
5 永久關閉防火牆–chkconfig iptables off
6 永久關閉後啟用–chkconfig iptables on
中標麒麟系統
systemctl start firewalld # 開啟防火牆
systemctl stop firewalld # 關閉防火牆
systemctl status firewalld #檢查防火牆狀態
iptables -l -n --line-number
或者/etc/init.d/iptables狀態
命令:
列出的iptables規則
如果要檢視具體的iptables規則,也可以通過輸入iptables -l列出規則
臨時關閉,即時生效,重啟失效
# 關閉防火牆
$ service iptables stop
# 開啟防火牆
$ service iptables start
永久關閉,重啟生效
# 關閉防火牆
$ chkconfig iptables off
# 開啟防火牆
$ chkconfig iptables on
linux 開放 埠 命令
開發不連續埠 包括單個 iptables a input p tcp m multiport dport 21,20 j accept 其他都關閉 iptables a input p tcp j reject reject with tcp reset 開放連續埠 iptables a rh fi...
Linux開放埠命令
1 開啟防火牆 systemctl start firewalld 2 開放指定埠 firewall cmd zone public add port 1935 tcp permanent 命令含義 zone 作用域 add port 1935 tcp 新增埠,格式為 埠 通訊協議 permanen...
linux開放指定埠
linux開放指定埠命令 方式一centos 複製 1 開啟防火牆 systemctl start firewalld 2 開放指定埠 firewall cmd zone public add port 1935 tcp permanent 命令含義 zone 作用域 add port 1935 t...