Is it possible (and if yes, how) to bypass DNS when doing a HTTP request ?
I want to hit directly a front-end with an HTTP request, without getting through NLB but with the correct host header. As I have the IP of my server, I just need to bypass the DNS.
I tried to use WebRequest, replacing the URL with the IP and setting the Host header, but this header is protected.
How can I do that ? Do I need to create the HTTP request myself ?
Note: editing host file is not an option