Lines Matching refs:Domain
130 InsertIfUnique (\@Domains, $Scopes{$j}{domain}) if exists $Scopes{$j}{domain};
145 InsertIfUnique (\@Domains, $Scopes{$i}{domain}) if exists $Scopes{$i}{domain};
149 InsertIfUnique (\@Domains, $GlobalOptions{domain}) if exists $GlobalOptions{domain};
186 my ($outfile, $Domain, $DDNSServer, $key) = @_;
187 # purpose: print out the foward domain zone update declaration
190 # $Domain: a string representing the forward domain
197 print $outfile "zone $Domain {\n";
206 # purpose: print out the reverse domain zone update declaration
255 print $outfile $pound, "\toption domain-name-servers ", join(",", @{${$Scope}{dnses}}), ";\n";
257 print $outfile $pound, "\toption domain-name-servers ", join(",", @{${$GlobalOptions}{dnses}}), ";\n";
260 if (exists ${$Scope}{domain}) {
261 print $outfile $pound, "\toption domain-name \"${$Scope}{domain}\";\n";
262 } elsif (exists ${$GlobalOptions}{domain}) {
263 print $outfile $pound, "\toption domain-name \"${$GlobalOptions}{domain}\";\n";
316 # $Scopes{<subnet>}{domain} > string
435 $Scopes{$Subnets[$i]}{domain} = $SDomainname[0];
566 # $GlobalOptions{domain} > string
601 # Domain Name
603 $GlobalOptions{domain} = $temp[0];