Information
The hostmibd daemon is a dpi2 sub-agent which manages a number of MIB variables which may be required if the server runs SNMP.
The specific MIB variables which are managed by hostmibd are defined by RFC 2790. Details relating to these MIBS can be found in: https://www.ibm.com/docs/en/aix/7.2?topic=h-hostmibd-daemon
Unless a system is specifically set up to provide SNMP services, it is recommended that the snmpd 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.snmpd bos.net.tcp.server
- OR -
- IF - the bos.net.tcp.snmpd fileset is required as a dependency:
Run the following script to stop and disable hostmibd
#!/usr/bin/ksh
DAEMONS="hostmibd"
for l_daemon in $DAEMONS;
do
/usr/sbin/chrctcp -d $l_daemon
/usr/bin/stopsrc -s $l_daemon
done