blob: 6cefc5c08be117b7eac01bd4b7bf3c3834af5d31 (
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
|
#! /bin/bash
. /usr/lib/network/network
tunnel_up() {
load_profile "$1"
if [[ -e "/sys/class/net/$INTERFACE" ]]; then
report_fail "Interface $INTERFACE already exists."
exit 1
else
ip tunnel add "$INTERFACE" mode "$MODE" remote "$REMOTE"
fi
if [[ -n "$LOCAL" ]]; then
ip tunnel change "$INTERFACE" local "$LOCAL"
fi
"$CONN_DIR/ethernet" up "$1"
return 0
}
tunnel_down() {
load_profile "$1"
"$CONN_DIR/ethernet" down "$1"
ip tunnel del "$INTERFACE"
return 0
}
tunnel_$1 "$2"
exit $?
# vim: set ts=4 et sw=4:
|