mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-27 01:44:20 +01:00
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "DHCP server",
|
|
"version": "0.4",
|
|
"slug": "dhcp_server",
|
|
"description": "A simple DHCP server",
|
|
"url": "https://home-assistant.io/addons/dhcp_server/",
|
|
"startup": "system",
|
|
"boot": "auto",
|
|
"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"
|
|
}
|