7 lines
102 B
Bash
7 lines
102 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -e
|
||
|
|
set -x
|
||
|
|
iwconfig wlan0 essid MOBILE
|
||
|
|
sleep 2
|
||
|
|
udhcpc -nfqi wlan0
|
||
|
|
vpnc ~nico/ethz/vpn/pc
|