summaryrefslogtreecommitdiff
path: root/ctdb/tests/UNIT/eventscripts/10.interface.020.sh
blob: 89e6c9ae2519424a6ee54a790f1a3c0fc4d382f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

. "${TEST_SCRIPTS_DIR}/unit.sh"

define_test "Release 1 IP, 10 connections killed OK, use ss -K"

setup

setup_script_options <<EOF
CTDB_KILLTCP_USE_SS_KILL="yes"
EOF

ctdb_get_1_public_address |
	while read -r dev ip bits; do
		ok_null
		simple_test_event "takeip" "$dev" "$ip" "$bits"

		count=10
		setup_tcp_connections $count \
			"$ip" 445 10.254.254.0 12300

		ok <<EOF
Killed ${count}/${count} TCP connections to released IP ${ip}, using ss -K
EOF

		simple_test_event "releaseip" "$dev" "$ip" "$bits"
	done