1、開放埠
firewall-cmd --zone=public --add-port=8080/tcp --permanent# 開放8080埠
firewall-cmd --zone=public --remove-port=8080/tcp --permanent#關閉8080埠
firewall-cmd --reload# 配置立即生效
2、檢視防火牆所有開放的埠
firewall-cmd --zone=public --list-ports
3.、關閉防火牆
如果要開放的埠太多,嫌麻煩,可以關閉防火牆,安全性自行評估
systemctl stop firewalld.service
4、檢視防火牆狀態
firewall-cmd --state
5、檢視監聽的埠
netstat -lnpt
centos7預設沒有 netstat 命令,需要安裝 net-tools 工具,yum install -y net-tools
6、檢查埠被哪個程序占用
netstat -lnpt |grep 8080
7、檢視程序的詳細資訊
ps 6832
8、中止程序
kill -9 6832
其餘命令後續補充
參考:
CentOS防火牆相關命令
檢視防火牆狀態 service iptables status關閉防火牆 service iptables stop開啟防火牆 service iptables start永久關閉防火牆查詢卡機防火牆是否自啟動 root cactiez chkconfig list grep iptables ip...
centos 防火牆命令
一 防火牆的開啟 關閉 禁用命令 1 設定開機啟用防火牆 systemctl enable firewalld.service 2 設定開機禁用防火牆 systemctl disable firewalld.service 3 啟動防火牆 systemctl start firewalld 4 關閉...
防火牆相關命令
firewall cmd zone public add port 6379 tcp permanent firewall cmd zone public add port 80 tcp permanent 那怎麼開啟乙個埠呢 新增firewall cmd zone public add port ...