HTTP 클라이언트의 IP 주소를 제한하는 방법
Go의 http.Client는 효율적인 HTTP 요청을 가능하게 하지만, 다음과 같은 경우 IP 주소를 어떻게 제한합니까? 시스템에 여러 NIC가 있습니까?
IP 바인딩 사용자 정의
http.Client를 특정 IP에 바인딩하려면 해당 Transport 필드를 net.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를 제어할 수 있습니다.
위 내용은 여러 NIC가 있는 경우 Go\ HTTP 클라이언트의 IP 주소를 어떻게 제한합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!