Set-AzApplicationGatewaySslProfilePolicy
Ändert die SSL-Richtlinie eines SSL-Gateways-SSL-Profils.
Syntax
Set-AzApplicationGatewaySslProfilePolicy
-SslProfile <PSApplicationGatewaySslProfile>
[-DisabledSslProtocols <String[]>]
[-PolicyType <String>]
[-PolicyName <String>]
[-CipherSuite <String[]>]
[-MinProtocolVersion <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Beschreibung
Das Cmdlet Set-AzApplicationGatewaySslProfilePolicy ändert die SSL-Richtlinie eines SSL-Profils eines Anwendungsgateways.
Beispiele
Beispiel 1
$AppGw = Get-AzApplicationGateway -Name "ApplicationGateway01" -ResourceGroupName "ResourceGroup01"
$profile = Get-AzApplicationGatewaySslProfile -Name "SslProfile01" -ApplicationGateway $AppGw
$profile = Set-AzApplicationGatewaySslProfilePolicy -SslProfile $profile -PolicyType Predefined -PolicyName AppGwSslPolicy20170401
Der erste Befehl ruft das Anwendungsgateway01 in der Ressourcengruppe "ResourceGroup01" ab und speichert es in der $AppGw Variablen. Der zweite Befehl ruft das ssl-Profil "SslProfile01" für $AppGw ab und speichert die Einstellungen in der $profile Variablen. Mit dem letzten Befehl wird die SSL-Richtlinie des in $profile gespeicherten SSL-Profilobjekts geändert.
Parameter
-CipherSuite
Ssl-Verschlüsselungssammlungen, die in der angegebenen Reihenfolge zum Anwendungsgateway aktiviert werden sollen
Typ: | String[] |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-DefaultProfile
Anmeldeinformationen, Konto, Mandant und Abonnement für die Kommunikation mit Azure
Typ: | IAzureContextContainer |
Aliase: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-DisabledSslProtocols
Liste der zu deaktivierenden SSL-Protokolle
Typ: | String[] |
Zulässige Werte: | TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3 |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-MinProtocolVersion
Mindestversion des SSL-Protokolls, das auf dem Anwendungsgateway unterstützt wird
Typ: | String |
Zulässige Werte: | TLSv1_0, TLSv1_1, TLSv1_2, TLSv1_3 |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-PolicyName
Name der vordefinierten Ssl-Richtlinie
Typ: | String |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-PolicyType
Typ der SSL-Richtlinie
Typ: | String |
Zulässige Werte: | Predefined, Custom, CustomV2 |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-SslProfile
Das SSL-Profil des Anwendungsgateways
Typ: | PSApplicationGatewaySslProfile |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | True |
Platzhalterzeichen akzeptieren: | False |
Eingaben
PSApplicationGatewaySslProfile
Ausgaben
PSApplicationGatewaySslProfile
Ähnliche Themen
Azure PowerShell