summaryrefslogtreecommitdiffstats
path: root/examples/complete.example
diff options
context:
space:
mode:
authorJames Rayner <james@archlinux.org>2009-02-16 12:11:47 +0100
committerJames Rayner <james@archlinux.org>2009-02-16 12:11:47 +0100
commitcd45b96d742d5e7bfc6478eb0cf5585dcba348ea (patch)
tree0c943cd6639f61d17780d9c3ea87262026dae24f /examples/complete.example
parent9550b3675ab99e4bc36f5606a8cd5f0037a6ed00 (diff)
downloadnetctl-cd45b96d742d5e7bfc6478eb0cf5585dcba348ea.tar.gz
netctl-cd45b96d742d5e7bfc6478eb0cf5585dcba348ea.tar.xz
Basic example configurations for the new system
Diffstat (limited to 'examples/complete.example')
-rw-r--r--examples/complete.example47
1 files changed, 0 insertions, 47 deletions
diff --git a/examples/complete.example b/examples/complete.example
deleted file mode 100644
index a2587f2..0000000
--- a/examples/complete.example
+++ /dev/null
@@ -1,47 +0,0 @@
-CONNECTION="wireless"
-DESCRIPTION="Very verbose complete wireless example"
-
-INTERFACE=eth0
-HOSTNAME=myhost
-
-# Interface Settings (use IP="dhcp" for DHCP)
-IP="static"
-IFOPTS="192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
-GATEWAY=192.168.0.1
-
-# DHCP Example
-#IP=dhcp
-#DHCP_TIMEOUT=20 # Default is 10.
-#DHCP_OPTIONS="" # Extra arguments for dhcpcd
-
-# DNS Settings (optional)
-DOMAIN=localdomain
-DNS1=192.168.0.1
-DNS2=
-SEARCH=
-
-# Standard Wireless Settings
-ESSID=MyNetwork
-SECURITY=wpa # One of wep, wpa, wpa-config, none
-KEY="SomePasskey"
-
-# Scans to see if network is available before connecting (reccomended)
-SCAN="YES"
-
-# Time to wait to connect to a network. Default 15.
-TIMEOUT=10
-
-# Pass *custom* options to iwconfig. Usually not needed (optional)
-IWOPTS="mode managed essid $ESSID channel 6 key restricted $KEY"
-
-# Any extra arguments for wpa_supplicant
-WPA_OPTS=
-
-# For SECURITY='wpa-config' only - filename of a wpa-supplicant config
-WPA_CONF=
-
-# Commands to run at various stages of configuration
-PRE_UP=
-POST_UP=
-PRE_DOWN=
-POST_DOWN="some command"