summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-08-11 21:38:50 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-08-11 21:38:50 +0000
commit4b5488ebfa23f854fc087a6ae64962905683be7f (patch)
treedc6bf08298a56a53a3a92e677dff3cf8191fc042 /docs
parent43e28bf153d4545e76e044c4c09fb1356a9bb2fb (diff)
downloadmaster-31e0f0ae-4b5488ebfa23f854fc087a6ae64962905683be7f.tar.gz
master-31e0f0ae-4b5488ebfa23f854fc087a6ae64962905683be7f.tar.bz2
master-31e0f0ae-4b5488ebfa23f854fc087a6ae64962905683be7f.zip
Add 802.1x client configuration support and corresponding documentation (#2069)
SVN-Revision: 12283
Diffstat (limited to 'docs')
-rw-r--r--docs/wireless.tex33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/wireless.tex b/docs/wireless.tex
index de764a3128..6750233850 100644
--- a/docs/wireless.tex
+++ b/docs/wireless.tex
@@ -272,6 +272,39 @@ config wifi-iface
option key "<psk for WDS>"
\end{Verbatim}
+\paragraph{802.1x configurations}
+
+OpenWrt supports both 802.1x client and Access Point
+configurations. 802.1x client is only working with
+Atheros or mac80211 drivers. Configuration only
+supports EAP types TLS, TTLS or PEAP.
+
+\subparagraph{EAP-TLS}
+
+\begin{Verbatim}
+config wifi-iface
+ option device "ath0"
+ option network lan
+ option ssid OpenWrt
+ option eap_type tls
+ option ca_cert "/etc/config/certs/ca.crt"
+ option priv_key "/etc/config/certs/priv.crt"
+ option priv_key_pwd "PKCS#12 passphrase"
+\end{Verbatim}
+
+\subparagraph{EAP-PEAP}
+
+\begin{Verbatim}
+config wifi-iface
+ option device "ath0"
+ option network lan
+ option ssid OpenWrt
+ option eap_type peap
+ option ca_cert "/etc/config/certs/ca.crt"
+ option auth MSCHAPV2
+ option identity username
+ option password password
+\end{Verbatim}
\paragraph{Limitations:}