Wes Hardaker | c554c33 | 2011-04-22 16:28:23 +0000 | [diff] [blame] | 1 | NET-SNMP-PERIODIC-NOTIFY-MIB DEFINITIONS ::= BEGIN |
| 2 | |
| 3 | -- |
| 4 | -- Objects for periodic notifications containing data payloads |
| 5 | -- |
| 6 | |
| 7 | IMPORTS |
| 8 | netSnmpModuleIDs, netSnmpObjects, netSnmpNotifications FROM NET-SNMP-MIB |
| 9 | |
| 10 | OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, Integer32, Unsigned32 |
| 11 | FROM SNMPv2-SMI |
| 12 | |
| 13 | DisplayString FROM SNMPv2-TC; |
| 14 | |
| 15 | |
| 16 | netSnmpPeriodicNotifyMib MODULE-IDENTITY |
| 17 | LAST-UPDATED "201104200000Z" |
| 18 | ORGANIZATION "www.net-snmp.org" |
| 19 | CONTACT-INFO |
| 20 | "postal: Wes Hardaker |
| 21 | P.O. Box 382 |
| 22 | Davis CA 95617 |
| 23 | |
| 24 | email: net-snmp-coders@lists.sourceforge.net" |
| 25 | DESCRIPTION |
| 26 | "Objects for periodic notifications containing data payloads" |
| 27 | REVISION "201104200000Z" |
| 28 | DESCRIPTION |
| 29 | "First revision." |
| 30 | ::= { netSnmpModuleIDs 5 } |
| 31 | |
| 32 | nsPNScalars OBJECT IDENTIFIER ::= {netSnmpPeriodicNotifyMib 1} |
| 33 | nsPNTables OBJECT IDENTIFIER ::= {netSnmpPeriodicNotifyMib 2} |
| 34 | nsPNotifyObjects OBJECT IDENTIFIER ::= {netSnmpPeriodicNotifyMib 3} |
| 35 | nsPNotificationPrefix OBJECT IDENTIFIER ::= {netSnmpPeriodicNotifyMib 4} |
| 36 | nsPNotifications OBJECT IDENTIFIER ::= {nsPNotificationPrefix 0} |
| 37 | nsPNotificationObjects OBJECT IDENTIFIER ::= {nsPNotificationPrefix 1} |
| 38 | |
| 39 | -- |
| 40 | -- Notification Definitions |
| 41 | -- |
| 42 | |
| 43 | nsNotifyPeriodicNotification NOTIFICATION-TYPE |
| 44 | STATUS current |
| 45 | DESCRIPTION |
| 46 | "Data delivery notification from a configured list of periodic |
| 47 | data sets to deliver. See the snmpd.conf manual page for |
| 48 | details about configuring Net-SNMP agents for sending these |
| 49 | notifications out on a regular basis." |
Wes Hardaker | aa17049 | 2011-04-22 16:29:16 +0000 | [diff] [blame] | 50 | ::= { nsPNotifications 1 } |
Wes Hardaker | c554c33 | 2011-04-22 16:28:23 +0000 | [diff] [blame] | 51 | |
| 52 | -- |
| 53 | -- Objects that can be put into the notifications |
| 54 | -- |
| 55 | |
| 56 | nsPNPeriodicTime OBJECT-TYPE |
| 57 | SYNTAX Unsigned32 |
| 58 | MAX-ACCESS accessible-for-notify |
| 59 | STATUS current |
| 60 | DESCRIPTION |
| 61 | "The number of seconds between notifications containing this data set." |
| 62 | ::= { nsPNotifyObjects 1 } |
| 63 | |
| 64 | nsPNotifyMessageNumber OBJECT-TYPE |
| 65 | SYNTAX Unsigned32 |
| 66 | MAX-ACCESS accessible-for-notify |
| 67 | STATUS current |
| 68 | DESCRIPTION |
| 69 | "Indicates this is the Nth notification in a longer sequence |
| 70 | of notifications" |
| 71 | ::= { nsPNotifyObjects 2 } |
| 72 | |
| 73 | nsPNotifyMaxMessageNumber OBJECT-TYPE |
| 74 | SYNTAX Unsigned32 |
| 75 | MAX-ACCESS accessible-for-notify |
| 76 | STATUS current |
| 77 | DESCRIPTION |
| 78 | "The maximum number of messages this notification sequence |
| 79 | will contain." |
| 80 | ::= { nsPNotifyObjects 3 } |
| 81 | |
| 82 | |
| 83 | END |