Monday, October 5, 2015

PowerShell for Configuring Idle Timeout for a load Balanced Endpoint Set

The idle timeout for a load balanced endpoint set can be configured only after the creation

Set-AzureLoadBalancedEndpoint -ServiceName "<CloudServiceName>"
                              -LBSetName "<SetName>"
                              -Protocol tcp
                              -LocalPort <PrivatePort>
                              -ProbeProtocolTCP
                              -ProbePort <ProbePort>
                              -IdleTimeoutInMinutes <NumMinutes>

No comments:

Post a Comment