1. 首先檢視此資料夾是否存在
/etc/sysconfig/iptables
若不存在, 則需要安裝,如下:
可以通過以下命令安裝iptables防火牆
systemctl stop firewalld
systemctl mask firewalld
yum install iptables-services
service iptables status
//設定開機啟動
systemctl enable iptables
在已經開放的22埠下面一行新增:
-a input -m state --state new -m tcp -p tcp --dport 8080 -j accept
service iptables restart
4. 檢視狀態service iptables status
5. 檢視已開放埠iptables -l -n
》博主長期更新學習心得,推薦點讚關注!!!
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...