smilint output for ./RADIUS-AUTH-CLIENT-MIB-IPV6
Message Severities |
Severity | Count |
error | 2 |
warning | 10 |
fyi | 8 |
Message Types |
Type | Count |
bad-identifier-case (error) | 1 |
identifier-external-case-match (warning) | 1 |
identifier-external-redefined (warning) | 7 |
import-unused (warning) | 1 |
module-name-suffix (warning) | 1 |
object-identifier-not-prefix (error) | 1 |
previous-definition (fyi) | 8 |
Messages:
/home/fenner/mibindex/latest2/RADIUS-AUTH-CLIENT-MIB
1: -- extracted from rfc4668.txt
2: -- at Thu Aug 24 06:06:53 2006
3:
4: RADIUS-AUTH-CLIENT-MIB DEFINITIONS ::= BEGIN
5:
6: IMPORTS
7: MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
8: Counter32, Integer32, Gauge32,
9: IpAddress, TimeTicks, mib-2 FROM SNMPv2-SMI
10: SnmpAdminString FROM SNMP-FRAMEWORK-MIB
11: InetAddressType, InetAddress,
12: InetPortNumber FROM INET-ADDRESS-MIB
13: MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF;
14:
15:
16: radiusAuthClientMIB MODULE-IDENTITY
17: LAST-UPDATED "200608210000Z" -- 21 August 2006
18: ORGANIZATION "IETF RADIUS Extensions Working Group."
19: CONTACT-INFO
20: " Bernard Aboba
21: Microsoft
22: One Microsoft Way
23: Redmond, WA 98052
24: US
25: Phone: +1 425 936 6605
26: EMail: bernarda@microsoft.com"
27: DESCRIPTION
28: "The MIB module for entities implementing the client
29: side of the Remote Authentication Dial-In User Service
30: (RADIUS) authentication protocol. Copyright (C) The
31: Internet Society (2006). This version of this MIB
32: module is part of RFC 4668; see the RFC itself for
33: full legal notices."
34: REVISION "200608210000Z" -- 21 August 2006
35: DESCRIPTION
36: "Revised version as published in RFC 4668. This
37: version obsoletes that of RFC 2618 by deprecating
38: the MIB table containing IPv4-only address formats
39: and defining a new table to add support for version
40: neutral IP address formats. The remaining MIB objects
41: from RFC 2618 are carried forward into this version."
42: REVISION "199906110000Z" -- 11 Jun 1999
43: DESCRIPTION "Initial version as published in RFC 2618."
44: ::= { radiusAuthentication 2 }
45:
46: radiusMIB OBJECT-IDENTITY
47: STATUS current
48: DESCRIPTION
49: "The OID assigned to RADIUS MIB work by the IANA."
50: ::= { mib-2 67 }
51:
52: radiusAuthentication OBJECT IDENTIFIER ::= {radiusMIB 1}
53:
54: radiusAuthClientMIBObjects OBJECT IDENTIFIER
55: ::= { radiusAuthClientMIB 1 }
56:
57: radiusAuthClient OBJECT IDENTIFIER
58: ::= { radiusAuthClientMIBObjects 1 }
59:
60: radiusAuthClientInvalidServerAddresses OBJECT-TYPE
61: SYNTAX Counter32
62: UNITS "packets"
63: MAX-ACCESS read-only
64: STATUS current
65: DESCRIPTION
66: "The number of RADIUS Access-Response packets
67: received from unknown addresses."
68: ::= { radiusAuthClient 1 }
69:
70: radiusAuthClientIdentifier OBJECT-TYPE
71: SYNTAX SnmpAdminString
72: MAX-ACCESS read-only
73: STATUS current
74: DESCRIPTION
75: "The NAS-Identifier of the RADIUS authentication client.
76: This is not necessarily the same as sysName in MIB II."
77: REFERENCE "RFC 2865 section 5.32"
78: ::= { radiusAuthClient 2 }
79:
80: radiusAuthServerTable OBJECT-TYPE
81: SYNTAX SEQUENCE OF RadiusAuthServerEntry
82: MAX-ACCESS not-accessible
83: STATUS deprecated
84: DESCRIPTION
85: "The (conceptual) table listing the RADIUS authentication
86: servers with which the client shares a secret."
87: ::= { radiusAuthClient 3 }
88:
89: radiusAuthServerEntry OBJECT-TYPE
90: SYNTAX RadiusAuthServerEntry
91: MAX-ACCESS not-accessible
92: STATUS deprecated
93: DESCRIPTION
94: "An entry (conceptual row) representing a RADIUS
95: authentication server with which the client shares
96: a secret."
97: INDEX { radiusAuthServerIndex }
98: ::= { radiusAuthServerTable 1 }
99:
100: RadiusAuthServerEntry ::= SEQUENCE {
101: radiusAuthServerIndex Integer32,
102: radiusAuthServerAddress IpAddress,
103: radiusAuthClientServerPortNumber Integer32,
104: radiusAuthClientRoundTripTime TimeTicks,
105: radiusAuthClientAccessRequests Counter32,
106: radiusAuthClientAccessRetransmissions Counter32,
107: radiusAuthClientAccessAccepts Counter32,
108: radiusAuthClientAccessRejects Counter32,
109: radiusAuthClientAccessChallenges Counter32,
110: radiusAuthClientMalformedAccessResponses Counter32,
111: radiusAuthClientBadAuthenticators Counter32,
112: radiusAuthClientPendingRequests Gauge32,
113: radiusAuthClientTimeouts Counter32,
114: radiusAuthClientUnknownTypes Counter32,
115: radiusAuthClientPacketsDropped Counter32
116: }
117:
118: radiusAuthServerIndex OBJECT-TYPE
119: SYNTAX Integer32 (1..2147483647)
120: MAX-ACCESS not-accessible
121: STATUS deprecated
122: DESCRIPTION
123: "A number uniquely identifying each RADIUS
124: Authentication server with which this client
125: communicates."
126: ::= { radiusAuthServerEntry 1 }
127:
128: radiusAuthServerAddress OBJECT-TYPE
129: SYNTAX IpAddress
130: MAX-ACCESS read-only
131: STATUS deprecated
132: DESCRIPTION
133: "The IP address of the RADIUS authentication server
134: referred to in this table entry."
135: ::= { radiusAuthServerEntry 2 }
136:
137: radiusAuthClientServerPortNumber OBJECT-TYPE
138: SYNTAX Integer32 (0..65535)
139: MAX-ACCESS read-only
140: STATUS deprecated
141: DESCRIPTION
142: "The UDP port the client is using to send requests to
143: this server."
144: REFERENCE "RFC 2865 section 3"
145: ::= { radiusAuthServerEntry 3 }
146:
147: radiusAuthClientRoundTripTime OBJECT-TYPE
148: SYNTAX TimeTicks
149: MAX-ACCESS read-only
150: STATUS deprecated
151: DESCRIPTION
152: "The time interval (in hundredths of a second) between
153: the most recent Access-Reply/Access-Challenge and the
154: Access-Request that matched it from this RADIUS
155: authentication server."
156: ::= { radiusAuthServerEntry 4 }
157:
158: -- Request/Response statistics
159: --
160: -- TotalIncomingPackets = Accepts + Rejects + Challenges +
161: -- UnknownTypes
162: --
163: -- TotalIncomingPackets - MalformedResponses -
164: -- BadAuthenticators - UnknownTypes - PacketsDropped =
165: -- Successfully received
166: --
167: -- AccessRequests + PendingRequests + ClientTimeouts =
168: -- Successfully received
169: --
170: --
171:
172: radiusAuthClientAccessRequests OBJECT-TYPE
173: SYNTAX Counter32
174: UNITS "packets"
175: MAX-ACCESS read-only
176: STATUS deprecated
177: DESCRIPTION
178: "The number of RADIUS Access-Request packets sent
179: to this server. This does not include retransmissions."
180: REFERENCE "RFC 2865 section 4.1"
181: ::= { radiusAuthServerEntry 5 }
182:
183: radiusAuthClientAccessRetransmissions OBJECT-TYPE
184: SYNTAX Counter32
185: UNITS "packets"
186: MAX-ACCESS read-only
187: STATUS deprecated
188: DESCRIPTION
189: "The number of RADIUS Access-Request packets
190: retransmitted to this RADIUS authentication server."
191: REFERENCE "RFC 2865 sections 2.5, 4.1"
192: ::= { radiusAuthServerEntry 6 }
193:
194: radiusAuthClientAccessAccepts OBJECT-TYPE
195: SYNTAX Counter32
196: UNITS "packets"
197: MAX-ACCESS read-only
198: STATUS deprecated
199: DESCRIPTION
200: "The number of RADIUS Access-Accept packets
201: (valid or invalid) received from this server."
202: REFERENCE "RFC 2865 section 4.2"
203: ::= { radiusAuthServerEntry 7 }
204:
205: radiusAuthClientAccessRejects OBJECT-TYPE
206: SYNTAX Counter32
207: UNITS "packets"
208: MAX-ACCESS read-only
209: STATUS deprecated
210: DESCRIPTION
211: "The number of RADIUS Access-Reject packets
212: (valid or invalid) received from this server."
213: REFERENCE "RFC 2865 section 4.3"
214: ::= { radiusAuthServerEntry 8 }
215:
216: radiusAuthClientAccessChallenges OBJECT-TYPE
217: SYNTAX Counter32
218: UNITS "packets"
219: MAX-ACCESS read-only
220: STATUS deprecated
221: DESCRIPTION
222: "The number of RADIUS Access-Challenge packets
223: (valid or invalid) received from this server."
224: REFERENCE "RFC 2865 section 4.4"
225: ::= { radiusAuthServerEntry 9 }
226:
227: -- "Access-Response" includes an Access-Accept, Access-Challenge
228: -- or Access-Reject
229:
230: radiusAuthClientMalformedAccessResponses OBJECT-TYPE
231: SYNTAX Counter32
232: UNITS "packets"
233: MAX-ACCESS read-only
234: STATUS deprecated
235: DESCRIPTION
236: "The number of malformed RADIUS Access-Response
237: packets received from this server.
238: Malformed packets include packets with
239: an invalid length. Bad authenticators or
240: Message Authenticator attributes or unknown types
241: are not included as malformed access responses."
242: ::= { radiusAuthServerEntry 10 }
243:
244: radiusAuthClientBadAuthenticators OBJECT-TYPE
245: SYNTAX Counter32
246: UNITS "packets"
247: MAX-ACCESS read-only
248: STATUS deprecated
249: DESCRIPTION
250: "The number of RADIUS Access-Response packets
251: containing invalid authenticators or Message
252: Authenticator attributes received from this server."
253: REFERENCE "RFC 2865 section 3, RFC 2869 section 5.14"
254: ::= { radiusAuthServerEntry 11 }
255:
256: radiusAuthClientPendingRequests OBJECT-TYPE
257: SYNTAX Gauge32
258: MAX-ACCESS read-only
259: STATUS deprecated
260: DESCRIPTION
261: "The number of RADIUS Access-Request packets
262: destined for this server that have not yet timed out
263: or received a response. This variable is incremented
264: when an Access-Request is sent and decremented due to
265: receipt of an Access-Accept, Access-Reject,
266: Access-Challenge, timeout, or retransmission."
267: REFERENCE "RFC 2865 section 2"
268: ::= { radiusAuthServerEntry 12 }
269:
270: radiusAuthClientTimeouts OBJECT-TYPE
271: SYNTAX Counter32
272: UNITS "timeouts"
273: MAX-ACCESS read-only
274: STATUS deprecated
275: DESCRIPTION
276: "The number of authentication timeouts to this server.
277: After a timeout, the client may retry to the same
278: server, send to a different server, or
279: give up. A retry to the same server is counted as a
280: retransmit as well as a timeout. A send to a different
281: server is counted as a Request as well as a timeout."
282: REFERENCE "RFC 2865 section 2, RFC 2869 section 2.3.2"
283: ::= { radiusAuthServerEntry 13 }
284:
285: radiusAuthClientUnknownTypes OBJECT-TYPE
286: SYNTAX Counter32
287: UNITS "packets"
288: MAX-ACCESS read-only
289: STATUS deprecated
290: DESCRIPTION
291: "The number of RADIUS packets of unknown type that
292: were received from this server on the authentication
293: port."
294: ::= { radiusAuthServerEntry 14 }
295:
296: radiusAuthClientPacketsDropped OBJECT-TYPE
297: SYNTAX Counter32
298: UNITS "packets"
299: MAX-ACCESS read-only
300: STATUS deprecated
301: DESCRIPTION
302: "The number of RADIUS packets that were
303: received from this server on the authentication port
304: and dropped for some other reason."
305: ::= { radiusAuthServerEntry 15 }
306:
307:
308: -- New MIB Objects in this revision
309:
310: radiusAuthServerExtTable OBJECT-TYPE
310: fyi -
info: previous definition of `radiusAuthServerExtTable'
311: SYNTAX SEQUENCE OF RadiusAuthServerExtEntry
312: MAX-ACCESS not-accessible
313: STATUS current
314: DESCRIPTION
315: "The (conceptual) table listing the RADIUS authentication
316: servers with which the client shares a secret."
317: ::= { radiusAuthClient 4 }
318:
319: radiusAuthServerExtEntry OBJECT-TYPE
319: fyi -
info: previous definition of `radiusAuthServerExtEntry'
320: SYNTAX RadiusAuthServerExtEntry
321: MAX-ACCESS not-accessible
322: STATUS current
323: DESCRIPTION
324: "An entry (conceptual row) representing a RADIUS
325: authentication server with which the client shares
326: a secret."
327: INDEX { radiusAuthServerExtIndex }
328: ::= { radiusAuthServerExtTable 1 }
329:
330: RadiusAuthServerExtEntry ::= SEQUENCE {
330: fyi -
info: previous definition of `RadiusAuthServerExtEntry'
331: radiusAuthServerExtIndex Integer32,
332: radiusAuthServerInetAddressType InetAddressType,
333: radiusAuthServerInetAddress InetAddress,
334: radiusAuthClientServerInetPortNumber InetPortNumber,
335: radiusAuthClientExtRoundTripTime TimeTicks,
336: radiusAuthClientExtAccessRequests Counter32,
337: radiusAuthClientExtAccessRetransmissions Counter32,
338: radiusAuthClientExtAccessAccepts Counter32,
339: radiusAuthClientExtAccessRejects Counter32,
340: radiusAuthClientExtAccessChallenges Counter32,
341: radiusAuthClientExtMalformedAccessResponses Counter32,
342: radiusAuthClientExtBadAuthenticators Counter32,
343: radiusAuthClientExtPendingRequests Gauge32,
344: radiusAuthClientExtTimeouts Counter32,
345: radiusAuthClientExtUnknownTypes Counter32,
346: radiusAuthClientExtPacketsDropped Counter32,
347: radiusAuthClientCounterDiscontinuity TimeTicks
348: }
349:
350: radiusAuthServerExtIndex OBJECT-TYPE
351: SYNTAX Integer32 (1..2147483647)
352: MAX-ACCESS not-accessible
353: STATUS current
354: DESCRIPTION
355: "A number uniquely identifying each RADIUS
356: Authentication server with which this client
357: communicates."
358: ::= { radiusAuthServerExtEntry 1 }
359:
360: radiusAuthServerInetAddressType OBJECT-TYPE
360: fyi -
info: previous definition of `radiusAuthServerInetAddressType'
361: SYNTAX InetAddressType
362: MAX-ACCESS read-only
363: STATUS current
364: DESCRIPTION
365: "The type of address format used for the
366: radiusAuthServerInetAddress object."
367: ::= { radiusAuthServerExtEntry 2 }
368:
369: radiusAuthServerInetAddress OBJECT-TYPE
369: fyi -
info: previous definition of `radiusAuthServerInetAddress'
370: SYNTAX InetAddress
371: MAX-ACCESS read-only
372: STATUS current
373: DESCRIPTION
374: "The IP address of the RADIUS authentication
375: server referred to in this table entry, using
376: the version-neutral IP address format."
377: ::= { radiusAuthServerExtEntry 3 }
378:
379: radiusAuthClientServerInetPortNumber OBJECT-TYPE
379: fyi -
info: previous definition of `radiusAuthClientServerInetPortNumber'
380: SYNTAX InetPortNumber ( 1..65535 )
381: MAX-ACCESS read-only
382: STATUS current
383: DESCRIPTION
384: "The UDP port the client is using to send requests
385: to this server. The value of zero (0) is invalid."
386: REFERENCE "RFC 2865 section 3"
387: ::= { radiusAuthServerExtEntry 4 }
388:
389: radiusAuthClientExtRoundTripTime OBJECT-TYPE
390: SYNTAX TimeTicks
391: MAX-ACCESS read-only
392: STATUS current
393: DESCRIPTION
394: "The time interval (in hundredths of a second) between
395: the most recent Access-Reply/Access-Challenge and the
396: Access-Request that matched it from this RADIUS
397: authentication server."
398: REFERENCE "RFC 2865 section 2"
399: ::= { radiusAuthServerExtEntry 5 }
400:
401: -- Request/Response statistics
402: --
403: -- TotalIncomingPackets = Accepts + Rejects + Challenges +
404: -- UnknownTypes
405: --
406: -- TotalIncomingPackets - MalformedResponses -
407: -- BadAuthenticators - UnknownTypes - PacketsDropped =
408: -- Successfully received
409: --
410: -- AccessRequests + PendingRequests + ClientTimeouts =
411: -- Successfully received
412: --
413: --
414:
415: radiusAuthClientExtAccessRequests OBJECT-TYPE
416: SYNTAX Counter32
417: UNITS "packets"
418: MAX-ACCESS read-only
419: STATUS current
420: DESCRIPTION
421: "The number of RADIUS Access-Request packets sent
422: to this server. This does not include retransmissions.
423: This counter may experience a discontinuity when the
424: RADIUS Client module within the managed entity is
425: reinitialized, as indicated by the current value of
426: radiusAuthClientCounterDiscontinuity."
427: REFERENCE "RFC 2865 section 4.1"
428: ::= { radiusAuthServerExtEntry 6 }
429:
430: radiusAuthClientExtAccessRetransmissions OBJECT-TYPE
431: SYNTAX Counter32
432: UNITS "packets"
433: MAX-ACCESS read-only
434: STATUS current
435: DESCRIPTION
436: "The number of RADIUS Access-Request packets
437: retransmitted to this RADIUS authentication server.
438: This counter may experience a discontinuity when
439: the RADIUS Client module within the managed entity
440: is reinitialized, as indicated by the current value
441: of radiusAuthClientCounterDiscontinuity."
442: REFERENCE "RFC 2865 sections 2.5, 4.1"
443: ::= { radiusAuthServerExtEntry 7 }
444:
445: radiusAuthClientExtAccessAccepts OBJECT-TYPE
446: SYNTAX Counter32
447: UNITS "packets"
448: MAX-ACCESS read-only
449: STATUS current
450: DESCRIPTION
451: "The number of RADIUS Access-Accept packets
452: (valid or invalid) received from this server.
453: This counter may experience a discontinuity when
454: the RADIUS Client module within the managed entity
455: is reinitialized, as indicated by the current value
456: of radiusAuthClientCounterDiscontinuity."
457: REFERENCE "RFC 2865 section 4.2"
458: ::= { radiusAuthServerExtEntry 8 }
459:
460: radiusAuthClientExtAccessRejects OBJECT-TYPE
461: SYNTAX Counter32
462: UNITS "packets"
463: MAX-ACCESS read-only
464: STATUS current
465: DESCRIPTION
466: "The number of RADIUS Access-Reject packets
467: (valid or invalid) received from this server.
468: This counter may experience a discontinuity when
469: the RADIUS Client module within the managed
470: entity is reinitialized, as indicated by the
471: current value of
472: radiusAuthClientCounterDiscontinuity."
473: REFERENCE "RFC 2865 section 4.3"
474: ::= { radiusAuthServerExtEntry 9 }
475:
476: radiusAuthClientExtAccessChallenges OBJECT-TYPE
477: SYNTAX Counter32
478: UNITS "packets"
479: MAX-ACCESS read-only
480: STATUS current
481: DESCRIPTION
482: "The number of RADIUS Access-Challenge packets
483: (valid or invalid) received from this server.
484: This counter may experience a discontinuity when
485: the RADIUS Client module within the managed
486: entity is reinitialized, as indicated by the
487: current value of
488: radiusAuthClientCounterDiscontinuity."
489: REFERENCE "RFC 2865 section 4.4"
490: ::= { radiusAuthServerExtEntry 10 }
491:
492: -- "Access-Response" includes an Access-Accept, Access-Challenge,
493: -- or Access-Reject
494:
495: radiusAuthClientExtMalformedAccessResponses OBJECT-TYPE
496: SYNTAX Counter32
497: UNITS "packets"
498: MAX-ACCESS read-only
499: STATUS current
500: DESCRIPTION
501: "The number of malformed RADIUS Access-Response
502: packets received from this server.
503: Malformed packets include packets with
504: an invalid length. Bad authenticators or
505: Message Authenticator attributes or unknown types
506: are not included as malformed access responses.
507: This counter may experience a discontinuity when
508: the RADIUS Client module within the managed entity
509: is reinitialized, as indicated by the current value
510: of radiusAuthClientCounterDiscontinuity."
511: REFERENCE "RFC 2865 sections 3, 4"
512: ::= { radiusAuthServerExtEntry 11 }
513:
514: radiusAuthClientExtBadAuthenticators OBJECT-TYPE
515: SYNTAX Counter32
516: UNITS "packets"
517: MAX-ACCESS read-only
518: STATUS current
519: DESCRIPTION
520: "The number of RADIUS Access-Response packets
521: containing invalid authenticators or Message
522: Authenticator attributes received from this server.
523: This counter may experience a discontinuity when
524: the RADIUS Client module within the managed entity
525: is reinitialized, as indicated by the current value
526: of radiusAuthClientCounterDiscontinuity."
527: REFERENCE "RFC 2865 section 3"
528: ::= { radiusAuthServerExtEntry 12 }
529:
530: radiusAuthClientExtPendingRequests OBJECT-TYPE
531: SYNTAX Gauge32
532: UNITS "packets"
533: MAX-ACCESS read-only
534: STATUS current
535: DESCRIPTION
536: "The number of RADIUS Access-Request packets
537: destined for this server that have not yet timed out
538: or received a response. This variable is incremented
539: when an Access-Request is sent and decremented due to
540: receipt of an Access-Accept, Access-Reject,
541: Access-Challenge, timeout, or retransmission."
542: REFERENCE "RFC 2865 section 2"
543: ::= { radiusAuthServerExtEntry 13 }
544:
545: radiusAuthClientExtTimeouts OBJECT-TYPE
546: SYNTAX Counter32
547: UNITS "timeouts"
548: MAX-ACCESS read-only
549: STATUS current
550: DESCRIPTION
551: "The number of authentication timeouts to this server.
552: After a timeout, the client may retry to the same
553: server, send to a different server, or
554: give up. A retry to the same server is counted as a
555: retransmit as well as a timeout. A send to a different
556: server is counted as a Request as well as a timeout.
557: This counter may experience a discontinuity when the
558: RADIUS Client module within the managed entity is
559: reinitialized, as indicated by the current value of
560: radiusAuthClientCounterDiscontinuity."
561: REFERENCE "RFC 2865 sections 2.5, 4.1"
562: ::= { radiusAuthServerExtEntry 14 }
563:
564: radiusAuthClientExtUnknownTypes OBJECT-TYPE
565: SYNTAX Counter32
566: UNITS "packets"
567: MAX-ACCESS read-only
568: STATUS current
569: DESCRIPTION
570: "The number of RADIUS packets of unknown type that
571: were received from this server on the authentication
572: port. This counter may experience a discontinuity
573: when the RADIUS Client module within the managed
574: entity is reinitialized, as indicated by the current
575: value of radiusAuthClientCounterDiscontinuity."
576: REFERENCE "RFC 2865 section 4"
577: ::= { radiusAuthServerExtEntry 15 }
578:
579: radiusAuthClientExtPacketsDropped OBJECT-TYPE
580: SYNTAX Counter32
581: UNITS "packets"
582: MAX-ACCESS read-only
583: STATUS current
584: DESCRIPTION
585: "The number of RADIUS packets that were
586: received from this server on the authentication port
587: and dropped for some other reason. This counter may
588: experience a discontinuity when the RADIUS Client
589: module within the managed entity is reinitialized,
590: as indicated by the current value of
591: radiusAuthClientCounterDiscontinuity."
592: ::= { radiusAuthServerExtEntry 16 }
593:
594: radiusAuthClientCounterDiscontinuity OBJECT-TYPE
595: SYNTAX TimeTicks
596: UNITS "centiseconds"
597: MAX-ACCESS read-only
598: STATUS current
599: DESCRIPTION
600: "The number of centiseconds since the last discontinuity
601: in the RADIUS Client counters. A discontinuity may
602: be the result of a reinitialization of the RADIUS
603: Client module within the managed entity."
604: ::= { radiusAuthServerExtEntry 17 }
605:
606:
607: -- conformance information
608:
609: radiusAuthClientMIBConformance OBJECT IDENTIFIER
610: ::= { radiusAuthClientMIB 2 }
611:
612: radiusAuthClientMIBCompliances OBJECT IDENTIFIER
613: ::= { radiusAuthClientMIBConformance 1 }
614:
615: radiusAuthClientMIBGroups OBJECT IDENTIFIER
616: ::= { radiusAuthClientMIBConformance 2 }
617:
618:
619: -- compliance statements
620:
621: radiusAuthClientMIBCompliance MODULE-COMPLIANCE
622: STATUS deprecated
623: DESCRIPTION
624: "The compliance statement for authentication clients
625: implementing the RADIUS Authentication Client MIB.
626: Implementation of this module is for IPv4-only
627: entities, or for backwards compatibility use with
628: entities that support both IPv4 and IPv6."
629: MODULE -- this module
630: MANDATORY-GROUPS { radiusAuthClientMIBGroup }
631:
632: ::= { radiusAuthClientMIBCompliances 1 }
633:
634: radiusAuthClientExtMIBCompliance MODULE-COMPLIANCE
634: fyi -
info: previous definition of `radiusAuthClientExtMIBCompliance'
635: STATUS current
636: DESCRIPTION
637: "The compliance statement for authentication
638: clients implementing the RADIUS Authentication
639: Client IPv6 Extensions MIB. Implementation of
640: this module is for entities that support IPv6,
641: or support IPv4 and IPv6."
642: MODULE -- this module
643: MANDATORY-GROUPS { radiusAuthClientExtMIBGroup }
644:
645: OBJECT radiusAuthServerInetAddressType
646: SYNTAX InetAddressType { ipv4(1), ipv6(2) }
647: DESCRIPTION
648: "An implementation is only required to support
649: IPv4 and globally unique IPv6 addresses."
650:
651: OBJECT radiusAuthServerInetAddress
652: SYNTAX InetAddress ( SIZE (4|16) )
653: DESCRIPTION
654: "An implementation is only required to support
655: IPv4 and globally unique IPv6 addresses."
656: ::= { radiusAuthClientMIBCompliances 2 }
657:
658:
659: -- units of conformance
660:
661: radiusAuthClientMIBGroup OBJECT-GROUP
662: OBJECTS { radiusAuthClientIdentifier,
663: radiusAuthClientInvalidServerAddresses,
664: radiusAuthServerAddress,
665: radiusAuthClientServerPortNumber,
666: radiusAuthClientRoundTripTime,
667: radiusAuthClientAccessRequests,
668: radiusAuthClientAccessRetransmissions,
669: radiusAuthClientAccessAccepts,
670: radiusAuthClientAccessRejects,
671: radiusAuthClientAccessChallenges,
672: radiusAuthClientMalformedAccessResponses,
673: radiusAuthClientBadAuthenticators,
674: radiusAuthClientPendingRequests,
675: radiusAuthClientTimeouts,
676: radiusAuthClientUnknownTypes,
677: radiusAuthClientPacketsDropped
678: }
679: STATUS deprecated
680: DESCRIPTION
681: "The basic collection of objects providing management of
682: RADIUS Authentication Clients."
683: ::= { radiusAuthClientMIBGroups 1 }
684:
685:
686: radiusAuthClientExtMIBGroup OBJECT-GROUP
686: fyi -
info: previous definition of `radiusAuthClientExtMIBGroup'
687: OBJECTS { radiusAuthClientIdentifier,
688: radiusAuthClientInvalidServerAddresses,
689: radiusAuthServerInetAddressType,
690: radiusAuthServerInetAddress,
691: radiusAuthClientServerInetPortNumber,
692: radiusAuthClientExtRoundTripTime,
693: radiusAuthClientExtAccessRequests,
694: radiusAuthClientExtAccessRetransmissions,
695: radiusAuthClientExtAccessAccepts,
696: radiusAuthClientExtAccessRejects,
697: radiusAuthClientExtAccessChallenges,
698: radiusAuthClientExtMalformedAccessResponses,
699: radiusAuthClientExtBadAuthenticators,
700: radiusAuthClientExtPendingRequests,
701: radiusAuthClientExtTimeouts,
702: radiusAuthClientExtUnknownTypes,
703: radiusAuthClientExtPacketsDropped,
704: radiusAuthClientCounterDiscontinuity
705: }
706: STATUS current
707: DESCRIPTION
708: "The collection of extended objects providing
709: management of RADIUS Authentication Clients
710: using version-neutral IP address format."
711: ::= { radiusAuthClientMIBGroups 2 }
712:
713: END
714:
715: --
716: -- Copyright (C) The Internet Society (2006).
717: --
718: -- This document is subject to the rights, licenses and restrictions
719: -- contained in BCP 78, and except as set forth therein, the authors
720: -- retain all their rights.
721: --
722: -- This document and the information contained herein are provided on an
723: -- "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
724: -- OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
725: -- ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED,
726: -- INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE
727: -- INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
728: -- WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
729: --
730: -- Intellectual Property
731: --
732: -- The IETF takes no position regarding the validity or scope of any
733: -- Intellectual Property Rights or other rights that might be claimed to
734: -- pertain to the implementation or use of the technology described in
735: -- this document or the extent to which any license under such rights
736: -- might or might not be available; nor does it represent that it has
737: -- made any independent effort to identify any such rights. Information
738: -- on the procedures with respect to rights in RFC documents can be
739: -- found in BCP 78 and BCP 79.
740: --
741: -- Copies of IPR disclosures made to the IETF Secretariat and any
742: -- assurances of licenses to be made available, or the result of an
743: -- attempt made to obtain a general license or permission for the use of
744: -- such proprietary rights by implementers or users of this
745: -- specification can be obtained from the IETF on-line IPR repository at
746: -- http://www.ietf.org/ipr.
747: --
748: -- The IETF invites any interested party to bring to its attention any
749: -- copyrights, patents or patent applications, or other proprietary
750: -- rights that may cover technology that may be required to implement
751: -- this standard. Please address the information to the IETF at
752: -- ietf-ipr@ietf.org.
753: --
754:
RADIUS-AUTH-CLIENT-MIB-IPV6
1: -- extracted from draft-nelson-rfc2618bis-00.txt
2: -- at Tue Feb 15 06:24:48 2005
3:
4: RADIUS-AUTH-CLIENT-MIB-IPV6 DEFINITIONS ::= BEGIN
5:
6: IMPORTS
7: MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
7: warning -
warning: identifier `OBJECT-IDENTITY' imported from module `SNMPv2-SMI' is never used
8: mib-2 FROM SNMPv2-SMI
9: InetAddressType, InetAddress, InetPortNumber
10: FROM INET-ADDRESS-MIB
11: MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
12: radiusAuthServerEntry FROM RADIUS-AUTH-CLIENT-MIB;
13:
14: radiusAuthClientExtMIB MODULE-IDENTITY
15: LAST-UPDATED "200502072051Z" -- Mon Feb 7 20:51 GMT 2005
16: ORGANIZATION "IETF RADIUS Extensions Working Group."
17: CONTACT-INFO
18: " David B. Nelson
19: Enterasys Networks
20: 50 Minutemann Road
21: Andover, MA 01810
22: US
23:
24: Phone: +1 978 684 1000
25: EMail: dnelson@eterasys.com"
26: DESCRIPTION
27: "An extension to the MIB module for entities
28: implementing the client side of the Remote Access
29: Dialin User Service (RADIUS) authentication protocol,
30: using IPv6 addressing formats. Updates RFC 2618."
31: REVISION "200502072051Z" -- Mon Feb 7 20:51 GMT 2005
32: DESCRIPTION "Initial version, published as RFC xxxx."
33:
34: -- RFC Editor: replace xxx with actual RFC number at the time of
35: -- publication, and remove this note.
36:
37: ::= { mib-2 TBA }
37: error -
`TBA' should start with a lower case letter
37: error -
Object identifier element `TBA' name only allowed as first element
38:
39: -- RFC Editor: replace TBA with IANA assigned OID value, and
40: -- remove this note.
41:
42: radiusAuthClientExtMIBNotifications OBJECT IDENTIFIER
43: ::= { radiusAuthClientExtMIB 0 }
44:
45: radiusAuthClientExtMIBObjects OBJECT IDENTIFIER
46: ::= { radiusAuthClientExtMIB 1 }
47:
48: radiusAuthClientExtMIBConformance OBJECT IDENTIFIER
49: ::= { radiusAuthClientExtMIB 2 }
50:
51: -- MIB objects
52:
53: radiusAuthServerExtTable OBJECT-TYPE
53: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthServerExtTable'
54: SYNTAX SEQUENCE OF RadiusAuthServerExtEntry
55: MAX-ACCESS not-accessible
56: STATUS current
57: DESCRIPTION
58: "The (conceptual) table listing the RADIUS
59: authentication servers with which the client
60: shares a secret."
61: ::= { radiusAuthClientExtMIBObjects 1 }
62:
63: radiusAuthServerExtEntry OBJECT-TYPE
63: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthServerExtEntry'
63: warning -
warning: identifier `radiusAuthServerExtEntry' differs from `RADIUS-AUTH-CLIENT-MIB::RadiusAuthServerExtEntry' only in case
64: SYNTAX RadiusAuthServerExtEntry
65: MAX-ACCESS not-accessible
66: STATUS current
67: DESCRIPTION
68: "An entry (conceptual row) representing a RADIUS
69: authentication server with which the client shares
70: a secret."
71: AUGMENTS { radiusAuthServerEntry }
72: ::= { radiusAuthServerExtTable 1 }
73:
74: RadiusAuthServerExtEntry ::= SEQUENCE {
75: radiusAuthServerInetAddressType InetAddressType,
76: radiusAuthServerInetAddress InetAddress,
77: radiusAuthClientServerInetPortNumber InetPortNumber
78: }
79:
80: radiusAuthServerInetAddressType OBJECT-TYPE
80: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthServerInetAddressType'
81: SYNTAX InetAddressType
82: MAX-ACCESS read-only
83: STATUS current
84: DESCRIPTION
85: "The type of address format used for the
86: radiusAuthServerInetAddress object."
87: ::= { radiusAuthServerExtEntry 1 }
88:
89: radiusAuthServerInetAddress OBJECT-TYPE
89: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthServerInetAddress'
90: SYNTAX InetAddress
91: MAX-ACCESS read-only
92: STATUS current
93: DESCRIPTION
94: "The IP address of the RADIUS authentication
95: server referred to in this table entry, using
96: the IPv6 adddess format."
97: ::= { radiusAuthServerExtEntry 2 }
98:
99: radiusAuthClientServerInetPortNumber OBJECT-TYPE
99: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthClientServerInetPortNumber'
100: SYNTAX InetPortNumber
101: MAX-ACCESS read-only
102: STATUS current
103: DESCRIPTION
104: "The UDP port the client is using to send requests
105: to this server."
106: ::= { radiusAuthServerExtEntry 3 }
107:
108: -- conformance information
109:
110: radiusAuthClientExtMIBCompliances OBJECT IDENTIFIER
111: ::= { radiusAuthClientExtMIBConformance 1 }
112:
113: radiusAuthClientExtMIBGroups OBJECT IDENTIFIER
114: ::= { radiusAuthClientExtMIBConformance 2 }
115:
116: -- compliance statements
117:
118: radiusAuthClientExtMIBCompliance MODULE-COMPLIANCE
118: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthClientExtMIBCompliance'
119: STATUS current
120: DESCRIPTION
121: "The compliance statement for authentication
122: clients implementing the RADIUS Authentication
123: Client IPv6 Extensions MIB."
124: MODULE -- this module
125: MANDATORY-GROUPS { radiusAuthClientExtMIBGroup }
126:
127: ::= { radiusAuthClientExtMIBCompliances 1 }
128:
129: -- units of conformance
130:
131: radiusAuthClientExtMIBGroup OBJECT-GROUP
131: warning -
warning: redefinition of identifier `RADIUS-AUTH-CLIENT-MIB::radiusAuthClientExtMIBGroup'
132: OBJECTS { radiusAuthServerInetAddressType,
133: radiusAuthServerInetAddress,
134: radiusAuthClientServerInetPortNumber
135: }
136: STATUS current
137: DESCRIPTION
138: "The collection of extended objects providing
139: management of RADIUS Authentication Clients
140: using IPv6 address format."
141: ::= { radiusAuthClientExtMIBGroups 1 }
142:
143: END
143: warning -
warning: module name `RADIUS-AUTH-CLIENT-MIB-IPV6' should match `*-MIB'
144:
145: --
146: -- Copyright (C) The Internet Society (2005). This document is subject
147: -- to the rights, licenses and restrictions contained in BCP 78, and
148: -- except as set forth therein, the authors retain all their rights.
149: --
150: --
151: -- Acknowledgment
152: --
153: -- Funding for the RFC Editor function is currently provided by the
154: -- Internet Society.
155: