diff options
author | brooks <brooks@FreeBSD.org> | 2008-04-25 23:50:49 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2008-04-25 23:50:49 +0000 |
commit | 5c95bbcacbc4cac6e930e149471bee3ff2d97f46 (patch) | |
tree | 5e83fa1a69001b0e0d8e11583f1297809f2c82d6 /share | |
parent | 18b082dc884f7777e44d186f6dc1a605b48654f0 (diff) | |
download | FreeBSD-src-5c95bbcacbc4cac6e930e149471bee3ff2d97f46.zip FreeBSD-src-5c95bbcacbc4cac6e930e149471bee3ff2d97f46.tar.gz |
Replace the prototype vaps_<ifn> and vap_create_<ifn> variables with
more wlans_<ifn> and create_args_<ifn>
Add documentation for these variants and generally update the wireless
device example.
There is are very short lived shim from vaps_<ifn> which produces
a warning and vap_create_<ifn> which does not. Misuse the MFC
notification service to remind me to remove them.
MFC after: 3 weeks
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man5/rc.conf.5 | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/share/man/man5/rc.conf.5 b/share/man/man5/rc.conf.5 index 7727fc9..cf291a5 100644 --- a/share/man/man5/rc.conf.5 +++ b/share/man/man5/rc.conf.5 @@ -1146,6 +1146,26 @@ and .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n variables. .Pp +If a +.Va wlans_ Ns Aq Ar interface +variable is set, +an +.Xr wlan 4 +interface will be created for each item in the list with the +.Ar wlandev +argument set to +.Ar interface . +Further wlan cloning arguments may be passed to the +.Xr ifconfig 8 +.Cm create +command by setting the +.Va create_args_ Ns Aq Ar interface +variable. +One or more +.Xr wlan 4 +devices must be created for each wireless devices as of +.Fx 8.0 . +.Pp If the .Va ifconfig_ Ns Aq Ar interface contains the keyword @@ -1184,12 +1204,14 @@ Finally, you can add options in this variable, in addition to the .Pa /etc/start_if. Ns Aq Ar interface file. -For instance, to initialize the -.Li wi0 -device via DHCP, using WPA authentication and 802.11b mode, it is +For instance, configure an +.Xr ath 4 +wireless device in station mode with an address obtained +via DHCP, using WPA authentication and 802.11b mode, it is possible to use something like: .Bd -literal -ifconfig_wi0="DHCP WPA mode 11b" +wlans_ath0="wlan0" +ifconfig_wlan0="DHCP WPA mode 11b" .Ed .Pp In addition to the |