mrtgmenu
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. /*
  2.  *  Network Node Manager MRTG menu items
  3.  *
  4.  *  $Date: 2002/02/26 10:16:36 $
  5.  */
  6. Application "MRTG Actions"
  7. {
  8.     Version "NNM Release B.05.01  Jun 21 1997";
  9.     Description {
  10.     "Enables you to add new targets for MRTG to graph.",
  11.     "See Laurie for more details"
  12.     }
  13.     Copyright {
  14. "Copyright (c) 1990-1999 Net Improvement Consulting Pty Limited",
  15. "All rights reserved."
  16.     }
  17.     /*
  18.     **  Tools
  19.     */
  20.     MenuBar <100> "Misc" _i
  21.     {
  22. <90> "MRTG Actions"   _R   f.menu "MRTG Actions";
  23.     }
  24.     Menu "MRTG Actions"
  25.     {
  26. <100> "Add/Update Target/s"            _A CONTEXT "AllContexts || isIP" f.action "MRTGADD";
  27. <100> "Stop Collecting Target/s"            _S CONTEXT "AllContexts || isIP" f.action "MRTGDEL";
  28. <100> "Show Current Target/s"            _C CONTEXT "AllContexts || isIP" f.action "MRTGSHO";
  29.     }
  30.     Action "MRTGADD"
  31.     {
  32. SelectionRule (isNode || isInterface) && isIP;
  33. NameField "IP Hostname", "IP Address";
  34. Command "perl /opt/mrtg/run/ovadd ${OVwSelections}";
  35.     }
  36.      
  37.     Action "MRTGDEL"
  38.     {
  39. SelectionRule (isNode || isInterface) && isIP;
  40. NameField "IP Hostname", "IP Address";
  41. Command "perl /opt/mrtg/run/ovdel ${OVwSelections}";
  42.     }
  43.     Action "MRTGSHO"
  44.     {
  45. Command "perl /opt/mrtg/run/ovsho";
  46.     }
  47.      
  48. }