ufw 在新安装的 19.10 中阻止网页

ufw 在新安装的 19.10 中阻止网页

我最近重新安装了 19.10,现在正在设置 UFW。使用与上次安装相同的表,我没有互联网连接。

设置:

 Status: active

 To                         Action      From
 --                         ------      ----
 22                         ALLOW       10.0.0.0/24               
 2314                       ALLOW       Anywhere                  
 53                         ALLOW       10.0.0.0/24               
 111                        ALLOW       10.0.0.0/24               
 2049                       ALLOW       10.0.0.0/24               
 33333                      ALLOW       10.0.0.0/24               
 873                        ALLOW       10.0.0.0/24               
 80/tcp                     ALLOW       Anywhere                  
 443/tcp                    ALLOW       Anywhere                  
 2314 (v6)                  ALLOW       Anywhere (v6)             
 80/tcp (v6)                ALLOW       Anywhere (v6)             
 443/tcp (v6)               ALLOW       Anywhere (v6)             

答案1

防火墙默认设置为deny (outgoing)。我记得在以前的版本中,安装时的默认设置是allow (outgoing)。简单的ufw status不会显示这一点。verbose但是,通过检查状态:

sudo ufw status verbose

Status: active
Logging: on (low)
Default: deny (incoming), deny (outgoing), disabled (routed)

解决方法是

 sudo ufw default allow outgoing

相关内容