summaryrefslogtreecommitdiffstats
path: root/src/connections/vlan
blob: 7b81e7fa7a870177b000c884dda04ed75020a451 (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
#! /bin/bash
. /usr/lib/network/network

vlan_up() {
    local vlan_interface
    load_profile "$1"

    if [ -e /sys/class/net/$INTERFACE ]; then
        report_fail "Interface $INTERFACE already exists."
        exit 1
    else
        ip link set $VLAN_PHYS_DEV up
        ip link add link $VLAN_PHYS_DEV name $INTERFACE type vlan id $VLAN_ID >/dev/null 2>&1
    fi
    bring_interface up "$INTERFACE"
    "$CONN_DIR/ethernet" up "$1"
    return 0
}

vlan_down() {
    local vlan_interface
    load_profile "$1"

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

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

vlan_$1 "$2"
exit $?
# vim: set ts=4 et sw=4: