端口常用命令
记录端口的一些常用命令,方便后续使用
netstat -anp | grep 8848 #查看开放端口
firewall-cmd --state #查看系统防火墙状态
firewall-cmd --zone=public --add-port=80/tcp --permanent
#添加外网TCP端口
firewall-cmd --permanent --zone=public --remove-port=8080/tcp
#关闭端口
firewall-cmd --zone=public --query-port=80/tcp
#查看端口是否开启
systemctl restart firewalld.service #重启防火墙服务
systemctl stop firewalld.service #关闭防火墙
firewall-cmd --zone=public --list-ports #查看所有打开的端口
firewall-cmd --add-port=9999/udp --permanent #开放udp端口
firewall-cmd --reload #重启配置
#查看端口占用
netstat -lanp|grep 8899
lsof -i:8899
本文来自博客园,作者:Harry_666,转载请注明原文链接:https://www.cnblogs.com/harry66/p/16333433.html