- added "server" option list to delegate specific subdomains to given upstream servers
SVN-Revision: 14232
This commit is contained in:
parent
2688dcf275
commit
b05f64dd06
2 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,7 @@ config dnsmasq
|
|||
option readethers 1
|
||||
option leasefile '/tmp/dhcp.leases'
|
||||
option resolvfile '/tmp/resolv.conf.auto'
|
||||
#list server '/mycompany.local/1.2.3.4'
|
||||
|
||||
config dhcp lan
|
||||
option interface lan
|
||||
|
|
|
@ -36,6 +36,10 @@ append_parm() {
|
|||
append args "$switch $_loctmp"
|
||||
}
|
||||
|
||||
append_server() {
|
||||
append args "-S $1"
|
||||
}
|
||||
|
||||
dnsmasq() {
|
||||
local cfg="$1"
|
||||
append_bool "$cfg" authoritative "-K"
|
||||
|
@ -62,6 +66,7 @@ dnsmasq() {
|
|||
append_parm "$cfg" "queryport" "-Q"
|
||||
append_parm "$cfg" "domain" "-s"
|
||||
append_parm "$cfg" "local" "-S"
|
||||
config_list_foreach "$cfg" "server" append_server
|
||||
append_parm "$cfg" "leasefile" "-l"
|
||||
append_parm "$cfg" "resolvfile" "-r"
|
||||
append_parm "$cfg" "tftp_root" "--tftp-root"
|
||||
|
|
Loading…
Reference in a new issue