Configure DNS via resolv.conf on AIX
From Notes_Wiki
Revision as of 07:09, 22 July 2022 by Saurabh (talk | contribs) (Created page with "Home > VOIS or AIX > Configure DNS via resolv.conf on AIX As per https://www.ibm.com/docs/en/aix/7.2?topic=formats-resolvconf-file-format-tcpip we need to directly create /etc/resolv.conf file on AIX to configure DNS. The syntax is similar to modern Unix systems such as: <pre> domain DomainName nameserver <Address1> nameserver <Address2> </pre> For example: <pre> domain example.com nameserver 10.1.1.1 nameserver 10.2.2.2 </pre> Main Page|Hom...")
Home > VOIS or AIX > Configure DNS via resolv.conf on AIX
As per https://www.ibm.com/docs/en/aix/7.2?topic=formats-resolvconf-file-format-tcpip we need to directly create /etc/resolv.conf file on AIX to configure DNS. The syntax is similar to modern Unix systems such as:
domain DomainName nameserver <Address1> nameserver <Address2>
For example:
domain example.com nameserver 10.1.1.1 nameserver 10.2.2.2