summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-01-04 01:29:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-01-04 01:29:01 +0000
commitc15d0725419aa4c3c23d792542923c6b7c0efb5f (patch)
treea6afcdcb69595dbd8328d9f67ea5ce01b8fc30a3 /docs
parent80c5a55e3eedb9607fab22f850b32d0c75941b6f (diff)
downloadmaster-31e0f0ae-c15d0725419aa4c3c23d792542923c6b7c0efb5f.tar.gz
master-31e0f0ae-c15d0725419aa4c3c23d792542923c6b7c0efb5f.tar.bz2
master-31e0f0ae-c15d0725419aa4c3c23d792542923c6b7c0efb5f.zip
fix b/g mode selection for madwifi, update documentation
SVN-Revision: 5973
Diffstat (limited to 'docs')
-rw-r--r--docs/wireless.tex37
1 files changed, 33 insertions, 4 deletions
diff --git a/docs/wireless.tex b/docs/wireless.tex
index 94d74f4fae..6b3ffbac7a 100644
--- a/docs/wireless.tex
+++ b/docs/wireless.tex
@@ -1,7 +1,9 @@
The WiFi settings are configured in the file \texttt{/etc/config/wireless}
-(currently supported on Broadcom only). When booting the router for the first time
+(currently supported on Broadcom and Atheros). When booting the router for the first time
it should detect your card and create a sample configuration that looks like this:
+\paragraph{Sample Broadcom wireless config:}
+
\begin{Verbatim}
config wifi-device "wl0"
option type "broadcom"
@@ -15,6 +17,22 @@ config wifi-iface
option encryption "none"
\end{Verbatim}
+\paragraph{Sample Atheros wireless config:}
+
+\begin{Verbatim}
+config wifi-device "wifi0"
+ option type "atheros"
+ option channel "5"
+ option mode "11g"
+
+config wifi-iface
+ option device "wifi0"
+ option mode "ap"
+ option ssid "OpenWrt"
+ option hidden "0"
+ option encryption "none"
+\end{Verbatim}
+
There are two types of config sections in this file. The '\texttt{wifi-device}' refers to
the physical wifi interface and '\texttt{wifi-iface}' configures a virtual interface on top
of that (if supported by the driver).
@@ -24,12 +42,15 @@ of that (if supported by the driver).
\begin{itemize}
\item \texttt{type} \\
The driver to use for this interface.
+
+ \item \texttt{mode} \\
+ The frequency band (\texttt{b}, \texttt{g}, \texttt{bg}, \texttt{a})
\item \texttt{country} \\
The country code used to determine the regulatory settings.
\item \texttt{channel} \\
- The wifi channel (1-14, depending on your country setting).
+ The wifi channel (e.g. 1-14, depending on your country setting).
\item \texttt{maxassoc} \\
Maximum number of associated clients
@@ -56,6 +77,7 @@ of that (if supported by the driver).
WDS point-to-point link
\end{itemize}
+
\item \texttt{network} \\
Selects the interface section from \texttt{/etc/config/network} to be
used with this interface
@@ -85,10 +107,10 @@ of that (if supported by the driver).
\paragraph{Limitations:}
+Only the following mode combinations are supported:
+
\begin{itemize}
\item \textbf{Broadcom}: \\
- Only the following mode combinations are supported:
-
\begin{itemize}
\item 1x \texttt{sta}, 0-3x \texttt{ap}
\item 1-4x \texttt{ap}
@@ -98,6 +120,13 @@ of that (if supported by the driver).
WDS links can only be used in pure AP mode and can't use WEP (except when sharing the
settings with the master interface, which is done automatically).
+ \item \textbf{Atheros}: \\
+ \begin{itemize}
+ \item 1x \texttt{sta}, 0-4x \texttt{ap}
+ \item 1-4x \texttt{ap}
+ \item 1x \texttt{adhoc}
+ \end{itemize}
+
\end{itemize}