Linux 上的 DNS 泄漏

Linux 上的 DNS 泄漏

我正在运行 Pop OS 21.10,似乎存在 DNS 泄漏。以下是我的配置:

客户

remote <IP> 1194
persist-key
persist-tun
dev tun
proto udp
cipher AES-256-CBC
reneg-sec 0
resolv-retry infinite
nobind
ifconfig 10.8.0.2 10.8.0.1
comp-lzo
verb 4
tls-client
redirect-gateway
script-security 2
up /etc/openvpn/update-resolv-conf
down /etc/openvpn/update-resolv-conf

服务器

port 1194
proto udp
dev tun
ifconfig 10.8.0.1 10.8.0.2
push "redirect-gateway def1"
push "dhcp-option DNS 8.8.8.8"
reneg-sec 28800
keepalive 10 120
comp-lzo
persist-tun
status server-tcp.log
verb 4
cipher AES-256-CBC

我的公共 IP 与预期一致,但 DNS 查询似乎显示本地/不正确的 IP。我缺少什么来保护 DNS 查询?

相关内容