From 0e16225c611c85c7d12d3197132218f7ea4ce177 Mon Sep 17 00:00:00 2001 From: sjing Date: Wed, 11 May 2011 08:00:24 +0000 Subject: [PATCH] support ddns as the default dnshandler. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9558 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client/pods/man8/makedns.8.pod | 74 +++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 xCAT-client/pods/man8/makedns.8.pod diff --git a/xCAT-client/pods/man8/makedns.8.pod b/xCAT-client/pods/man8/makedns.8.pod new file mode 100644 index 000000000..755e02865 --- /dev/null +++ b/xCAT-client/pods/man8/makedns.8.pod @@ -0,0 +1,74 @@ +=head1 NAME + +B - sets up domain name services (DNS). + +=head1 SYNOPSIS + +B [I<-h>|I<--help>] + +B [I<-n>|I<--new>] [I] + +B [I<-d>|I<--delete> I] + +=head1 DESCRIPTION + +B configures a DNS server on the local machine from the /etc/hosts file entries if no I specified. It also uses the following +attributes set in the B table as default values: B, B, B. +The B and B attributes in the B table will also be used. Only entries in +/etc/hosts or the hosts specified by I that are part of a network listed in the B table will be added to DNS. + +B can only handle hostnames from a single domain, normally a private domain just for the cluster. The +typical cluster set up is for site.domain to be set to the cluster domain, site.nameservers to be set to the +cluster-facing IP address of the management node, and site.forwarders to be set to the IP address of one or more +nameservers at your site that can resolve names outside of your cluster. With this set up, all nodes ask the +management node to resolve names, and if it is a name that the MN DNS does not know about, it will ask the outside +world. + +=head1 OPTIONS + +=over 6 + +=item B<-n>|B<--new> + +B sometimes may hold on to stale journal filehandles, use this flag to remove the named configuration file and db files to start fresh. + +=item B<-d>|B<--delete> I + +Remove the DNS records for the hosts specified by I. + +=back + +=head1 Examples + +=over 6 + +=item 1 + +To set up DNS for all the hosts in /etc/hosts file. + +B + +=item 2 + +To set up DNS for I. + +B I + +=item 3 + +To fresh the DNS configuration for all the hosts in /etc/hosts file. + +B B<-n> + +=item 4 + +To delete the DNS records for I. + +B B<-d> I + +=back + +=head1 SEE ALSO + +L +