cd /usr/sbinIf you look at named in this directory, it is linked to named4 by default. Enter:
ls -l name*Information similar to the following is displayed:
lrwxrwxrwx 1 root system 16 Feb 03 12:12 named -> /usr/sbin/named4 lrwxrwxrwx 1 root system 21 Feb 03 12:12 named-xfer -> /usr/sbin/named4-xfer
ln -sf /usr/sbin/named8 /usr/sbin/named ln -sf /usr/sbin/named8-xfer /usr/sbin/named-xferThey are now linked to named8. Enter:
ls -l name*Information similar to the following is displayed:
lrwxrwxrwx 1 root system 16 Feb 23 16:56 named -> /usr/sbin/named8 lrwxrwxrwx 1 root system 21 Feb 23 16:59 named-xfer -> /usr/sbin/named8-xfer
lslpp -l perl.rte
If this fileset is installed, the following information will display:
Fileset Level State Description ---------------------------------------------------------------------------- Path: /usr/lib/objrepos perl.rte 5.5.3.0 COMMITTED Perl Version 5 Runtime Environment
cd /usr/samples/tcpip ./named-bootconf.pl /etc/named.boot >/etc/named.confHere is a copy of the old /etc/named.boot. Enter:
view /etc/named.boot primary test.com /etc/named.data primary 3.2.1.in-addr.arpa /etc/named.rev primary 0.0.127.in-addr.arpa /etc/named.local forwarders 9.53.183.2 slaveThe new file named.conf will look like this. Enter:
view /etc/named.conf // generated by named-bootconf.pl options { forward only; forwarders { 9.53.183.2; }; }; zone "test.com" { type master; file "/etc/named.data"; }; zone "3.2.1.in-addr.arpa" { type master; };
stopsrc -s namedThe following is displayed:
0513-044 The named Subsystem was requested to stop.
Enter the following command:
startsrc -s namedThe following is displayed:
0513-059 The named Subsystem has been started. Subsystem PID is 6890.The rest of the files associated with DNS keep the same format.
[ Doc Ref: 95626310013480 Publish Date: Jun. 06, 2000 4FAX Ref: 8560 ]