blob: 6a3a3b54cd63daed0ccbee4c9eb7d53d9bb0dd26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
#
# Wifi initializer
#
#DEVICE="ath0"
DEVICE="wlan0"
if [ ! -z "$1" ]; then
read -sp "Enter the WPA passphrase: " PASS
echo ""
wpa_passphrase $1 $PASS
elif [ -f "wpa_supplicant.conf" ]; then
sudo wpa_supplicant -B -Dwext -i$DEVICE -cwpa_supplicant.conf
sudo dhclient $DEVICE
fi
|