View previous topic :: View next topic |
Author |
Message |
replazer n00b

Joined: 15 Oct 2008 Posts: 51
|
Posted: Sat Jan 03, 2009 9:19 am Post subject: pre-shared wep key - wpa_supplicant.conf |
|
|
Hi!
Is it possible to add a wireless network with a WEP pre-shared passphrase in wpa_supplicant.conf ???
I`m only able to add a network with hex keys like this :
Code: | network={
ssid="MySSID"
scan_ssid=1
priority=1
key_mgmt=NONE
wep_key0=1234abcdef
wep_tx_keyidx=0
}
|
I want something like this :
Code: | network={
ssid="MySSID"
scan_ssid=1
priority=1
key_mgmt=NONE
wep_key0=passphraseNOThex
wep_tx_keyidx=0
}
|
|
|
Back to top |
|
 |
Stolz Moderator


Joined: 19 Oct 2003 Posts: 3028 Location: Hong Kong
|
Posted: Mon Jan 05, 2009 11:01 am Post subject: |
|
|
Try with Code: | wep_key0="passphraseNOThex" |
Note the quotation marks. |
|
Back to top |
|
 |
|