Host access (Initiators)

Select hosts that can initiate connections to this subsystem.

Allow all hosts Any host can connect to this subsystem without verification. @if(formGroup.get('hostType').value === HOST_TYPE.ALL) { Allowing all hosts grants access to every initiator on the network. Authentication is not supported in this mode, which may expose the subsystem to unauthorized access. } Restrict to specific hosts Recommended for secure environments Add the specific hosts permitted to connect.
@if(formGroup.get('hostType').value === HOST_TYPE.SPECIFIC) {

Add hosts

}
@if(addedHostsLength === 0) {

Added hosts ({{addedHostsLength}})

No hosts added yet.

} @else { @for (host of formGroup.get('addedHosts')?.value ; track host) { {{host}} } }
@for (err of formGroup.get('hostname').errors | keyvalue; track err.key) { {{ INVALID_TEXTS[err.key] }} }