Multiple ip reservations using simple DHCP server

I’m using hass.io with the simple dhcp server.

I’ve managed to configure 1 dhcp reservation.
Each time, after I’ve configured a second reservation and saved it, when I open de configuration settings again, only 1 reservation is left in the configuration.

Anyone who has a solution for this?

Almost the same problem here. Every time I save it resets to default config…any ideas?

I finally figured how to configure this.
The syntax is:

{
“domain”: “mynetwork.local”,
“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”: [
{
“name”: “webcam_1”,
“mac”: “aa:bb:cc:dd:ee:ff”,
“ip”: “192.168.1.40”
},
{
“name”: “webcam_2”,
“mac”: “aa:bb:ee:cc:ee:ff”,
“ip”: “192.168.1.41”
}
]
}

1 Like

Also faced with such a problem. Thank you, you helped me a lot !!!