应该在 OpenVPN 下为 Google Compute Engine 的配置设置什么选项,以允许连接的客户端通过实例名称解析/ping 并解析为其 ip,就像在 GCE 上的任何实例上一样?
答案1
在您的 server.conf 中尝试以下命令:
push "redirect-gateway def1"
push "dhcp-option DNS 8.8.8.8"
您将无法通过名称 ping 实例。实例名称与 gcloud 命令一起使用。解决方法是在 /etc/resolv.conf 中添加 IP 作为名称
此外,您可能还想添加push "dhcp-option DNS 169.254.169.254"
请让我知道这对您有何作用!