New-AzApplicationGatewaySslProfile
Skapar SSL-profil för en programgateway.
Syntax
New-AzApplicationGatewaySslProfile
-Name <String>
[-SslPolicy <PSApplicationGatewaySslPolicy>]
[-ClientAuthConfiguration <PSApplicationGatewayClientAuthConfiguration>]
[-TrustedClientCertificates <PSApplicationGatewayTrustedClientCertificate[]>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Cmdleten New-AzApplicationGatewaySslProfile skapar SSL-profil för en programgateway. SSL-profilen är konfigurerad för HTTPS-lyssnarna.
Exempel
Exempel 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
Det första kommandot skapar en ny SSL-princip och lagrar den i variabeln $sslPolicy. Det andra kommandot skapar en certifikatkedja för betrodd klientcertifikatutfärdare och lagrar dem i variabeln $ClientCert 01. Det tredje kommandot skapar en ny SSL-profil med ssl-principen och certifikatkedjan för betrodd klientcertifikatutfärdare.
Parametrar
-ClientAuthConfiguration
Konfigurationsinställningar för klientautentisering
Typ: | PSApplicationGatewayClientAuthConfiguration |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-DefaultProfile
Autentiseringsuppgifter, konto, klientorganisation och prenumeration som används för kommunikation med Azure.
Typ: | IAzureContextContainer |
Alias: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-Name
Namnet på SSL-profilen
Typ: | String |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | True |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-SslPolicy
SSL-princip
Typ: | PSApplicationGatewaySslPolicy |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
-TrustedClientCertificates
Certifikatkedjorna för betrodd klientcertifikatutfärdare
Typ: | PSApplicationGatewayTrustedClientCertificate[] |
Position: | Named |
Standardvärde: | None |
Obligatorisk: | False |
Godkänn pipeline-indata: | False |
Godkänn jokertecken: | False |
Indata
None
Utdata
PSApplicationGatewaySslProfile
Relaterade länkar
Azure PowerShell