2008-11-28 11:44:14 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
# Nico Schottelius, 20080910 11:09
|
2009-04-17 18:09:01 +00:00
|
|
|
# The initial version
|
|
|
|
#
|
|
|
|
# udhcpc -nfqi wlan0 && vpnc ~nico/ethz/vpn/pc.conf
|
|
|
|
#
|
|
|
|
# Failed due to many reasons. See the working hack/version below.
|
|
|
|
#
|
|
|
|
#
|
2009-01-30 11:28:47 +00:00
|
|
|
#ip link set wlan0 down
|
|
|
|
#iwconfig wlan0 essid public
|
|
|
|
#ip link set wlan0 up
|
|
|
|
#iwconfig wlan0 essid public
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2010-07-12 20:47:21 +00:00
|
|
|
#ip l s eth0 down
|
2010-04-15 10:21:43 +00:00
|
|
|
( wpa_cli terminate || exit 0 )
|
2009-08-14 12:04:06 +00:00
|
|
|
|
2010-04-15 10:21:43 +00:00
|
|
|
# ( rmmod iwlagn; modprobe iwlagn; sleep 2 )
|
2009-08-14 12:04:06 +00:00
|
|
|
|
2009-01-30 11:28:47 +00:00
|
|
|
wpa_supplicant -B -Dwext -iwlan0 -c ~nico/ethz/wlan/wpa_supplicant.conf
|
|
|
|
sleep 5
|
2010-04-15 10:21:43 +00:00
|
|
|
( udhcpc -nqfi wlan0 || dhcpcd wlan0 )
|
2009-12-28 19:13:41 +00:00
|
|
|
vpnc ~nico/ethz/vpn/sg.conf
|
2009-01-30 11:28:47 +00:00
|
|
|
|
|
|
|
#vpnc ~nico/firmen/ethz/vpn/vpnc.conf
|
|
|
|
# vpnc-disconnect
|
2009-04-17 18:09:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|