I don want to expose the proxy configuration details of the sub-agents to remote management applications. Is it possible using SNMP Agent Toolkit?
It is possible to restrict the remote access of sub-agent configurations in the master agent. The steps to be performed are: • Load the MIB and generate the SNMP master agent. The code generated for proxy table remote configuration in the generated main file is: //Code generated will be as follows dyn = new DynamicRegistration(false, “conf”, “ProxyTable.xml”); dyn.addRegistrationListener(hdlr, true); • Change the boolean from ‘true’ to ‘false’ in the code snippet //Code to be changed dyn = new DynamicRegistration(false, “conf”, “ProxyTable.xml”); dyn.addRegistrationListener(hdlr, false); • Compile and run the master agent.
Related Questions
- Is it possible to monitor Java applications that expose information through SNMP or JMX? Can the JMX agent generated by AdventNet ManageEngine JMX Studio be monitored using Applications Manager?
- Is it possible to monitor Java applications that expose information through SNMP or JMX? Can the JMX agent generated by ManageEngine® JMX Studio be monitored using Applications Manager?
- I don want to expose the proxy configuration details of the sub-agents to remote management applications. Is it possible using SNMP Agent Toolkit?