summaryrefslogtreecommitdiff
path: root/MIBS/arris/d5/ARRIS-D5-IP-MIB
blob: 6bd4e030bb9e85b0397bc7c61c55ab397faab082 (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
ARRIS-D5-IP-MIB DEFINITIONS ::= BEGIN

IMPORTS
        arrisD5UEQam
            FROM ARRIS-MIB
        MODULE-IDENTITY,
        OBJECT-TYPE,
        Unsigned32,
        TimeTicks
                FROM SNMPv2-SMI
        TruthValue
                FROM SNMPv2-TC
        OBJECT-GROUP
                FROM SNMPv2-CONF
        InetAddress
                FROM INET-ADDRESS-MIB
        SnmpAdminString 
                FROM SNMP-FRAMEWORK-MIB
        igmpCacheEntry,
        igmpInterfaceEntry
                FROM IGMP-STD-MIB;

arrisD5UEQamIpMib MODULE-IDENTITY
		LAST-UPDATED "200801040000Z" -- 04th January 2008
		ORGANIZATION "Arris Group"
		CONTACT-INFO
				"           Software Development
						Postal: ARRIS Group
										3871 Lakefield Drive
										Suwanee, GA 30024
										USA
						Tel:    800-469-6569
						Fax:    678-473-8770"

		DESCRIPTION
				"This MIB manages the proprietary IP configuration of the D5"
		::= { arrisD5UEQam 15 }


arrisD5UEQamIpGroup OBJECT-GROUP
	OBJECTS {
		d5IpDefaultRoute,
		d5IpGratuitousArpEnabled,
		d5IpGratuitousArpPeriod
  }
  STATUS current
   DESCRIPTION
"A collection of objects providing system IP configuration."
 ::= { arrisD5UEQamIpMib 1 }
   

d5IpDefaultRoute OBJECT-TYPE
   SYNTAX       InetAddress
   MAX-ACCESS   read-write
   STATUS       current
   DESCRIPTION
        "Sets default route."
   ::= { arrisD5UEQamIpGroup 1 }

d5IpGratuitousArpEnabled OBJECT-TYPE
   SYNTAX       TruthValue
   MAX-ACCESS   read-write
   STATUS       current
   DESCRIPTION
        "Enable or Disable the gratuitous arp feature."
   ::= { arrisD5UEQamIpGroup 2 }

d5IpGratuitousArpPeriod OBJECT-TYPE
   SYNTAX       Unsigned32
   MAX-ACCESS   read-write
   STATUS       current
   DESCRIPTION
        "Configure the frequency of gratuitous arp transmission."
   ::= { arrisD5UEQamIpGroup 3 }



   --
   --   Extension to the igmpCacheTable
   --
   --

   d5IpIgmpCacheExtTable        OBJECT-TYPE
       SYNTAX      SEQUENCE OF D5IpIgmpCacheExtEntry
       MAX-ACCESS  not-accessible
       STATUS      current
       DESCRIPTION
               "A list of source ips for a given multicast group"
       ::= { arrisD5UEQamIpGroup 4 }

   d5IpIgmpCacheExtEntry        OBJECT-TYPE
       SYNTAX      D5IpIgmpCacheExtEntry
       MAX-ACCESS  not-accessible
       STATUS      current
       DESCRIPTION
               "An entry containing additional information, mainly source
                ip addresses for an entry in the igmpCacheTable"
       AUGMENTS    { igmpCacheEntry }
       ::= { d5IpIgmpCacheExtTable 1 }

    D5IpIgmpCacheExtEntry ::=
       SEQUENCE {
            igmpCacheSource1             IpAddress,
            igmpCacheSource1Status       INTEGER,
            igmpCacheSource1Type         INTEGER,
            igmpCacheSource2             IpAddress,
            igmpCacheSource2Status       INTEGER,
            igmpCacheSource2Type         INTEGER,
            igmpCacheSource3             IpAddress,
            igmpCacheSource3Status       INTEGER,
            igmpCacheSource3Type         INTEGER
       }

    igmpCacheSource1 OBJECT-TYPE
    SYNTAX     IpAddress
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "The IP multicast group source address"
    ::= { d5IpIgmpCacheExtEntry 1 }

    igmpCacheSource1Status OBJECT-TYPE
       SYNTAX  INTEGER {
                    ifDown(1),
                    candidate(2),
                    streaming(3), 
                    waiting(4),
                    undefined(5)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "The current state of the source address, whether the interface is down, video is stremaing, is waiting for a stream
             or is a candidate in the case of loss of current stream"
       ::= { d5IpIgmpCacheExtEntry 2 }

    igmpCacheSource1Type OBJECT-TYPE
       SYNTAX  INTEGER {
                    undefined(0),
                    static(1),
                    dynamic(2)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "States if the source address is statically or dynamically configured"
       ::= { d5IpIgmpCacheExtEntry 3 }

    igmpCacheSource2 OBJECT-TYPE
    SYNTAX     IpAddress
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "The IP multicast group source address"
    ::= { d5IpIgmpCacheExtEntry 4 }

    igmpCacheSource2Status OBJECT-TYPE
       SYNTAX  INTEGER {
                    ifDown(1),
                    candidate(2),
                    streaming(3), 
                    waiting(4),
                    undefined(5)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "The current state of the source address, whether the interface is down, video is stremaing, is waiting for a stream
             or is a candidate in the case of loss of current stream"
       ::= { d5IpIgmpCacheExtEntry 5 }

    igmpCacheSource2Type OBJECT-TYPE
       SYNTAX  INTEGER {
                    undefined(0),
                    static(1),
                    dynamic(2)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "States if the source address is statically or dynamically configured"
       ::= { d5IpIgmpCacheExtEntry 6 }

    igmpCacheSource3 OBJECT-TYPE
    SYNTAX     IpAddress
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "The IP multicast group source address"
    ::= { d5IpIgmpCacheExtEntry 7 }

    igmpCacheSource3Status OBJECT-TYPE
       SYNTAX  INTEGER {
                    ifDown(1),
                    candidate(2),
                    streaming(3), 
                    waiting(4),
                    undefined(5)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "The current state of the source address, whether the interface is down, video is stremaing, is waiting for a stream
             or is a candidate in the case of loss of current stream"
       ::= { d5IpIgmpCacheExtEntry 8 }

    igmpCacheSource3Type OBJECT-TYPE
       SYNTAX  INTEGER {
                    undefined(0),
                    static(1),
                    dynamic(2)
               }
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
            "States if the source address is statically or dynamically configured"
       ::= { d5IpIgmpCacheExtEntry 9 }


   --
   --   Extension to the igmpInterfaceTable
   --
   --

   d5IpIgmpInterfaceExtTable        OBJECT-TYPE
       SYNTAX      SEQUENCE OF D5IpIgmpInterfaceExtEntry
       MAX-ACCESS  not-accessible
       STATUS      current
       DESCRIPTION
               "A list of additional fields to the v2 igmp mib entry"
       ::= { arrisD5UEQamIpGroup 5 }

   d5IpIgmpInterfaceExtEntry        OBJECT-TYPE
       SYNTAX      D5IpIgmpInterfaceExtEntry
       MAX-ACCESS  not-accessible
       STATUS      current
       DESCRIPTION
               "An entry containing additional information to the v2 igmp mib entry"
       AUGMENTS    { igmpInterfaceEntry }
       ::= { d5IpIgmpInterfaceExtTable 1 }

    D5IpIgmpInterfaceExtEntry ::=
       SEQUENCE {
            igmpInterfaceExtVersion2QuerierTimer  TimeTicks
       }

    igmpInterfaceExtVersion2QuerierTimer OBJECT-TYPE
        SYNTAX     TimeTicks
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
            "The time remaining until the host assumes that there are no
            IGMPv2 routers present on the interface.  While this is non-
            zero, the host will reply to all queries with version 1
            membership reports."
        ::= { d5IpIgmpInterfaceExtEntry 1 }
END