如何限制HTTP 客戶端的IP 位址
Go 的http.Client 可以實現高效率的HTTP 要求,但是如果你的系統包含多個NIC?
自訂 IP 綁定
要將 http.Client 綁定到特定 IP,請使用 net.Transport 實例修改其 Transport 欄位。這允許您指定 net.Dialer 來控制連接的本機位址。
程式碼範例
下面的程式碼片段示範如何將客戶端綁定到指定的本地IP 位址:
<code class="go">import ( "net" "net/http" "net/http/httputil" "time" ) func main() { // Resolve the local IP address localAddr, err := net.ResolveIPAddr("ip", "<my local address>") if err != nil { panic(err) } // Create a TCPAddr instance to specify the local address without specifying a port localTCPAddr := net.TCPAddr{ IP: localAddr.IP, } // Create an HTTP client with a custom transport that specifies the local address webclient := &http.Client{ Transport: &http.Transport{ Proxy: http.ProxyFromEnvironment, DialContext: (&net.Dialer{ LocalAddr: &localTCPAddr, Timeout: 30 * time.Second, KeepAlive: 30 * time.Second, DualStack: true, }).DialContext, MaxIdleConns: 100, IdleConnTimeout: 90 * time.Second, TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, }, } // Execute an HTTP request using the customized client req, _ := http.NewRequest("GET", "http://www.google.com", nil) resp, _ := webclient.Do(req) defer resp.Body.Close() // Optionally, use httputil to get the status code and response body code, _ := httputil.DumpResponse(resp, true) fmt.Println(code) }</code>
透過使用此方法,您可以指定HTTP 用戶端連線使用的IP 位址。這可讓您控制傳出 IP 以實現網路靈活性。
以上是當存在多個網路卡時,如何限制 Go 的 HTTP 用戶端的 IP 位址?的詳細內容。更多資訊請關注PHP中文網其他相關文章!