I've finally had some free time to actually implement this tutorial, but I've run into a setback.
Security: Personal WPA2 AES.
BSSID PWR RXQ Beacons #Data #/s CH MB ENC CIPHER AUTH ESSID
mac 47 85 149 0 0 11 48 WPA2 CCMP PSK pillBOXhat
Note: I disabled mac filtering
Specs:
-IBM T21 (yes, OLD)
-Router LINKSYS WRT54GS (literally, it's right next to me so I wonder why the PWR is @ 47)
-Proxim 8470-FC ORiNOCO 802.11b/g PC Card Gold
-BT2 Final
Created a wpa_supplicant.conf file in /etc
Code:
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
ap_scan=1
network={
ssid="pillBOXhat"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="easypass"
}
Deleted everything in /etc/dhcpc folder
Code:
bt ~ # wlanconfig ath0 destroy
bt ~ # wlanconfig ath0 create wlandev wifi0 wlanmode managed
ath0
bt ~ # ifconfig ath0 up
bt ~ # chmod 755 /etc/wpa_supplicant.conf
bt ~ # wpa_supplicant -w -Dwext -iath0 -c/etc/wpa_supplicant.conf
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
No network configuration found for the current AP
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Trying to associate with MAC (SSID='pillBOXhat' freq=2462 MHz)
Associated with MAC
WPA: Key negotiation completed with MAC [PTK=CCMP GTK=CCMP]
CTRL-EVENT-CONNECTED - Connection to MAC completed (auth) [id=0 id_str=]
New shell:
bt ~ # dhcpcd ath0
Soon after this I get the following:
Code:
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
No network configuration found for the current AP
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Trying to associate with MAC (SSID='pillBOXhat' freq=2462 MHz)
Associated with MAC
WPA: Key negotiation completed with MAC [PTK=CCMP GTK=CCMP]
CTRL-EVENT-CONNECTED - Connection to MAC completed (auth) [id=0 id_str=]
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
12_packet_receive - recvfrom: Network is down
ioctl[SIOCSIWSCAN]: Network is down
Failed to initiate AP scan
Trying to associate with MAC (SSID='pillBOXhat' freq=2462 MHz)
Authentication with 00:00:00:00:00:00 timed out.
ioctl[SIOCSIWSCAN]: Network is down
Failed to initiate AP scan
Trying to associate with MAC (SSID='pillBOXhat' freq=2462 MHz)
Any help is greatly appreciated.