The Delphix Engine does not support more than one DNS domain name in the DNS search list at this time.
It is possible to use the Delphix CLI if more than one DNS domain name is needed in the search list.
In order to understand if there is more than one domain name in the search list, check for "DNS Suffix Search list" from the output of ipconfig /all
in the Windows Server:
or check for "search
" in /etc/resolv.conf
on a Linux server:
[root@rhel62 ~]# cat /etc/resolv.conf search delphix.com nameserver 192.168.0.1
Each domain name needs to be separated by a comma.
To update DNS in the CLI:
Log into the CLI as sysadmin and navigate to service > dns.
ssh sysadmin@yourengine > service > dns
List the current DNS configuration and update to add new configurations.
> ls > update > set domain=xxx.xxx, xxx.xxx
Commit the action and verify the new list.
> commit > ls
For example:
delphix> /service dns delphix service dns> ls Properties type: DNSConfig domain: delphix.com node: (unset) servers: 192.168.0.1 Operations update delphix service dns> update delphix service dns update *> set domain=delphix.com,one.delphix.com,two.delphix.com delphix service dns update *> commit delphix service dns> delphix service dns> ls Properties type: DNSConfig domain: delphix.com,one.delphix.com,two.delphix.com node: (unset) servers: 192.168.0.1 Operations update delphix service dns>