HTTP Proxy 安裝後注意事項

如果您的位置使用 HTTP Proxy 存取網際網路,請注意下列要求:

  • 您必須勾選瀏覽器 Proxy 伺服器設定中的近端網址不使用 Proxy 核取方塊。 若要存取這些設定,請在 Internet Explorer 的工具功能表中,按一下網際網路選項,並按一下連線標籤,然後按一下區域網路設定。 勾選近端網址不使用 Proxy 核取方塊將指定 Security Controls 控制台連線到近端網路上的電腦時,不應該使用 Proxy 伺服器。
  • 控制台服務將不讀取或參照任何個別使用者 Proxy 位址資訊。 若要設定控制台服務的 Proxy 位址,您必須手動修改 ST.ServiceHost.exe.config 檔案以加入定義了 Proxy、bypass local 以及 bypasslist 的預設 Proxy XML 標籤。 只要將下列 XML 新增到基礎 <configuration> 元素之下,即可修改。

複製
<system.net>

 <defaultProxy>

  <bypasslist>

   <add address="127.0.0.1" />

   <add address="::1" />

   <add address="RollupConsoleNameOrIPAddress" />

  </bypasslist>

  <proxy bypassonlocal="True" proxyaddress="http://ProxyNameOrIP:Port" />

 </defaultProxy>

</system.net>

相關主題