1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/ctdb/tests/eventscripts/13.per_ip_routing.023.sh
Martin Schwenke 0ca1cfcf61 ctdb-tests: 13.per_ip_routing event script setup modularisation
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
2018-03-28 02:57:19 +02:00

26 lines
698 B
Bash
Executable File

#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "1 IP configured, broken configuration, takeip"
setup
# Configuration for 1 IP
create_policy_routing_config 1 default
# takeip should add routes for the given address
ctdb_get_1_public_address |
while read dev ip bits ; do
# Now add configuration breakage by changing default route into a
# link local route with a gateway
net=$(ipv4_host_addr_to_net "$ip" "$bits")
sed -i -e "s@0\.0\.0\.0/0@${net}@" "$CTDB_PER_IP_ROUTING_CONF"
ok <<EOF
RTNETLINK answers: File exists
add_routing_for_ip: failed to add route: ${net} via ${net%.*}.254 dev ${dev} table ctdb.${ip}
EOF
simple_test_event "takeip" $dev $ip $bits
done