mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
09e9dd576d
Thanks to Metze for the hint that all file servers already listen on 2 addressess -- V4 and V6 :-) Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Nov 10 08:23:14 UTC 2022 on sn-devel-184
33 lines
877 B
Bash
Executable File
33 lines
877 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Blackbox test for the server addresses parameter
|
|
#
|
|
|
|
incdir=$(dirname $0)/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
failed=0
|
|
|
|
testit_grep_count \
|
|
"[only_ipv6] invisible over ipv4" "netname: only_ipv6" 0 \
|
|
bin/rpcclient "$SERVER_IP" -U% -c netshareenumall ||
|
|
failed=$(expr "$failed" + 1)
|
|
|
|
testit_grep_count \
|
|
"[only_ipv6] visible over ipv6" "netname: only_ipv6" 1 \
|
|
bin/rpcclient "$SERVER_IPV6" -U% -c netshareenumall ||
|
|
failed=$(expr "$failed" + 1)
|
|
|
|
testit_expect_failure_grep \
|
|
"[only_ipv6] inaccessible over ipv4" \
|
|
"tree connect failed: NT_STATUS_BAD_NETWORK_NAME" \
|
|
bin/smbclient //"$SERVER_IP"/only_ipv6 -U% -c quit ||
|
|
failed=$(expr "$failed" + 1)
|
|
|
|
testit \
|
|
"[only_ipv6] accessible over ipv6" \
|
|
bin/smbclient //"$SERVER_IPV6"/only_ipv6 -U% -c quit ||
|
|
failed=$(expr "$failed" + 1)
|
|
|
|
testok $0 $failed
|