Get-AksHciProxySetting

Synopsis

Retrieves a list or an individual proxy settings object.

Syntax

Get-AksHciProxySetting 

Description

Returns a list of all proxy settings objects known to the AKS hybrid host.

Note

Only one settings object can be defined and active at this point.

Examples

Example return a list of proxy server settings

Get-AksHciProxySetting

name                proxyServerHTTP            proxyServerHTTPS                    proxyServerBypass
---------           ------------------         ----------------------              ----------------------
myProxy             <http://contosoproxy:8080>      <https://contosoproxy:8443>    {localhost,127.0.0.1,.svc,10.96.0 ....} 

Example return the details of a proxy server setting

Get-AksHciProxySetting -name myProxy

name: myProxy
proxyServerHTTP: <http://contosoproxy:8080>
proxyServerHTTPS: <https://contosoproxy:8443>                   
proxyServerBypass: {localhost,127.0.0.1,.svc,10.96.0.0/12,10.244.0.0/16}
proxyServerCredential: {PSCredential} 
proxyServerCertFile: 

Next steps

AksHci PowerShell Reference