Package org.snmp4j.agent

Examples of org.snmp4j.agent.CommandProcessor


  public SnmpAgent()
      throws IOException
  {
    super(new File("snmpAgentBC.cfg"),
          null,
          new CommandProcessor(new OctetString(MPv3.createLocalEngineID())));
    setSysDescr(new OctetString("Cipango-" + Server.getSipVersion()));
    setSysOID(NEXCOM_ENTREPRISE_OID);
    agent = new CommandProcessor(new OctetString(MPv3.createLocalEngineID()));
  }
View Full Code Here


     * @throws IOException
     */
    SNMP4JFacade(String address) throws IOException {
        // These files does not exist and are not used but has to be specified
        // Read snmp4j docs for more info
        super(new File("conf.agent"), new File("bootCounter.agent"), new CommandProcessor(new OctetString(
                MPv3.createLocalEngineID())));
        this.address = address;
        start();

    }
View Full Code Here

TOP

Related Classes of org.snmp4j.agent.CommandProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.