#!/sbin/runscript start() { ebegin "Bringing tap0 up" /usr/sbin/openvpn --mktun --dev tap0 ifconfig tap0 0.0.0.0 promisc eend $? } stop() { ebegin "Bringing tap0 down" ifconfig tap0 down eend $? }