summaryrefslogtreecommitdiffstats
path: root/docs/examples
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/ethernet-custom2
-rw-r--r--docs/examples/ethernet-dhcp3
-rw-r--r--docs/examples/mobile_ppp4
-rw-r--r--docs/examples/wireless-wep11
-rw-r--r--docs/examples/wireless-wep-string-key9
-rw-r--r--docs/examples/wireless-wpa4
6 files changed, 17 insertions, 16 deletions
diff --git a/docs/examples/ethernet-custom b/docs/examples/ethernet-custom
index d3a7b14..563fac0 100644
--- a/docs/examples/ethernet-custom
+++ b/docs/examples/ethernet-custom
@@ -5,3 +5,5 @@ IP=static
# Any valid iproute command can be placed in this array
IPCustom=('addr add dev eth0 192.168.1.23/24 brd +' 'route add default via 192.168.1.1')
DNS=('192.168.1.1')
+# Set a priority for automatic profile selection
+#Priority=10
diff --git a/docs/examples/ethernet-dhcp b/docs/examples/ethernet-dhcp
index 412ff88..b7eb872 100644
--- a/docs/examples/ethernet-dhcp
+++ b/docs/examples/ethernet-dhcp
@@ -2,7 +2,10 @@ Description='A basic dhcp ethernet connection'
Interface=eth0
Connection=ethernet
IP=dhcp
+#DHCPClient=dhcpcd
+#DHCPReleaseOnStop=no
## for DHCPv6
#IP6=dhcp
+#DHCP6Client=dhclient
## for IPv6 autoconfiguration
#IP6=stateless
diff --git a/docs/examples/mobile_ppp b/docs/examples/mobile_ppp
index 383e000..67036f1 100644
--- a/docs/examples/mobile_ppp
+++ b/docs/examples/mobile_ppp
@@ -14,11 +14,9 @@ Connection=mobile_ppp
# The access point name you are connecting to
AccessPointName=apn
-# If your device has a PIN code, set it here. Defaults to None
+# If your device has a PIN code, set it here. Defaults to 'None'
#Pin=None
# Mode can be one of 3Gpref, 3Gonly, GPRSpref, GPRSonly, None
# These only work for Huawei USB modems; all other devices should use None
Mode=3Gpref
-
-# vim:ft=dosini
diff --git a/docs/examples/wireless-wep b/docs/examples/wireless-wep
index afbd3e3..fd92d01 100644
--- a/docs/examples/wireless-wep
+++ b/docs/examples/wireless-wep
@@ -1,12 +1,17 @@
Description='A simple WEP encrypted wireless connection'
Interface=wlan0
Connection=wireless
+
Security=wep
+IP=dhcp
+
ESSID='MyNetwork'
-# Prepend \" to hexadecimal keys
+# Prepend \" to hexadecimal keys, but not to string keys
Key=\"1234567890abcdef
-IP=dhcp
+#Key='WirelessKey'
# Uncomment this if your ssid is hidden
#Hidden=yes
-# Uncomment if you are using an ad-hoc connection
+# Uncomment this if you are using an ad-hoc connection
#AdHoc=yes
+# Set a priority for automatic profile selection
+#Priority=10
diff --git a/docs/examples/wireless-wep-string-key b/docs/examples/wireless-wep-string-key
deleted file mode 100644
index e4c6af4..0000000
--- a/docs/examples/wireless-wep-string-key
+++ /dev/null
@@ -1,9 +0,0 @@
-Description='A simple WEP encrypted wireless connection'
-Interface=wlan0
-Connection=wireless
-Security=wep
-ESSID='MyNetwork'
-Key='Wireless Key'
-IP=dhcp
-# Uncomment this if your ssid is hidden
-#Hidden=yes
diff --git a/docs/examples/wireless-wpa b/docs/examples/wireless-wpa
index bb9fe36..779c817 100644
--- a/docs/examples/wireless-wpa
+++ b/docs/examples/wireless-wpa
@@ -1,8 +1,8 @@
Description='A simple WPA encrypted wireless connection'
Interface=wlan0
Connection=wireless
-Security=wpa
+Security=wpa
IP=dhcp
ESSID='MyNetwork'
@@ -12,3 +12,5 @@ ESSID='MyNetwork'
Key='WirelessKey'
# Uncomment this if your ssid is hidden
#Hidden=yes
+# Set a priority for automatic profile selection
+#Priority=10