From owner-svn-src-head@FreeBSD.ORG Sun Feb 20 17:54:49 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0A1B106566B; Sun, 20 Feb 2011 17:54:49 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F5A48FC12; Sun, 20 Feb 2011 17:54:49 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p1KHsnfN039912; Sun, 20 Feb 2011 17:54:49 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p1KHsnaW039910; Sun, 20 Feb 2011 17:54:49 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201102201754.p1KHsnaW039910@svn.freebsd.org> From: Warner Losh Date: Sun, 20 Feb 2011 17:54:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r218892 - head/usr.sbin/wpa/wpa_supplicant X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2011 17:54:49 -0000 Author: imp Date: Sun Feb 20 17:54:49 2011 New Revision: 218892 URL: http://svn.freebsd.org/changeset/base/218892 Log: Add notes about ASCII/Hex WEP keys Modified: head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 Modified: head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 ============================================================================== --- head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 Sun Feb 20 17:28:58 2011 (r218891) +++ head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 Sun Feb 20 17:54:49 2011 (r218892) @@ -424,6 +424,16 @@ Enable/disable EAP workarounds for vario 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