blob: 3d74cf84e4203970edef7a8ef1910d0441ebb755 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
<h1 id="ethernet-iproute-connection-manual"
>ethernet-iproute Connection manual</h1
><h2 id="description"
>Description</h2
><p
>This connection method uses the iproute suite of tools and dhcpcd to gain an IP address.</p
><h2 id="options"
>Options</h2
><dl
><dt
>INTERFACE (required)</dt
><dd
>The wireless interface to configure</dd
><dt
>IP (required)</dt
><dd
>Can be either 'static' or 'dhcp'. Static requires at least one of ADDR or IPCFG.</dd
><dt
>ADDR (requires IP of 'static')</dt
><dd
>A single IP address to configure a static IP. For example:</dd
><dt
>GATEWAY (requires IP of 'static')</dt
><dd
>Set specified gateway</dd
><dt
>IPCFG</dt
><dd
>Array of arguments to pass to 'ip'. The power of this options is that it allows both simple and complicated routing configurations, within the framework of netcfg.</dd
></dl
><h3 id="dns"
>DNS</h3
><dl
><dt
>DNS</dt
><dd
>Array of DNS nameservers. Simply specify the IP's of each of the DNS nameservers.</dd
><dt
>SEARCH</dt
><dd
>"search" line for /etc/resolv.conf</dd
><dt
>DOMAIN</dt
><dd
>"domain" line for /etc/resolv.conf</dd
><dt
>HOSTNAME</dt
><dd
>Set the system hostname. Ensure any hostname is correctly referenced in /etc/hosts.</dd
></dl
><h3 id="dhcp"
>DHCP</h3
><dl
><dt
>DHCP_OPTIONS</dt
><dd
>String. Any extra arguments to pass to the dhcp client, presently dhcpcd.</dd
><dt
>DHCP_TIMEOUT</dt
><dd
>Integer. Maximum time to try for a DHCP IP. Default is 10 seconds.</dd
></dl
><h3 id="x-authentication"
>802.11x Authentication</h3
><dl
><dt
>AUTH8021X</dt
><dd
>Use 802.11x authentication. Enable with 'yes'.</dd
><dt
>WPA_CONF (required for an AUTH8021X of 'yes' only)</dt
><dd
>Path to wpa_supplicant configuration. Defaults to '/etc/wpa_supplicant.conf'</dd
><dt
>WPA_OPTS (optional for an AUTH8021X of 'yes')</dt
><dd
>Extra arguments for wpa_supplicant not specified otherwise. Any option here must specify wpa_supplicant driver. Defaults to '-Dwired'.</dd
></dl
><h2 id="examples"
>Examples</h2
><h3 id="using-addr-and-gateway-to-set-static-ip-and-gateway"
>Using ADDR and GATEWAY to set static IP and gateway</h3
><pre
><code
>IP="static"
ADDR="192.168.1.23"
GATEWAY="192.168.1.1"
</code
></pre
><h3 id="using-ipcfg-to-set-a-static-ip-and-gateway-with-custom-dns"
>Using IPCFG to set a static IP and gateway with custom DNS</h3
><pre
><code
>IP="static"
IPCFG=("addr add dev eth0 192.168.1.23/24 brd +" "route add default via 192.168.1.1")
DNS=("208.67.222.222" "208.67.220.220")
</code
></pre
>
|