AddRow.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /* $Id: AddRow.java,v 1.1 2002/06/15 14:41:18 ram Exp $ */
  2.  *
  3. /* AddRow.java * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  4.  * Please read the associated COPYRIGHTS file for more details.
  5.  */
  6.  *
  7.  *
  8.  */
  9. import com.adventnet.snmp.beans.*;
  10. public class AddRow {
  11. public static void main(String args[]) {
  12. if (args.length < 1)
  13. {
  14. System.out.println ("Usage : java getrow tableoid");
  15. System.exit (0);
  16. }
  17. String tableoid = args[0];
  18. SnmpTable table = new SnmpTable();
  19. table.setTargetHost("localhost);
  20. try 
  21. {
  22. table.loadMibs("RFC1213-MIB");
  23. table.setTableOID(tableoid);
  24. }
  25. catch (Exception ex) 
  26. {
  27. System.err.println("Error: "+ex);
  28. }
  29. String oids = {"managerHost.5", "managerPort.5", "entryStatus.5"};
  30. String values ={ "webserver", "1080", "2"}; //2 is the entryStatus value representing createRequest
  31. table.addRow( true, oids, values);
  32. System.exit(0);
  33. }
  34. }