diff --git a/src/registrar/forms/domain.py b/src/registrar/forms/domain.py index 303c43690..a8a285e99 100644 --- a/src/registrar/forms/domain.py +++ b/src/registrar/forms/domain.py @@ -55,7 +55,7 @@ class DomainNameserverForm(forms.Form): server = forms.CharField(label="Name server", strip=True) ip = IPAddressField( - label="IP address", + label="IP Address (IPv4 or IPv6)", strip=True, required=False, # validators=[ @@ -75,7 +75,7 @@ class DomainNameserverForm(forms.Form): ip_list = [ip.strip() for ip in ip.split(",")] if not server and len(ip_list) > 0: # If 'server' is empty, disallow 'ip' input - self.add_error('server', "Nameserver must be provided to enter IP address.") + self.add_error('server', "Name server must be provided to enter IP address.") # if there's a nameserver and an ip, validate nameserver/ip combo diff --git a/src/registrar/templates/domain_nameservers.html b/src/registrar/templates/domain_nameservers.html index aa53719ea..e4323615a 100644 --- a/src/registrar/templates/domain_nameservers.html +++ b/src/registrar/templates/domain_nameservers.html @@ -11,8 +11,16 @@
Before your domain can be used we'll need information about your domain - name servers.
+Before your domain can be used we’ll need information about your domain name servers. Name server records indicate which DNS server is authoritative for your domain.
+ +Add a name server record by entering the address (e.g., ns1.nameserver.com) in the name server fields below. You may add up to 13 name servers.
+ +Add an IP address only when your name server's address includes your domain name (e.g., if your domain name is "example.gov" and your name server is "ns1.example.gov,” then an IP address is required.) To add multiple IP addresses, separate them with commas.
+This step is uncommon unless you self-host your DNS or use custom addresses for your nameserver.
+