DHCP_DNS
Last updated
Last updated
uci show | grep dhcp | grep host
uci add dhcp host # will create `dhcp.@host[INDEX]=host`
uci set dhcp.@host[-1].ITEM # -1 : last | -x: xth from last
uci delete dhcp.@host[-1]
uci commit dhcp # refresh Luci
service dnsmasq restart # reconnect clientcat /tmp/dhcp.leases
uci show | grep dhcp | grep lease
=> dhcp.lan.leasetime='12h'
uci set dhcp.lan.leasetime='10m'
uci commit dhcp; service odhcpd restart ; service dnsmasq restart