From dee73e0dd3b98dfcb1633ebe2483bfb907694fe4 Mon Sep 17 00:00:00 2001 From: ekelly Date: Mon, 20 Aug 2018 18:34:25 -0400 Subject: [PATCH] add round-robin DNS document --- docs/dns_setup.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 docs/dns_setup.md diff --git a/docs/dns_setup.md b/docs/dns_setup.md new file mode 100644 index 00000000..fbde1c81 --- /dev/null +++ b/docs/dns_setup.md @@ -0,0 +1,41 @@ +# Configuring DNS for the Avere cluster + +This section explains the basics of setting up a DNS system for your Avere cluster. + +* If your system is accessed by NFS clients only, using DNS is recommended but not required - it is possible to specify all network addresses by using numeric IP addresses. + +* If your system supports SMB (CIFS) access, DNS is required, because you must specify a DNS domain for the Active Directory server. + +* DNS is required if you want to use Kerberos authentication. + +## Load Balancing + +To distribute the overall load, configure your DNS domain to use round-robin load distribution for client-facing IP addresses. + +## Configuration Details + +For optimal performance, configure client-facing cluster addresses as shown in the following diagram. + +![Diagram showing configuration information for client-facing addresses - detailed description to come](images/AvereDns.png) + +The following ``nsupdate`` commands provide an example of configuring DNS correctly: + + update add avere.example.com. 86400 A 10.0.0.10 + update add avere.example.com. 86400 A 10.0.0.11 + update add avere.example.com. 86400 A 10.0.0.12 + update add client10.example.com. 86400 A 10.0.0.10 + update add client11.example.com. 86400 A 10.0.0.11 + update add client12.example.com. 86400 A 10.0.0.12 + update add 10.0.0.10.in-addr.arpa. 86400 PTR client10.example.com + update add 11.0.0.10.in-addr.arpa. 86400 PTR client11.example.com + update add 12.0.0.10.in-addr.arpa. 86400 PTR client12.example.com + +## DNS Settings + +DNS parameters are set in [Cluster > Administrative Network]() settings page. Settings on that page include: + +* DNS server address +* DNS domain name +* DNS search domains + +Read [DNS Settings]() for more details about using this page.