forked from includeos/IncludeOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
55 lines (55 loc) · 992 Bytes
/
config.json
File metadata and controls
55 lines (55 loc) · 992 Bytes
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
{
"net": [
{
"iface": 0,
"config": "static",
"address": "10.0.0.60",
"netmask": "255.255.255.0",
"gateway": "10.0.0.1"
},
{
"iface": 1,
"config": "static",
"address": "10.0.0.61",
"netmask": "255.255.255.0",
"gateway": "10.0.0.1",
"dns": "8.8.8.8"
},
{
"iface": 2,
"config": "none"
},
{
"iface": 3,
"config": "dhcp",
"timeout": 5.0
},
{
"iface": 5,
"config": "dhcp-with-fallback",
"timeout": 10,
"address": "10.0.0.62",
"netmask": "255.255.255.0",
"gateway": "10.0.0.1"
},
{
"iface": 6,
"config": [ "static" ],
"address": [
"fe80::1337/64",
"10.0.0.42/24",
"fe80::42",
"10.0.0.42"
],
"netmask": "255.0.0.0",
"gateway": [
"10.0.0.1",
"fe80::1"
],
"dns": [
"4.4.4.4",
"fe80::1"
]
}
]
}