diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-07-13 19:47:30 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-07-13 19:47:30 +0200 |
commit | 6b626a4773a26b4275cd7be663a5d7547ea4cb11 (patch) | |
tree | 8b590d508f736525945c74ba26775cd177d6a8ab /examples | |
parent | 773aee9bd7bbee0b109f6e2fe4582580c03a3488 (diff) | |
download | netctl-6b626a4773a26b4275cd7be663a5d7547ea4cb11.tar.gz netctl-6b626a4773a26b4275cd7be663a5d7547ea4cb11.tar.xz |
wireless: Add support for hidden ssid
Diffstat (limited to 'examples')
-rw-r--r-- | examples/wireless-open | 2 | ||||
-rw-r--r-- | examples/wireless-wep | 2 | ||||
-rw-r--r-- | examples/wireless-wep-string-key | 2 | ||||
-rw-r--r-- | examples/wireless-wpa | 2 | ||||
-rw-r--r-- | examples/wireless-wpa-config | 2 | ||||
-rw-r--r-- | examples/wireless-wpa-static | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/examples/wireless-open b/examples/wireless-open index be7e9fc..db8d6ef 100644 --- a/examples/wireless-open +++ b/examples/wireless-open @@ -4,3 +4,5 @@ INTERFACE='wlan0' SECURITY='none' ESSID='MyNetwork' IP='dhcp' +# Uncomment this if your ssid is hidden +#HIDDEN=yes diff --git a/examples/wireless-wep b/examples/wireless-wep index c6c9cb3..d0eeaba 100644 --- a/examples/wireless-wep +++ b/examples/wireless-wep @@ -5,3 +5,5 @@ SECURITY='wep' ESSID='MyNetwork' KEY='1234567890' IP='dhcp' +# Uncomment this if your ssid is hidden +#HIDDEN=yes diff --git a/examples/wireless-wep-string-key b/examples/wireless-wep-string-key index 3d0b2c2..ebc4b0a 100644 --- a/examples/wireless-wep-string-key +++ b/examples/wireless-wep-string-key @@ -5,3 +5,5 @@ SECURITY='wep' ESSID='MyNetwork' KEY='s:Wireless Key' IP='dhcp' +# Uncomment this if your ssid is hidden +#HIDDEN=yes diff --git a/examples/wireless-wpa b/examples/wireless-wpa index f6b7eb4..20f5509 100644 --- a/examples/wireless-wpa +++ b/examples/wireless-wpa @@ -5,3 +5,5 @@ SECURITY='wpa' ESSID='MyNetwork' KEY='WirelessKey' IP='dhcp' +# Uncomment this if your ssid is hidden +#HIDDEN=yes diff --git a/examples/wireless-wpa-config b/examples/wireless-wpa-config index 864199f..955d845 100644 --- a/examples/wireless-wpa-config +++ b/examples/wireless-wpa-config @@ -4,3 +4,5 @@ INTERFACE='wlan0' SECURITY='wpa-config' WPA_CONF='/etc/wpa_supplicant.conf' IP='dhcp' +# Uncomment this if your ssid is hidden +#HIDDEN=yes diff --git a/examples/wireless-wpa-static b/examples/wireless-wpa-static index 751f00f..25da514 100644 --- a/examples/wireless-wpa-static +++ b/examples/wireless-wpa-static @@ -8,3 +8,5 @@ IP='static' # Any other CONNECTION='ethernet' options may be used. ADDR='192.168.1.23' GATEWAY='192.168.1.1' DNS=('192.168.1.1') +# Uncomment this if your ssid is hidden +#HIDDEN=yes |