-
Notifications
You must be signed in to change notification settings - Fork 52
Get HPOVApplianceSecurityProtocol
Get appliance supported security protocols and cyphers.
Get-HPOVApplianceSecurityProtocol[ [-TlsVersion] <String[]>][ [-SecurityMode] <String[]>][ [-ApplianceConnection] <Array>] [<CommonParameters>]
Get the appliance available security protocols, and their active state. By default the appliance current security mode will return the available security protocols and their configuration state. Use the -SecurityMode parameter to specify one or more modes. Use the -TlsVersion to specifify one or more security protocols to return.
-ApplianceConnection <Array>
Aliases [-Appliance]
Specify one or more HPOneView.Appliance.Connection object(s) or Name property value(s).
Default Value: ${Global:ConnectedSessions} | ? Default
Aliases | Appliance |
Required? | False |
Position? | named |
Default value | (${Global:ConnectedSessions} | ? Default) |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | False |
-SecurityMode <String[]>
Specify the Security Mode to return supported security protocols and encryption cyphers. By default, will return the current appliance security mode. Allowed values:
* Legacy
* FIPS
*CNSA
Aliases | None |
Required? | false |
Position? | named |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
-TlsVersion <String[]>
Filter for specific TLS version(s). By default, will return all TLS Versions. Allowed values:
* TLSv1
TLSv1.1
TLSv1.2
Aliases | None |
Required? | false |
Position? | named |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
None. You cannot pipe objects to this cmdlet.
HPOneView.Appliance.SecurityProtocol
Available appliance security protocol, mode enabled and associated encryption cyphers.n
-------------------------- EXAMPLE 1 --------------------------Get-HPOVApplianceSecurityProtocol
Get the appliance FIPS security mode and associated security protocols.
-------------------------- EXAMPLE 2 --------------------------Get-HPOVApplianceSecurityProtocol -SecurityMode FIPS, CNSA -TlsVersion TLSv1.1, TLSv1.2
Get the appliance FIPS security mode and TLSv1.1 and TLSv1.2 security protocols.