To answer the mib2agt question, SNMP processes are not needed if you are not using network monitoring tools such as OpenView Node Manager somewhere on your network. To disable the SNMP processes, there are 4 SNMP files to edit in /etc/rc.config.d. But before you edit the files, stop all the processes like this:
/sbin/init.d/SnmpHpunix stop
/sbin/init.d/SnmpMaster stop
/sbin/init.d/SnmpMib2 stop
/sbin/init.d/SnmpTrpDst stop
The reason to stop these first is that trying to stop the processes using the above commands when the files below state that they were not supposed to be run in the first place, sometimes doesn't work.
In each of the files below, there will be an enabling env variable set =1, as in: SNMP_MIB2_START=1, so edit the file and change it to SNMP_MIB2_START=0. In /etc/rc.config.d:
SnmpHpunix: SNMP_HPUNIX_START=0
SnmpMaster: SNMP_MASTER_START=0
SnmpMib2: SNMP_MIB2_START=0
SnmpTrpDst: SNMP_TRAPDEST_START=0
Now, none of the SNMP processes are running and won't be started after you reboot.
Bill Hassell, sysadmin