UCD-DEMO-MIB.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. UCD-DEMO-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3.     MODULE-IDENTITY, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI
  4.     ucdavis FROM UCD-SNMP-MIB;
  5. ucdDemoMIB MODULE-IDENTITY
  6.     LAST-UPDATED "9912090000Z"
  7.     ORGANIZATION "University of California, Davis"
  8.     CONTACT-INFO
  9. "This mib is no longer being maintained by the University of
  10.  California and is now in life-support-mode and being
  11.  maintained by the net-snmp project.  The best place to write
  12.  for public questions about the net-snmp-coders mailing list
  13.  at net-snmp-coders@lists.sourceforge.net.
  14.          postal:   Wes Hardaker
  15.                    P.O. Box 382
  16.                    Davis CA  95617
  17.          email:    net-snmp-coders@lists.sourceforge.net
  18.         "
  19.     DESCRIPTION
  20. "The UCD-SNMP Demonstration MIB."
  21.     REVISION  "9912090000Z"
  22.     DESCRIPTION
  23. "SMIv2 version converted from older MIB definitions."
  24.     ::= { ucdavis 14 }
  25. ucdDemoMIBObjects OBJECT IDENTIFIER ::= { ucdDemoMIB 1 }
  26. ucdDemoPublic OBJECT IDENTIFIER ::= { ucdDemoMIBObjects 1 }
  27. ucdDemoResetKeys OBJECT-TYPE
  28.     SYNTAX Integer32 (0..2147483647)
  29.     MAX-ACCESS read-write
  30.     STATUS current
  31.     DESCRIPTION
  32. "A set of value 1 to this object resets the
  33.  demonstration user's auth and priv keys to the
  34.  keys based on the P->Ku->Kul transformation of the
  35.  value of the ucdDemoPasspharse object.
  36.  Values other than 1 are ignored."
  37.     ::= { ucdDemoPublic 1 }
  38. ucdDemoPublicString OBJECT-TYPE
  39.     SYNTAX OCTET STRING (SIZE(0..1024))
  40.     MAX-ACCESS read-write
  41.     STATUS current
  42.     DESCRIPTION
  43. "A publicly settable string that can be set for testing 
  44.  snmpsets.  This value has no real usage other than
  45.  testing purposes."
  46.     ::= { ucdDemoPublic 2 }
  47. ucdDemoUserList OBJECT-TYPE
  48.     SYNTAX OCTET STRING
  49.     MAX-ACCESS read-only
  50.     STATUS current
  51.     DESCRIPTION
  52. "The list of users affected by the ucdDemoResetKeys object."
  53.     ::= { ucdDemoPublic 3 }
  54. ucdDemoPassphrase  OBJECT-TYPE
  55.     SYNTAX OCTET STRING
  56.     MAX-ACCESS read-only
  57.     STATUS current
  58.     DESCRIPTION
  59. "The demo passphrase that ucdDemoResetKeys changes each 
  60.  users localized key to based on the P->Ku->Kul transformation."
  61.     ::= { ucdDemoPublic 4 }
  62. END