blob: bae0886b51dcf08497661965e6dbd32001237fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "1 VLAN, link down"
setup
iface=$(ctdb_get_1_interface)
ethtool_interfaces_down "$iface"
# This just exercises the VLAN checking code, which will allow us to
# determine that real0 is not a bond.
realiface="real0"
ip link add link "$realiface" name "$iface" type vlan id 11
ip link set "${iface}@${realiface}" up
required_result 1 "ERROR: No link on the public network interface ${iface}"
simple_test
|