summaryrefslogtreecommitdiff
path: root/MIBS/arris/d5/ARRIS-D5-CHANNEL-MODE-LOG-MIB
blob: cb312aee39ec8c8c5e511e5ed3bbce8e85c67a6a (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
ARRIS-D5-CHANNEL-MODE-LOG-MIB DEFINITIONS ::= BEGIN

IMPORTS
    arrisD5UEQam
        FROM ARRIS-MIB
    InterfaceIndex
        FROM IF-MIB
    Unsigned32,
    OBJECT-TYPE,
    MODULE-IDENTITY,
    NOTIFICATION-TYPE
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION
        FROM SNMPv2-TC;
    
d5ChannelModeLogMib MODULE-IDENTITY
    LAST-UPDATED "200908280800Z"
    ORGANIZATION
        "Arris International"
    CONTACT-INFO
        "Network Management
         Postal: Arris International.
         4300 Cork Airport Business Park
         Cork Airport, Kinsale Road
         Cork, Ireland.
         Tel: +353 21 7305 800
         Fax: +353 21 4321 972"
    DESCRIPTION
        "This MIB contains objects to monitor QAM channel mode changes on the ARRIS D5 UEQ."
    REVISION "200908280800Z"
    DESCRIPTION
        "D5 UEQ CHANNEL MODE LOG MIB"
    ::= {arrisD5UEQam 23}

D5ChannelMode ::= TEXTUAL-CONVENTION
    STATUS    current
    DESCRIPTION
        "Type definition for channel modes."
    SYNTAX INTEGER {
        single(1),
        dual(2),
        quad(4),
        hex(6),
        octal(8)
    }

-----------------------------------------------------------------------
-- Channel mode log table
-----------------------------------------------------------------------
d5ChannelModeLogTable OBJECT-TYPE
    SYNTAX SEQUENCE OF D5ChannelModeLogEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table lists channel mode changes on the D5 UEQ."
    ::= { d5ChannelModeLogMib 1 }

d5ChannelModeLogEntry OBJECT-TYPE
    SYNTAX D5ChannelModeLogEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "An entry for the D5 channel mode log table."
    INDEX {d5ChannelModeLogIndex}
    ::= { d5ChannelModeLogTable 1 }

D5ChannelModeLogEntry ::= SEQUENCE {
    d5ChannelModeLogIndex     Unsigned32,
    d5ChannelModeLogTimeStamp Unsigned32,
    d5ChannelModeLogIfIndex   InterfaceIndex,
    d5ChannelModeCurrentValue D5ChannelMode,
    d5ChannelModeNewValue     D5ChannelMode
}

d5ChannelModeLogIndex OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "Table index for channel mode log entries."
    ::= { d5ChannelModeLogEntry 1 }

d5ChannelModeLogTimeStamp OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The POSIX time at which the channel change occurred."
    ::= { d5ChannelModeLogEntry 2 }

d5ChannelModeLogIfIndex OBJECT-TYPE
    SYNTAX InterfaceIndex
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The interface index of the QAM port on which the channel mode change occurred."
    ::= { d5ChannelModeLogEntry 3 }

d5ChannelModeCurrentValue OBJECT-TYPE
    SYNTAX D5ChannelMode
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The value of the channel mode prior to the mode change."
    ::= { d5ChannelModeLogEntry 4 }

d5ChannelModeNewValue OBJECT-TYPE
    SYNTAX D5ChannelMode
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The new value of the channel mode."
    ::= { d5ChannelModeLogEntry 5 }

END