ddhcpd-nextnode: init

This commit is contained in:
Maciej Krüger 2022-05-20 09:55:12 +02:00 committed by Alexander List
parent 1874e7b155
commit 7c45e7740f
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,19 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=ddhcpd-nextnode
PKG_RELEASE:=1
include ../gluon.mk
define Package/ddhcpd-nextnode
SECTION:=net
CATEGORY:=Network
DEPENDS:=+ddhcpd
TITLE:=ddhcpd nextnode integration
endef
define Package/ddhcpd-nextnode/description
nextnode integration for ddhcpd
endef
$(eval $(call BuildPackage,ddhcpd-nextnode))

View File

@ -0,0 +1 @@
need_string_match(in_domain({'next_node', 'ip4'}), '^%d+.%d+.%d+.%d+$')

View File

@ -0,0 +1,21 @@
#!/usr/bin/lua
local uci = require('simple-uci').cursor()
local site = require "gluon.site"
local payload = site.next_node.ip4()
local len = 4 -- this has to be 4
uci:section('ddhcpd', 'dhcp_option', 'nextnode_router', {
len = len,
payload = payload,
code = '3',
})
uci:section('ddhcpd', 'dhcp_option', 'nextnode_dns', {
len = len,
payload = payload,
code = '6',
})
uci:save('ddhcpd')