Admin message

Self sign-up has been disabled due to increased spam activity. If you want to get access, please send an email to a project owner (preferred) or at gitlab(at)nic(dot)cz. We apologize for the inconvenience.

lan: add ability to set static leases
this MAC address will get this IP, etc Note that the backend part is supposed to be done https://gitlab.labs.nic.cz/turris/foris-controller/foris-controller/blob/master/foris_controller_modules/lan/schema/lan.json#L185 ### Steps in this issue - [x] create endpoint (!259 @fhron) - [ ] implement UI (This ticket) ## Schema ```json "dhcp_client_set": { "type": "object", "properties": { "mac": {"type": "string", "format": "macaddress"}, "ip": { "oneOf": [ {"type": "string", "format": "ipv4"}, {"enum": ["ignore"]} ] }, "hostname": {"type": "string"} }, "additionalProperties": false, "required": ["ip", "mac", "hostname"] } ``` ## enpoint ```<API>/api/lan/set_client``` # Mock ![lan](/uploads/b3a1ceaf74ae4d477a736734eab55188/lan.png)
issue