diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ethernet-dhcp | 2 | ||||
-rw-r--r-- | examples/ethernet-iproute | 2 | ||||
-rw-r--r-- | examples/ethernet-static | 2 | ||||
-rw-r--r-- | examples/wireless-wpa-static | 10 |
4 files changed, 13 insertions, 3 deletions
diff --git a/examples/ethernet-dhcp b/examples/ethernet-dhcp index 78edfc4..9757b67 100644 --- a/examples/ethernet-dhcp +++ b/examples/ethernet-dhcp @@ -1,4 +1,4 @@ -CONNECTION="ethernet-iproute" +CONNECTION="ethernet" DESCRIPTION="A basic dhcp ethernet connection using iproute" INTERFACE="eth0" IP="dhcp" diff --git a/examples/ethernet-iproute b/examples/ethernet-iproute index 6ac20e1..16d88b5 100644 --- a/examples/ethernet-iproute +++ b/examples/ethernet-iproute @@ -1,4 +1,4 @@ -CONNECTION="ethernet-iproute" +CONNECTION="ethernet" DESCRIPTION="A more versatile static ethernet connection using iproute" INTERFACE="eth0" IP="static" diff --git a/examples/ethernet-static b/examples/ethernet-static index 50756bc..630ff14 100644 --- a/examples/ethernet-static +++ b/examples/ethernet-static @@ -1,4 +1,4 @@ -CONNECTION="ethernet-iproute" +CONNECTION="ethernet" DESCRIPTION="A basic static ethernet connection using iproute" INTERFACE="eth0" IP="static" diff --git a/examples/wireless-wpa-static b/examples/wireless-wpa-static new file mode 100644 index 0000000..8c1aaf0 --- /dev/null +++ b/examples/wireless-wpa-static @@ -0,0 +1,10 @@ +CONNECTION="wireless" +DESCRIPTION="A simple WPA encrypted wireless connection using a static IP" +INTERFACE="wlan0" +SECURITY="wpa" +ESSID="MyNetwork" +KEY="WirelessKey" +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") |