ShellCheck - shell script analysis tool version: 0.10.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net Redirect to /tmp/tmp.GG2U5ZKwjV and /tmp/tmp.yXkX8RG1yZ Tree base: a12fd5c31b78 ("selftests: net: run groups from fcnal-test in parallel") Now at: f8ac93d025a7 ("selftests: net: replace sleeps in fcnal-test with waits") ====== Checking before the patch ====== Checking tools/testing/selftests/net/fcnal-test.sh - 6a0b923e1c424fe0dff281b4f46f76717f04c896e521b313718911f07f83a559 In fcnal-test.sh line 90: fips_enabled=`cat /proc/sys/crypto/fips_enabled` ^-- SC2006 (style): Use $(...) notation instead of legacy backticks `...`. Did you mean: fips_enabled=$(cat /proc/sys/crypto/fips_enabled) In fcnal-test.sh line 107: if [ ${rc} -eq ${expected} ]; then ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "${rc}" -eq "${expected}" ]; then In fcnal-test.sh line 117: read ans ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 125: read ans ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 140: astr=$(addr2str ${addr}) ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: astr=$(addr2str "${addr}") In fcnal-test.sh line 141: log_test $rc $expected "$msg - ${astr}" ^-^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test "$rc" "$expected" "$msg - ${astr}" In fcnal-test.sh line 215: if [ "$VERBOSE" = "1" -a -n "$out" ]; then ^-- SC2166 (warning): Prefer [ p ] && [ q ] as [ p -a q ] is not well defined. In fcnal-test.sh line 219: return $rc ^-^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$rc" In fcnal-test.sh line 224: do_run_cmd ${NSA_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSA_CMD}" "$*" In fcnal-test.sh line 229: do_run_cmd ${NSB_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSB_CMD}" "$*" In fcnal-test.sh line 234: do_run_cmd ${NSC_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSC_CMD}" "$*" In fcnal-test.sh line 242: run_cmd ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${cmd}" In fcnal-test.sh line 253: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 264: run_cmd_nsb ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${cmd}" In fcnal-test.sh line 275: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 286: run_cmd_nsc ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsc "${cmd}" In fcnal-test.sh line 297: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 308: run_cmd sysctl -q -w $* ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd sysctl -q -w "$*" In fcnal-test.sh line 314: ${NSA_CMD} sysctl -n $* ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ${NSA_CMD} sysctl -n "$*" In fcnal-test.sh line 326: ${BCAST_IP}) echo "broadcast";; ^---------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 327: ${MCAST_IP}) echo "multicast";; ^---------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 329: ${NSA_IP}) echo "ns-A IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 330: ${NSA_IP6}) echo "ns-A IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 331: ${NSA_LO_IP}) echo "ns-A loopback IP";; ^----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 332: ${NSA_LO_IP6}) echo "ns-A loopback IPv6";; ^-----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 333: ${NSA_LINKIP6}|${NSA_LINKIP6}%*) echo "ns-A IPv6 LLA";; ^------------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 335: ${NSB_IP}) echo "ns-B IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 336: ${NSB_IP6}) echo "ns-B IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 337: ${NSB_LO_IP}) echo "ns-B loopback IP";; ^----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 338: ${NSB_LO_IP6}) echo "ns-B loopback IPv6";; ^-----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 339: ${NSB_LINKIP6}|${NSB_LINKIP6}%*) echo "ns-B IPv6 LLA";; ^------------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 341: ${NL_IP}) echo "nonlocal IP";; ^------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 342: ${NL_IP6}) echo "nonlocal IPv6";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 344: ${VRF_IP}) echo "VRF IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 345: ${VRF_IP6}) echo "VRF IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 359: addr=$(ip -netns ${ns} -6 -br addr show dev ${dev} | \ ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: addr=$(ip -netns "${ns}" -6 -br addr show dev "${dev}" | \ In fcnal-test.sh line 371: echo $addr ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: echo "$addr" In fcnal-test.sh line 387: ip -netns ${ns} link add ${vrf} type vrf table ${table} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" link add "${vrf}" type vrf table "${table}" In fcnal-test.sh line 388: ip -netns ${ns} link set ${vrf} up ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" link set "${vrf}" up In fcnal-test.sh line 389: ip -netns ${ns} route add vrf ${vrf} unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" route add vrf "${vrf}" unreachable default metric 8192 In fcnal-test.sh line 390: ip -netns ${ns} -6 route add vrf ${vrf} unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 route add vrf "${vrf}" unreachable default metric 8192 In fcnal-test.sh line 392: ip -netns ${ns} addr add 127.0.0.1/8 dev ${vrf} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add 127.0.0.1/8 dev "${vrf}" In fcnal-test.sh line 393: ip -netns ${ns} -6 addr add ::1 dev ${vrf} nodad ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add ::1 dev "${vrf}" nodad In fcnal-test.sh line 395: ip -netns ${ns} addr add dev ${vrf} ${addr} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add dev "${vrf}" "${addr}" In fcnal-test.sh line 398: ip -netns ${ns} -6 addr add dev ${vrf} ${addr6} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add dev "${vrf}" "${addr6}" In fcnal-test.sh line 401: ip -netns ${ns} ru del pref 0 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ru del pref 0 In fcnal-test.sh line 402: ip -netns ${ns} ru add pref 32765 from all lookup local ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ru add pref 32765 from all lookup local In fcnal-test.sh line 403: ip -netns ${ns} -6 ru del pref 0 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ru del pref 0 In fcnal-test.sh line 404: ip -netns ${ns} -6 ru add pref 32765 from all lookup local ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ru add pref 32765 from all lookup local In fcnal-test.sh line 414: ip -netns ${ns} addr add dev lo ${addr} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add dev lo "${addr}" In fcnal-test.sh line 417: ip -netns ${ns} -6 addr add dev lo ${addr6} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add dev lo "${addr6}" In fcnal-test.sh line 420: ip -netns ${ns} ro add unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ro add unreachable default metric 8192 In fcnal-test.sh line 421: ip -netns ${ns} -6 ro add unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ro add unreachable default metric 8192 In fcnal-test.sh line 423: ip netns exec ${ns} sysctl -qw net.ipv4.ip_forward=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv4.ip_forward=1 In fcnal-test.sh line 424: ip netns exec ${ns} sysctl -qw net.ipv6.conf.all.keep_addr_on_down=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.all.keep_addr_on_down=1 In fcnal-test.sh line 425: ip netns exec ${ns} sysctl -qw net.ipv6.conf.all.forwarding=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.all.forwarding=1 In fcnal-test.sh line 426: ip netns exec ${ns} sysctl -qw net.ipv6.conf.default.forwarding=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.default.forwarding=1 In fcnal-test.sh line 441: ip -netns ${ns1} li add ${ns1_dev} type veth peer name tmp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li add "${ns1_dev}" type veth peer name tmp In fcnal-test.sh line 442: ip -netns ${ns1} li set ${ns1_dev} up ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li set "${ns1_dev}" up In fcnal-test.sh line 443: ip -netns ${ns1} li set tmp netns ${ns2} name ${ns2_dev} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li set tmp netns "${ns2}" name "${ns2_dev}" In fcnal-test.sh line 444: ip -netns ${ns2} li set ${ns2_dev} up ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" li set "${ns2_dev}" up In fcnal-test.sh line 447: ip -netns ${ns1} addr add dev ${ns1_dev} ${ns1_addr} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" addr add dev "${ns1_dev}" "${ns1_addr}" In fcnal-test.sh line 448: ip -netns ${ns2} addr add dev ${ns2_dev} ${ns2_addr} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" addr add dev "${ns2_dev}" "${ns2_addr}" In fcnal-test.sh line 452: ip -netns ${ns1} addr add dev ${ns1_dev} ${ns1_addr6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" addr add dev "${ns1_dev}" "${ns1_addr6}" In fcnal-test.sh line 453: ip -netns ${ns2} addr add dev ${ns2_dev} ${ns2_addr6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" addr add dev "${ns2_dev}" "${ns2_addr6}" In fcnal-test.sh line 460: ip netns | grep -q ${NSA} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns | grep -q "${NSA}" In fcnal-test.sh line 461: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 462: ip -netns ${NSA} link delete ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link delete ${VRF} In fcnal-test.sh line 463: ip -netns ${NSA} ro flush table ${VRF_TABLE} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro flush table ${VRF_TABLE} In fcnal-test.sh line 465: ip -netns ${NSA} addr flush dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" addr flush dev ${NSA_DEV} In fcnal-test.sh line 466: ip -netns ${NSA} -6 addr flush dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" -6 addr flush dev ${NSA_DEV} In fcnal-test.sh line 467: ip -netns ${NSA} link set dev ${NSA_DEV} down ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} down In fcnal-test.sh line 468: ip -netns ${NSA} link del dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link del dev ${NSA_DEV} In fcnal-test.sh line 470: ip netns pids ${NSA} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSA}" | xargs kill 2>/dev/null In fcnal-test.sh line 471: cleanup_ns ${NSA} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: cleanup_ns "${NSA}" In fcnal-test.sh line 474: ip netns pids ${NSB} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSB}" | xargs kill 2>/dev/null In fcnal-test.sh line 475: ip netns pids ${NSC} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSC}" | xargs kill 2>/dev/null In fcnal-test.sh line 476: cleanup_ns ${NSB} ${NSC} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: cleanup_ns "${NSB}" "${NSC}" In fcnal-test.sh line 482: ip netns pids ${NSC} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSC}" | xargs kill 2>/dev/null In fcnal-test.sh line 483: ip netns del ${NSC} >/dev/null 2>&1 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns del "${NSC}" >/dev/null 2>&1 In fcnal-test.sh line 492: create_ns ${NSC} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSC}" "-" "-" In fcnal-test.sh line 493: connect_ns ${NSA} ${NSA_DEV2} ${NSA_IP}/24 ${NSA_IP6}/64 \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV2} ${NSA_IP}/24 ${NSA_IP6}/64 \ In fcnal-test.sh line 494: ${NSC} ${NSC_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSC}" ${NSC_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 In fcnal-test.sh line 512: create_ns ${NSA} ${NSA_LO_IP}/32 ${NSA_LO_IP6}/128 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSA}" ${NSA_LO_IP}/32 ${NSA_LO_IP6}/128 In fcnal-test.sh line 513: create_ns ${NSB} ${NSB_LO_IP}/32 ${NSB_LO_IP6}/128 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSB}" ${NSB_LO_IP}/32 ${NSB_LO_IP6}/128 In fcnal-test.sh line 514: connect_ns ${NSA} ${NSA_DEV} ${NSA_IP}/24 ${NSA_IP6}/64 \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV} ${NSA_IP}/24 ${NSA_IP6}/64 \ In fcnal-test.sh line 515: ${NSB} ${NSB_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSB}" ${NSB_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 In fcnal-test.sh line 517: NSA_LINKIP6=$(get_linklocal ${NSA} ${NSA_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSA_LINKIP6=$(get_linklocal "${NSA}" ${NSA_DEV}) In fcnal-test.sh line 518: NSB_LINKIP6=$(get_linklocal ${NSB} ${NSB_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSB_LINKIP6=$(get_linklocal "${NSB}" ${NSB_DEV}) In fcnal-test.sh line 522: create_vrf ${NSA} ${VRF} ${VRF_TABLE} ${VRF_IP} ${VRF_IP6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_vrf "${NSA}" ${VRF} ${VRF_TABLE} ${VRF_IP} ${VRF_IP6} In fcnal-test.sh line 524: ip -netns ${NSA} link set dev ${NSA_DEV} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} vrf ${VRF} In fcnal-test.sh line 525: ip -netns ${NSA} ro add vrf ${VRF} ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add vrf ${VRF} ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} In fcnal-test.sh line 526: ip -netns ${NSA} -6 ro add vrf ${VRF} ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" -6 ro add vrf ${VRF} ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} In fcnal-test.sh line 528: ip -netns ${NSB} ro add ${VRF_IP}/32 via ${NSA_IP} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${VRF_IP}/32 via ${NSA_IP} dev ${NSB_DEV} In fcnal-test.sh line 529: ip -netns ${NSB} -6 ro add ${VRF_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" -6 ro add ${VRF_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} In fcnal-test.sh line 531: ip -netns ${NSA} ro add ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} In fcnal-test.sh line 532: ip -netns ${NSA} ro add ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} In fcnal-test.sh line 537: ip -netns ${NSB} ro add ${NSA_LO_IP}/32 via ${NSA_IP} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${NSA_LO_IP}/32 via ${NSA_IP} dev ${NSB_DEV} In fcnal-test.sh line 538: ip -netns ${NSB} ro add ${NSA_LO_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${NSA_LO_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} In fcnal-test.sh line 558: create_ns ${NSA} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSA}" "-" "-" In fcnal-test.sh line 559: create_ns ${NSB} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSB}" "-" "-" In fcnal-test.sh line 560: create_ns ${NSC} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSC}" "-" "-" In fcnal-test.sh line 561: connect_ns ${NSA} ${NSA_DEV} "-" "-" \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV} "-" "-" \ In fcnal-test.sh line 562: ${NSB} ${NSB_DEV} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSB}" ${NSB_DEV} "-" "-" In fcnal-test.sh line 563: connect_ns ${NSA} ${NSA_DEV2} "-" "-" \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV2} "-" "-" \ In fcnal-test.sh line 564: ${NSC} ${NSC_DEV} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSC}" ${NSC_DEV} "-" "-" In fcnal-test.sh line 566: NSA_LINKIP6=$(get_linklocal ${NSA} ${NSA_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSA_LINKIP6=$(get_linklocal "${NSA}" ${NSA_DEV}) In fcnal-test.sh line 567: NSB_LINKIP6=$(get_linklocal ${NSB} ${NSB_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSB_LINKIP6=$(get_linklocal "${NSB}" ${NSB_DEV}) In fcnal-test.sh line 568: NSC_LINKIP6=$(get_linklocal ${NSC} ${NSC_DEV}) ^---------^ SC2034 (warning): NSC_LINKIP6 appears unused. Verify use (or export if used externally). ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSC_LINKIP6=$(get_linklocal "${NSC}" ${NSC_DEV}) In fcnal-test.sh line 570: create_vrf ${NSA} ${VRF} ${VRF_TABLE} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_vrf "${NSA}" ${VRF} ${VRF_TABLE} "-" "-" In fcnal-test.sh line 571: ip -netns ${NSA} link set dev ${NSA_DEV} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} vrf ${VRF} In fcnal-test.sh line 572: ip -netns ${NSA} link set dev ${NSA_DEV2} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV2} vrf ${VRF} In fcnal-test.sh line 592: run_cmd ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 "${a}" In fcnal-test.sh line 593: log_test_addr ${a} $? 0 "ping out" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out" In fcnal-test.sh line 596: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 597: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 600: run_cmd ping -c1 -w1 -I ${NSA_LO_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_LO_IP} "${a}" In fcnal-test.sh line 601: log_test_addr ${a} $? 0 "ping out, address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, address bind" In fcnal-test.sh line 624: run_cmd_nsb ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -c1 -w1 "${a}" In fcnal-test.sh line 625: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 634: run_cmd ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 "${a}" In fcnal-test.sh line 635: log_test_addr ${a} $? 0 "ping local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local" In fcnal-test.sh line 654: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 655: log_test_addr ${a} $? 1 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "ping local, device bind" In fcnal-test.sh line 739: run_cmd ping -c1 -w1 -I ${VRF} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 740: log_test_addr ${a} $? 0 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, VRF bind" In fcnal-test.sh line 743: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 744: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 747: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${NSA_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${NSA_IP} "${a}" In fcnal-test.sh line 748: log_test_addr ${a} $? 0 "ping out, vrf device + dev address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device + dev address bind" In fcnal-test.sh line 751: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${VRF_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${VRF_IP} "${a}" In fcnal-test.sh line 752: log_test_addr ${a} $? 0 "ping out, vrf device + vrf address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device + vrf address bind" In fcnal-test.sh line 761: run_cmd_nsb ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -c1 -w1 "${a}" In fcnal-test.sh line 762: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 772: run_cmd ping -c1 -w1 -I ${VRF} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 773: log_test_addr ${a} $? 0 "ping local, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, VRF bind" In fcnal-test.sh line 790: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 791: log_test_addr ${a} $? 2 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "ping local, device bind" In fcnal-test.sh line 1147: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies=${syncookies} ^-----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies="${syncookies}" In fcnal-test.sh line 1148: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies=${syncookies} ^-----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies="${syncookies}" In fcnal-test.sh line 1181: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies=${nsb_syncookies} ^---------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies="${nsb_syncookies}" In fcnal-test.sh line 1182: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies=${nsa_syncookies} ^---------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies="${nsa_syncookies}" In fcnal-test.sh line 1197: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1198: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1213: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1214: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1225: run_cmd nettest -r ${a} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -0 ${NSA_IP} In fcnal-test.sh line 1226: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 1231: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1232: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1236: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1237: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 1241: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1242: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1253: run_cmd nettest -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 1254: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 1270: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1271: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 1287: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1288: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 1327: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1328: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 1333: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1334: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1339: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1340: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 1345: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1346: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1378: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1379: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1385: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1386: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1391: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1392: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1410: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1411: log_test_addr ${a} $? 1 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, local connection" In fcnal-test.sh line 1422: run_cmd nettest -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} In fcnal-test.sh line 1423: log_test_addr ${a} $? 0 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, VRF bind" In fcnal-test.sh line 1428: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1429: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1433: run_cmd nettest -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} In fcnal-test.sh line 1434: log_test_addr ${a} $? 1 "No server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client" In fcnal-test.sh line 1438: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1439: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1447: run_cmd nettest -r ${a} -d ${VRF} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} -0 "${a}" In fcnal-test.sh line 1448: log_test_addr ${a} $? 0 "VRF server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local connection" In fcnal-test.sh line 1513: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1514: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1518: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1519: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1537: run_cmd nettest -D -r ${a} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -0 ${NSA_IP} In fcnal-test.sh line 1538: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 1543: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -0 ${NSA_IP} In fcnal-test.sh line 1544: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1549: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -C -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -C -0 ${NSA_IP} In fcnal-test.sh line 1550: log_test_addr ${a} $? 0 "Client, device send via cmsg" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device send via cmsg" In fcnal-test.sh line 1555: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP} In fcnal-test.sh line 1556: log_test_addr ${a} $? 0 "Client, device bind via IP_UNICAST_IF" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IP_UNICAST_IF" In fcnal-test.sh line 1561: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP} -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP} -U In fcnal-test.sh line 1562: log_test_addr ${a} $? 0 "Client, device bind via IP_UNICAST_IF, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IP_UNICAST_IF, with connect()" In fcnal-test.sh line 1567: run_cmd nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" In fcnal-test.sh line 1568: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 1572: run_cmd nettest -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1573: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1584: run_cmd nettest -D -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 1585: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 1601: run_cmd nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" In fcnal-test.sh line 1602: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 1640: run_cmd nettest -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1641: log_test_addr ${a} $? 2 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "Global server, device client, local connection" In fcnal-test.sh line 1647: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -C ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -C In fcnal-test.sh line 1648: log_test_addr ${a} $? 1 "Global server, device send via cmsg, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device send via cmsg, local connection" In fcnal-test.sh line 1654: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S In fcnal-test.sh line 1655: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection" In fcnal-test.sh line 1661: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -U In fcnal-test.sh line 1662: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" In fcnal-test.sh line 1713: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1714: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 1719: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1720: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1725: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1726: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 1730: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1731: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1737: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1738: log_test_addr ${a} $? 1 "Global server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, VRF client, local connection" In fcnal-test.sh line 1779: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1780: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1785: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1786: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1791: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1792: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 1796: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1797: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1865: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1866: log_test_addr ${a} $? 0 "Global server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, VRF client, local conn" In fcnal-test.sh line 1874: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1875: log_test_addr ${a} $? 0 "VRF server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local conn" In fcnal-test.sh line 1884: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1885: log_test_addr ${a} $? 1 "No server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client, local conn" In fcnal-test.sh line 1923: run_cmd nettest -s -R -P icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -b In fcnal-test.sh line 1924: log_test_addr ${a} $? 0 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address" In fcnal-test.sh line 1927: run_cmd nettest -s -R -P icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 1928: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 1992: run_cmd nettest -s -R -P icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -b In fcnal-test.sh line 1993: log_test_addr ${a} $? 1 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Raw socket bind to local address" In fcnal-test.sh line 1996: run_cmd nettest -s -R -P icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 1997: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 1999: run_cmd nettest -s -R -P icmp -l ${a} -I ${VRF} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${VRF} -b In fcnal-test.sh line 2000: log_test_addr ${a} $? 0 "Raw socket bind to local address after VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after VRF bind" In fcnal-test.sh line 2044: run_cmd nettest -s -l ${a} -I ${VRF} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -l "${a}" -I ${VRF} -t1 -b In fcnal-test.sh line 2045: log_test_addr ${a} $? 0 "TCP socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address" In fcnal-test.sh line 2048: run_cmd nettest -s -l ${a} -I ${NSA_DEV} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -l "${a}" -I ${NSA_DEV} -t1 -b In fcnal-test.sh line 2049: log_test_addr ${a} $? 0 "TCP socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address after device bind" In fcnal-test.sh line 2095: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2097: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 2101: log_test_addr ${a} 0 0 "${desc}, global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server" In fcnal-test.sh line 2109: run_cmd nettest ${varg} -s -I ${VRF} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s -I ${VRF} & In fcnal-test.sh line 2111: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 2115: log_test_addr ${a} 0 0 "${desc}, VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server" In fcnal-test.sh line 2122: run_cmd nettest ${varg} -s -I ${NSA_DEV} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s -I ${NSA_DEV} & In fcnal-test.sh line 2124: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r ${a} & In fcnal-test.sh line 2136: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 2138: run_cmd nettest ${varg} -d ${VRF} -r ${NSB_IP} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r ${NSB_IP} & In fcnal-test.sh line 2147: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 2149: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${NSB_IP} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${NSB_IP} & In fcnal-test.sh line 2163: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2165: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 2169: log_test_addr ${a} 0 0 "${desc}, global server, VRF client, local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server, VRF client, local" In fcnal-test.sh line 2177: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 2179: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 2183: log_test_addr ${a} 0 0 "${desc}, VRF server and client, local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server and client, local" In fcnal-test.sh line 2191: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2193: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2202: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 2204: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2213: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 2215: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2230: run_cmd_nsb ping -f ${a} & ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -f "${a}" & In fcnal-test.sh line 2234: log_test_addr ${a} 0 0 "Device delete with active traffic - ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "Device delete with active traffic - ping in" In fcnal-test.sh line 2278: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2279: log_test_addr ${a} $? 0 "ping out" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out" In fcnal-test.sh line 2285: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2286: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 2289: run_cmd ${ping6} -c1 -w1 -I ${NSA_LO_IP6} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_LO_IP6} "${a}" In fcnal-test.sh line 2290: log_test_addr ${a} $? 0 "ping out, loopback address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, loopback address bind" In fcnal-test.sh line 2299: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2300: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 2309: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2310: log_test_addr ${a} $? 0 "ping local, no bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, no bind" In fcnal-test.sh line 2316: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2317: log_test_addr ${a} $? 0 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, device bind" In fcnal-test.sh line 2324: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2325: log_test_addr ${a} $? 2 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "ping local, device bind" In fcnal-test.sh line 2338: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2342: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2348: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2365: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2369: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2375: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2387: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2391: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2408: run_cmd ${ping6} -c1 -w1 -I ${VRF} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 2409: log_test_addr ${a} $? 0 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, VRF bind" In fcnal-test.sh line 2416: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2417: log_test_addr ${a} $? 1 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "ping out, VRF bind" In fcnal-test.sh line 2423: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2424: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 2430: run_cmd ip vrf exec ${VRF} ${ping6} -c1 -w1 -I ${VRF_IP6} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} "${ping6}" -c1 -w1 -I ${VRF_IP6} "${a}" In fcnal-test.sh line 2431: log_test_addr ${a} $? 0 "ping out, vrf device+address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device+address bind" In fcnal-test.sh line 2440: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2441: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 2447: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2457: run_cmd ${ping6} -c1 -w1 -I ${VRF} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 2458: log_test_addr ${a} $? 0 "ping local, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, VRF bind" In fcnal-test.sh line 2464: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2465: log_test_addr ${a} $? 0 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, device bind" In fcnal-test.sh line 2471: setup_cmd_nsb ip -6 ro add ${NSA_IP6}/128 via ${NSA_LINKIP6} dev ${NSB_DEV} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: setup_cmd_nsb ip -6 ro add ${NSA_IP6}/128 via "${NSA_LINKIP6}" dev ${NSB_DEV} In fcnal-test.sh line 2476: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 2477: log_test_addr ${a} $? 0 "ping in, LLA to GUA" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in, LLA to GUA" In fcnal-test.sh line 2480: setup_cmd_nsb ip -6 ro del ${NSA_IP6}/128 via ${NSA_LINKIP6} dev ${NSB_DEV} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: setup_cmd_nsb ip -6 ro del ${NSA_IP6}/128 via "${NSA_LINKIP6}" dev ${NSB_DEV} In fcnal-test.sh line 2492: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2496: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2502: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2516: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2520: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2523: ip -netns ${NSB} -6 ro del ${NSA_LO_IP6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" -6 ro del ${NSA_LO_IP6} In fcnal-test.sh line 2526: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2776: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2777: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2785: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2786: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 2797: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2798: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 2806: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2807: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 2814: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2815: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 2826: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2827: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 2843: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2844: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 2860: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2861: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 2869: run_cmd nettest -6 -d ${NSA_DEV} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -d ${NSA_DEV} -r "${a}" In fcnal-test.sh line 2870: log_test_addr ${a} $? 0 "Device server, device client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server, device client, local conn" In fcnal-test.sh line 2877: run_cmd nettest -6 -d ${NSA_DEV} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -d ${NSA_DEV} -r "${a}" In fcnal-test.sh line 2878: log_test_addr ${a} $? 1 "No server, device client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client, local conn" In fcnal-test.sh line 2902: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2903: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 2911: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2912: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2920: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2921: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2928: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2929: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 2937: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2938: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 2968: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2969: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2977: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2978: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2986: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2987: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2992: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2993: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 3000: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 3001: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 3009: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 3010: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3020: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 3021: log_test_addr ${a} $? 1 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, local connection" In fcnal-test.sh line 3033: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3034: log_test_addr ${a} $? 0 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, VRF bind" In fcnal-test.sh line 3042: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3043: log_test_addr ${a} $? 1 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Client, VRF bind" In fcnal-test.sh line 3050: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3051: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 3058: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3059: log_test_addr ${a} $? 1 "No server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client" In fcnal-test.sh line 3066: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3067: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 3075: run_cmd nettest -6 -r ${a} -d ${VRF} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} -0 "${a}" In fcnal-test.sh line 3076: log_test_addr ${a} $? 0 "VRF server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local connection" In fcnal-test.sh line 3105: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} -0 "${a}" In fcnal-test.sh line 3106: log_test_addr ${a} $? 0 "Device server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server, device client, local connection" In fcnal-test.sh line 3145: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3146: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 3151: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3152: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 3177: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3178: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3189: run_cmd nettest -6 -D -r ${a} -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -0 ${NSA_IP6} In fcnal-test.sh line 3190: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 3195: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -0 ${NSA_IP6} In fcnal-test.sh line 3196: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 3201: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -C -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -C -0 ${NSA_IP6} In fcnal-test.sh line 3202: log_test_addr ${a} $? 0 "Client, device send via cmsg" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device send via cmsg" In fcnal-test.sh line 3207: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP6} In fcnal-test.sh line 3208: log_test_addr ${a} $? 0 "Client, device bind via IPV6_UNICAST_IF" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IPV6_UNICAST_IF" In fcnal-test.sh line 3212: run_cmd nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" In fcnal-test.sh line 3213: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 3217: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3218: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 3229: run_cmd nettest -6 -D -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 3230: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 3246: run_cmd nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" In fcnal-test.sh line 3247: log_test_addr ${a} $? 1 "Device server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, local connection" In fcnal-test.sh line 3275: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3276: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 3282: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -C ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -C In fcnal-test.sh line 3283: log_test_addr ${a} $? 1 "Global server, device send via cmsg, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device send via cmsg, local connection" In fcnal-test.sh line 3289: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S In fcnal-test.sh line 3290: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection" In fcnal-test.sh line 3296: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S -U In fcnal-test.sh line 3297: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" In fcnal-test.sh line 3342: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3343: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 3351: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3352: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 3360: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3361: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 3369: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3370: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3382: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3383: log_test_addr ${a} $? 1 "Global server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, VRF client, local conn" In fcnal-test.sh line 3391: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3392: log_test_addr ${a} $? 0 "VRF server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local conn" In fcnal-test.sh line 3433: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3434: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 3442: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3443: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 3451: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3452: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 3459: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3460: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3522: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3523: log_test_addr ${a} $? 1 "No server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client, local conn" In fcnal-test.sh line 3561: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3565: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3572: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSB_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSB_LINKIP6}" In fcnal-test.sh line 3576: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSB_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSB_LINKIP6}" In fcnal-test.sh line 3583: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3587: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3637: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -b In fcnal-test.sh line 3638: log_test_addr ${a} $? 0 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address" In fcnal-test.sh line 3641: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 3642: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 3683: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${VRF} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${VRF} -b In fcnal-test.sh line 3684: log_test_addr ${a} $? 0 "Raw socket bind to local address after vrf bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after vrf bind" In fcnal-test.sh line 3687: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 3688: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 3712: run_cmd nettest -6 -s -l ${a} -I ${VRF} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -l "${a}" -I ${VRF} -t1 -b In fcnal-test.sh line 3713: log_test_addr ${a} $? 0 "TCP socket bind to local address with VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address with VRF bind" In fcnal-test.sh line 3773: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3775: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3779: log_test_addr ${a} 0 0 "${desc}, global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server" In fcnal-test.sh line 3787: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3789: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3793: log_test_addr ${a} 0 0 "${desc}, VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server" In fcnal-test.sh line 3801: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 3803: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3807: log_test_addr ${a} 0 0 "${desc}, enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, enslaved device server" In fcnal-test.sh line 3816: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 3818: run_cmd nettest ${varg} -d ${VRF} -r ${NSB_IP6} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r ${NSB_IP6} & In fcnal-test.sh line 3827: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 3829: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${NSB_IP6} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${NSB_IP6} & In fcnal-test.sh line 3844: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3846: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 3850: log_test_addr ${a} 0 0 "${desc}, global server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server, VRF client" In fcnal-test.sh line 3858: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3860: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 3864: log_test_addr ${a} 0 0 "${desc}, VRF server and client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server and client" In fcnal-test.sh line 3871: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3873: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3882: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3884: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3893: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 3895: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3909: run_cmd_nsb ${ping6} -f ${a} & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -f ${a} & In fcnal-test.sh line 3918: run_cmd ${ping6} -f ${NSB_IP6} -I ${VRF} & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -f ${NSB_IP6} -I ${VRF} & In fcnal-test.sh line 3954: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 3955: log_test_addr ${a} $? 1 "Global server, reject with TCP-reset on Rx" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, reject with TCP-reset on Rx" In fcnal-test.sh line 3972: run_cmd_nsb nettest ${arg} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest ${arg} -r "${a}" In fcnal-test.sh line 3973: log_test_addr ${a} $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" In fcnal-test.sh line 4011: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 4012: log_test_addr ${a} $? 1 "Global server, reject with TCP-reset on Rx" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, reject with TCP-reset on Rx" In fcnal-test.sh line 4027: run_cmd nettest -6 -s ${arg} & ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s "${arg}" & In fcnal-test.sh line 4029: run_cmd_nsb nettest -6 ${arg} -r ${a} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 "${arg}" -r "${a}" In fcnal-test.sh line 4030: log_test_addr ${a} $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" In fcnal-test.sh line 4089: run_cmd ${ping6} -c1 -w1 -I br0 ${NSB_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0 ${NSB_IP6} In fcnal-test.sh line 4097: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 4101: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 4107: run_cmd ${ping6} -c1 -w1 -I br0 ${NSB_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0 ${NSB_IP6} In fcnal-test.sh line 4115: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 4138: run_cmd ${ping6} -c1 -w1 -I br0.100 2001:db8:101::2 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0.100 2001:db8:101::2 In fcnal-test.sh line 4146: run_cmd_nsb ${ping6} -c1 -w1 2001:db8:101::1 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 2001:db8:101::1 In fcnal-test.sh line 4150: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 4156: run_cmd ${ping6} -c1 -w1 -I br0.100 2001:db8:101::2 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0.100 2001:db8:101::2 In fcnal-test.sh line 4164: run_cmd_nsb ${ping6} -c1 -w1 2001:db8:101::1 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 2001:db8:101::1 For more information: https://www.shellcheck.net/wiki/SC2034 -- NSC_LINKIP6 appears unused. Verif... https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent... https://www.shellcheck.net/wiki/SC2166 -- Prefer [ p ] && [ q ] as [ p -a q... ====== Checking the tree with the patch ====== Checking tools/testing/selftests/net/fcnal-test.sh - 6a0b923e1c424fe0dff281b4f46f76717f04c896e521b313718911f07f83a559 In fcnal-test.sh line 90: fips_enabled=`cat /proc/sys/crypto/fips_enabled` ^-- SC2006 (style): Use $(...) notation instead of legacy backticks `...`. Did you mean: fips_enabled=$(cat /proc/sys/crypto/fips_enabled) In fcnal-test.sh line 107: if [ ${rc} -eq ${expected} ]; then ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: if [ "${rc}" -eq "${expected}" ]; then In fcnal-test.sh line 117: read ans ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 125: read ans ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 140: astr=$(addr2str ${addr}) ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: astr=$(addr2str "${addr}") In fcnal-test.sh line 141: log_test $rc $expected "$msg - ${astr}" ^-^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test "$rc" "$expected" "$msg - ${astr}" In fcnal-test.sh line 215: if [ "$VERBOSE" = "1" -a -n "$out" ]; then ^-- SC2166 (warning): Prefer [ p ] && [ q ] as [ p -a q ] is not well defined. In fcnal-test.sh line 219: return $rc ^-^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: return "$rc" In fcnal-test.sh line 224: do_run_cmd ${NSA_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSA_CMD}" "$*" In fcnal-test.sh line 229: do_run_cmd ${NSB_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSB_CMD}" "$*" In fcnal-test.sh line 234: do_run_cmd ${NSC_CMD} $* ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: do_run_cmd "${NSC_CMD}" "$*" In fcnal-test.sh line 242: run_cmd ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${cmd}" In fcnal-test.sh line 253: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 264: run_cmd_nsb ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${cmd}" In fcnal-test.sh line 275: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 286: run_cmd_nsc ${cmd} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsc "${cmd}" In fcnal-test.sh line 297: read a ^--^ SC2162 (info): read without -r will mangle backslashes. In fcnal-test.sh line 308: run_cmd sysctl -q -w $* ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd sysctl -q -w "$*" In fcnal-test.sh line 314: ${NSA_CMD} sysctl -n $* ^-- SC2048 (warning): Use "$@" (with quotes) to prevent whitespace problems. ^-- SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ${NSA_CMD} sysctl -n "$*" In fcnal-test.sh line 326: ${BCAST_IP}) echo "broadcast";; ^---------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 327: ${MCAST_IP}) echo "multicast";; ^---------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 329: ${NSA_IP}) echo "ns-A IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 330: ${NSA_IP6}) echo "ns-A IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 331: ${NSA_LO_IP}) echo "ns-A loopback IP";; ^----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 332: ${NSA_LO_IP6}) echo "ns-A loopback IPv6";; ^-----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 333: ${NSA_LINKIP6}|${NSA_LINKIP6}%*) echo "ns-A IPv6 LLA";; ^------------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 335: ${NSB_IP}) echo "ns-B IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 336: ${NSB_IP6}) echo "ns-B IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 337: ${NSB_LO_IP}) echo "ns-B loopback IP";; ^----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 338: ${NSB_LO_IP6}) echo "ns-B loopback IPv6";; ^-----------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 339: ${NSB_LINKIP6}|${NSB_LINKIP6}%*) echo "ns-B IPv6 LLA";; ^------------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 341: ${NL_IP}) echo "nonlocal IP";; ^------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 342: ${NL_IP6}) echo "nonlocal IPv6";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 344: ${VRF_IP}) echo "VRF IP";; ^-------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 345: ${VRF_IP6}) echo "VRF IPv6";; ^--------^ SC2254 (warning): Quote expansions in case patterns to match literally rather than as a glob. In fcnal-test.sh line 359: addr=$(ip -netns ${ns} -6 -br addr show dev ${dev} | \ ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: addr=$(ip -netns "${ns}" -6 -br addr show dev "${dev}" | \ In fcnal-test.sh line 371: echo $addr ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: echo "$addr" In fcnal-test.sh line 387: ip -netns ${ns} link add ${vrf} type vrf table ${table} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" link add "${vrf}" type vrf table "${table}" In fcnal-test.sh line 388: ip -netns ${ns} link set ${vrf} up ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" link set "${vrf}" up In fcnal-test.sh line 389: ip -netns ${ns} route add vrf ${vrf} unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" route add vrf "${vrf}" unreachable default metric 8192 In fcnal-test.sh line 390: ip -netns ${ns} -6 route add vrf ${vrf} unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 route add vrf "${vrf}" unreachable default metric 8192 In fcnal-test.sh line 392: ip -netns ${ns} addr add 127.0.0.1/8 dev ${vrf} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add 127.0.0.1/8 dev "${vrf}" In fcnal-test.sh line 393: ip -netns ${ns} -6 addr add ::1 dev ${vrf} nodad ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add ::1 dev "${vrf}" nodad In fcnal-test.sh line 395: ip -netns ${ns} addr add dev ${vrf} ${addr} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add dev "${vrf}" "${addr}" In fcnal-test.sh line 398: ip -netns ${ns} -6 addr add dev ${vrf} ${addr6} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add dev "${vrf}" "${addr6}" In fcnal-test.sh line 401: ip -netns ${ns} ru del pref 0 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ru del pref 0 In fcnal-test.sh line 402: ip -netns ${ns} ru add pref 32765 from all lookup local ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ru add pref 32765 from all lookup local In fcnal-test.sh line 403: ip -netns ${ns} -6 ru del pref 0 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ru del pref 0 In fcnal-test.sh line 404: ip -netns ${ns} -6 ru add pref 32765 from all lookup local ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ru add pref 32765 from all lookup local In fcnal-test.sh line 414: ip -netns ${ns} addr add dev lo ${addr} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" addr add dev lo "${addr}" In fcnal-test.sh line 417: ip -netns ${ns} -6 addr add dev lo ${addr6} ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 addr add dev lo "${addr6}" In fcnal-test.sh line 420: ip -netns ${ns} ro add unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" ro add unreachable default metric 8192 In fcnal-test.sh line 421: ip -netns ${ns} -6 ro add unreachable default metric 8192 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns}" -6 ro add unreachable default metric 8192 In fcnal-test.sh line 423: ip netns exec ${ns} sysctl -qw net.ipv4.ip_forward=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv4.ip_forward=1 In fcnal-test.sh line 424: ip netns exec ${ns} sysctl -qw net.ipv6.conf.all.keep_addr_on_down=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.all.keep_addr_on_down=1 In fcnal-test.sh line 425: ip netns exec ${ns} sysctl -qw net.ipv6.conf.all.forwarding=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.all.forwarding=1 In fcnal-test.sh line 426: ip netns exec ${ns} sysctl -qw net.ipv6.conf.default.forwarding=1 ^---^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${ns}" sysctl -qw net.ipv6.conf.default.forwarding=1 In fcnal-test.sh line 441: ip -netns ${ns1} li add ${ns1_dev} type veth peer name tmp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li add "${ns1_dev}" type veth peer name tmp In fcnal-test.sh line 442: ip -netns ${ns1} li set ${ns1_dev} up ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li set "${ns1_dev}" up In fcnal-test.sh line 443: ip -netns ${ns1} li set tmp netns ${ns2} name ${ns2_dev} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" li set tmp netns "${ns2}" name "${ns2_dev}" In fcnal-test.sh line 444: ip -netns ${ns2} li set ${ns2_dev} up ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" li set "${ns2_dev}" up In fcnal-test.sh line 447: ip -netns ${ns1} addr add dev ${ns1_dev} ${ns1_addr} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" addr add dev "${ns1_dev}" "${ns1_addr}" In fcnal-test.sh line 448: ip -netns ${ns2} addr add dev ${ns2_dev} ${ns2_addr} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^---------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" addr add dev "${ns2_dev}" "${ns2_addr}" In fcnal-test.sh line 452: ip -netns ${ns1} addr add dev ${ns1_dev} ${ns1_addr6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns1}" addr add dev "${ns1_dev}" "${ns1_addr6}" In fcnal-test.sh line 453: ip -netns ${ns2} addr add dev ${ns2_dev} ${ns2_addr6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${ns2}" addr add dev "${ns2_dev}" "${ns2_addr6}" In fcnal-test.sh line 460: ip netns | grep -q ${NSA} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns | grep -q "${NSA}" In fcnal-test.sh line 461: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 462: ip -netns ${NSA} link delete ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link delete ${VRF} In fcnal-test.sh line 463: ip -netns ${NSA} ro flush table ${VRF_TABLE} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro flush table ${VRF_TABLE} In fcnal-test.sh line 465: ip -netns ${NSA} addr flush dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" addr flush dev ${NSA_DEV} In fcnal-test.sh line 466: ip -netns ${NSA} -6 addr flush dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" -6 addr flush dev ${NSA_DEV} In fcnal-test.sh line 467: ip -netns ${NSA} link set dev ${NSA_DEV} down ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} down In fcnal-test.sh line 468: ip -netns ${NSA} link del dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link del dev ${NSA_DEV} In fcnal-test.sh line 470: ip netns pids ${NSA} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSA}" | xargs kill 2>/dev/null In fcnal-test.sh line 471: cleanup_ns ${NSA} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: cleanup_ns "${NSA}" In fcnal-test.sh line 474: ip netns pids ${NSB} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSB}" | xargs kill 2>/dev/null In fcnal-test.sh line 475: ip netns pids ${NSC} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSC}" | xargs kill 2>/dev/null In fcnal-test.sh line 476: cleanup_ns ${NSB} ${NSC} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: cleanup_ns "${NSB}" "${NSC}" In fcnal-test.sh line 482: ip netns pids ${NSC} | xargs kill 2>/dev/null ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns pids "${NSC}" | xargs kill 2>/dev/null In fcnal-test.sh line 483: ip netns del ${NSC} >/dev/null 2>&1 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns del "${NSC}" >/dev/null 2>&1 In fcnal-test.sh line 492: create_ns ${NSC} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSC}" "-" "-" In fcnal-test.sh line 493: connect_ns ${NSA} ${NSA_DEV2} ${NSA_IP}/24 ${NSA_IP6}/64 \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV2} ${NSA_IP}/24 ${NSA_IP6}/64 \ In fcnal-test.sh line 494: ${NSC} ${NSC_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSC}" ${NSC_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 In fcnal-test.sh line 512: create_ns ${NSA} ${NSA_LO_IP}/32 ${NSA_LO_IP6}/128 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSA}" ${NSA_LO_IP}/32 ${NSA_LO_IP6}/128 In fcnal-test.sh line 513: create_ns ${NSB} ${NSB_LO_IP}/32 ${NSB_LO_IP6}/128 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSB}" ${NSB_LO_IP}/32 ${NSB_LO_IP6}/128 In fcnal-test.sh line 514: connect_ns ${NSA} ${NSA_DEV} ${NSA_IP}/24 ${NSA_IP6}/64 \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV} ${NSA_IP}/24 ${NSA_IP6}/64 \ In fcnal-test.sh line 515: ${NSB} ${NSB_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSB}" ${NSB_DEV} ${NSB_IP}/24 ${NSB_IP6}/64 In fcnal-test.sh line 517: NSA_LINKIP6=$(get_linklocal ${NSA} ${NSA_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSA_LINKIP6=$(get_linklocal "${NSA}" ${NSA_DEV}) In fcnal-test.sh line 518: NSB_LINKIP6=$(get_linklocal ${NSB} ${NSB_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSB_LINKIP6=$(get_linklocal "${NSB}" ${NSB_DEV}) In fcnal-test.sh line 522: create_vrf ${NSA} ${VRF} ${VRF_TABLE} ${VRF_IP} ${VRF_IP6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_vrf "${NSA}" ${VRF} ${VRF_TABLE} ${VRF_IP} ${VRF_IP6} In fcnal-test.sh line 524: ip -netns ${NSA} link set dev ${NSA_DEV} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} vrf ${VRF} In fcnal-test.sh line 525: ip -netns ${NSA} ro add vrf ${VRF} ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add vrf ${VRF} ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} In fcnal-test.sh line 526: ip -netns ${NSA} -6 ro add vrf ${VRF} ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" -6 ro add vrf ${VRF} ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} In fcnal-test.sh line 528: ip -netns ${NSB} ro add ${VRF_IP}/32 via ${NSA_IP} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${VRF_IP}/32 via ${NSA_IP} dev ${NSB_DEV} In fcnal-test.sh line 529: ip -netns ${NSB} -6 ro add ${VRF_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" -6 ro add ${VRF_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} In fcnal-test.sh line 531: ip -netns ${NSA} ro add ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add ${NSB_LO_IP}/32 via ${NSB_IP} dev ${NSA_DEV} In fcnal-test.sh line 532: ip -netns ${NSA} ro add ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" ro add ${NSB_LO_IP6}/128 via ${NSB_IP6} dev ${NSA_DEV} In fcnal-test.sh line 537: ip -netns ${NSB} ro add ${NSA_LO_IP}/32 via ${NSA_IP} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${NSA_LO_IP}/32 via ${NSA_IP} dev ${NSB_DEV} In fcnal-test.sh line 538: ip -netns ${NSB} ro add ${NSA_LO_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" ro add ${NSA_LO_IP6}/128 via ${NSA_IP6} dev ${NSB_DEV} In fcnal-test.sh line 558: create_ns ${NSA} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSA}" "-" "-" In fcnal-test.sh line 559: create_ns ${NSB} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSB}" "-" "-" In fcnal-test.sh line 560: create_ns ${NSC} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_ns "${NSC}" "-" "-" In fcnal-test.sh line 561: connect_ns ${NSA} ${NSA_DEV} "-" "-" \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV} "-" "-" \ In fcnal-test.sh line 562: ${NSB} ${NSB_DEV} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSB}" ${NSB_DEV} "-" "-" In fcnal-test.sh line 563: connect_ns ${NSA} ${NSA_DEV2} "-" "-" \ ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: connect_ns "${NSA}" ${NSA_DEV2} "-" "-" \ In fcnal-test.sh line 564: ${NSC} ${NSC_DEV} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: "${NSC}" ${NSC_DEV} "-" "-" In fcnal-test.sh line 566: NSA_LINKIP6=$(get_linklocal ${NSA} ${NSA_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSA_LINKIP6=$(get_linklocal "${NSA}" ${NSA_DEV}) In fcnal-test.sh line 567: NSB_LINKIP6=$(get_linklocal ${NSB} ${NSB_DEV}) ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSB_LINKIP6=$(get_linklocal "${NSB}" ${NSB_DEV}) In fcnal-test.sh line 568: NSC_LINKIP6=$(get_linklocal ${NSC} ${NSC_DEV}) ^---------^ SC2034 (warning): NSC_LINKIP6 appears unused. Verify use (or export if used externally). ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: NSC_LINKIP6=$(get_linklocal "${NSC}" ${NSC_DEV}) In fcnal-test.sh line 570: create_vrf ${NSA} ${VRF} ${VRF_TABLE} "-" "-" ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: create_vrf "${NSA}" ${VRF} ${VRF_TABLE} "-" "-" In fcnal-test.sh line 571: ip -netns ${NSA} link set dev ${NSA_DEV} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV} vrf ${VRF} In fcnal-test.sh line 572: ip -netns ${NSA} link set dev ${NSA_DEV2} vrf ${VRF} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSA}" link set dev ${NSA_DEV2} vrf ${VRF} In fcnal-test.sh line 592: run_cmd ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 "${a}" In fcnal-test.sh line 593: log_test_addr ${a} $? 0 "ping out" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out" In fcnal-test.sh line 596: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 597: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 600: run_cmd ping -c1 -w1 -I ${NSA_LO_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_LO_IP} "${a}" In fcnal-test.sh line 601: log_test_addr ${a} $? 0 "ping out, address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, address bind" In fcnal-test.sh line 624: run_cmd_nsb ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -c1 -w1 "${a}" In fcnal-test.sh line 625: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 634: run_cmd ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 "${a}" In fcnal-test.sh line 635: log_test_addr ${a} $? 0 "ping local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local" In fcnal-test.sh line 654: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 655: log_test_addr ${a} $? 1 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "ping local, device bind" In fcnal-test.sh line 739: run_cmd ping -c1 -w1 -I ${VRF} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 740: log_test_addr ${a} $? 0 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, VRF bind" In fcnal-test.sh line 743: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 744: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 747: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${NSA_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${NSA_IP} "${a}" In fcnal-test.sh line 748: log_test_addr ${a} $? 0 "ping out, vrf device + dev address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device + dev address bind" In fcnal-test.sh line 751: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${VRF_IP} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} ping -c1 -w1 -I ${VRF_IP} "${a}" In fcnal-test.sh line 752: log_test_addr ${a} $? 0 "ping out, vrf device + vrf address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device + vrf address bind" In fcnal-test.sh line 761: run_cmd_nsb ping -c1 -w1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -c1 -w1 "${a}" In fcnal-test.sh line 762: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 772: run_cmd ping -c1 -w1 -I ${VRF} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 773: log_test_addr ${a} $? 0 "ping local, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, VRF bind" In fcnal-test.sh line 790: run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ping -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 791: log_test_addr ${a} $? 2 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "ping local, device bind" In fcnal-test.sh line 878: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 886: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 894: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 902: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 913: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 921: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 929: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 946: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 954: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 962: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 970: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 981: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 989: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 997: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1008: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1015: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1023: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1031: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1038: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1045: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1053: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1061: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1085: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1092: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1106: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1112: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1118: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1124: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1147: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies=${syncookies} ^-----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies="${syncookies}" In fcnal-test.sh line 1148: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies=${syncookies} ^-----------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies="${syncookies}" In fcnal-test.sh line 1181: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies=${nsb_syncookies} ^---------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSB}" sysctl -wq net.ipv4.tcp_syncookies="${nsb_syncookies}" In fcnal-test.sh line 1182: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies=${nsa_syncookies} ^---------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip netns exec "${NSA}" sysctl -wq net.ipv4.tcp_syncookies="${nsa_syncookies}" In fcnal-test.sh line 1196: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1197: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1198: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1204: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1213: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1214: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1224: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 1225: run_cmd nettest -r ${a} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -0 ${NSA_IP} In fcnal-test.sh line 1226: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 1230: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 1231: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1232: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1236: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1237: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 1241: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1242: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1252: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1253: run_cmd nettest -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 1254: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 1260: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1269: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1270: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1271: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 1277: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1286: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1287: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1288: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 1294: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1326: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1327: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1328: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 1332: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1333: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1334: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1338: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1339: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1340: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 1345: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1346: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1355: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1377: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1378: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1379: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1384: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1385: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1386: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1391: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 1392: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1399: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1409: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1410: run_cmd nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" In fcnal-test.sh line 1411: log_test_addr ${a} $? 1 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, local connection" In fcnal-test.sh line 1421: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 1422: run_cmd nettest -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} In fcnal-test.sh line 1423: log_test_addr ${a} $? 0 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, VRF bind" In fcnal-test.sh line 1427: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 1428: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1429: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1433: run_cmd nettest -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} In fcnal-test.sh line 1434: log_test_addr ${a} $? 1 "No server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client" In fcnal-test.sh line 1438: run_cmd nettest -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1439: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1446: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1447: run_cmd nettest -r ${a} -d ${VRF} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -r "${a}" -d ${VRF} -0 "${a}" In fcnal-test.sh line 1448: log_test_addr ${a} $? 0 "VRF server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local connection" In fcnal-test.sh line 1454: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1461: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1467: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1473: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 1512: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1513: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1514: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1518: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1519: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1525: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1536: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1537: run_cmd nettest -D -r ${a} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -0 ${NSA_IP} In fcnal-test.sh line 1538: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 1542: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1543: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -0 ${NSA_IP} In fcnal-test.sh line 1544: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 1548: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1549: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -C -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -C -0 ${NSA_IP} In fcnal-test.sh line 1550: log_test_addr ${a} $? 0 "Client, device send via cmsg" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device send via cmsg" In fcnal-test.sh line 1554: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1555: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP} In fcnal-test.sh line 1556: log_test_addr ${a} $? 0 "Client, device bind via IP_UNICAST_IF" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IP_UNICAST_IF" In fcnal-test.sh line 1560: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1561: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP} -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP} -U In fcnal-test.sh line 1562: log_test_addr ${a} $? 0 "Client, device bind via IP_UNICAST_IF, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IP_UNICAST_IF, with connect()" In fcnal-test.sh line 1567: run_cmd nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" In fcnal-test.sh line 1568: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 1572: run_cmd nettest -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1573: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 1583: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1584: run_cmd nettest -D -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 1585: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 1591: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1600: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1601: run_cmd nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" In fcnal-test.sh line 1602: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 1608: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1614: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1620: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1626: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1639: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1640: run_cmd nettest -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 1641: log_test_addr ${a} $? 2 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "Global server, device client, local connection" In fcnal-test.sh line 1646: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1647: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -C ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -C In fcnal-test.sh line 1648: log_test_addr ${a} $? 1 "Global server, device send via cmsg, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device send via cmsg, local connection" In fcnal-test.sh line 1653: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1654: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S In fcnal-test.sh line 1655: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection" In fcnal-test.sh line 1660: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1661: run_cmd nettest -D -r ${a} -d ${NSA_DEV} -S -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -r "${a}" -d ${NSA_DEV} -S -U In fcnal-test.sh line 1662: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" In fcnal-test.sh line 1670: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1712: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1713: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1714: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 1718: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1719: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1720: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1724: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1725: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1726: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 1730: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1731: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1736: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1737: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1738: log_test_addr ${a} $? 1 "Global server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, VRF client, local connection" In fcnal-test.sh line 1744: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1750: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1757: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1763: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1778: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1779: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1780: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 1784: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1785: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1786: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 1790: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1791: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1792: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 1796: run_cmd_nsb nettest -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -D -r "${a}" In fcnal-test.sh line 1797: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 1805: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1811: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 1832: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1838: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1844: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1850: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1856: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1864: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1865: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1866: log_test_addr ${a} $? 0 "Global server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, VRF client, local conn" In fcnal-test.sh line 1873: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 1874: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1875: log_test_addr ${a} $? 0 "VRF server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local conn" In fcnal-test.sh line 1884: run_cmd nettest -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -D -d ${VRF} -r "${a}" In fcnal-test.sh line 1885: log_test_addr ${a} $? 1 "No server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client, local conn" In fcnal-test.sh line 1923: run_cmd nettest -s -R -P icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -b In fcnal-test.sh line 1924: log_test_addr ${a} $? 0 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address" In fcnal-test.sh line 1927: run_cmd nettest -s -R -P icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 1928: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 1992: run_cmd nettest -s -R -P icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -b In fcnal-test.sh line 1993: log_test_addr ${a} $? 1 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Raw socket bind to local address" In fcnal-test.sh line 1996: run_cmd nettest -s -R -P icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 1997: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 1999: run_cmd nettest -s -R -P icmp -l ${a} -I ${VRF} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -R -P icmp -l "${a}" -I ${VRF} -b In fcnal-test.sh line 2000: log_test_addr ${a} $? 0 "Raw socket bind to local address after VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after VRF bind" In fcnal-test.sh line 2044: run_cmd nettest -s -l ${a} -I ${VRF} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -l "${a}" -I ${VRF} -t1 -b In fcnal-test.sh line 2045: log_test_addr ${a} $? 0 "TCP socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address" In fcnal-test.sh line 2048: run_cmd nettest -s -l ${a} -I ${NSA_DEV} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -s -l "${a}" -I ${NSA_DEV} -t1 -b In fcnal-test.sh line 2049: log_test_addr ${a} $? 0 "TCP socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address after device bind" In fcnal-test.sh line 2095: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2096: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2097: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 2101: log_test_addr ${a} 0 0 "${desc}, global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server" In fcnal-test.sh line 2109: run_cmd nettest ${varg} -s -I ${VRF} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s -I ${VRF} & In fcnal-test.sh line 2110: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2111: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 2115: log_test_addr ${a} 0 0 "${desc}, VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server" In fcnal-test.sh line 2122: run_cmd nettest ${varg} -s -I ${NSA_DEV} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s -I ${NSA_DEV} & In fcnal-test.sh line 2123: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2124: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r ${a} & In fcnal-test.sh line 2136: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 2137: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 2138: run_cmd nettest ${varg} -d ${VRF} -r ${NSB_IP} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r ${NSB_IP} & In fcnal-test.sh line 2147: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 2148: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 2149: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${NSB_IP} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${NSB_IP} & In fcnal-test.sh line 2163: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2164: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2165: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 2169: log_test_addr ${a} 0 0 "${desc}, global server, VRF client, local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server, VRF client, local" In fcnal-test.sh line 2177: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 2178: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2179: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 2183: log_test_addr ${a} 0 0 "${desc}, VRF server and client, local" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server and client, local" In fcnal-test.sh line 2191: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 2192: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2193: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2202: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 2203: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2204: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2213: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 2214: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2215: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 2230: run_cmd_nsb ping -f ${a} & ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb ping -f "${a}" & In fcnal-test.sh line 2234: log_test_addr ${a} 0 0 "Device delete with active traffic - ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "Device delete with active traffic - ping in" In fcnal-test.sh line 2278: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2279: log_test_addr ${a} $? 0 "ping out" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out" In fcnal-test.sh line 2285: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2286: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 2289: run_cmd ${ping6} -c1 -w1 -I ${NSA_LO_IP6} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_LO_IP6} "${a}" In fcnal-test.sh line 2290: log_test_addr ${a} $? 0 "ping out, loopback address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, loopback address bind" In fcnal-test.sh line 2299: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2300: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 2309: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2310: log_test_addr ${a} $? 0 "ping local, no bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, no bind" In fcnal-test.sh line 2316: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2317: log_test_addr ${a} $? 0 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, device bind" In fcnal-test.sh line 2324: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2325: log_test_addr ${a} $? 2 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 2 "ping local, device bind" In fcnal-test.sh line 2338: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2342: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2348: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2365: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2369: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2375: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2387: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2391: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2408: run_cmd ${ping6} -c1 -w1 -I ${VRF} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 2409: log_test_addr ${a} $? 0 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, VRF bind" In fcnal-test.sh line 2416: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2417: log_test_addr ${a} $? 1 "ping out, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "ping out, VRF bind" In fcnal-test.sh line 2423: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2424: log_test_addr ${a} $? 0 "ping out, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, device bind" In fcnal-test.sh line 2430: run_cmd ip vrf exec ${VRF} ${ping6} -c1 -w1 -I ${VRF_IP6} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd ip vrf exec ${VRF} "${ping6}" -c1 -w1 -I ${VRF_IP6} "${a}" In fcnal-test.sh line 2431: log_test_addr ${a} $? 0 "ping out, vrf device+address bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping out, vrf device+address bind" In fcnal-test.sh line 2440: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 "${a}" In fcnal-test.sh line 2441: log_test_addr ${a} $? 0 "ping in" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in" In fcnal-test.sh line 2447: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2457: run_cmd ${ping6} -c1 -w1 -I ${VRF} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${VRF} "${a}" In fcnal-test.sh line 2458: log_test_addr ${a} $? 0 "ping local, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, VRF bind" In fcnal-test.sh line 2464: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} "${a}" In fcnal-test.sh line 2465: log_test_addr ${a} $? 0 "ping local, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping local, device bind" In fcnal-test.sh line 2471: setup_cmd_nsb ip -6 ro add ${NSA_IP6}/128 via ${NSA_LINKIP6} dev ${NSB_DEV} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: setup_cmd_nsb ip -6 ro add ${NSA_IP6}/128 via "${NSA_LINKIP6}" dev ${NSB_DEV} In fcnal-test.sh line 2476: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 2477: log_test_addr ${a} $? 0 "ping in, LLA to GUA" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "ping in, LLA to GUA" In fcnal-test.sh line 2480: setup_cmd_nsb ip -6 ro del ${NSA_IP6}/128 via ${NSA_LINKIP6} dev ${NSB_DEV} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: setup_cmd_nsb ip -6 ro del ${NSA_IP6}/128 via "${NSA_LINKIP6}" dev ${NSB_DEV} In fcnal-test.sh line 2492: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2496: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2502: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2516: run_cmd ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2520: run_cmd ${ping6} -c1 -w1 -I ${NSA_DEV} ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I ${NSA_DEV} ${a} In fcnal-test.sh line 2523: ip -netns ${NSB} -6 ro del ${NSA_LO_IP6} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: ip -netns "${NSB}" -6 ro del ${NSA_LO_IP6} In fcnal-test.sh line 2526: run_cmd_nsb ${ping6} -c1 -w1 ${a} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${a} In fcnal-test.sh line 2564: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2572: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2580: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2588: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2599: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2607: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2615: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2632: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2640: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2648: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2656: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2667: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2675: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2683: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2694: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2701: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2709: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2717: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2724: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2731: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2739: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2747: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2775: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2776: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2777: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2785: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2786: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 2796: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 2797: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2798: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 2805: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 2806: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2807: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 2814: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2815: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 2825: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2826: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2827: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 2833: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2842: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2843: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 2844: log_test_addr ${a} $? 1 "Device server, unbound client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, unbound client, local connection" In fcnal-test.sh line 2850: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2859: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2860: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 2861: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 2868: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2869: run_cmd nettest -6 -d ${NSA_DEV} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -d ${NSA_DEV} -r "${a}" In fcnal-test.sh line 2870: log_test_addr ${a} $? 0 "Device server, device client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server, device client, local conn" In fcnal-test.sh line 2877: run_cmd nettest -6 -d ${NSA_DEV} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -d ${NSA_DEV} -r "${a}" In fcnal-test.sh line 2878: log_test_addr ${a} $? 1 "No server, device client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client, local conn" In fcnal-test.sh line 2901: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2902: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2903: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 2910: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2911: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2912: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2919: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2920: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2921: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2927: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2928: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2929: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 2937: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2938: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 2946: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2967: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2968: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2969: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2976: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2977: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2978: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2985: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2986: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2987: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 2991: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 2992: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 2993: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 2999: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3000: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 3001: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 3009: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 3010: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3019: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3020: run_cmd nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" In fcnal-test.sh line 3021: log_test_addr ${a} $? 1 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, local connection" In fcnal-test.sh line 3032: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 3033: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3034: log_test_addr ${a} $? 0 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, VRF bind" In fcnal-test.sh line 3041: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 3042: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3043: log_test_addr ${a} $? 1 "Client, VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Client, VRF bind" In fcnal-test.sh line 3049: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 3050: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3051: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 3058: run_cmd nettest -6 -r ${a} -d ${VRF} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} In fcnal-test.sh line 3059: log_test_addr ${a} $? 1 "No server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client" In fcnal-test.sh line 3066: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3067: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 3074: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3075: run_cmd nettest -6 -r ${a} -d ${VRF} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${VRF} -0 "${a}" In fcnal-test.sh line 3076: log_test_addr ${a} $? 0 "VRF server, VRF client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local connection" In fcnal-test.sh line 3082: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3090: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3096: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3104: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3105: run_cmd nettest -6 -r ${a} -d ${NSA_DEV} -0 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -r "${a}" -d ${NSA_DEV} -0 "${a}" In fcnal-test.sh line 3106: log_test_addr ${a} $? 0 "Device server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server, device client, local connection" In fcnal-test.sh line 3144: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3145: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3146: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 3150: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3151: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3152: log_test_addr ${a} $? 0 "Device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Device server" In fcnal-test.sh line 3158: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3168: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3177: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3178: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3188: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3189: run_cmd nettest -6 -D -r ${a} -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -0 ${NSA_IP6} In fcnal-test.sh line 3190: log_test_addr ${a} $? 0 "Client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client" In fcnal-test.sh line 3194: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3195: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -0 ${NSA_IP6} In fcnal-test.sh line 3196: log_test_addr ${a} $? 0 "Client, device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind" In fcnal-test.sh line 3200: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3201: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -C -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -C -0 ${NSA_IP6} In fcnal-test.sh line 3202: log_test_addr ${a} $? 0 "Client, device send via cmsg" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device send via cmsg" In fcnal-test.sh line 3206: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3207: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S -0 ${NSA_IP6} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S -0 ${NSA_IP6} In fcnal-test.sh line 3208: log_test_addr ${a} $? 0 "Client, device bind via IPV6_UNICAST_IF" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Client, device bind via IPV6_UNICAST_IF" In fcnal-test.sh line 3212: run_cmd nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" In fcnal-test.sh line 3213: log_test_addr ${a} $? 1 "No server, unbound client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, unbound client" In fcnal-test.sh line 3217: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3218: log_test_addr ${a} $? 1 "No server, device client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, device client" In fcnal-test.sh line 3228: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3229: run_cmd nettest -6 -D -r ${a} -0 ${a} -1 ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -0 "${a}" -1 "${a}" In fcnal-test.sh line 3230: log_test_addr ${a} $? 0 "Global server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server, local connection" In fcnal-test.sh line 3236: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3245: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3246: run_cmd nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" In fcnal-test.sh line 3247: log_test_addr ${a} $? 1 "Device server, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Device server, local connection" In fcnal-test.sh line 3253: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3259: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3265: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3274: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3275: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} In fcnal-test.sh line 3276: log_test_addr ${a} $? 1 "Global server, device client, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client, local connection" In fcnal-test.sh line 3281: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3282: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -C ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -C In fcnal-test.sh line 3283: log_test_addr ${a} $? 1 "Global server, device send via cmsg, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device send via cmsg, local connection" In fcnal-test.sh line 3288: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3289: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S In fcnal-test.sh line 3290: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection" In fcnal-test.sh line 3295: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3296: run_cmd nettest -6 -D -r ${a} -d ${NSA_DEV} -S -U ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -r "${a}" -d ${NSA_DEV} -S -U In fcnal-test.sh line 3297: log_test_addr ${a} $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, device client via IP_UNICAST_IF, local connection, with connect()" In fcnal-test.sh line 3303: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3317: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3341: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3342: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3343: log_test_addr ${a} $? 1 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server" In fcnal-test.sh line 3350: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3351: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3352: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 3359: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3360: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3361: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 3369: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3370: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3381: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3382: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3383: log_test_addr ${a} $? 1 "Global server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, VRF client, local conn" In fcnal-test.sh line 3390: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3391: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3392: log_test_addr ${a} $? 0 "VRF server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server, VRF client, local conn" In fcnal-test.sh line 3399: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3405: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3411: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3417: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3432: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3433: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3434: log_test_addr ${a} $? 0 "Global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Global server" In fcnal-test.sh line 3441: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3442: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3443: log_test_addr ${a} $? 0 "VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "VRF server" In fcnal-test.sh line 3450: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3451: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3452: log_test_addr ${a} $? 0 "Enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Enslaved device server" In fcnal-test.sh line 3459: run_cmd_nsb nettest -6 -D -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -r "${a}" In fcnal-test.sh line 3460: log_test_addr ${a} $? 1 "No server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server" In fcnal-test.sh line 3468: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3479: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3494: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3500: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3508: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3514: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3522: run_cmd nettest -6 -D -d ${VRF} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${VRF} -r "${a}" In fcnal-test.sh line 3523: log_test_addr ${a} $? 1 "No server, VRF client, local conn" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "No server, VRF client, local conn" In fcnal-test.sh line 3530: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3536: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3542: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3548: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3560: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3561: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3565: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -D -d ${NSB_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3571: wait_local_port_listen ${NSB} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 udp In fcnal-test.sh line 3572: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSB_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSB_LINKIP6}" In fcnal-test.sh line 3576: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSB_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSB_LINKIP6}" In fcnal-test.sh line 3582: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3583: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3587: run_cmd nettest -6 -D -d ${NSA_DEV} -r ${NSA_LINKIP6} ^------------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -D -d ${NSA_DEV} -r "${NSA_LINKIP6}" In fcnal-test.sh line 3595: wait_local_port_listen ${NSA} 12345 udp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 udp In fcnal-test.sh line 3637: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -b In fcnal-test.sh line 3638: log_test_addr ${a} $? 0 "Raw socket bind to local address" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address" In fcnal-test.sh line 3641: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 3642: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 3683: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${VRF} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${VRF} -b In fcnal-test.sh line 3684: log_test_addr ${a} $? 0 "Raw socket bind to local address after vrf bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after vrf bind" In fcnal-test.sh line 3687: run_cmd nettest -6 -s -R -P ipv6-icmp -l ${a} -I ${NSA_DEV} -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -R -P ipv6-icmp -l "${a}" -I ${NSA_DEV} -b In fcnal-test.sh line 3688: log_test_addr ${a} $? 0 "Raw socket bind to local address after device bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "Raw socket bind to local address after device bind" In fcnal-test.sh line 3712: run_cmd nettest -6 -s -l ${a} -I ${VRF} -t1 -b ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s -l "${a}" -I ${VRF} -t1 -b In fcnal-test.sh line 3713: log_test_addr ${a} $? 0 "TCP socket bind to local address with VRF bind" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 0 "TCP socket bind to local address with VRF bind" In fcnal-test.sh line 3773: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3774: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3775: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3779: log_test_addr ${a} 0 0 "${desc}, global server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server" In fcnal-test.sh line 3787: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3788: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3789: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3793: log_test_addr ${a} 0 0 "${desc}, VRF server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server" In fcnal-test.sh line 3801: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 3802: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3803: run_cmd_nsb nettest ${varg} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -r "${a}" & In fcnal-test.sh line 3807: log_test_addr ${a} 0 0 "${desc}, enslaved device server" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, enslaved device server" In fcnal-test.sh line 3816: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 3817: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 3818: run_cmd nettest ${varg} -d ${VRF} -r ${NSB_IP6} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r ${NSB_IP6} & In fcnal-test.sh line 3827: run_cmd_nsb nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest "${varg}" -s & In fcnal-test.sh line 3828: wait_local_port_listen ${NSB} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" 12345 tcp In fcnal-test.sh line 3829: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${NSB_IP6} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${NSB_IP6} & In fcnal-test.sh line 3844: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3845: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3846: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 3850: log_test_addr ${a} 0 0 "${desc}, global server, VRF client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, global server, VRF client" In fcnal-test.sh line 3858: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3859: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3860: run_cmd nettest ${varg} -d ${VRF} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${VRF} -r "${a}" & In fcnal-test.sh line 3864: log_test_addr ${a} 0 0 "${desc}, VRF server and client" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" 0 0 "${desc}, VRF server and client" In fcnal-test.sh line 3871: run_cmd nettest ${varg} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -s & In fcnal-test.sh line 3872: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3873: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3882: run_cmd nettest ${varg} -I ${VRF} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${VRF} -s & In fcnal-test.sh line 3883: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3884: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3893: run_cmd nettest ${varg} -I ${NSA_DEV} -s & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -I ${NSA_DEV} -s & In fcnal-test.sh line 3894: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3895: run_cmd nettest ${varg} -d ${NSA_DEV} -r ${a} & ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest "${varg}" -d ${NSA_DEV} -r ${a} & In fcnal-test.sh line 3909: run_cmd_nsb ${ping6} -f ${a} & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -f ${a} & In fcnal-test.sh line 3918: run_cmd ${ping6} -f ${NSB_IP6} -I ${VRF} & ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -f ${NSB_IP6} -I ${VRF} & In fcnal-test.sh line 3953: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3954: run_cmd_nsb nettest -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -r "${a}" In fcnal-test.sh line 3955: log_test_addr ${a} $? 1 "Global server, reject with TCP-reset on Rx" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, reject with TCP-reset on Rx" In fcnal-test.sh line 3971: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 3972: run_cmd_nsb nettest ${arg} -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest ${arg} -r "${a}" In fcnal-test.sh line 3973: log_test_addr ${a} $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" In fcnal-test.sh line 4010: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 4011: run_cmd_nsb nettest -6 -r ${a} ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 -r "${a}" In fcnal-test.sh line 4012: log_test_addr ${a} $? 1 "Global server, reject with TCP-reset on Rx" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global server, reject with TCP-reset on Rx" In fcnal-test.sh line 4027: run_cmd nettest -6 -s ${arg} & ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd nettest -6 -s "${arg}" & In fcnal-test.sh line 4028: wait_local_port_listen ${NSA} 12345 tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSA}" 12345 tcp In fcnal-test.sh line 4029: run_cmd_nsb nettest -6 ${arg} -r ${a} ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb nettest -6 "${arg}" -r "${a}" In fcnal-test.sh line 4030: log_test_addr ${a} $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" ^--^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: log_test_addr "${a}" $? 1 "Global ${stype} server, Rx reject icmp-port-unreach" In fcnal-test.sh line 4089: run_cmd ${ping6} -c1 -w1 -I br0 ${NSB_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0 ${NSB_IP6} In fcnal-test.sh line 4097: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 4101: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 4107: run_cmd ${ping6} -c1 -w1 -I br0 ${NSB_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0 ${NSB_IP6} In fcnal-test.sh line 4115: run_cmd_nsb ${ping6} -c1 -w1 ${NSA_IP6} ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 ${NSA_IP6} In fcnal-test.sh line 4138: run_cmd ${ping6} -c1 -w1 -I br0.100 2001:db8:101::2 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0.100 2001:db8:101::2 In fcnal-test.sh line 4146: run_cmd_nsb ${ping6} -c1 -w1 2001:db8:101::1 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 2001:db8:101::1 In fcnal-test.sh line 4150: if [ $? -eq 0 ]; then ^-- SC2181 (style): Check exit code directly with e.g. 'if mycmd;', not indirectly with $?. In fcnal-test.sh line 4156: run_cmd ${ping6} -c1 -w1 -I br0.100 2001:db8:101::2 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd "${ping6}" -c1 -w1 -I br0.100 2001:db8:101::2 In fcnal-test.sh line 4164: run_cmd_nsb ${ping6} -c1 -w1 2001:db8:101::1 ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: run_cmd_nsb "${ping6}" -c1 -w1 2001:db8:101::1 In fcnal-test.sh line 4224: wait_local_port_listen ${NSB} ${port} tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" ${port} tcp In fcnal-test.sh line 4229: wait_local_port_listen ${NSB} ${port} tcp ^----^ SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: wait_local_port_listen "${NSB}" ${port} tcp For more information: https://www.shellcheck.net/wiki/SC2034 -- NSC_LINKIP6 appears unused. Verif... https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent... https://www.shellcheck.net/wiki/SC2166 -- Prefer [ p ] && [ q ] as [ p -a q...