If it does exist, edit this section as appropriate. If it does not exist, add the following text as the second line from the end (</configuration>) and substitute the proxy address as appropriate for the environment:
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="true" proxyaddress="http://proxy:8080"" />
</defaultProxy>
</system.net>
netsh.exe winhttp set proxy http://proxy:8080 bypass-list="*.example.com"Note: The bypass-list argument is optional
netsh.exe winhttp show proxy
Example for bypassing 10.*.*.* , *.domain.int and *.example.com
<system.net> <defaultProxy> <proxy autoDetect="false" bypassonlocal="true" proxyaddress="http://proxy:8080"" /> <bypasslist> <add address="10\.\d{1,3}\.\d{1,3}\.\d{1,3}" /> <add address="[0-9a-zA-Z]+\.example\.com$" /> <add address="[0-9a-zA-Z]+\.domain\.int$" /> </bypasslist> </defaultProxy> </system.net>
Detailed documentation for configuring .NET Framework proxy can be found on the following Microsoft links:
One Identity does not provide support for .NET Framework or for problems that arise from improper modification of the configuration files. The .NET Framework configuration files contain critical configuration data. Make sure to back up the files before modifying them.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center