安装防火墙
apt- get update apt-get install ufw
查看防火墙状态
ufw status #方法一 ufw status verbose #方法二
开启防火墙
ufw enable
放行指定端口
ufw allow 端口号/tcp #可以选择放行tcp或者udp端口 ufw allow 端口号 #同时放行tcp和udp端口
关闭指定端口
ufw delete allow 端口号
重启防火墙
ufw reload
查看防火墙现有规则
ufw show added #方法一 ufw status numbered #方法二
查看所有端口号
netstat -ntlp #此命令如果无法运行请先安装:apt-get install net-tools -y
查看指定端口是否被占用
lsof -i tcp:1537 #查看所有1537端口使用情况 netstat -ntulp |grep 1537 #查看所有1537端口使用情况,此命令也可以查出占用端口的进程
查看&关闭占用进程
kill -9 PID
禁止开机启动
ufw disable
开启开机启动
ufw enable
关闭防火墙
ufw disable
重置防火墙
ufw reset