aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2011-02-20 17:54:49 +0000
committerWarner Losh <imp@FreeBSD.org>2011-02-20 17:54:49 +0000
commit4b30d590628615e5f437eb4193d6064babfdaa5e (patch)
treed6457dfb276f964eccd46ed3476df8687df3b509
parent553870e83b88ce9376a61c273019a3df833f5dbc (diff)
downloadsrc-4b30d590628615e5f437eb4193d6064babfdaa5e.tar.gz
src-4b30d590628615e5f437eb4193d6064babfdaa5e.zip
Add notes about ASCII/Hex WEP keys
Notes
Notes: svn path=/head/; revision=218892
-rw-r--r--usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.513
1 files changed, 13 insertions, 0 deletions
diff --git a/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 b/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5
index 0b29c14c559d..d37847e6c2ce 100644
--- a/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5
+++ b/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5
@@ -424,6 +424,16 @@ Enable/disable EAP workarounds for various interoperability issues
with misbehaving authentication servers.
By default these workarounds are enabled.
Strict EAP conformance can be configured by setting this to 0.
+.It Va wep_tx_keyidx
+which key to use for transmission of packets.
+.It Va wep_keyN key
+An
+.Tn ASCII
+string enclosed in quotation marks to encode the WEP key.
+Without quotes this is a hex string of the actual key.
+WEP is considered insecure and should be avoided.
+The exact translation from an ASCII key to a hex key varies.
+Use hex keys where possible.
.El
.Sh CERTIFICATES
Some EAP authentication methods require use of certificates.
@@ -540,7 +550,10 @@ network={
scan_ssid=1
key_mgmt=NONE
wep_tx_keyidx=0
+ # hex keys denoted without quotes
wep_key0=42FEEDDEAFBABEDEAFBEEFAA55
+ # ASCII keys denoted with quotes.
+ wep_key1="FreeBSDr0cks!"
}
.Ed
.Sh SEE ALSO