Authentication

Configure authentication to verify the identity of connecting hosts and protect the subsystem from unauthorized access.

Unidirectional Each host can provide an optional DH-HMAC-CHAP key. The subsystem does not require its own key.
Bidirectional Requires keys on both sides
Both subsystem and hosts must provide DH-HMAC-CHAP keys. All connections will be verified in both directions.
@if(formGroup.get('authType').value === AUTHENTICATION.Bidirectional) {

Subsystem authentication detail

Mandatory field.

Subsystem DH-HMAC-CHAP key
}

Host authentication details

{{formGroup.get('authType').value === AUTHENTICATION.Bidirectional ? 'All fields are required.' : 'Optional fields.'}}

@if (hostDchapKeyList.controls.length) { @for (hostDchapKeyItem of hostDchapKeyList.controls; track $index; let i = $index) {
DHCHAP Key | {{hostDchapKeyItem.get('host_nqn')?.value }}
} } @else {

No hosts selected.

}