mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 04:26:16 +02:00
fix limit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20275 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4271069692
commit
78b9f1dc6f
@ -263,7 +263,7 @@ dhcp_add() {
|
|||||||
|
|
||||||
leasetime="${leasetime:-12h}"
|
leasetime="${leasetime:-12h}"
|
||||||
start="$(dhcp_calc "${start:-100}")"
|
start="$(dhcp_calc "${start:-100}")"
|
||||||
limit="$(${limit:-150})"
|
limit="${limit:-150}"
|
||||||
eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
|
eval "$(ipcalc.sh $ipaddr $netmask $start $limit)"
|
||||||
if [ "$dynamicdhcp" = "0" ]; then END="static"; fi
|
if [ "$dynamicdhcp" = "0" ]; then END="static"; fi
|
||||||
append args "--dhcp-range=$networkid,$START,$END,$NETMASK,$leasetime${options:+ $options}"
|
append args "--dhcp-range=$networkid,$START,$END,$NETMASK,$leasetime${options:+ $options}"
|
||||||
|
Loading…
Reference in New Issue
Block a user