如何强制 golang https get 请求使用特定的 IP 地址。我想跳过 DNS 解析并自己提供 IP。 curl 中的等价物是 --resolve,
curl https://domain.com/dir/filename --resolve "domain.com:443:10.10.10.10"
由于这是 ssl,因此我想避免用 IP 代替域,如下例所示。
curl https://10.10.10.10/dir/filename --header "主机:domain.com"
您可以提供自定义 Transport.DialContext功能。
代码语言:javascript复制func main() {
dialer := &net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
// DualStack: true, // this is deprecated as of go 1.16
}
// or create your own transport, there's an example on godoc.
http.DefaultTransport.(*http.Transport).DialContext = func(ctx context.Context, network, addr string) (net.Conn, error) {
if addr == "google.com:443" {
addr = "216.58.198.206:443"
}
return dialer.DialContext(ctx, network, addr)
}
resp, err := http.Get("https://google.com")
log.Println(resp.Header, err)