config_get DOMAIN "$cfg" domain
+ config_get_bool readethers "$cfg" readethers
+ [ "$readethers" = "1" ] && [ -e "/etc/ethers" ] || touch /etc/ethers
+
config_get leasefile $cfg leasefile
[ -e "$leasefile" ] || touch "$leasefile"
config_get_bool cachelocal "$cfg" cachelocal 1
config_get networkid "$cfg" networkid
[ -n "$networkid" ] && dhcp_option_add "$cfg" "$networkid"
- config_get macs "$cfg" mac
- [ -n "$macs" ] || return 0
-
config_get ip "$cfg" ip
[ -n "$ip" ] || return 0
leasetime="${leasetime:-12h}"
start="$(dhcp_calc "${start:-100}")"
- limit="$((${limit:-150} + 1))"
+ limit="${limit:-150}"
eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
if [ "$dynamicdhcp" = "0" ]; then END="static"; fi
append args "--dhcp-range=$networkid,$START,$END,$NETMASK,$leasetime${options:+ $options}"
dhcp_domain_add() {
local cfg="$1"
+ local ip name names
- config_get name "$cfg" name
- [ -n "$name" ] || return 0
+ config_get names "$cfg" name
+ [ -n "$names" ] || return 0
config_get ip "$cfg" ip
[ -n "$ip" ] || return 0
local oIFS="$IFS"; IFS="."; set -- $ip; IFS="$oIFS"
- append args "-A /$name${DOMAIN:+.$DOMAIN}/$ip"
- append args "--ptr-record=$4.$3.$2.$1.in-addr.arpa,$name${DOMAIN:+.$DOMAIN}"
+ local raddr="${4:+$4.$3.$2.$1.in-addr.arpa}"
+
+ for name in $names; do
+ append args "-A /$name/$ip"
+ [ -n "$raddr" ] && \
+ append args "--ptr-record=$raddr,$name"
+ done
}
start() {