summaryrefslogtreecommitdiff
path: root/MIBS/cisco/CERENT-IF-EXT-MIB
blob: 836e67edfa248ac9a1eee98c30a7be377c95c0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
-- **************************************************************
-- CERENT-IF-EXT-MIB module
--
-- December 2005, Srikar B S
-- This module is an extension of the IF-MIB.

-- Copyright (c) 2005-2006 by Cisco Systems, Inc.
-- All rights reserved.
--
-- **************************************************************

-- This MIB is an extension of the IF-MIB and contains objects
-- to manage interfaces.

CERENT-IF-EXT-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY,
    OBJECT-TYPE,
    Integer32
                      FROM SNMPv2-SMI
    MODULE-COMPLIANCE,
    OBJECT-GROUP      FROM SNMPv2-CONF
    TruthValue        FROM SNMPv2-TC
    ifIndex           FROM IF-MIB
    cerentModules,
    cerentGeneric,
    cerentRequirements
                      FROM CERENT-GLOBAL-REGISTRY;

cerentIfExtMIB MODULE-IDENTITY
    LAST-UPDATED "200511140000Z"
    ORGANIZATION "Cisco Systems, Inc."
    CONTACT-INFO
        "         support@Cisco.com

         Postal:  Cisco Systems
                  1450 N. McDowell Blvd.
                  Petaluma, CA  94954
                  USA

            Tel:  +1-877-323-7368"
    DESCRIPTION
        "This module defines objects for managing interfaces."

    REVISION "200511140000Z"
    DESCRIPTION
        "Inital version of the module"

    ::= { cerentModules 140 }

cerentIfExtMIBObjects OBJECT IDENTIFIER
      ::= { cerentGeneric 100 }

cerentIfExtTable       OBJECT-TYPE
       SYNTAX SEQUENCE OF CerentIfExtEntry
       MAX-ACCESS not-accessible
       STATUS current
       DESCRIPTION
              "This table contains one row per interface."

       ::= { cerentIfExtMIBObjects 10 }

cerentIfExtEntry       OBJECT-TYPE
       SYNTAX CerentIfExtEntry
       MAX-ACCESS not-accessible
       STATUS current
       DESCRIPTION
              "Row definition for cerentIfExtTable"
       INDEX { ifIndex }
       ::= { cerentIfExtTable 1 }

CerentIfExtEntry ::= SEQUENCE {
      cerentIfExtPreServiceAlarmSuppression   TruthValue,
      cerentIfExtConfiguredSoakTime           Integer32,
      cerentIfExtCurrentSoakTime              Integer32
    }

cerentIfExtPreServiceAlarmSuppression  OBJECT-TYPE
       SYNTAX                  TruthValue
       MAX-ACCESS read-write
       STATUS current
       DESCRIPTION
          "This object can be set through a management interface.
           When the administrative state of this interface is 'down',
           the value of this object does not have any impact.
    
           When the administrative state of this interface is 'up',
           if this object has a value of 'false', an alarm on this 
           interface will be reported. If the value of this object is 'true'
           then all alarms on this interface will be suppressed.

           If the interface has a good signal, the soak timer will be
           started, if the port is faulted before the soak timer expires,
           the soak timer will be reset to the provisioned maximum value.
           If the soak timer expires then the value of this object is 
           automatically set to 'false'."
       DEFVAL { false }
       ::= { cerentIfExtEntry 10 } 

cerentIfExtConfiguredSoakTime     OBJECT-TYPE
       SYNTAX                  Integer32
       UNITS      "minutes"
       MAX-ACCESS read-write
       STATUS current
       DESCRIPTION
          "This is the configured maximum value of the soak timer
           for this interface."
       DEFVAL { 480 }
       ::= { cerentIfExtEntry 20 }

cerentIfExtCurrentSoakTime     OBJECT-TYPE
       SYNTAX                  Integer32
       UNITS      "minutes"
       MAX-ACCESS read-only
       STATUS current
       DESCRIPTION
          "This is the current value of the soak timer
           for this interface. The difference between 
           cerntIfExtConfiguredSoakTime and this object gives the
           time duration for which this interface has had a good signal."
       ::= { cerentIfExtEntry 30 }

cerentIfExtMIBConformance OBJECT IDENTIFIER
      ::= { cerentRequirements 90 }
cerentIfExtMIBCompliances OBJECT IDENTIFIER
      ::= { cerentIfExtMIBConformance 1}
cerentIfExtMIBGroups OBJECT IDENTIFIER
      ::= { cerentIfExtMIBConformance 2}

cerentIfExtMIBCompliance MODULE-COMPLIANCE
    STATUS  current
    DESCRIPTION
        "Describes the requirements for conformance to the
        High Capacity Media Independent Group."
    MODULE  -- this module
    MANDATORY-GROUPS { cerentIfExtGroup }
    ::= { cerentIfExtMIBCompliances 1 }
       

cerentIfExtGroup OBJECT-GROUP
        OBJECTS {
          cerentIfExtPreServiceAlarmSuppression,
          cerentIfExtConfiguredSoakTime,
          cerentIfExtCurrentSoakTime
        }
        STATUS current
        DESCRIPTION
          "The objects for storing all the current alarm thresholds "
        ::= { cerentIfExtMIBGroups 10 }

END