Information
The named daemon is the server for the DNS protocol and controls domain name resolution for its clients.
Unless a system is specifically designated to act as a DNS server, it is recommended that the named fileset be removed to reduce the potential attack surface.
Solution
Run the following command to remove the software:
# /usr/sbin/installp -u bos.net.tcp.bind bos.net.tcp.server bind.rte
- OR -
- IF - the bos.net.tcp.bind or bind.rte filesets are required as a dependency:
Run the following script to stop and disable named
#!/usr/bin/ksh
DAEMONS="named"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done