In the accessibility control of iSCSI target, "ALL" is used to allow ANY IP address-port pair or iSCSI name of initiators. However iSCSI targets cannot know ALL initiators beforehand. Hence "ANY" will be better than "ALL" and will avoid misunderstanding. Comments and iscsi_tgt test code are also changed and UT code is added. Change-Id: Id004d819df6e9ee89f6c1db2e4b4c149be062733 Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-on: https://review.gerrithub.io/385168 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
15 lines
375 B
Bash
Executable File
15 lines
375 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
rootdir=$(readlink -f $(dirname $0))/../../..
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
"$rpc_py" add_initiator_group 1 "ANY" "127.0.0.1/32"
|
|
"$rpc_py" add_portal_group 1 '127.0.0.1:3260'
|
|
|
|
for i in $(seq 0 15); do
|
|
"$rpc_py" construct_malloc_bdev 32 512
|
|
"$rpc_py" construct_target_node "Target$i" "Target_alias$i" "Malloc$i:0" "1:1" 64 1 0 0 0
|
|
done
|