oobleck
Group: Members
Posts: 3
Joined: Jan. 2008 |
|
Posted: Feb. 08 2008,22:35 |
|
After plenty of trial and error (mostly error) I had wireless networking running nicely under DSL. Then as a security measure I disabled the SSID broadcast on my wireless router, which caused the network to fail. Specfically, the "pump -i wlan0" gives a result of "operation failed". Here's the script that starts the networking:
Code Sample | sudo modprobe ndiswrapper sleep 2 sudo /usr/sbin/wpa_supplicant -B -dd -c /opt/wpa.conf -i wlan0 -D ndiswrapper sleep 5 sudo iwconfig wlan0 essid <ssid> sleep 2 sudo pump -i wlan0 |
Here's the WPA config file:
Code Sample | network={ ssid="<ssid>" psk="*****" }
|
Everything appears to be OK until the "pump" command. Since I'm specifying the SSID in the WPA config file and the iwconfig command it seems like the SSID broadcast shouldn't be needed. So am I missing something simple here? (In case it's not obvious, I'm new to both linux and networking.)
-- oobleck
|