系统相关
首页 > 系统相关> > Ubuntu20.04 防火墙设置

Ubuntu20.04 防火墙设置

作者:互联网

LInux原始的防火墙工具iptables由于过于繁琐,所以ubuntu系统默认提供了一个基于iptable之上的防火墙工具ufw。

安装:

apt install ufw

正常情况安装以后应该是默认禁止状态的,输入 ufw status verbose命令可以看到如下界面:

ufw status verbose

status:inactive

开启/关闭防火墙:

ufw enable

ufw disable

ufw default deny (关闭所有端口)

开启或关闭某个端口

ufw allow 80 //允许80

ufw deny 80 //拒绝80

ufw allow from 192.168.20.1 允许此IP访问本机所有端口

 

标签:Ubuntu20.04,status,verbose,端口,防火墙,设置,80,ufw
来源: https://www.cnblogs.com/china-golang/p/15915837.html