View Single Post
Posts: 37 | Thanked: 52 times | Joined on Aug 2005 @ Bremen, Germany
#27
i worte a little script that automatically connects the tunnel based on the essid of the wlan.

Code:
#!/bin/sh
iw=`iwconfig wlan0 | grep -rc Uni-Bremen`
if [ $iw = 1 ]; then
        pon uni
        route del default
        route add default ppp0
fi
put this in /etc/network/if-up.d/vpn, change the "Uni-Bremen" to your ESSID and make it executable with chmod +x /etc/network/if-up.d/vpn .
the downside is, that this script is executed everytime a networkinterface goes up. would be nicer if this only gets executed if you are in this network... but it gets the job done