summaryrefslogtreecommitdiff
path: root/MIBS/cisco/CISCOSB-PNP
blob: 6aa75d19692ef6d6985e0572c8f3ff218ad51700 (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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
CISCOSB-PNP DEFINITIONS ::= BEGIN

IMPORTS
    switch001                                       FROM CISCOSB-MIB
    MODULE-IDENTITY, OBJECT-TYPE,
    Unsigned32,IpAddress                            FROM SNMPv2-SMI
    RowStatus, TEXTUAL-CONVENTION, MacAddress,
    DisplayString, TruthValue                       FROM SNMPv2-TC
    SnmpAdminString                                 FROM SNMP-FRAMEWORK-MIB
    InetAddressType,InetAddress                     FROM INET-ADDRESS-MIB; -- RFC2851;

rlPNP    MODULE-IDENTITY
         LAST-UPDATED "201702090000Z"
         ORGANIZATION "Cisco Systems, Inc."

         CONTACT-INFO
         "Postal: 170 West Tasman Drive
         San Jose , CA 95134-1706
         USA

         
         Website:  Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"

        DESCRIPTION
                "The private MIB module definition for PNP Agent."
		REVISION "201102090000Z"
        DESCRIPTION
                "Added this MODULE-IDENTITY clause."
        ::= { switch001 234 }

RlOwnerType  ::= TEXTUAL-CONVENTION
   STATUS current
   DESCRIPTION    "The entity that configured parameter."
   SYNTAX INTEGER {
	  rlOwnerNone(0),
      rlOwnerDefault(1),
      rlOwnerStatic(2),
      rlOwnerDHCP(3),
      rlOwnerProtocol(4),
	  rlOwnerDelete(5)
}

-- =======================================================
-- PnP Table
-- =======================================================

rlPNPParamsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF RLPNPParamsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The PnP table has unique structure. It contains PnP agent parameters. 
          It MUST have exactly 2 entries - 
          One, represents the current parameters
          Second, represents the next session parameters.
          Since session cannot be interrupted in the middle, the next parameters will replace the current      
          parameters after session ends.
          Each parameter can be configured manually or by DHCP or by Backoff message."
    ::= { rlPNP 1}

rlPNPParamsEntry   OBJECT-TYPE
    SYNTAX		RLPNPParamsEntry
    MAX-ACCESS 	not-accessible
    STATUS 		current
    DESCRIPTION
        "The row definition for this table."
    INDEX { rlPNPParamsAvailability }
    ::= { rlPNPParamsTable 1 }

RLPNPParamsEntry::= SEQUENCE {
	rlPNPParamsAvailability					INTEGER,
	rlPNPServerAddrType						InetAddressType,	
	rlPNPServerAddr							InetAddress,
	rlPNPServerAddrOwner					RlOwnerType,
	rlPNPProtocol							INTEGER,
	rlPNPProtocolOwner						RlOwnerType,
	rlPNPHTTPPort							Unsigned32,
	rlPNPHTTPPortOwner						RlOwnerType,
	rlPNPHTTPSPort							Unsigned32,
	rlPNPHTTPSPortOwner						RlOwnerType,
	rlPNPUserName							DisplayString,
	rlPNPUserNameOwner						RlOwnerType,
	rlPNPPassword							SnmpAdminString,
	rlPNPPasswordOwner						RlOwnerType,
	rlPNPDiscoveryTimeout					Unsigned32,
	rlPNPDiscoveryTimeoutOwner				RlOwnerType,
	rlPNPDiscoveryExpoFactor 				Unsigned32,
	rlPNPDiscoveryExpoFactorOwner			RlOwnerType,
	rlPNPDiscoveryTimeoutMax			 	Unsigned32,
	rlPNPDiscoveryTimeoutMaxOwner		 	RlOwnerType,
	rlPNPReconnectTimeout					Unsigned32,
	rlPNPReconnectTimeoutOwner				RlOwnerType,
	rlPNPSrcAddrTyp 						InetAddressType,
	rlPNPSrcAddr							InetAddress,
	rlPNPSrcAddrOwner						RlOwnerType,
	rlPNPWatchdogTimeout					Unsigned32,
	rlPNPWatchdogTimeoutOwner				RlOwnerType,
	rlPNPAdminState							INTEGER,
	rlPNPAdminStateOwner					RlOwnerType,
	rlPNPRowStatus							RowStatus
    }

rlPNPParamsAvailability 	OBJECT-TYPE
   SYNTAX		INTEGER {none(0), next(1), current(2)}
    MAX-ACCESS 	not-accessible
    STATUS 		current
    DESCRIPTION
        "The availability of parameters:
	Current – the parameters that are currently used by session.
 	Next – the parameters that will be used after end of session"
    ::= { rlPNPParamsEntry   1 }

rlPNPServerAddrType	OBJECT-TYPE
    SYNTAX 		InetAddressType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The type of PnP server address."
    ::= { rlPNPParamsEntry   2}

rlPNPServerAddr	 	OBJECT-TYPE
    SYNTAX	InetAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP server address. Default value is: PnPserver"
	DEFVAL { '706e70736572766572'H }		   
    ::= { rlPNPParamsEntry   3}

rlPNPServerAddrOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the PnP server address."
	DEFVAL { rlOwnerDefault }		   
    ::= { rlPNPParamsEntry   4}

rlPNPProtocol	OBJECT-TYPE
    SYNTAX INTEGER{http(0), https(1)}
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP transport protocol."
    DEFVAL{ 0 }	   
    ::= { rlPNPParamsEntry   5}

rlPNPProtocolOwner	OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the transport protocol."
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   6}

rlPNPHTTPPort		OBJECT-TYPE
    SYNTAX Unsigned32(1..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP HTTP port."
    DEFVAL{ 80 }	   
    ::= { rlPNPParamsEntry   7}

rlPNPHTTPPortOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the HTTP port."
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   8}

rlPNPHTTPSPort	OBJECT-TYPE
    SYNTAX Unsigned32(1..65535)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP HTTPS port."
    DEFVAL{ 443 }	   
    ::= { rlPNPParamsEntry   9}

rlPNPHTTPSPortOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the HTTPS port."
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   10}

rlPNPUserName       OBJECT-TYPE
    SYNTAX  DisplayString
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "This variable is used in each message from PnP agent to PnP server."
    DEFVAL {""}	   
    ::= { rlPNPParamsEntry   11}

rlPNPUserNameOwner       OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the PnP user name."
    DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   12}

rlPNPPassword		OBJECT-TYPE
    SYNTAX  SnmpAdminString (SIZE(0..64))
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "This variable optional and is used in each message from PnP agent to PnP server."
    DEFVAL {""}	   
    ::= { rlPNPParamsEntry   13}

rlPNPPasswordOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       " The entity that configured the PnP password"
    DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   14}

rlPNPDiscoveryTimeout		OBJECT-TYPE
    SYNTAX Unsigned32 (1..2000000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The time to wait in seconds before new discovery after discovery failure."
    DEFVAL{ 60 }	   
    ::= { rlPNPParamsEntry   15}

rlPNPDiscoveryTimeoutOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       " The entity that configured the discovery timeout"
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   16}

rlPNPDiscoveryExpoFactor	OBJECT-TYPE
    SYNTAX Unsigned32 (1..9)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The value that triggers the discovery attempt exponentially."
    DEFVAL{ 3 }	   
    ::= { rlPNPParamsEntry   17}

rlPNPDiscoveryExpoFactorOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       " The entity that configured the discovery exponent factor"
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   18}


rlPNPDiscoveryTimeoutMax	OBJECT-TYPE
    SYNTAX Unsigned32 (1..2000000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The maximum value of the timeout."
    DEFVAL{ 540 }	   
    ::= { rlPNPParamsEntry   19}

rlPNPDiscoveryTimeoutMaxOwner		OBJECT-TYPE
    SYNTAX RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       " The entity that configured the discovery timeout max"
	DEFVAL{ 1 }	   
    ::= { rlPNPParamsEntry   20}

rlPNPReconnectTimeout		OBJECT-TYPE
    SYNTAX Unsigned32 (1..2000000)
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "Timeout in seconds between PnP sessions."
    DEFVAL{30}	   
    ::= { rlPNPParamsEntry   21}

rlPNPReconnectTimeoutOwner		OBJECT-TYPE
    SYNTAX	RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the PnP reconnect timeout."
	DEFVAL{1}	   
    ::= { rlPNPParamsEntry   22}

rlPNPSrcAddrTyp		OBJECT-TYPE
    SYNTAX 		InetAddressType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP source address type."
    ::= { rlPNPParamsEntry   23}

rlPNPSrcAddr	 	OBJECT-TYPE
    SYNTAX	InetAddress
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The PnP source address."
	DEFVAL { '00000000'H }	   
    ::= { rlPNPParamsEntry   24}

rlPNPSrcAddrOwner	OBJECT-TYPE
    SYNTAX	RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the source address."
	DEFVAL{1}	   
    ::= { rlPNPParamsEntry   25}

rlPNPWatchdogTimeout	OBJECT-TYPE
    SYNTAX Unsigned32 (1..180)
    MAX-ACCESS read-write
    STATUS current    
    DESCRIPTION
       "The time to wait a reply from a PnP or File server."
	DEFVAL{ 30 }	   
    ::= { rlPNPParamsEntry   26}

rlPNPWatchdogTimeoutOwner	OBJECT-TYPE
    SYNTAX	RlOwnerType
    MAX-ACCESS read-write
    STATUS current	
    DESCRIPTION
       "The entity that configured the watchdog timeout."
	DEFVAL{1}
    ::= { rlPNPParamsEntry   27}

rlPNPAdminState        OBJECT-TYPE
    SYNTAX      INTEGER{enable(0), disable(1)}
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
          "The value represents the admin state of the PnP feature."
	DEFVAL{ 0 }		  
    ::= { rlPNPParamsEntry 28 }

rlPNPAdminStateOwner	OBJECT-TYPE
    SYNTAX	RlOwnerType
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION
       "The entity that configured the admin state."
	DEFVAL{1}	   
    ::= { rlPNPParamsEntry   29}


rlPNPRowStatus       OBJECT-TYPE
    SYNTAX RowStatus
    MAX-ACCESS read-create
    STATUS current
    DESCRIPTION
       "This variable displays the validity or invalidity of the entry.
         Setting it to 'destroy' has the effect of rendering it inoperative.
         The internal effect (row removal) is implementation dependent."
    ::= { rlPNPParamsEntry   30}

rlPNPResume     OBJECT-TYPE
    SYNTAX      INTEGER{off(0), on(1)}
    MAX-ACCESS  read-write
    STATUS      current	
    DESCRIPTION
          "Action scalar - take out immediately the PnP agent from waiting state."
	DEFVAL{ 0 }
    ::= { rlPNP 2 }

rlPNPNreadyReason     OBJECT-TYPE
    SYNTAX      INTEGER{serverIP(0),certificate(1),tod(2)}
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
          "Displays the reason for the not ready operational state."
    ::= { rlPNP 3 }

rlPNPState     OBJECT-TYPE
    SYNTAX      INTEGER{bootup(0),discovery(1),discoveryWait(2),session(3),sessionWait(4),disabled(5),notReady(6)}
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
          "Displays the PnP agent state."
    ::= { rlPNP 4 }

rlPNPTimerRemainder     OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
          "Displays the session/discovery timer remainder."
    ::= { rlPNP 5 }
END