Information
The dhcpsd deamon is the DHCP server that serves addresses and configuration information to DHCP clients in the network.
Unless a system is specifically set up to act as a DHCP server, it is recommended that the dhcpd 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.dhcpd bos.net.tcp.server
- OR -
- IF - the bos.net.tcp.dhcpd fileset is required as a dependency:
Run the following script to stop and disable dhcpsd
#!/usr/bin/ksh
DAEMONS="dhcpsd"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done