aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/supplicant_if/wpa_supplicant.conf
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-09-20 18:09:00 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-09-20 18:09:00 +0200
commitd8330ca4a42a7f5d81b233a1cf7cbc7a7bd0be95 (patch)
treef33ddab6870a14914852ef40c378c31ccd8e2443 /examples/var_service/supplicant_if/wpa_supplicant.conf
parent92d98f0612c147171a0e9e03dd7fdfde890ee9e5 (diff)
downloadbusybox-d8330ca4a42a7f5d81b233a1cf7cbc7a7bd0be95.tar.gz
examples/var_service/supplicant_if: new service example
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/var_service/supplicant_if/wpa_supplicant.conf')
-rw-r--r--examples/var_service/supplicant_if/wpa_supplicant.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/var_service/supplicant_if/wpa_supplicant.conf b/examples/var_service/supplicant_if/wpa_supplicant.conf
new file mode 100644
index 000000000..5fc96b4da
--- /dev/null
+++ b/examples/var_service/supplicant_if/wpa_supplicant.conf
@@ -0,0 +1,28 @@
+# allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group
+ctrl_interface=DIR=/var/run/wpa_supplicant
+#GROUP=wheel
+
+# Typical minimal wifi setup:
+network={
+ ssid="--your-ESSID--"
+ key_mgmt=WPA-PSK
+ psk="--your-password--"
+}
+
+# Other fields:
+# scan_ssid=1
+# key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
+# pairwise=CCMP TKIP
+# group=CCMP TKIP WEP104 WEP40
+# psk="very secret passphrase"
+# eap=TTLS PEAP TLS
+# identity="user@example.com"
+# ca_cert="/etc/cert/ca.pem"
+# client_cert="/etc/cert/user.pem"
+# private_key="/etc/cert/user.prv"
+# private_key_passwd="password"
+# phase1="peaplabel=0"
+# ca_cert2="/etc/cert/ca2.pem"
+# client_cert2="/etc/cer/user.pem"
+# private_key2="/etc/cer/user.prv"
+# private_key2_passwd="password"