Handle hostnames with upper-case letters
[webmin.git] / status / WEBMIN-STATUS-MIB.txt
1 WEBMIN-STATUS-MIB DEFINITIONS ::= BEGIN
2
3 --
4 -- MIB objects for Webmin's status module
5 --
6
7 IMPORTS
8     MODULE-IDENTITY, enterprises, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI
9     SnmpAdminString                         FROM SNMP-FRAMEWORK-MIB
10     RowStatus, StorageType                  FROM SNMPv2-TC
11     InetAddressType, InetAddress            FROM INET-ADDRESS-MIB
12 ;
13
14 Webmin MODULE-IDENTITY
15     LAST-UPDATED "200412220000Z"
16     ORGANIZATION "www.webmin.com"
17     CONTACT-INFO    
18          "postal:   Wes Hardaker
19                     P.O. Box 382
20                     Davis CA  95617
21
22           email:    jcameron@webmin.com"
23     DESCRIPTION
24         "MIB objects for Webmin status module traps"
25     ::= { enterprises 10000 }
26
27 --
28 -- top level structure
29 --
30 WebminStatus       OBJECT IDENTIFIER ::= { Webmin 1 }
31
32 WebminStatusMessage OBJECT-TYPE
33     SYNTAX      SnmpAdminString
34     MAX-ACCESS  accessible-for-notify
35     STATUS      current
36     DESCRIPTION
37         "A message from Webmin's System and Server status module indicating
38          that some event has occurred."
39 ::= { WebminStatus 1 }
40
41 WebminStatusNotification NOTIFICATION-TYPE
42     STATUS      current
43     DESCRIPTION
44         "An example notification, used to illustrate the
45          definition and generation of trap and inform PDUs
46          (including the use of both standard and additional
47          varbinds in the notification payload).
48          This notification will typically be sent every
49          30 seconds, using the code found in the example module
50              agent/mibgroup/examples/notification.c"
51 ::= { WebminStatus 2 }
52     
53 END