mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
3d8fa9e9e3
Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit 31216fd48117526c943e42d137ce24ef89fa0009)
79 lines
1.8 KiB
Bash
Executable File
79 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify that it is possible to SSH to a public address after disabling a node.
|
|
|
|
We SSH to a public IP and check the hostname, disable the node hosting
|
|
it and then SSH again to confirm that the hostname has changed.
|
|
|
|
Prerequisites:
|
|
|
|
* An active CTDB cluster with at least 2 nodes with public addresses.
|
|
|
|
* Test must be run on a real or virtual cluster rather than against
|
|
local daemons.
|
|
|
|
* Test must not be run from a cluster node.
|
|
|
|
Steps:
|
|
|
|
1. Verify that the cluster is healthy.
|
|
2. Select a public address and its corresponding node.
|
|
3. SSH to the selected public address and run hostname.
|
|
4. Disable the selected node.
|
|
5. SSH to the selected public address again and run hostname.
|
|
|
|
Expected results:
|
|
|
|
* When a node is disabled the public address fails over and it is
|
|
still possible to SSH to the node. The hostname should change.
|
|
EOF
|
|
}
|
|
|
|
. ctdb_test_functions.bash
|
|
|
|
set -e
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
ctdb_test_check_real_cluster
|
|
|
|
cluster_is_healthy
|
|
|
|
# Reset configuration
|
|
ctdb_restart_when_done
|
|
|
|
select_test_node_and_ips
|
|
|
|
echo "Removing ${test_ip} from the local ARP table..."
|
|
arp -d $test_ip >/dev/null 2>&1 || true
|
|
|
|
echo "SSHing to ${test_ip} and running hostname..."
|
|
original_hostname=$(ssh -o "StrictHostKeyChecking no" $test_ip hostname)
|
|
[ $? -eq 0 ]
|
|
|
|
echo "Hostname is: ${original_hostname}"
|
|
|
|
gratarp_sniff_start
|
|
|
|
echo "Disabling node $test_node"
|
|
try_command_on_node 1 $CTDB disable -n $test_node
|
|
wait_until_node_has_status $test_node disabled
|
|
|
|
gratarp_sniff_wait_show
|
|
|
|
echo "SSHing to ${test_ip} and running hostname (again)..."
|
|
new_hostname=$(ssh -o "StrictHostKeyChecking no" $test_ip hostname)
|
|
[ $? -eq 0 ]
|
|
|
|
echo "Hostname is: ${new_hostname}"
|
|
|
|
if [ "$original_hostname" != "$new_hostname" ] ; then
|
|
echo "GOOD: hostname changed"
|
|
else
|
|
echo "BAD: hostname did not change"
|
|
testfailures=1
|
|
fi
|