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) {
}