mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
[package] dnsmasq: allow multiple macs per static lease address (#6205)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20074 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
43675759a3
commit
c4afa41a73
@ -176,13 +176,18 @@ dhcp_host_add() {
|
||||
config_get networkid "$cfg" networkid
|
||||
[ -n "$networkid" ] && dhcp_option_add "$cfg" "$networkid"
|
||||
|
||||
config_get mac "$cfg" mac
|
||||
[ -n "$mac" ] || return 0
|
||||
config_get macs "$cfg" mac
|
||||
[ -n "$macs" ] || return 0
|
||||
|
||||
config_get ip "$cfg" ip
|
||||
[ -n "$ip" ] || return 0
|
||||
|
||||
append args "--dhcp-host=$mac,${networkid:+net:$networkid,}$ip${name:+,$name}"
|
||||
macs=""
|
||||
config_get mac "$cfg" mac
|
||||
for m in $mac; do append macs "$m" ","; done
|
||||
[ -n "$macs" ] || return 0
|
||||
|
||||
append args "--dhcp-host=$macs,${networkid:+net:$networkid,}$ip${name:+,$name}"
|
||||
}
|
||||
|
||||
dhcp_mac_add() {
|
||||
|
Loading…
Reference in New Issue
Block a user