2007-04-05 16:48:42 +05:30
|
|
|
# Copyright 2004-2007 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
tuntap_depend() {
|
|
|
|
before bridge interface macchanger
|
|
|
|
}
|
|
|
|
|
|
|
|
_config_vars="$_config_vars tunctl"
|
|
|
|
|
|
|
|
_is_tuntap() {
|
|
|
|
[ -n "$(get_options tuntap "${SVCNAME}")" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
tuntap_pre_start() {
|
|
|
|
local tuntap=
|
|
|
|
eval tuntap=\$tuntap_${IFVAR}
|
|
|
|
|
|
|
|
[ -z "${tuntap}" ] && return 0
|
|
|
|
|
2007-10-03 19:05:39 +05:30
|
|
|
if [ ! -e /dev/net/tun ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
modprobe tun && sleep 1
|
2007-10-03 19:05:39 +05:30
|
|
|
if [ ! -e /dev/net/tun ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
eerror "TUN/TAP support is not present in this kernel"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
ebegin "Creating Tun/Tap interface ${IFACE}"
|
|
|
|
|
|
|
|
# Set the base metric to 1000
|
|
|
|
metric=1000
|
2007-10-03 19:05:39 +05:30
|
|
|
|
|
|
|
if type tunctl >/dev/null 2>&1; then
|
2007-04-05 16:48:42 +05:30
|
|
|
local opts=
|
|
|
|
eval opts=\$tunctl_${IFVAR}
|
|
|
|
tunctl ${opts} -t "${IFACE}" >/dev/null
|
2007-10-03 19:05:39 +05:30
|
|
|
else
|
|
|
|
openvpn --mktun --dev-type "${tuntap}" --dev "${IFACE}" >/dev/null
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2007-04-10 16:03:44 +05:30
|
|
|
eend $? && _up && save_options tuntap "${tuntap}"
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
tuntap_post_stop() {
|
|
|
|
_is_tuntap || return 0
|
|
|
|
|
|
|
|
ebegin "Destroying Tun/Tap interface ${IFACE}"
|
2007-10-03 19:05:39 +05:30
|
|
|
if type tunctl >/dev/null 2>&1; then
|
|
|
|
tunctl -d "${IFACE}" >/dev/null
|
|
|
|
else
|
2007-04-05 16:48:42 +05:30
|
|
|
openvpn --rmtun \
|
|
|
|
--dev-type "$(get_options tuntap)" \
|
2007-10-03 19:05:39 +05:30
|
|
|
--dev "${IFACE}" >/dev/null
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: set ts=4 :
|