在我的 DigitalOcean (DO) droplet 中,我安装了这个图像:Ubuntu Docker 17.12.0~ce on 16.04(可在 ** DO website > droplet> destroy> rebuild droplet** 上找到),在 ssh 中(在用户配置之后),我跑
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw enable
sudo ufw status verbose
并得到:
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), allow (routed)
New profiles: skip
To Action From
-- ------ ----
22 LIMIT IN Anywhere
2375/tcp ALLOW IN Anywhere
2376/tcp ALLOW IN Anywhere
22 (v6) LIMIT IN Anywhere (v6)
2375/tcp (v6) ALLOW IN Anywhere (v6)
2376/tcp (v6) ALLOW IN Anywhere (v6)
如您所见,我不允许端口 80 (http) 上的任何连接。好的,为了测试防火墙是否真的有效,我在 docker 之后运行:
sudo docker run -d -p 80:80 -e ENABLE_IPV6=true -v /var/run/docker.sock:/tmp/docker.sock:ro jwilder/nginx-proxy:alpine
但是当我转到 chrome 并输入我的 droplet IP 时,我看到了 nginx 响应(!!!)
我也为 Ubuntu 17 映像(手动安装 docker)尝试了这个,但仍然遇到同样的问题。
结论:ufw 防火墙在 Ubuntu 中根本不起作用
问题:如何配置 ufw/Ubuntu 来解决这个问题?