Information
The dhcpcd and dhcpcd6 daemons receive address and configuration information from the DHCP server for IPv4 and IPv6 respectively.
Unless a system is specifically expected to receive IP address and configuration via DHCP, it is recommended that the dhcp client 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.dhcp bos.net.tcp.client
- OR -
- IF - the bos.net.tcp.dhcp fileset is required as a dependency:
Run the following script to stop and disable dhcpcd and dhcpcd6
#!/usr/bin/ksh
DAEMONS="dhcpcd dhcpcd6"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done