home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / SNMP_MIBs / snmpv3 / SNMP-NOTIFICATION-MIB.mib < prev    next >
Text File  |  2008-02-08  |  22KB  |  596 lines

  1. -- file: SNMP-NOTIFICATION-MIB.my
  2. -- Extracted from RFC3413 by MG-SOFT Corp.
  3. -- Changes:
  4. --      No changes needed.
  5. -- http://www.mg-soft.com/
  6.  
  7. SNMP-NOTIFICATION-MIB DEFINITIONS ::= BEGIN
  8.  
  9.    IMPORTS
  10.        MODULE-IDENTITY,
  11.        OBJECT-TYPE,
  12.        snmpModules
  13.            FROM SNMPv2-SMI
  14.  
  15.        RowStatus,
  16.        StorageType
  17.            FROM SNMPv2-TC
  18.  
  19.        SnmpAdminString
  20.            FROM SNMP-FRAMEWORK-MIB
  21.  
  22.        SnmpTagValue,
  23.  
  24.        snmpTargetParamsName
  25.            FROM SNMP-TARGET-MIB
  26.  
  27.        MODULE-COMPLIANCE,
  28.        OBJECT-GROUP
  29.            FROM SNMPv2-CONF;
  30.  
  31.    snmpNotificationMIB MODULE-IDENTITY
  32.        LAST-UPDATED "200210140000Z"
  33.        ORGANIZATION "IETF SNMPv3 Working Group"
  34.        CONTACT-INFO
  35.            "WG-email:   snmpv3@lists.tislabs.com
  36.             Subscribe:  majordomo@lists.tislabs.com
  37.                         In message body:  subscribe snmpv3
  38.  
  39.             Co-Chair:   Russ Mundy
  40.                         Network Associates Laboratories
  41.             Postal:     15204 Omega Drive, Suite 300
  42.                         Rockville, MD 20850-4601
  43.                         USA
  44.             EMail:      mundy@tislabs.com
  45.             Phone:      +1 301-947-7107
  46.  
  47.             Co-Chair:   David Harrington
  48.                         Enterasys Networks
  49.             Postal:     35 Industrial Way
  50.                         P. O. Box 5004
  51.                         Rochester, New Hampshire 03866-5005
  52.                         USA
  53.             EMail:      dbh@enterasys.com
  54.             Phone:      +1 603-337-2614
  55.  
  56.             Co-editor:  David B. Levi
  57.                         Nortel Networks
  58.             Postal:     3505 Kesterwood Drive
  59.                         Knoxville, Tennessee 37918
  60.             EMail:      dlevi@nortelnetworks.com
  61.             Phone:      +1 865 686 0432
  62.  
  63.             Co-editor:  Paul Meyer
  64.                         Secure Computing Corporation
  65.             Postal:     2675 Long Lake Road
  66.                         Roseville, Minnesota 55113
  67.             EMail:      paul_meyer@securecomputing.com
  68.             Phone:      +1 651 628 1592
  69.  
  70.             Co-editor:  Bob Stewart
  71.                         Retired"
  72.  
  73.  
  74.        DESCRIPTION
  75.            "This MIB module defines MIB objects which provide
  76.             mechanisms to remotely configure the parameters
  77.             used by an SNMP entity for the generation of
  78.             notifications.
  79.  
  80.             Copyright (C) The Internet Society (2002). This
  81.             version of this MIB module is part of RFC 3413;
  82.             see the RFC itself for full legal notices.
  83.            "
  84.        REVISION    "200210140000Z"             -- 14 October 2002
  85.        DESCRIPTION "Clarifications, published as
  86.                     RFC 3413."
  87.        REVISION    "199808040000Z"             -- 4 August 1998
  88.        DESCRIPTION "Clarifications, published as
  89.                     RFC 2573."
  90.        REVISION    "199707140000Z"             -- 14 July 1997
  91.        DESCRIPTION "The initial revision, published as RFC2273."
  92.        ::= { snmpModules 13 }
  93.  
  94.    snmpNotifyObjects       OBJECT IDENTIFIER ::=
  95.                                              { snmpNotificationMIB 1 }
  96.    snmpNotifyConformance   OBJECT IDENTIFIER ::=
  97.                                              { snmpNotificationMIB 3 }
  98.  
  99.    --
  100.    --
  101.    -- The snmpNotifyObjects group
  102.    --
  103.    --
  104.  
  105.    snmpNotifyTable OBJECT-TYPE
  106.        SYNTAX      SEQUENCE OF SnmpNotifyEntry
  107.        MAX-ACCESS  not-accessible
  108.        STATUS      current
  109.        DESCRIPTION
  110.            "This table is used to select management targets which should
  111.             receive notifications, as well as the type of notification
  112.             which should be sent to each selected management target."
  113.        ::= { snmpNotifyObjects 1 }
  114.  
  115.    snmpNotifyEntry OBJECT-TYPE
  116.        SYNTAX      SnmpNotifyEntry
  117.        MAX-ACCESS  not-accessible
  118.        STATUS      current
  119.        DESCRIPTION
  120.            "An entry in this table selects a set of management targets
  121.             which should receive notifications, as well as the type of
  122.             notification which should be sent to each selected
  123.             management target.
  124.  
  125.             Entries in the snmpNotifyTable are created and
  126.             deleted using the snmpNotifyRowStatus object."
  127.        INDEX { IMPLIED snmpNotifyName }
  128.        ::= { snmpNotifyTable 1 }
  129.  
  130.    SnmpNotifyEntry ::= SEQUENCE {
  131.        snmpNotifyName         SnmpAdminString,
  132.        snmpNotifyTag          SnmpTagValue,
  133.        snmpNotifyType         INTEGER,
  134.        snmpNotifyStorageType  StorageType,
  135.        snmpNotifyRowStatus    RowStatus
  136.    }
  137.  
  138.    snmpNotifyName OBJECT-TYPE
  139.        SYNTAX      SnmpAdminString (SIZE(1..32))
  140.        MAX-ACCESS  not-accessible
  141.        STATUS      current
  142.        DESCRIPTION
  143.            "The locally arbitrary, but unique identifier associated
  144.             with this snmpNotifyEntry."
  145.        ::= { snmpNotifyEntry 1 }
  146.  
  147.    snmpNotifyTag OBJECT-TYPE
  148.        SYNTAX      SnmpTagValue
  149.        MAX-ACCESS  read-create
  150.        STATUS      current
  151.        DESCRIPTION
  152.            "This object contains a single tag value which is used
  153.             to select entries in the snmpTargetAddrTable.  Any entry
  154.             in the snmpTargetAddrTable which contains a tag value
  155.             which is equal to the value of an instance of this
  156.             object is selected.  If this object contains a value
  157.             of zero length, no entries are selected."
  158.        DEFVAL { "" }
  159.        ::= { snmpNotifyEntry 2 }
  160.  
  161.    snmpNotifyType OBJECT-TYPE
  162.        SYNTAX      INTEGER {
  163.                        trap(1),
  164.                        inform(2)
  165.                    }
  166.        MAX-ACCESS  read-create
  167.        STATUS      current
  168.        DESCRIPTION
  169.            "This object determines the type of notification to
  170.             be generated for entries in the snmpTargetAddrTable
  171.             selected by the corresponding instance of
  172.             snmpNotifyTag.  This value is only used when
  173.             generating notifications, and is ignored when
  174.             using the snmpTargetAddrTable for other purposes.
  175.  
  176.             If the value of this object is trap(1), then any
  177.             messages generated for selected rows will contain
  178.             Unconfirmed-Class PDUs.
  179.  
  180.             If the value of this object is inform(2), then any
  181.             messages generated for selected rows will contain
  182.             Confirmed-Class PDUs.
  183.  
  184.             Note that if an SNMP entity only supports
  185.             generation of Unconfirmed-Class PDUs (and not
  186.             Confirmed-Class PDUs), then this object may be
  187.             read-only."
  188.        DEFVAL { trap }
  189.        ::= { snmpNotifyEntry 3 }
  190.  
  191.    snmpNotifyStorageType OBJECT-TYPE
  192.        SYNTAX      StorageType
  193.        MAX-ACCESS  read-create
  194.        STATUS      current
  195.        DESCRIPTION
  196.            "The storage type for this conceptual row.
  197.             Conceptual rows having the value 'permanent' need not
  198.             allow write-access to any columnar objects in the row."
  199.        DEFVAL { nonVolatile }
  200.        ::= { snmpNotifyEntry 4 }
  201.  
  202.    snmpNotifyRowStatus OBJECT-TYPE
  203.        SYNTAX      RowStatus
  204.        MAX-ACCESS  read-create
  205.        STATUS      current
  206.        DESCRIPTION
  207.            "The status of this conceptual row.
  208.  
  209.             To create a row in this table, a manager must
  210.             set this object to either createAndGo(4) or
  211.             createAndWait(5)."
  212.        ::= { snmpNotifyEntry 5 }
  213.  
  214.    snmpNotifyFilterProfileTable OBJECT-TYPE
  215.        SYNTAX      SEQUENCE OF SnmpNotifyFilterProfileEntry
  216.        MAX-ACCESS  not-accessible
  217.        STATUS      current
  218.        DESCRIPTION
  219.            "This table is used to associate a notification filter
  220.             profile with a particular set of target parameters."
  221.        ::= { snmpNotifyObjects 2 }
  222.  
  223.    snmpNotifyFilterProfileEntry OBJECT-TYPE
  224.        SYNTAX      SnmpNotifyFilterProfileEntry
  225.        MAX-ACCESS  not-accessible
  226.        STATUS      current
  227.        DESCRIPTION
  228.            "An entry in this table indicates the name of the filter
  229.             profile to be used when generating notifications using
  230.             the corresponding entry in the snmpTargetParamsTable.
  231.  
  232.             Entries in the snmpNotifyFilterProfileTable are created
  233.             and deleted using the snmpNotifyFilterProfileRowStatus
  234.             object."
  235.        INDEX { IMPLIED snmpTargetParamsName }
  236.        ::= { snmpNotifyFilterProfileTable 1 }
  237.  
  238.    SnmpNotifyFilterProfileEntry ::= SEQUENCE {
  239.        snmpNotifyFilterProfileName         SnmpAdminString,
  240.        snmpNotifyFilterProfileStorType     StorageType,
  241.        snmpNotifyFilterProfileRowStatus    RowStatus
  242.    }
  243.  
  244.    snmpNotifyFilterProfileName OBJECT-TYPE
  245.        SYNTAX      SnmpAdminString (SIZE(1..32))
  246.        MAX-ACCESS  read-create
  247.        STATUS      current
  248.        DESCRIPTION
  249.            "The name of the filter profile to be used when generating
  250.             notifications using the corresponding entry in the
  251.             snmpTargetAddrTable."
  252.        ::= { snmpNotifyFilterProfileEntry 1 }
  253.  
  254.    snmpNotifyFilterProfileStorType OBJECT-TYPE
  255.        SYNTAX      StorageType
  256.        MAX-ACCESS  read-create
  257.        STATUS      current
  258.        DESCRIPTION
  259.            "The storage type for this conceptual row.
  260.             Conceptual rows having the value 'permanent' need not
  261.             allow write-access to any columnar objects in the row."
  262.        DEFVAL { nonVolatile }
  263.        ::= { snmpNotifyFilterProfileEntry 2 }
  264.  
  265.    snmpNotifyFilterProfileRowStatus OBJECT-TYPE
  266.        SYNTAX      RowStatus
  267.        MAX-ACCESS  read-create
  268.        STATUS      current
  269.        DESCRIPTION
  270.            "The status of this conceptual row.
  271.  
  272.             To create a row in this table, a manager must
  273.             set this object to either createAndGo(4) or
  274.             createAndWait(5).
  275.  
  276.             Until instances of all corresponding columns are
  277.             appropriately configured, the value of the
  278.             corresponding instance of the
  279.             snmpNotifyFilterProfileRowStatus column is 'notReady'.
  280.  
  281.             In particular, a newly created row cannot be made
  282.             active until the corresponding instance of
  283.             snmpNotifyFilterProfileName has been set."
  284.        ::= { snmpNotifyFilterProfileEntry 3 }
  285.  
  286.    snmpNotifyFilterTable OBJECT-TYPE
  287.        SYNTAX      SEQUENCE OF SnmpNotifyFilterEntry
  288.        MAX-ACCESS  not-accessible
  289.        STATUS      current
  290.        DESCRIPTION
  291.            "The table of filter profiles.  Filter profiles are used
  292.             to determine whether particular management targets should
  293.             receive particular notifications.
  294.  
  295.             When a notification is generated, it must be compared
  296.             with the filters associated with each management target
  297.             which is configured to receive notifications, in order to
  298.             determine whether it may be sent to each such management
  299.             target.
  300.  
  301.             A more complete discussion of notification filtering
  302.             can be found in section 6. of [SNMP-APPL]."
  303.        ::= { snmpNotifyObjects 3 }
  304.  
  305.    snmpNotifyFilterEntry OBJECT-TYPE
  306.        SYNTAX      SnmpNotifyFilterEntry
  307.        MAX-ACCESS  not-accessible
  308.        STATUS      current
  309.        DESCRIPTION
  310.            "An element of a filter profile.
  311.  
  312.             Entries in the snmpNotifyFilterTable are created and
  313.             deleted using the snmpNotifyFilterRowStatus object."
  314.        INDEX {         snmpNotifyFilterProfileName,
  315.                IMPLIED snmpNotifyFilterSubtree }
  316.        ::= { snmpNotifyFilterTable 1 }
  317.  
  318.    SnmpNotifyFilterEntry ::= SEQUENCE {
  319.        snmpNotifyFilterSubtree           OBJECT IDENTIFIER,
  320.        snmpNotifyFilterMask              OCTET STRING,
  321.        snmpNotifyFilterType              INTEGER,
  322.        snmpNotifyFilterStorageType       StorageType,
  323.        snmpNotifyFilterRowStatus         RowStatus
  324.    }
  325.  
  326.    snmpNotifyFilterSubtree OBJECT-TYPE
  327.        SYNTAX      OBJECT IDENTIFIER
  328.        MAX-ACCESS  not-accessible
  329.        STATUS      current
  330.        DESCRIPTION
  331.            "The MIB subtree which, when combined with the corresponding
  332.             instance of snmpNotifyFilterMask, defines a family of
  333.             subtrees which are included in or excluded from the
  334.             filter profile."
  335.        ::= { snmpNotifyFilterEntry 1 }
  336.  
  337.    snmpNotifyFilterMask OBJECT-TYPE
  338.        SYNTAX      OCTET STRING (SIZE(0..16))
  339.        MAX-ACCESS  read-create
  340.        STATUS      current
  341.        DESCRIPTION
  342.            "The bit mask which, in combination with the corresponding
  343.             instance of snmpNotifyFilterSubtree, defines a family of
  344.             subtrees which are included in or excluded from the
  345.             filter profile.
  346.  
  347.             Each bit of this bit mask corresponds to a
  348.             sub-identifier of snmpNotifyFilterSubtree, with the
  349.             most significant bit of the i-th octet of this octet
  350.             string value (extended if necessary, see below)
  351.             corresponding to the (8*i - 7)-th sub-identifier, and
  352.             the least significant bit of the i-th octet of this
  353.             octet string corresponding to the (8*i)-th
  354.             sub-identifier, where i is in the range 1 through 16.
  355.  
  356.             Each bit of this bit mask specifies whether or not
  357.             the corresponding sub-identifiers must match when
  358.             determining if an OBJECT IDENTIFIER matches this
  359.             family of filter subtrees; a '1' indicates that an
  360.             exact match must occur; a '0' indicates 'wild card',
  361.             i.e., any sub-identifier value matches.
  362.             Thus, the OBJECT IDENTIFIER X of an object instance
  363.             is contained in a family of filter subtrees if, for
  364.             each sub-identifier of the value of
  365.             snmpNotifyFilterSubtree, either:
  366.  
  367.               the i-th bit of snmpNotifyFilterMask is 0, or
  368.  
  369.               the i-th sub-identifier of X is equal to the i-th
  370.               sub-identifier of the value of
  371.               snmpNotifyFilterSubtree.
  372.  
  373.             If the value of this bit mask is M bits long and
  374.             there are more than M sub-identifiers in the
  375.             corresponding instance of snmpNotifyFilterSubtree,
  376.             then the bit mask is extended with 1's to be the
  377.             required length.
  378.  
  379.             Note that when the value of this object is the
  380.             zero-length string, this extension rule results in
  381.             a mask of all-1's being used (i.e., no 'wild card'),
  382.             and the family of filter subtrees is the one
  383.             subtree uniquely identified by the corresponding
  384.             instance of snmpNotifyFilterSubtree."
  385.        DEFVAL { ''H }
  386.        ::= { snmpNotifyFilterEntry 2 }
  387.  
  388.    snmpNotifyFilterType OBJECT-TYPE
  389.        SYNTAX      INTEGER {
  390.                        included(1),
  391.                        excluded(2)
  392.                    }
  393.        MAX-ACCESS  read-create
  394.        STATUS      current
  395.        DESCRIPTION
  396.            "This object indicates whether the family of filter subtrees
  397.             defined by this entry are included in or excluded from a
  398.             filter.  A more detailed discussion of the use of this
  399.             object can be found in section 6. of [SNMP-APPL]."
  400.        DEFVAL { included }
  401.        ::= { snmpNotifyFilterEntry 3 }
  402.  
  403.    snmpNotifyFilterStorageType OBJECT-TYPE
  404.        SYNTAX      StorageType
  405.        MAX-ACCESS  read-create
  406.        STATUS      current
  407.        DESCRIPTION
  408.            "The storage type for this conceptual row.
  409.             Conceptual rows having the value 'permanent' need not
  410.             allow write-access to any columnar objects in the row."
  411.        DEFVAL { nonVolatile }
  412.        ::= { snmpNotifyFilterEntry 4 }
  413.  
  414.    snmpNotifyFilterRowStatus OBJECT-TYPE
  415.        SYNTAX      RowStatus
  416.        MAX-ACCESS  read-create
  417.        STATUS      current
  418.        DESCRIPTION
  419.            "The status of this conceptual row.
  420.  
  421.             To create a row in this table, a manager must
  422.             set this object to either createAndGo(4) or
  423.             createAndWait(5)."
  424.        ::= { snmpNotifyFilterEntry 5 }
  425.  
  426.    --
  427.    --
  428.    -- Conformance information
  429.    --
  430.    --
  431.  
  432.    snmpNotifyCompliances OBJECT IDENTIFIER ::=
  433.                                            { snmpNotifyConformance 1 }
  434.    snmpNotifyGroups      OBJECT IDENTIFIER ::=
  435.                                            { snmpNotifyConformance 2 }
  436.  
  437.    --
  438.    --
  439.    -- Compliance statements
  440.    --
  441.    --
  442.  
  443.    snmpNotifyBasicCompliance MODULE-COMPLIANCE
  444.        STATUS      current
  445.        DESCRIPTION
  446.            "The compliance statement for minimal SNMP entities which
  447.             implement only SNMP Unconfirmed-Class notifications and
  448.             read-create operations on only the snmpTargetAddrTable."
  449.        MODULE SNMP-TARGET-MIB
  450.            MANDATORY-GROUPS { snmpTargetBasicGroup }
  451.  
  452.            OBJECT snmpTargetParamsMPModel
  453.            MIN-ACCESS    read-only
  454.            DESCRIPTION
  455.                "Create/delete/modify access is not required."
  456.  
  457.            OBJECT snmpTargetParamsSecurityModel
  458.            MIN-ACCESS    read-only
  459.            DESCRIPTION
  460.                "Create/delete/modify access is not required."
  461.  
  462.            OBJECT snmpTargetParamsSecurityName
  463.            MIN-ACCESS    read-only
  464.            DESCRIPTION
  465.                "Create/delete/modify access is not required."
  466.  
  467.            OBJECT snmpTargetParamsSecurityLevel
  468.            MIN-ACCESS    read-only
  469.            DESCRIPTION
  470.                "Create/delete/modify access is not required."
  471.  
  472.            OBJECT snmpTargetParamsStorageType
  473.            SYNTAX INTEGER {
  474.                readOnly(5)
  475.            }
  476.            MIN-ACCESS    read-only
  477.            DESCRIPTION
  478.                "Create/delete/modify access is not required.
  479.                 Support of the values other(1), volatile(2),
  480.                 nonVolatile(3), and permanent(4) is not required."
  481.  
  482.            OBJECT snmpTargetParamsRowStatus
  483.            SYNTAX INTEGER {
  484.                active(1)
  485.            }
  486.            MIN-ACCESS    read-only
  487.            DESCRIPTION
  488.                "Create/delete/modify access to the
  489.                 snmpTargetParamsTable is not required.
  490.                 Support of the values notInService(2), notReady(3),
  491.                 createAndGo(4), createAndWait(5), and destroy(6) is
  492.                 not required."
  493.  
  494.        MODULE -- This Module
  495.            MANDATORY-GROUPS { snmpNotifyGroup }
  496.  
  497.            OBJECT snmpNotifyTag
  498.            MIN-ACCESS    read-only
  499.            DESCRIPTION
  500.                "Create/delete/modify access is not required."
  501.  
  502.            OBJECT snmpNotifyType
  503.            SYNTAX INTEGER {
  504.                trap(1)
  505.            }
  506.            MIN-ACCESS    read-only
  507.            DESCRIPTION
  508.                "Create/delete/modify access is not required.
  509.                 Support of the value notify(2) is not required."
  510.  
  511.            OBJECT snmpNotifyStorageType
  512.            SYNTAX INTEGER {
  513.                readOnly(5)
  514.            }
  515.            MIN-ACCESS    read-only
  516.            DESCRIPTION
  517.                "Create/delete/modify access is not required.
  518.                 Support of the values other(1), volatile(2),
  519.                 nonVolatile(3), and permanent(4) is not required."
  520.  
  521.            OBJECT snmpNotifyRowStatus
  522.            SYNTAX INTEGER {
  523.                active(1)
  524.            }
  525.            MIN-ACCESS    read-only
  526.            DESCRIPTION
  527.                "Create/delete/modify access to the
  528.                 snmpNotifyTable is not required.
  529.                 Support of the values notInService(2), notReady(3),
  530.                 createAndGo(4), createAndWait(5), and destroy(6) is
  531.                 not required."
  532.  
  533.        ::= { snmpNotifyCompliances 1 }
  534.  
  535.    snmpNotifyBasicFiltersCompliance MODULE-COMPLIANCE
  536.        STATUS      current
  537.        DESCRIPTION
  538.            "The compliance statement for SNMP entities which implement
  539.             SNMP Unconfirmed-Class notifications with filtering, and
  540.             read-create operations on all related tables."
  541.        MODULE SNMP-TARGET-MIB
  542.            MANDATORY-GROUPS { snmpTargetBasicGroup }
  543.        MODULE -- This Module
  544.            MANDATORY-GROUPS { snmpNotifyGroup,
  545.                               snmpNotifyFilterGroup }
  546.        ::= { snmpNotifyCompliances 2 }
  547.  
  548.    snmpNotifyFullCompliance MODULE-COMPLIANCE
  549.        STATUS      current
  550.        DESCRIPTION
  551.            "The compliance statement for SNMP entities which either
  552.             implement only SNMP Confirmed-Class notifications, or both
  553.             SNMP Unconfirmed-Class and Confirmed-Class notifications,
  554.             plus filtering and read-create operations on all related
  555.             tables."
  556.        MODULE SNMP-TARGET-MIB
  557.            MANDATORY-GROUPS { snmpTargetBasicGroup,
  558.                               snmpTargetResponseGroup }
  559.        MODULE -- This Module
  560.            MANDATORY-GROUPS { snmpNotifyGroup,
  561.                               snmpNotifyFilterGroup }
  562.        ::= { snmpNotifyCompliances 3 }
  563.  
  564.    snmpNotifyGroup OBJECT-GROUP
  565.        OBJECTS {
  566.            snmpNotifyTag,
  567.            snmpNotifyType,
  568.            snmpNotifyStorageType,
  569.            snmpNotifyRowStatus
  570.        }
  571.        STATUS      current
  572.        DESCRIPTION
  573.            "A collection of objects for selecting which management
  574.             targets are used for generating notifications, and the
  575.             type of notification to be generated for each selected
  576.             management target."
  577.        ::= { snmpNotifyGroups 1 }
  578.  
  579.    snmpNotifyFilterGroup OBJECT-GROUP
  580.        OBJECTS {
  581.            snmpNotifyFilterProfileName,
  582.            snmpNotifyFilterProfileStorType,
  583.            snmpNotifyFilterProfileRowStatus,
  584.            snmpNotifyFilterMask,
  585.            snmpNotifyFilterType,
  586.            snmpNotifyFilterStorageType,
  587.            snmpNotifyFilterRowStatus
  588.        }
  589.        STATUS      current
  590.        DESCRIPTION
  591.            "A collection of objects providing remote configuration
  592.             of notification filters."
  593.        ::= { snmpNotifyGroups 2 }
  594.  
  595.    END
  596.