summaryrefslogtreecommitdiffstats
path: root/src/connections/bond
blob: 6ba463edae0cdb24f1d770c9df25e468df3fb32f (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /bin/bash
. /usr/lib/network/network
IFENSLAVE="/sbin/ifenslave"

bond_up() {
    load_profile "$1"

    if [ -e /sys/class/net/$INTERFACE ]; then
        report_fail "Interface $INTERFACE already exists."
        exit 1
    else
        ip link add dev $INTERFACE type bond
    fi
    bring_interface up "$INTERFACE"
    "$CONN_DIR/ethernet" up "$1"

    for slave in ${SLAVE_INTERFACES[@]}; do
        bring_interface up "$INTERFACE"
        $IFENSLAVE $INTERFACE $slave
    done

    return 0
}

bond_down() {
    load_profile "$1"

    for slave in ${SLAVE_INTERFACES[@]}; do
        $IFENSLAVE $INTERFACE -d $slave
    done

    "$CONN_DIR/ethernet" down "$1"
    bring_interface down "$INTERFACE"
    ip link delete $INTERFACE &>/dev/null
    return 0
}

bond_status() {
    if [ -e /sys/class/net/$INTERFACE ]; then
        return 0
    else
        return 1
    fi
}

bond_$1 "$2"
exit $?

# vim: set ts=4 et sw=4: