forked from home-assistant/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
54 lines (54 loc) · 1.2 KB
/
config.json
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
{
"name": "DHCP server",
"version": "1.2",
"slug": "dhcp_server",
"description": "A simple DHCP server",
"url": "https://home-assistant.io/addons/dhcp_server/",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"advanced": true,
"startup": "system",
"host_network": true,
"options": {
"default_lease": 86400,
"max_lease": 172800,
"domain": null,
"dns": ["8.8.8.8", "8.8.4.4"],
"networks": [
{
"subnet": "192.168.1.0",
"netmask": "255.255.255.0",
"range_start": "192.168.1.100",
"range_end": "192.168.1.200",
"broadcast": "192.168.1.255",
"gateway": "192.168.1.1",
"interface": "eth0"
}
],
"hosts": []
},
"schema": {
"default_lease": "int",
"max_lease": "int",
"domain": "str",
"dns": ["str"],
"networks": [
{
"subnet": "str",
"netmask": "str",
"range_start": "str",
"range_end": "str",
"broadcast": "str",
"gateway": "str",
"interface": "str"
}
],
"hosts": [
{
"mac": "str",
"name": "str",
"ip": "str"
}
]
},
"image": "homeassistant/{arch}-addon-dhcp_server"
}