Syntax
Set-VMHostHba -IScsiHba <IScsiHba[]> [-IScsiName <String>] [-ChapType <ChapType>] [-ChapName <String>] [-ChapPassword <String>] [-MutualChapEnabled <Boolean>] [-MutualChapName <String>] [-MutualChapPassword <String>] [-Server <VIServer[]>] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet configures the CHAP properties of the specified iSCSI HBAs.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
ChapName | String | Specifies the CHAP initiator name if CHAP is enabled. | false | false | |
ChapPassword | String | Specifies the CHAP password if CHAP is enabled. | false | false | |
ChapType | ChapType | Specifies the type of the CHAP authorization. The valid values are Prohibited, Discouraged, Preferred, and Required. | false | false | |
Confirm | SwitchParameter | If the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation. | false | false | |
IScsiHba | IScsiHba[] | Specifies the iSCSI HBA device you want to configure. | true | true (ByValue) | |
IScsiName | String | Specifies a new name for the host HBA device. | false | false | |
MutualChapEnabled | Boolean | Indicates that Mutual CHAP authorization is enabled. | false | false | |
MutualChapName | String | Specifies the Mutual CHAP initiator name if Mutual CHAP is enabled. | false | false | |
MutualChapPassword | String | Specifies the Mutual CHAP password if Mutual CHAP is enabled. | false | false | |
Server | VIServer[] | Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false | |
WhatIf | SwitchParameter | Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified. | false | false |
Return Type
Zero or more modified IScsiHba objectsNotes
The ChapType, MutualChapType, MutualChapName, and MutualChapPassword parameters are supported only on vCenter Server/ESX 4.1 or later.Examples
-------------- Example 1 --------------
Get-VMHostHba -Type iScsi | Set-VMHostHba -ChapType Required -ChapName Admin -ChapPassword pass
Changes the CHAP type of the available iScsi to Required.
-------------- Example 2 --------------
Set-VMHostHba -IScsiHba $iscsi -MutualChapEnabled $true -ChapType Required -ChapName Admin -ChapPassword pass -MutualChapName Administrator -MutualChapPassword Pass
Enables Mutual CHAP for the iScsi devices stored in the $iscsi variable and changes the CHAP type to Required.