summaryrefslogtreecommitdiffstats
path: root/src/connections/vlan
diff options
context:
space:
mode:
Diffstat (limited to 'src/connections/vlan')
-rw-r--r--src/connections/vlan28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/connections/vlan b/src/connections/vlan
deleted file mode 100644
index 75c7fa9..0000000
--- a/src/connections/vlan
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/bash
-. /usr/lib/network/network
-
-vlan_up() {
- load_profile "$1"
-
- if [[ -e "/sys/class/net/$INTERFACE" ]]; then
- report_fail "Interface $INTERFACE already exists."
- exit 1
- else
- bring_interface up "$VLAN_PHYS_DEV"
- ip link add link "$VLAN_PHYS_DEV" name "$INTERFACE" type vlan id "$VLAN_ID"
- fi
- "$CONN_DIR/ethernet" up "$1"
- return 0
-}
-
-vlan_down() {
- load_profile "$1"
-
- "$CONN_DIR/ethernet" down "$1"
- ip link delete "$INTERFACE"
- return 0
-}
-
-vlan_$1 "$2"
-exit $?
-# vim: set ts=4 et sw=4: