nsbin/eth/wlan-vpn.sh
Nico Schottelius b99e5f9c7a alot of smaller changes
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-08-14 14:04:06 +02:00

31 lines
602 B
Bash
Executable file

#!/bin/sh -e
# Nico Schottelius, 20080910 11:09
# The initial version
#
# udhcpc -nfqi wlan0 && vpnc ~nico/ethz/vpn/pc.conf
#
# Failed due to many reasons. See the working hack/version below.
#
#
#ip link set wlan0 down
#iwconfig wlan0 essid public
#ip link set wlan0 up
#iwconfig wlan0 essid public
set -x
ip l s eth0 down
( wpa_cli terminate; exit 0 )
( rmmod iwlagn; modprobe iwlagn; sleep 2 )
wpa_supplicant -B -Dwext -iwlan0 -c ~nico/ethz/wlan/wpa_supplicant.conf
sleep 5
udhcpc -nqfi wlan0
vpnc ~nico/ethz/vpn/pc.conf
#vpnc ~nico/firmen/ethz/vpn/vpnc.conf
# vpnc-disconnect
#!/bin/sh