You are not logged in.
Pages: 1
I'm doing something really stupid but as I don't know much about linux - let along wireless linux - I just know I'm doing something INSANELY stupid.
I finally got my wireless working thanks to chrismortimore and tardo But it's working with its front door wide open. I want to secure it with WPA-PSK.
I've got a Netgear DG834GT ADSL Modem Router. I'm manually configuring it and it gives me the following four security options:
1. Disable
2. WEP (Wired Equivalent Privacy)
3. WPA-PSK (Wi-Fi Protected Access Pre-Shared Key)
4. WPA-802.1x
I've been using it on 1. for a couple of days now without any problems. However, I switched it to 3. (WPA-PSK) and it asked me for a 8-63 digit Network Key. I set it with 4rchL1nuxR0ck5.
I then altered my /etc/conf.d/wireless from:
wlan_eth2="eth2 essid ShagNet"
which I know works to:
wlan_eth2="eth2 essid ShagNet key s:4chL1nuxR0ck5"
I rebooted but it didn't work. I couldn't get any web pages to load in Konqueror.
Can someone please tell me what I'm doing wrong?
Offline
for wpa you need the wpa_supplicant. install it and then edit and USE your network-profile (/etc/network-profiles/...) like this:
# Wireless Settings (optional)
ESSID=ShagNet
#KEY=
IWOPTS="mode managed essid $ESSID channel ?"
...
USEWPA="yes" # start wpa_supplicant with the profile
...
AUTOWPA="yes" # automatically configure WPA
PASSKEY="4rchL1nuxR0ck5" # wpa passkey/phrase. for use with AUTOWPA
...
for this your rc.conf must look like this:
...
INTERFACES=(lo !eth0 !foo)
...
NET_PROFILES=(menu)
...
hope that this will help you...
mfg iggy
sorry for my bad english
Offline
wow, I didn't know about AUTOWPA.
That should be advertised a little more
Offline
Thanks iggy. I've got it working now.
Offline
If you want something a little more point and click, take a look at knetworkmanager.
Unthinking respect for authority is the greatest enemy of truth.
-Albert Einstein
Offline
wow, I didn't know about AUTOWPA.
That should be advertised a little more
yeah, i saw it a week ago while making a new profile! sometimes it is good to check the initscript-updates.
sorry for my bad english
Offline
Pages: 1