--- xml/htdocs/doc/en/handbook/hb-net-wireless.xml 2010/11/07 20:16:49 1.19 +++ xml/htdocs/doc/en/handbook/hb-net-wireless.xml 2011/08/14 16:12:13 1.20 @@ -4,7 +4,7 @@ - + @@ -12,8 +12,8 @@ Wireless configuration can be tricky. Hopefully we'll get you working! -9.1 -2010-11-07 +10 +2011-08-13
Introduction @@ -113,7 +113,7 @@
 # Prefer wpa_supplicant over wireless-tools
-modules=( "wpa_supplicant" )
+modules="wpa_supplicant"
 
 # It's important that we tell wpa_supplicant which driver we should
 # be using as it's not very good at guessing yet
@@ -259,7 +259,7 @@
 
 
 # Prefer iwconfig over wpa_supplicant
-modules=( "iwconfig" )
+modules="iwconfig"
 
 # Configure WEP keys for Access Points called ESSID1 and ESSID2
 # You may configure up to 4 WEP keys, but only 1 can be active at
@@ -278,7 +278,7 @@
 
 # Sometimes more than one Access Point is visible so we need to
 # define a preferred order to connect in
-preferred_aps=( "ESSID1" "ESSID2" )
+preferred_aps="'ESSID1' 'ESSID2'"
 
@@ -340,7 +340,7 @@
 # Sometimes you never want to connect to certain access points
-blacklist_aps=( "ESSID3" "ESSID4" )
+blacklist_aps="'ESSID3' 'ESSID4'"
 
 # If you have more than one wireless card, you can say if you want
 # to allow each card to associate with the same Access Point or not
@@ -500,24 +500,24 @@
 
 
 
-config_ESSID1=( "192.168.0.3/24 brd 192.168.0.255" )
-routes_ESSID1=( "default via 192.168.0.1" )
+config_ESSID1="192.168.0.3/24 brd 192.168.0.255"
+routes_ESSID1="default via 192.168.0.1"
 
-config_ESSID2=( "dhcp" )
-fallback_ESSID2=( "192.168.3.4/24" )
-fallback_route_ESSID2=( "default via 192.168.3.1" )
+config_ESSID2="dhcp"
+fallback_ESSID2="192.168.3.4/24"
+fallback_route_ESSID2="default via 192.168.3.1"
 
 # We can define nameservers and other things too
 # NOTE: DHCP will override these unless it's told not too
-dns_servers_ESSID1=( "192.168.0.1" "192.168.0.2" )
+dns_servers_ESSID1="192.168.0.1 192.168.0.2"
 dns_domain_ESSID1="some.domain"
 dns_search_domains_ESSID1="search.this.domain search.that.domain"
 
 # You override by the MAC address of the Access Point
 # This handy if you goto different locations that have the same ESSID
-config_001122334455=( "dhcp" )
+config_001122334455="dhcp"
 dhcpcd_001122334455="-t 10"
-dns_servers_001122334455=( "192.168.0.1" "192.168.0.2" )
+dns_servers_001122334455="192.168.0.1 192.168.0.2"