New-AzApplicationGatewaySslProfile
Erstellt SSL-Profil für ein Anwendungsgateway.
Syntax
New-AzApplicationGatewaySslProfile
-Name <String>
[-SslPolicy <PSApplicationGatewaySslPolicy>]
[-ClientAuthConfiguration <PSApplicationGatewayClientAuthConfiguration>]
[-TrustedClientCertificates <PSApplicationGatewayTrustedClientCertificate[]>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Beschreibung
Das Cmdlet New-AzApplicationGatewaySslProfile erstellt SSL-Profil für ein Anwendungsgateway. Das SSL-Profil ist für die HTTPS-Listener konfiguriert.
Beispiele
Beispiel 1
$sslPolicy = New-AzApplicationGatewaySslPolicy -PolicyType Custom -MinProtocolVersion TLSv1_1 -CipherSuite "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256", "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_128_GCM_SHA256"
$trustedClient01 = New-AzApplicationGatewayTrustedClientCertificate -Name "ClientCert01" -CertificateFile "C:\clientCAChain1.cer"
$profile = New-AzApplicationGatewaySslProfile -Name $sslProfile01Name -SslPolicy $sslPolicy -TrustedClientCertificates $trustedClient01
Der erste Befehl erstellt eine neue SSL-Richtlinie und speichert sie in der variablen $sslPolicy. Der zweite Befehl erstellt eine vertrauenswürdige Client-Zertifizierungsstellenzertifikatkette und speichert sie in der Variablen $ClientCert 01. Der dritte Befehl erstellt ein neues SSL-Profil mit der SSL-Richtlinie und der Zertifikatkette der vertrauenswürdigen Clientzertifizierungsstelle.
Parameter
-ClientAuthConfiguration
Clientauthentifizierungskonfigurationseinstellungen
Typ: | PSApplicationGatewayClientAuthConfiguration |
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 |
-Name
Der Name des SSL-Profils
Typ: | String |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-SslPolicy
SSL-Richtlinie
Typ: | PSApplicationGatewaySslPolicy |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-TrustedClientCertificates
Die Zertifikatketten der vertrauenswürdigen Clientzertifizierungsstelle
Typ: | PSApplicationGatewayTrustedClientCertificate[] |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
Eingaben
None
Ausgaben
PSApplicationGatewaySslProfile
Ähnliche Themen
Azure PowerShell