1-- CISCO-TELEPRESENCE-MIB.my: Cisco MIB to manage a
2-- Telepresence System
3--
4-- Copyright (c) 2007-2012, 2014 by Cisco Systems Inc.
5-- All rights reserved.
6--
7-- ******************************************************************
8
9CISCO-TELEPRESENCE-MIB DEFINITIONS ::= BEGIN
10
11IMPORTS
12    MODULE-IDENTITY,
13    OBJECT-TYPE,
14    Unsigned32,
15    NOTIFICATION-TYPE
16        FROM SNMPv2-SMI
17    MODULE-COMPLIANCE,
18    NOTIFICATION-GROUP,
19    OBJECT-GROUP
20        FROM SNMPv2-CONF
21    TEXTUAL-CONVENTION,
22    TruthValue,
23    TimeStamp
24        FROM SNMPv2-TC
25    SnmpAdminString
26        FROM SNMP-FRAMEWORK-MIB
27    InetAddress,
28    InetAddressType
29        FROM INET-ADDRESS-MIB
30    InterfaceIndexOrZero
31        FROM IF-MIB
32    ciscoMgmt
33        FROM CISCO-SMI;
34
35
36ciscoTelepresenceMIB MODULE-IDENTITY
37    LAST-UPDATED    "201411240000Z"
38    ORGANIZATION    "Cisco Systems, Inc."
39    CONTACT-INFO
40            "Cisco Systems
41            Customer Service
42
43            Postal: 170 W Tasman Drive
44            San Jose, CA  95134
45            USA
46
47            Tel: +1 800 553-NETS
48
49            E-mail: cochan@cisco.com"
50    DESCRIPTION
51        "The MIB module defines the managed objects for a
52        Telepresence system.
53
54        Telepresence refers to a set of technologies which
55        allow a person to feel as if they were present, to give
56        the appearance that they were present, or to have an
57        effect, at a location other than their true location.
58
59        A complete Telepresence system includes one or more
60        Telepresence CODECS and peripherals such as display, camera,
61        speaker, microphone and presentation device.
62
63        Peripherals are attached directly to a Telepresence CODEC via
64        an interface. Some peripherals may have more than one
65        interface to transmit audio and/or video data and provide a
66        configuration and/or control access."
67    REVISION        "201407180000Z"
68    DESCRIPTION
69        "Added ctpDPPeripheralStatusTable Table and added
70        auxHDMIInputDevice(19) and bringYourOwnDevice(20)
71        enum value in CtpPeripheralDeviceCategoryCode"
72    REVISION        "201207170000Z"
73    DESCRIPTION
74        "Added detectionDisabled in CtpPeripheralStatusCode"
75    REVISION        "201203230000Z"
76    DESCRIPTION
77        "Added ctpVlanId, ctpDefaultGateway and
78        ctpDefaultGatewayAddrType in ctpObjects"
79    REVISION        "201108230000Z"
80    DESCRIPTION
81        "Added uiDevice in CtpPeripheralDeviceCategoryCode"
82    REVISION        "201007230000Z"
83    DESCRIPTION
84        "Added ctpUSBPeripheralStatusTable and
85        ctpWIFIPeripheralStatusTable in ctpPeripheralStatusEntry.
86        ciscoTelepresenceComplianceR02 has been deprecated by
87        ciscoTelepresenceComplianceR03.
88        ciscoTpPeripheralStatusGroupR01 has been deprecated by
89        ciscoTpPeripheralStatusGroupR02"
90    REVISION        "201007130000Z"
91    DESCRIPTION
92        "Added ctpPeriStatusChangeNotifyEnable."
93    REVISION        "200907120000Z"
94    DESCRIPTION
95        "Added ctpPeripheralDeviceCategory and ctpPeripheralDeviceNumber
96        in ctpPeripheralStatusEntry.
97        Added commError in CtpPeripheralStatusCode.
98        Updated the description of ctpPeripheralErrorHistoryTable."
99    REVISION        "200802130000Z"
100    DESCRIPTION
101        "Added serial peripheral status and peripheral attribute table."
102    REVISION        "200712110000Z"
103    DESCRIPTION
104        "Initial version of this MIB module."
105    ::= { ciscoMgmt 643 }
106
107
108
109-- Textual Conventions
110
111CtpSystemResetMode ::= TEXTUAL-CONVENTION
112    STATUS          current
113    DESCRIPTION
114        "This textual convention identifies the system reset mode.
115        noRestart      (1) --
116            No operation.
117        restartPending (2) --
118            Restart a system without shutting down when there
119            is no active call; otherwise, system will be
120            restarted after the call is terminated.
121        resetPending   (3) --
122            Shut down a system and bring it back up if there
123            is no active call; otherwise, system will be reset
124            after the call is terminated.
125        forceReset     (4) --
126            Shut down a system and bring it back up no matter
127            if there is an active call or not."
128    SYNTAX          INTEGER  {
129                        noRestart(1), -- the following three values are
130                                      -- states: these values may be
131                                      -- read or written
132                        restartPending(2),
133                        resetPending(3),
134                        forceReset(4) -- the following value is action:
135                                      -- it may be written but not read
136                    }
137
138CtpPeripheralCableCode ::= TEXTUAL-CONVENTION
139    STATUS          current
140    DESCRIPTION
141        "The textual convention identifies cable status of the attached
142        peripheral through HDMI.
143           plugged       (1) -- Peripheral cable is plugged.
144           loose         (2) -- Peripheral cable is loose.
145           unplugged     (3) -- Peripheral cable is unplugged.
146           unknown       (4) -- Cannot detect peripheral cable status.
147           internalError (5) -- Internal error."
148    SYNTAX          INTEGER  {
149                        plugged(1),
150                        loose(2),
151                        unplugged(3),
152                        unknown(4),
153                        internalError(5)
154                    }
155
156CtpPeripheralPowerCode ::= TEXTUAL-CONVENTION
157    STATUS          current
158    DESCRIPTION
159        "The textual convention identifies power status of the attached
160        peripheral through HDMI.
161           on            (1) -- Peripheral power is on.
162           standby       (2) -- Peripheral power is in standby mode.
163           off           (3) -- Peripheral power is off.
164           unknown       (4) -- Cannot detect peripheral power status.
165           internalError (5) -- Internal error."
166    SYNTAX          INTEGER  {
167                        on(1),
168                        standby(2),
169                        off(3),
170                        unknown(4),
171                        internalError(5)
172                    }
173
174CtpPeripheralStatusCode ::= TEXTUAL-CONVENTION
175    STATUS          current
176    DESCRIPTION
177        "The textual convention identifies the peripheral status.
178        noError            (0) --
179            Expected peripheral device is functioning through
180            the attached port.
181        other              (1) --
182            None of the listed state.
183        cableError         (2) --
184            Expected peripheral device has cabling issue.
185        powerError         (3) --
186            Expected peripheral device has power issue.
187        mgmtSysConfigError (4) --
188            Expected peripheral device has communications
189            management system configuration issue.
190        systemError        (5) --
191            Telepresence system error.
192        deviceError        (6) --
193            Expected peripheral device is attached but not
194            fully functional.
195        linkError          (7) --
196            Expected peripheral device has port level link issue.
197        commError          (8) --
198            Expected peripheral device has port level communication
199            issue.
200        detectionDisabled  (9) --
201            Status detection has been disabled."
202    SYNTAX          INTEGER  {
203                        noError(0),
204                        other(1),
205                        cableError(2),
206                        powerError(3),
207                        mgmtSysConfigError(4),
208                        systemError(5),
209                        deviceError(6),
210                        linkError(7),
211                        commError(8),
212                        detectionDisabled(9)
213                    }
214
215CtpSystemAccessProtocol ::= TEXTUAL-CONVENTION
216    STATUS          current
217    DESCRIPTION
218        "The textual convention identifies supported Telepresence user
219        access protocol.
220           http (1) -- Hypertext Transfer Protocol (HTTP)
221           snmp (2) -- Simple Network Management Protocol (SNMP)
222           ssh  (3) -- Secure Shell (SSH)"
223    SYNTAX          INTEGER  {
224                        http(1),
225                        snmp(2),
226                        ssh(3)
227                    }
228
229CtpPeripheralDeviceCategoryCode ::= TEXTUAL-CONVENTION
230    STATUS          current
231    DESCRIPTION
232        "The textual convention identifies the peripheral type.
233        unknown              (0)  -- Unknown Device
234        other                (1)  -- None of the listed device
235        uplinkDevice         (2)  -- Device attached to CTS uplink port
236        ipPhone              (3)  -- IP phone
237        camera               (4)  -- Camera
238        display              (5)  -- Display
239        secCodec             (6)  -- CTS secondary codec
240        docCamera            (7)  -- Document camera
241        projector            (8)  -- Projector
242        dviDevice            (9)  -- Device attached to DVI port
243        presentationCodec    (10) -- CTS codec process presentation
244                                  -- stream
245        auxiliaryControlUnit (11) -- Auxiliary control unit
246        audioExpansionUnit   (12) -- Audio expansion unit
247        microphone           (13) -- Microphone
248        headset              (14) -- Headset
249        positionMic          (15) -- Position microphone
250        digitalMediaSystem   (16) -- Digitial Media System
251        auxHDMIOuputDevice   (17) -- Auxiliary HDMI output device
252        uiDevice             (18) -- User Interface device for CTS
253        auxHDMIInputDevice   (19) -- HDMI input enabled device
254        bringYourOwnDevice   (20) -- Bring Your Own Device,
255                                  -- like PC,Laptop,Tablet etc"
256    SYNTAX          INTEGER  {
257                        unknown(0),
258                        other(1),
259                        uplinkDevice(2),
260                        ipPhone(3),
261                        camera(4),
262                        display(5),
263                        secCodec(6),
264                        docCamera(7),
265                        projector(8),
266                        dviDevice(9),
267                        presentationCodec(10),
268                        auxiliaryControlUnit(11),
269                        audioExpansionUnit(12),
270                        microphone(13),
271                        headset(14),
272                        positionMic(15),
273                        digitialMediaSystem(16),
274                        auxHDMIOutputDevice(17),
275                        uiDevice(18),
276                        auxHDMIInputDevice(19),
277                        bringYourOwnDevice(20)
278                    }
279ciscoTelepresenceMIBNotifs  OBJECT IDENTIFIER
280    ::= { ciscoTelepresenceMIB 0 }
281
282ciscoTelepresenceMIBObjects  OBJECT IDENTIFIER
283    ::= { ciscoTelepresenceMIB 1 }
284
285ciscoTelepresenceMIBConform  OBJECT IDENTIFIER
286    ::= { ciscoTelepresenceMIB 2 }
287
288ctpObjects  OBJECT IDENTIFIER
289    ::= { ciscoTelepresenceMIBObjects 1 }
290
291ctpPeripheralStatusObjects  OBJECT IDENTIFIER
292    ::= { ciscoTelepresenceMIBObjects 2 }
293
294ctpEventHistory  OBJECT IDENTIFIER
295    ::= { ciscoTelepresenceMIBObjects 3 }
296
297
298-- Telepresence Management Configuration Group
299
300ctpPeripheralErrorNotifyEnable OBJECT-TYPE
301    SYNTAX          TruthValue
302    MAX-ACCESS      read-write
303    STATUS          deprecated
304    DESCRIPTION
305        "This object controls generation of
306        ctpPeripheralErrorNotification.
307
308        When the object is 'true(1)', generation of
309        ctpPeripheralErrorNotification is enabled.
310        When the object is 'false(2)', generation of
311        ctpPeripheralErrorNotification is disabled.
312        ctpPeripheralErrorNotifyEnable object is superseded by
313        ctpPeriStatusChangeNotifyEnable."
314    DEFVAL          { false }
315    ::= { ctpObjects 1 }
316
317ctpSysUserAuthFailNotifyEnable OBJECT-TYPE
318    SYNTAX          TruthValue
319    MAX-ACCESS      read-write
320    STATUS          current
321    DESCRIPTION
322        "This object controls generation of
323        ctpSysUserAuthFailNotification.
324
325        When the object is 'true(1)', generation of
326        ctpSysUserAuthFailNotification is enabled.
327        When the object is 'false(2)', generation of
328        ctpSysUserAuthFailNotification is disabled."
329    DEFVAL          { false }
330    ::= { ctpObjects 2 }
331
332ctpSystemReset OBJECT-TYPE
333    SYNTAX          CtpSystemResetMode
334    MAX-ACCESS      read-write
335    STATUS          current
336    DESCRIPTION
337        "This object is used to reset or restart a Telepresence system."
338    DEFVAL          { noRestart }
339    ::= { ctpObjects 3 }
340
341ctpPeriStatusChangeNotifyEnable OBJECT-TYPE
342    SYNTAX          TruthValue
343    MAX-ACCESS      read-write
344    STATUS          current
345    DESCRIPTION
346        "This object controls generation of
347        ctpPeriStatusChangeNotification.
348
349        When the object is 'true(1)', generation of
350        ctpPeriStatusChangeNotification is enabled.
351        When the object is 'false(2)', generation of
352        ctpPeriStatusChangeNotification is disabled."
353    DEFVAL          { false }
354    ::= { ctpObjects 4 }
355
356ctpVlanId OBJECT-TYPE
357    SYNTAX          Unsigned32
358    MAX-ACCESS      read-write
359    STATUS          current
360    DESCRIPTION
361        "This object specifies the Telepresence system VLAN ID."
362    ::= { ctpObjects 5 }
363
364ctpDefaultGatewayAddrType OBJECT-TYPE
365    SYNTAX          InetAddressType
366    MAX-ACCESS      read-write
367    STATUS          current
368    DESCRIPTION
369        "This object specifies the type of address contained
370        in the corresponding instance of ctpDefaultGateway."
371    ::= { ctpObjects 6 }
372
373ctpDefaultGateway OBJECT-TYPE
374    SYNTAX          InetAddress
375    MAX-ACCESS      read-write
376    STATUS          current
377    DESCRIPTION
378        "This object specifies the Telepresence system default gateway."
379    ::= { ctpObjects 7 }
380-- Telepresence Peripheral Status Group
381--
382
383--
384-- Peripheral Status Table
385
386ctpPeripheralStatusTable OBJECT-TYPE
387    SYNTAX          SEQUENCE OF CtpPeripheralStatusEntry
388    MAX-ACCESS      not-accessible
389    STATUS          current
390    DESCRIPTION
391        "The table contains system peripheral information.
392
393        An entry in this table has a corresponding entry,
394        INDEX-ed by the same value of ctpPeripheralIndex,
395        in the table relevant to the type of interface:
396            ctpEtherPeripheralStatusTable for Ethernet,
397            ctpHDMIPeripheralStatusTable for HDMI or
398            ctpDVIPeripheralStatusTable for DVI."
399    ::= { ctpPeripheralStatusObjects 1 }
400
401ctpPeripheralStatusEntry OBJECT-TYPE
402    SYNTAX          CtpPeripheralStatusEntry
403    MAX-ACCESS      not-accessible
404    STATUS          current
405    DESCRIPTION
406        "An entry contains information about one peripheral which is
407        configured or detected by a Telepresence system."
408    INDEX           { ctpPeripheralIndex }
409    ::= { ctpPeripheralStatusTable 1 }
410
411CtpPeripheralStatusEntry ::= SEQUENCE {
412        ctpPeripheralIndex          Unsigned32,
413        ctpPeripheralDescription    SnmpAdminString,
414        ctpPeripheralStatus         CtpPeripheralStatusCode,
415        ctpPeripheralDeviceCategory CtpPeripheralDeviceCategoryCode,
416        ctpPeripheralDeviceNumber   Unsigned32
417}
418
419ctpPeripheralIndex OBJECT-TYPE
420    SYNTAX          Unsigned32
421    MAX-ACCESS      not-accessible
422    STATUS          current
423    DESCRIPTION
424        "This object specifies a unique index for a peripheral
425        which is attached to a Telepresence system."
426    ::= { ctpPeripheralStatusEntry 1 }
427
428ctpPeripheralDescription OBJECT-TYPE
429    SYNTAX          SnmpAdminString (SIZE  (0..255))
430    MAX-ACCESS      read-only
431    STATUS          current
432    DESCRIPTION
433        "This object specifies a description of the attached peripheral.
434
435        Peripheral description may be the peripheral type, model and/or
436        version information or a peripheral signal description."
437    ::= { ctpPeripheralStatusEntry 2 }
438
439ctpPeripheralStatus OBJECT-TYPE
440    SYNTAX          CtpPeripheralStatusCode
441    MAX-ACCESS      read-only
442    STATUS          current
443    DESCRIPTION
444        "This object specifies a peripheral status."
445    ::= { ctpPeripheralStatusEntry 3 }
446
447ctpPeripheralDeviceCategory OBJECT-TYPE
448    SYNTAX          CtpPeripheralDeviceCategoryCode
449    MAX-ACCESS      read-only
450    STATUS          current
451    DESCRIPTION
452        "This object specifies a peripheral category of a device."
453    ::= { ctpPeripheralStatusEntry 4 }
454
455ctpPeripheralDeviceNumber OBJECT-TYPE
456    SYNTAX          Unsigned32
457    MAX-ACCESS      read-only
458    STATUS          current
459    DESCRIPTION
460        "This object specifies a device number for a peripheral.
461
462        Device number is unique within the same peripheral device
463        category."
464    ::= { ctpPeripheralStatusEntry 5 }
465
466
467-- Peripheral Status Table connected via Ethernet
468
469ctpEtherPeripheralStatusTable OBJECT-TYPE
470    SYNTAX          SEQUENCE OF CtpEtherPeripheralStatusEntry
471    MAX-ACCESS      not-accessible
472    STATUS          current
473    DESCRIPTION
474        "The table contains information about all peripherals
475        connected to the system via Ethernet port."
476    ::= { ctpPeripheralStatusObjects 2 }
477
478ctpEtherPeripheralStatusEntry OBJECT-TYPE
479    SYNTAX          CtpEtherPeripheralStatusEntry
480    MAX-ACCESS      not-accessible
481    STATUS          current
482    DESCRIPTION
483        "An entry contains information about one peripheral
484        attached to the Telepresence system via Ethernet."
485    INDEX           {
486                        ctpPeripheralIndex,
487                        ctpEtherPeripheralIndex
488                    }
489    ::= { ctpEtherPeripheralStatusTable 1 }
490
491CtpEtherPeripheralStatusEntry ::= SEQUENCE {
492        ctpEtherPeripheralIndex    Unsigned32,
493        ctpEtherPeripheralIfIndex  InterfaceIndexOrZero,
494        ctpEtherPeripheralAddrType InetAddressType,
495        ctpEtherPeripheralAddr     InetAddress,
496        ctpEtherPeripheralStatus   CtpPeripheralStatusCode
497}
498
499ctpEtherPeripheralIndex OBJECT-TYPE
500    SYNTAX          Unsigned32
501    MAX-ACCESS      not-accessible
502    STATUS          current
503    DESCRIPTION
504        "This object specifies a unique number for a peripheral
505        Ethernet interface.
506
507        If no peripheral has more than one Ethernet interface, this
508        object will have value '1'."
509    ::= { ctpEtherPeripheralStatusEntry 1 }
510
511ctpEtherPeripheralIfIndex OBJECT-TYPE
512    SYNTAX          InterfaceIndexOrZero
513    MAX-ACCESS      read-only
514    STATUS          current
515    DESCRIPTION
516        "The object specifies an index value that uniquely identifies
517        the interface to which this entry is applicable.  The
518        interface identified by a particular value of this index is
519        the same interface as identified by the same value of the
520        IF-MIB's ifIndex.
521
522        If this entry doesn't have corresponding ifIndex, then this
523        value will have value '0'."
524    ::= { ctpEtherPeripheralStatusEntry 2 }
525
526ctpEtherPeripheralAddrType OBJECT-TYPE
527    SYNTAX          InetAddressType
528    MAX-ACCESS      read-only
529    STATUS          current
530    DESCRIPTION
531        "This object specifies the type of address contained
532        in the corresponding instance of ctpEtherPeripheralAddr."
533    ::= { ctpEtherPeripheralStatusEntry 3 }
534
535ctpEtherPeripheralAddr OBJECT-TYPE
536    SYNTAX          InetAddress
537    MAX-ACCESS      read-only
538    STATUS          current
539    DESCRIPTION
540        "This object specifies the address of the attached peripheral
541        in the format given by the corresponding instance of
542        ctpEtherPeripheralAddrType."
543    ::= { ctpEtherPeripheralStatusEntry 4 }
544
545ctpEtherPeripheralStatus OBJECT-TYPE
546    SYNTAX          CtpPeripheralStatusCode
547    MAX-ACCESS      read-only
548    STATUS          current
549    DESCRIPTION
550        "This object specifies attached peripheral status retrieved via
551        Ethernet port."
552    ::= { ctpEtherPeripheralStatusEntry 5 }
553
554
555-- Peripheral Status Table connected via HDMI
556
557ctpHDMIPeripheralStatusTable OBJECT-TYPE
558    SYNTAX          SEQUENCE OF CtpHDMIPeripheralStatusEntry
559    MAX-ACCESS      not-accessible
560    STATUS          current
561    DESCRIPTION
562        "The table contains information about all peripherals
563        connected to the system via HDMI."
564    ::= { ctpPeripheralStatusObjects 3 }
565
566ctpHDMIPeripheralStatusEntry OBJECT-TYPE
567    SYNTAX          CtpHDMIPeripheralStatusEntry
568    MAX-ACCESS      not-accessible
569    STATUS          current
570    DESCRIPTION
571        "An entry contains information about one Telepresence
572        HDMI peripheral."
573    INDEX           {
574                        ctpPeripheralIndex,
575                        ctpHDMIPeripheralIndex
576                    }
577    ::= { ctpHDMIPeripheralStatusTable 1 }
578
579CtpHDMIPeripheralStatusEntry ::= SEQUENCE {
580        ctpHDMIPeripheralIndex       Unsigned32,
581        ctpHDMIPeripheralCableStatus CtpPeripheralCableCode,
582        ctpHDMIPeripheralPowerStatus CtpPeripheralPowerCode
583}
584
585ctpHDMIPeripheralIndex OBJECT-TYPE
586    SYNTAX          Unsigned32
587    MAX-ACCESS      not-accessible
588    STATUS          current
589    DESCRIPTION
590        "This object specifies a unique number for a peripheral HDMI.
591
592        If no peripheral has more than one HDMI, this
593        object will have value '1'."
594    ::= { ctpHDMIPeripheralStatusEntry 1 }
595
596ctpHDMIPeripheralCableStatus OBJECT-TYPE
597    SYNTAX          CtpPeripheralCableCode
598    MAX-ACCESS      read-only
599    STATUS          current
600    DESCRIPTION
601        "This object specifies cable status of an attached peripheral.
602
603        This object is set to 'loose' if system detects cable is
604        'unplugged' but power is 'on'."
605    ::= { ctpHDMIPeripheralStatusEntry 2 }
606
607ctpHDMIPeripheralPowerStatus OBJECT-TYPE
608    SYNTAX          CtpPeripheralPowerCode
609    MAX-ACCESS      read-only
610    STATUS          current
611    DESCRIPTION
612        "This object specifies power status of an attached peripheral.
613
614        This object is set to 'unknown' if system detects cable is
615        'unplugged'."
616    ::= { ctpHDMIPeripheralStatusEntry 3 }
617
618
619-- Peripheral Status Table connected via DVI
620
621ctpDVIPeripheralStatusTable OBJECT-TYPE
622    SYNTAX          SEQUENCE OF CtpDVIPeripheralStatusEntry
623    MAX-ACCESS      not-accessible
624    STATUS          current
625    DESCRIPTION
626        "The table contains information about all peripherals
627        connected to the system via DVI."
628    ::= { ctpPeripheralStatusObjects 4 }
629
630ctpDVIPeripheralStatusEntry OBJECT-TYPE
631    SYNTAX          CtpDVIPeripheralStatusEntry
632    MAX-ACCESS      not-accessible
633    STATUS          current
634    DESCRIPTION
635        "An entry contains information about one peripheral
636        attached to the Telepresence system via DVI."
637    INDEX           {
638                        ctpPeripheralIndex,
639                        ctpDVIPeripheralIndex
640                    }
641    ::= { ctpDVIPeripheralStatusTable 1 }
642
643CtpDVIPeripheralStatusEntry ::= SEQUENCE {
644        ctpDVIPeripheralIndex       Unsigned32,
645        ctpDVIPeripheralCableStatus CtpPeripheralCableCode
646}
647
648ctpDVIPeripheralIndex OBJECT-TYPE
649    SYNTAX          Unsigned32
650    MAX-ACCESS      not-accessible
651    STATUS          current
652    DESCRIPTION
653        "This object specifies a unique number for a peripheral DVI.
654
655        If no peripheral has more than one DVI, this
656        object will have value '1'.
657
658        Note that some Telepresence systems have no DVI port and some
659        Telepresence systems have only one DVI port."
660    ::= { ctpDVIPeripheralStatusEntry 1 }
661
662ctpDVIPeripheralCableStatus OBJECT-TYPE
663    SYNTAX          CtpPeripheralCableCode
664    MAX-ACCESS      read-only
665    STATUS          current
666    DESCRIPTION
667        "This object specifies attached device
668        cable status reported by DVI."
669    ::= { ctpDVIPeripheralStatusEntry 2 }
670
671
672-- Peripheral Status Table connected via RS-232
673
674ctpRS232PeripheralStatusTable OBJECT-TYPE
675    SYNTAX          SEQUENCE OF CtpRS232PeripheralStatusEntry
676    MAX-ACCESS      not-accessible
677    STATUS          current
678    DESCRIPTION
679        "The table contains information about all peripherals
680        connected to the system via RS-232."
681    ::= { ctpPeripheralStatusObjects 5 }
682
683ctpRS232PeripheralStatusEntry OBJECT-TYPE
684    SYNTAX          CtpRS232PeripheralStatusEntry
685    MAX-ACCESS      not-accessible
686    STATUS          current
687    DESCRIPTION
688        "An entry contains information about one peripheral
689        attached to the Telepresence system via RS-232."
690    INDEX           {
691                        ctpPeripheralIndex,
692                        ctpRS232PeripheralIndex
693                    }
694    ::= { ctpRS232PeripheralStatusTable 1 }
695
696CtpRS232PeripheralStatusEntry ::= SEQUENCE {
697        ctpRS232PeripheralIndex      Unsigned32,
698        ctpRS232PortIndex            InterfaceIndexOrZero,
699        ctpRS232PeripheralConnStatus INTEGER
700}
701
702ctpRS232PeripheralIndex OBJECT-TYPE
703    SYNTAX          Unsigned32
704    MAX-ACCESS      not-accessible
705    STATUS          current
706    DESCRIPTION
707        "This object specifies a unique number for a peripheral RS-232.
708
709        If no peripheral has more than one RS-232, this
710        object will have value '1'.
711
712        Note that some Telepresence systems have no RS-232 port."
713    ::= { ctpRS232PeripheralStatusEntry 1 }
714
715ctpRS232PortIndex OBJECT-TYPE
716    SYNTAX          InterfaceIndexOrZero
717    MAX-ACCESS      read-only
718    STATUS          current
719    DESCRIPTION
720        "The object specifies an index value that uniquely identifies
721        the RS-232 port to which this entry is applicable.
722        Its value is the same as RS-232-MIB's rs232PortIndex for
723        the port.
724
725        If RS-232-MIB is not supported by the agent, then this
726        value will have value '0'."
727    ::= { ctpRS232PeripheralStatusEntry 2 }
728
729ctpRS232PeripheralConnStatus OBJECT-TYPE
730    SYNTAX          INTEGER  {
731                        connected(1),
732                        unknown(2)
733                    }
734    MAX-ACCESS      read-only
735    STATUS          current
736    DESCRIPTION
737        "This object specifies peripheral which is
738        connected via RS232.
739
740        When the object is 'connected(1)', peripheral connection
741        via RS232 is working properly.
742        When the object is 'unknown(2)', peripheral connection
743        via RS232 is not working properly. It may due to device problem
744        or connection problem."
745    ::= { ctpRS232PeripheralStatusEntry 3 }
746
747
748-- Peripheral Attribute table
749
750ctpPeripheralAttributeTable OBJECT-TYPE
751    SYNTAX          SEQUENCE OF CtpPeripheralAttributeEntry
752    MAX-ACCESS      not-accessible
753    STATUS          current
754    DESCRIPTION
755        "The table contains information about attributes for the
756        peripherals which are connected to the system. Peripheral
757        attribute may specify peripheral's component information,
758        for example, an entry may specify lifetime of a lamp
759        on a presentation device."
760    ::= { ctpPeripheralStatusObjects 6 }
761
762ctpPeripheralAttributeEntry OBJECT-TYPE
763    SYNTAX          CtpPeripheralAttributeEntry
764    MAX-ACCESS      not-accessible
765    STATUS          current
766    DESCRIPTION
767        "An entry contains information about one peripheral
768        attribute related to the peripheral specified by
769        ctpPeripheralIndex."
770    INDEX           {
771                        ctpPeripheralIndex,
772                        ctpPeripheralAttributeIndex
773                    }
774    ::= { ctpPeripheralAttributeTable 1 }
775
776CtpPeripheralAttributeEntry ::= SEQUENCE {
777        ctpPeripheralAttributeIndex Unsigned32,
778        ctpPeripheralAttributeDescr INTEGER,
779        ctpPeripheralAttributeValue Unsigned32
780}
781
782ctpPeripheralAttributeIndex OBJECT-TYPE
783    SYNTAX          Unsigned32
784    MAX-ACCESS      not-accessible
785    STATUS          current
786    DESCRIPTION
787        "This object specifies a unique number for a peripheral
788        attribute.
789
790        If no peripheral has more than one attribute, this
791        object will have value '1'."
792    ::= { ctpPeripheralAttributeEntry 1 }
793
794ctpPeripheralAttributeDescr OBJECT-TYPE
795    SYNTAX          INTEGER  {
796                        lampOperTime(1),
797                        lampState(2),
798                        powerSwitchState(3)
799                    }
800    MAX-ACCESS      read-only
801    STATUS          current
802    DESCRIPTION
803        "This object specifies description of a attribute.
804        The supported attributes are
805            lampOperTime(1)      -- indicate the lamp operating time
806                                    of a peripheral
807            lampState(2)         -- indicate the lamp state
808            powerSwitchState(3)  -- indicate the power on/off state
809                                    of a peripheral
810        Note that not all peripheral contains all the supported
811        attributes. Agent reports whatever is available."
812    ::= { ctpPeripheralAttributeEntry 2 }
813
814ctpPeripheralAttributeValue OBJECT-TYPE
815    SYNTAX          Unsigned32
816    MAX-ACCESS      read-only
817    STATUS          current
818    DESCRIPTION
819        "This object specifies value of the attribute corresponding
820        to ctpPeripheralAttributeDescr.
821        The possible value of the supported attributes is listed as
822        the following:
823        Attribute          Unit       SYNTAX
824        -----------------------------------------------------------
825        lampOperTime       hours      Unsigned32(0..4294967295)
826        lampState                     INTEGER {
827                                          on(1),
828                                          off(2),
829                                          failure(3),
830                                          unknown(4)
831                                      }
832        powerSwitchState              INTEGER {
833                                          on(1),
834                                          off(2),
835                                          unknown(3)
836                                      }"
837    ::= { ctpPeripheralAttributeEntry 3 }
838
839
840
841ctpUSBPeripheralStatusTable OBJECT-TYPE
842    SYNTAX          SEQUENCE OF CtpUSBPeripheralStatusEntry
843    MAX-ACCESS      not-accessible
844    STATUS          current
845    DESCRIPTION
846        "This table contains information about all the peripherals
847        connected to the system via USB."
848    ::= { ctpPeripheralStatusObjects 7 }
849
850ctpUSBPeripheralStatusEntry OBJECT-TYPE
851    SYNTAX          CtpUSBPeripheralStatusEntry
852    MAX-ACCESS      not-accessible
853    STATUS          current
854    DESCRIPTION
855        "An entry drescribes a peripheral connected to the Telepresence
856        system through USB."
857    INDEX           {
858                        ctpPeripheralIndex,
859                        ctpUSBPeripheralIndex
860                    }
861    ::= { ctpUSBPeripheralStatusTable 1 }
862
863CtpUSBPeripheralStatusEntry ::= SEQUENCE {
864        ctpUSBPeripheralIndex       Unsigned32,
865        ctpUSBPeripheralCableStatus CtpPeripheralCableCode,
866        ctpUSBPeripheralPowerStatus INTEGER,
867        ctpUSBPeripheralPortType    INTEGER,
868        ctpUSBPeripheralPortRate    INTEGER
869}
870
871ctpUSBPeripheralIndex OBJECT-TYPE
872    SYNTAX          Unsigned32
873    MAX-ACCESS      not-accessible
874    STATUS          current
875    DESCRIPTION
876        "This object indicates an arbitrary positive, integer-value that
877        uniquely identifies the USB peripheral."
878    ::= { ctpUSBPeripheralStatusEntry 1 }
879
880ctpUSBPeripheralCableStatus OBJECT-TYPE
881    SYNTAX          CtpPeripheralCableCode
882    MAX-ACCESS      read-only
883    STATUS          current
884    DESCRIPTION
885        "This object indicates the status of the cable attaching the USB
886        peripheral."
887    ::= { ctpUSBPeripheralStatusEntry 2 }
888
889ctpUSBPeripheralPowerStatus OBJECT-TYPE
890    SYNTAX          INTEGER  {
891                        unknown(1),
892                        self(2),
893                        bus(3),
894                        both(4)
895                    }
896    MAX-ACCESS      read-only
897    STATUS          current
898    DESCRIPTION
899        "This object indicates the source of power for the
900        attached USB peripheral:
901
902        'unknown' - The source of power is unknown.
903        'self' - The USB peripheral is externally powered.
904        'bus' - The USB peripheral is powered by the USB bus.
905        'both' - The USB peripheral can be powered by both the
906        USB bus or self"
907    ::= { ctpUSBPeripheralStatusEntry 3 }
908
909ctpUSBPeripheralPortType OBJECT-TYPE
910    SYNTAX          INTEGER  {
911                        host(1),
912                        device(2),
913                        hub(3)
914                    }
915    MAX-ACCESS      read-only
916    STATUS          current
917    DESCRIPTION
918        "This object indicates the type of device
919        connected to the USB port:
920
921        'host' - no device os connected to the port
922        'device' - a usb device is connected to the port
923        'hub' - a usb hub is connected to the port"
924    ::= { ctpUSBPeripheralStatusEntry 4 }
925
926ctpUSBPeripheralPortRate OBJECT-TYPE
927    SYNTAX          INTEGER  {
928                        low(1),
929                        full(2),
930                        high(3)
931                    }
932    MAX-ACCESS      read-only
933    STATUS          current
934    DESCRIPTION
935        "This object indicates the current operational rate of
936        the USB peripheral:
937
938        'unknown' - The USB port rate is unknown
939        'low' -  The USB port rate is at 1.5 Mbps.
940        'full' - The USB port rate is at 12 Mbps.
941        'high' - The USB port rate is at 480 Mbps."
942    ::= { ctpUSBPeripheralStatusEntry 5 }
943
944
945-- Peripheral Status Table connected via 802dot11
946
947ctp802dot11PeripheralStatusTable OBJECT-TYPE
948    SYNTAX          SEQUENCE OF Ctp802dot11PeripheralStatusEntry
949    MAX-ACCESS      not-accessible
950    STATUS          current
951    DESCRIPTION
952        "The table contains information about all peripherals
953        connected to the system via 802dot11."
954    ::= { ctpPeripheralStatusObjects 8 }
955
956ctp802dot11PeripheralStatusEntry OBJECT-TYPE
957    SYNTAX          Ctp802dot11PeripheralStatusEntry
958    MAX-ACCESS      not-accessible
959    STATUS          current
960    DESCRIPTION
961        "An entry describes one Telepresence 802dot11 peripheral."
962    INDEX           {
963                        ctpPeripheralIndex,
964                        ctp802dot11PeripheralIndex
965                    }
966    ::= { ctp802dot11PeripheralStatusTable 1 }
967
968Ctp802dot11PeripheralStatusEntry ::= SEQUENCE {
969        ctp802dot11PeripheralIndex        Unsigned32,
970        ctp802dot11PeripheralIfIndex      InterfaceIndexOrZero,
971        ctp802dot11PeripheralAddrType     InetAddressType,
972        ctp802dot11PeripheralAddr         InetAddress,
973        ctp802dot11PeripheralLinkStrength Unsigned32,
974        ctp802dot11PeripheralLinkStatus   CtpPeripheralCableCode
975}
976
977ctp802dot11PeripheralIndex OBJECT-TYPE
978    SYNTAX          Unsigned32
979    MAX-ACCESS      not-accessible
980    STATUS          current
981    DESCRIPTION
982        "This object indicates an arbitrary positive, integer-value that
983        uniquely identifies the IEEE 802.11 peripheral."
984    ::= { ctp802dot11PeripheralStatusEntry 1 }
985
986ctp802dot11PeripheralIfIndex OBJECT-TYPE
987    SYNTAX          InterfaceIndexOrZero
988    MAX-ACCESS      read-only
989    STATUS          current
990    DESCRIPTION
991        "This object indicates an index value that uniquely identifies
992        the interface to which this entry is applicable.
993
994        If this entry doesn't have corresponding ifIndex, then this
995        value will have value '0'."
996    ::= { ctp802dot11PeripheralStatusEntry 2 }
997
998ctp802dot11PeripheralAddrType OBJECT-TYPE
999    SYNTAX          InetAddressType
1000    MAX-ACCESS      read-only
1001    STATUS          current
1002    DESCRIPTION
1003        "This object indicates the type of address indicated by the
1004        corresponding instance of ctp802dot11PeripheralAddr."
1005    ::= { ctp802dot11PeripheralStatusEntry 3 }
1006
1007ctp802dot11PeripheralAddr OBJECT-TYPE
1008    SYNTAX          InetAddress
1009    MAX-ACCESS      read-only
1010    STATUS          current
1011    DESCRIPTION
1012        "This object indicates the address of the attached peripheral
1013        in the format indicated by the corresponding instance of
1014        ctp802dot11PeripheralAddrType."
1015    ::= { ctp802dot11PeripheralStatusEntry 4 }
1016
1017ctp802dot11PeripheralLinkStrength OBJECT-TYPE
1018    SYNTAX          Unsigned32
1019    MAX-ACCESS      read-only
1020    STATUS          current
1021    DESCRIPTION
1022        "This object indicates the link strength of an IEEE 802.11 link
1023        for a peripheral. A return value of 0 indicates the link is not
1024        connected. A return value between 1 - 5 indicates the strength
1025        of the link, with 1 being the weakest and 5 being the
1026        strongest."
1027    ::= { ctp802dot11PeripheralStatusEntry 5 }
1028
1029-- changed to link status. This field is to represent the link status of
1030-- the 802dot11 link.
1031
1032ctp802dot11PeripheralLinkStatus OBJECT-TYPE
1033    SYNTAX          CtpPeripheralCableCode
1034    MAX-ACCESS      read-only
1035    STATUS          current
1036    DESCRIPTION
1037        "This object indicates the link status of the attached
1038        peripheral via IEEE 802.11 link."
1039    ::= { ctp802dot11PeripheralStatusEntry 6 }
1040
1041
1042-- Peripheral Status Table connected via DP
1043
1044ctpDPPeripheralStatusTable OBJECT-TYPE
1045    SYNTAX          SEQUENCE OF CtpDPPeripheralStatusEntry
1046    MAX-ACCESS      not-accessible
1047    STATUS          current
1048    DESCRIPTION
1049        "The table contains information about all peripherals
1050        connected to the system via DP."
1051    ::= { ctpPeripheralStatusObjects 9 }
1052
1053ctpDPPeripheralStatusEntry OBJECT-TYPE
1054    SYNTAX          CtpDPPeripheralStatusEntry
1055    MAX-ACCESS      not-accessible
1056    STATUS          current
1057    DESCRIPTION
1058        "An entry contains information about one Telepresence
1059        DP peripheral."
1060    INDEX           {
1061                        ctpPeripheralIndex,
1062                        ctpDPPeripheralIndex
1063                    }
1064    ::= { ctpDPPeripheralStatusTable 1 }
1065
1066CtpDPPeripheralStatusEntry ::= SEQUENCE {
1067        ctpDPPeripheralIndex       Unsigned32,
1068        ctpDPPeripheralCableStatus CtpPeripheralCableCode,
1069        ctpDPPeripheralPowerStatus CtpPeripheralPowerCode
1070}
1071
1072ctpDPPeripheralIndex OBJECT-TYPE
1073    SYNTAX          Unsigned32
1074    MAX-ACCESS      not-accessible
1075    STATUS          current
1076    DESCRIPTION
1077        "This object indicates a unique number for a peripheral DP.
1078
1079        If no peripheral has more than one DP, this
1080        object will have value '1'."
1081    ::= { ctpDPPeripheralStatusEntry 1 }
1082
1083ctpDPPeripheralCableStatus OBJECT-TYPE
1084    SYNTAX          CtpPeripheralCableCode
1085    MAX-ACCESS      read-only
1086    STATUS          current
1087    DESCRIPTION
1088        "This object indicates the cable status of a peripheral which
1089        is attached to the system via Display Port interface.
1090
1091        This object returns 'loose' if system detects cable is
1092        'unplugged' but power is 'on'."
1093    ::= { ctpDPPeripheralStatusEntry 2 }
1094
1095ctpDPPeripheralPowerStatus OBJECT-TYPE
1096    SYNTAX          CtpPeripheralPowerCode
1097    MAX-ACCESS      read-only
1098    STATUS          current
1099    DESCRIPTION
1100        "This object indicates the power status of a peripheral which
1101        is attached to the system via Display Port interface.
1102
1103        This object returns 'unknown' if system detects cable is
1104        'unplugged'."
1105    ::= { ctpDPPeripheralStatusEntry 3 }
1106
1107
1108
1109-- Event History Group
1110--
1111
1112-- Telepresence Peripheral Error History Table
1113
1114ctpPeripheralErrorHistTableSize OBJECT-TYPE
1115    SYNTAX          Unsigned32 (0..500)
1116    MAX-ACCESS      read-write
1117    STATUS          current
1118    DESCRIPTION
1119        "This object specifies the maximum number of entries that the
1120        ctpPeripheralErrorHistTable can contain.  When the
1121        capacity of the ctpPeripheralErrorHistTable has reached
1122        the value specified by this object, then the agent
1123        deletes the oldest entity in order to accommodate
1124        the new entry. A value of '0' prevents any history
1125        from being retained.
1126
1127        Some agents restrict the value of this object to be less than
1128        500."
1129    DEFVAL          { 10 }
1130    ::= { ctpEventHistory 1 }
1131
1132ctpPeripheralErrorHistLastIndex OBJECT-TYPE
1133    SYNTAX          Unsigned32 (0..4294967295)
1134    MAX-ACCESS      read-only
1135    STATUS          current
1136    DESCRIPTION
1137        "This object specifies the value of the
1138        ctpPeripheralErrorHistIndex object corresponding to the
1139        last entry added to the table by the agent.
1140
1141        If the management application uses the notifications defined
1142        by this module, then it can poll this object to determine
1143        whether it has missed a notification sent by the agent."
1144    ::= { ctpEventHistory 2 }
1145
1146ctpPeripheralErrorHistoryTable OBJECT-TYPE
1147    SYNTAX          SEQUENCE OF CtpPeripheralErrorHistoryEntry
1148    MAX-ACCESS      not-accessible
1149    STATUS          current
1150    DESCRIPTION
1151        "This table contains a history of the detected peripheral
1152        status changes.
1153
1154        After a management agent restart, when sysUpTime is reset to
1155        zero, this table records all notifications until such time as
1156        it becomes full. Thereafter, it remains full by retaining the
1157        number of most recent notifications specified in
1158        ctpPeripheralErrorHistTableSize."
1159    ::= { ctpEventHistory 3 }
1160
1161ctpPeripheralErrorHistoryEntry OBJECT-TYPE
1162    SYNTAX          CtpPeripheralErrorHistoryEntry
1163    MAX-ACCESS      not-accessible
1164    STATUS          current
1165    DESCRIPTION
1166        "An entry contains information about a Telepresence
1167        peripheral status changes."
1168    INDEX           { ctpPeripheralErrorHistoryIndex }
1169    ::= { ctpPeripheralErrorHistoryTable 1 }
1170
1171CtpPeripheralErrorHistoryEntry ::= SEQUENCE {
1172        ctpPeripheralErrorHistoryIndex   Unsigned32,
1173        ctpPeripheralErrorIndex          Unsigned32,
1174        ctpPeripheralErrorStatus         CtpPeripheralStatusCode,
1175        ctpPeripheralErrorTimeStamp      TimeStamp,
1176        ctpPeripheralErrorDeviceCategory CtpPeripheralDeviceCategoryCode,
1177        ctpPeripheralErrorDeviceNumber   Unsigned32
1178}
1179
1180ctpPeripheralErrorHistoryIndex OBJECT-TYPE
1181    SYNTAX          Unsigned32 (1..4294967295)
1182    MAX-ACCESS      not-accessible
1183    STATUS          current
1184    DESCRIPTION
1185        "A unique non-zero integer value that identifies a
1186        CtpPeripheralErrorHistoryEntry in the table.
1187
1188        The value of this index starts from '1' and monotonically
1189        increases for each peripheral error known to the agent.
1190        If the value of this object is '4294967295',
1191        the agent will use '1' as the value of the
1192        next detected peripheral status change."
1193    ::= { ctpPeripheralErrorHistoryEntry 1 }
1194
1195ctpPeripheralErrorIndex OBJECT-TYPE
1196    SYNTAX          Unsigned32
1197    MAX-ACCESS      read-only
1198    STATUS          current
1199    DESCRIPTION
1200        "The object specifies the value of ctpPeripheralIndex of a
1201        peripheral which is in error state.
1202
1203        This object is deprecated in favor of
1204        ctpPeripheralErrorDeviceCategory and
1205        ctpPeripheralErrorDeviceNumber."
1206    ::= { ctpPeripheralErrorHistoryEntry 2 }
1207
1208ctpPeripheralErrorStatus OBJECT-TYPE
1209    SYNTAX          CtpPeripheralStatusCode
1210    MAX-ACCESS      read-only
1211    STATUS          current
1212    DESCRIPTION
1213        "This object specifies the peripheral status after its status
1214        changed."
1215    ::= { ctpPeripheralErrorHistoryEntry 3 }
1216
1217ctpPeripheralErrorTimeStamp OBJECT-TYPE
1218    SYNTAX          TimeStamp
1219    MAX-ACCESS      read-only
1220    STATUS          current
1221    DESCRIPTION
1222        "This object specifies the value of the sysUpTime object at the
1223        time the notification was generated."
1224    ::= { ctpPeripheralErrorHistoryEntry 4 }
1225
1226ctpPeripheralErrorDeviceCategory OBJECT-TYPE
1227    SYNTAX          CtpPeripheralDeviceCategoryCode
1228    MAX-ACCESS      read-only
1229    STATUS          current
1230    DESCRIPTION
1231        "The object specifies peripheral device category after its
1232        status changed."
1233    ::= { ctpPeripheralErrorHistoryEntry 5 }
1234
1235ctpPeripheralErrorDeviceNumber OBJECT-TYPE
1236    SYNTAX          Unsigned32
1237    MAX-ACCESS      read-only
1238    STATUS          current
1239    DESCRIPTION
1240        "The object specifies peripheral device number after its
1241        status changed.
1242
1243        Device number is unique within the same peripheral device
1244        category."
1245    ::= { ctpPeripheralErrorHistoryEntry 6 }
1246
1247
1248
1249-- User Authentication Failure History Table
1250
1251ctpSysUserAuthFailHistTableSize OBJECT-TYPE
1252    SYNTAX          Unsigned32 (0..500)
1253    MAX-ACCESS      read-write
1254    STATUS          current
1255    DESCRIPTION
1256        "This object specifies the number of entries that the
1257        ctpSysUserAuthFailHistTable can contain.  When the
1258        capacity of the ctpSysUserAuthFailHistTable has reached
1259        the value specified by this object, then the agent
1260        deletes the oldest entity in order to accommodate
1261        the new entry. A value of '0' prevents any history
1262        from being retained.
1263
1264        Some agents restrict the value of this object to be less than
1265        500."
1266    DEFVAL          { 10 }
1267    ::= { ctpEventHistory 4 }
1268
1269ctpSysUserAuthFailHistLastIndex OBJECT-TYPE
1270    SYNTAX          Unsigned32 (0..4294967295)
1271    MAX-ACCESS      read-only
1272    STATUS          current
1273    DESCRIPTION
1274        "This object specifies the value of the
1275        ctpSysUserAuthFailHistIndex object corresponding to the
1276        last entry added to the table by the agent.
1277
1278        If the management application uses the notifications defined
1279        by this module, then it can poll this object to determine
1280        whether it has missed a notification sent by the agent."
1281    ::= { ctpEventHistory 5 }
1282
1283ctpSysUserAuthFailHistoryTable OBJECT-TYPE
1284    SYNTAX          SEQUENCE OF CtpSysUserAuthFailHistoryEntry
1285    MAX-ACCESS      not-accessible
1286    STATUS          current
1287    DESCRIPTION
1288        "This table contains a history of detected user
1289        authentication failures.
1290
1291        After a management agent restart, when sysUpTime is reset
1292        to zero, this table records all user authentication failure
1293        notifications until such time as it becomes full. Thereafter,
1294        it remains full by retaining the number of most recent
1295        notifications specified in ctpSysUserAuthFailHistTableSize."
1296    ::= { ctpEventHistory 6 }
1297
1298ctpSysUserAuthFailHistoryEntry OBJECT-TYPE
1299    SYNTAX          CtpSysUserAuthFailHistoryEntry
1300    MAX-ACCESS      not-accessible
1301    STATUS          current
1302    DESCRIPTION
1303        "An entry contains information about a Telepresence
1304        system user authentication failure."
1305    INDEX           { ctpSysUserAuthFailHistoryIndex }
1306    ::= { ctpSysUserAuthFailHistoryTable 1 }
1307
1308CtpSysUserAuthFailHistoryEntry ::= SEQUENCE {
1309        ctpSysUserAuthFailHistoryIndex   Unsigned32,
1310        ctpSysUserAuthFailSourceAddrType InetAddressType,
1311        ctpSysUserAuthFailSourceAddr     InetAddress,
1312        ctpSysUserAuthFailSourcePort     Unsigned32,
1313        ctpSysUserAuthFailUserName       SnmpAdminString,
1314        ctpSysUserAuthFailAccessProtocol CtpSystemAccessProtocol,
1315        ctpSysUserAuthFailTimeStamp      TimeStamp
1316}
1317
1318ctpSysUserAuthFailHistoryIndex OBJECT-TYPE
1319    SYNTAX          Unsigned32 (1..4294967295)
1320    MAX-ACCESS      not-accessible
1321    STATUS          current
1322    DESCRIPTION
1323        "A unique non-zero integer value that identifies a
1324        CtpSysUserAuthFailHistoryEntry in the table.
1325
1326        The value of this index starts from '1' and monotonically
1327        increases for each system authentication failure event
1328        known to the agent. If the value of this object is
1329        '4294967295', the agent will use '1' as the value of
1330        the next user authentication failure event."
1331    ::= { ctpSysUserAuthFailHistoryEntry 1 }
1332
1333ctpSysUserAuthFailSourceAddrType OBJECT-TYPE
1334    SYNTAX          InetAddressType
1335    MAX-ACCESS      read-only
1336    STATUS          current
1337    DESCRIPTION
1338        "The object specifies the type of address contained
1339        in the corresponding instance of ctpSysUserAuthFailSourceAddr."
1340    ::= { ctpSysUserAuthFailHistoryEntry 2 }
1341
1342ctpSysUserAuthFailSourceAddr OBJECT-TYPE
1343    SYNTAX          InetAddress
1344    MAX-ACCESS      read-only
1345    STATUS          current
1346    DESCRIPTION
1347        "The object specifies the source address when the
1348        user authentication failure occurred, in the format given by
1349        the corresponding instance of ctpSysUserAuthFailSourceAddrType."
1350    ::= { ctpSysUserAuthFailHistoryEntry 3 }
1351
1352ctpSysUserAuthFailSourcePort OBJECT-TYPE
1353    SYNTAX          Unsigned32
1354    MAX-ACCESS      read-only
1355    STATUS          current
1356    DESCRIPTION
1357        "The object specifies the source TCP/UDP port number
1358        when a user authentication failure occurred."
1359    ::= { ctpSysUserAuthFailHistoryEntry 4 }
1360
1361ctpSysUserAuthFailUserName OBJECT-TYPE
1362    SYNTAX          SnmpAdminString (SIZE  (1..32))
1363    MAX-ACCESS      read-only
1364    STATUS          current
1365    DESCRIPTION
1366        "The object specifies the user name which was used to gain
1367        system access when authentication failure occurred."
1368    ::= { ctpSysUserAuthFailHistoryEntry 5 }
1369
1370ctpSysUserAuthFailAccessProtocol OBJECT-TYPE
1371    SYNTAX          CtpSystemAccessProtocol
1372    MAX-ACCESS      read-only
1373    STATUS          current
1374    DESCRIPTION
1375        "This object specifies the access protocol when a user
1376        authentication failure occurred."
1377    ::= { ctpSysUserAuthFailHistoryEntry 6 }
1378
1379ctpSysUserAuthFailTimeStamp OBJECT-TYPE
1380    SYNTAX          TimeStamp
1381    MAX-ACCESS      read-only
1382    STATUS          current
1383    DESCRIPTION
1384        "This object specifies the value of the sysUpTime object at the
1385        time the notification was generated."
1386    ::= { ctpSysUserAuthFailHistoryEntry 7 }
1387
1388
1389
1390-- Telepresence System Notifications
1391
1392ctpPeripheralErrorNotification NOTIFICATION-TYPE
1393    OBJECTS         {
1394                        ctpPeripheralErrorIndex,
1395                        ctpPeripheralErrorStatus
1396                    }
1397    STATUS          deprecated
1398    DESCRIPTION
1399        "This notification is sent when a peripheral error is detected.
1400        This notification is deprecated in favor of
1401        ctpPeriStatusChangeNotification.
1402        ctpPeripheralErrorNotification object is superseded by
1403        ctpPeriStatusChangeNotification."
1404   ::= { ciscoTelepresenceMIBNotifs 1 }
1405
1406ctpSysUserAuthFailNotification NOTIFICATION-TYPE
1407    OBJECTS         {
1408                        ctpSysUserAuthFailSourceAddrType,
1409                        ctpSysUserAuthFailSourceAddr,
1410                        ctpSysUserAuthFailSourcePort,
1411                        ctpSysUserAuthFailUserName,
1412                        ctpSysUserAuthFailAccessProtocol
1413                    }
1414    STATUS          current
1415    DESCRIPTION
1416        "This notification is sent when a user authentication failure
1417        via a Telepresence supported access protocol is
1418        detected."
1419   ::= { ciscoTelepresenceMIBNotifs 2 }
1420
1421ctpPeriStatusChangeNotification NOTIFICATION-TYPE
1422    OBJECTS         {
1423                        ctpPeripheralErrorIndex,
1424                        ctpPeripheralErrorDeviceCategory,
1425                        ctpPeripheralErrorDeviceNumber,
1426                        ctpPeripheralErrorStatus
1427                    }
1428    STATUS          current
1429    DESCRIPTION
1430        "This notification is sent when a peripheral status is changed."
1431   ::= { ciscoTelepresenceMIBNotifs 3 }
1432-- Conformance
1433
1434ciscoTelepresenceCompliances  OBJECT IDENTIFIER
1435    ::= { ciscoTelepresenceMIBConform 1 }
1436
1437ciscoTelepresenceMIBGroups  OBJECT IDENTIFIER
1438    ::= { ciscoTelepresenceMIBConform 2 }
1439
1440
1441ciscoTelepresenceCompliance MODULE-COMPLIANCE
1442    STATUS          deprecated
1443    DESCRIPTION
1444        "The compliance statement for entities which implement the
1445        Cisco Telepresence MIB."
1446    MODULE          -- this module
1447    MANDATORY-GROUPS {
1448                        ciscoTpConfigurationGroup,
1449                        ciscoTpPeripheralStatusGroup,
1450                        ciscoTpEventHistoryGroup,
1451                        ciscoTpNotificationGroup
1452                    }
1453
1454    OBJECT          ctpPeripheralErrorNotifyEnable
1455    MIN-ACCESS      read-only
1456    DESCRIPTION
1457        "Write access is not required."
1458
1459    OBJECT          ctpSysUserAuthFailNotifyEnable
1460    MIN-ACCESS      read-only
1461    DESCRIPTION
1462        "Write access is not required."
1463
1464    OBJECT          ctpSystemReset
1465    MIN-ACCESS      read-only
1466    DESCRIPTION
1467        "Write access is not required."
1468
1469    OBJECT          ctpPeripheralErrorHistTableSize
1470    MIN-ACCESS      read-only
1471    DESCRIPTION
1472        "Write access is not required."
1473
1474    OBJECT          ctpSysUserAuthFailHistTableSize
1475    MIN-ACCESS      read-only
1476    DESCRIPTION
1477        "Write access is not required."
1478    ::= { ciscoTelepresenceCompliances 1 }
1479
1480ciscoTelepresenceComplianceR01 MODULE-COMPLIANCE
1481    STATUS          deprecated
1482    DESCRIPTION
1483        "The compliance statement for entities which implement the
1484        Cisco Telepresence MIB."
1485    MODULE          -- this module
1486    MANDATORY-GROUPS {
1487                        ciscoTpConfigurationGroup,
1488                        ciscoTpPeripheralStatusGroup,
1489                        ciscoTpEventHistoryGroup,
1490                        ciscoTpNotificationGroup
1491                    }
1492
1493    GROUP           ciscoTpRS232PeripheralStatusGroup
1494    DESCRIPTION
1495        "This group is mandatory for a Telepresence system which
1496        has RS323 interface."
1497
1498    GROUP           ciscoTpPeripheralAttributeGroup
1499    DESCRIPTION
1500        "This group is optional."
1501
1502    OBJECT          ctpPeripheralErrorNotifyEnable
1503    MIN-ACCESS      read-only
1504    DESCRIPTION
1505        "Write access is not required."
1506
1507    OBJECT          ctpSysUserAuthFailNotifyEnable
1508    MIN-ACCESS      read-only
1509    DESCRIPTION
1510        "Write access is not required."
1511
1512    OBJECT          ctpSystemReset
1513    MIN-ACCESS      read-only
1514    DESCRIPTION
1515        "Write access is not required."
1516
1517    OBJECT          ctpPeripheralErrorHistTableSize
1518    MIN-ACCESS      read-only
1519    DESCRIPTION
1520        "Write access is not required."
1521
1522    OBJECT          ctpSysUserAuthFailHistTableSize
1523    MIN-ACCESS      read-only
1524    DESCRIPTION
1525        "Write access is not required."
1526    ::= { ciscoTelepresenceCompliances 2 }
1527
1528ciscoTelepresenceComplianceR02 MODULE-COMPLIANCE
1529    STATUS          deprecated
1530    DESCRIPTION
1531        "The compliance statement for entities which implement the
1532        Cisco Telepresence MIB."
1533    MODULE          -- this module
1534    MANDATORY-GROUPS {
1535                        ciscoTpConfigurationGroupR01,
1536                        ciscoTpPeripheralStatusGroupR01,
1537                        ciscoTpEventHistoryGroupR01,
1538                        ciscoTpNotificationGroupR01
1539                    }
1540
1541    GROUP           ciscoTpRS232PeripheralStatusGroup
1542    DESCRIPTION
1543        "This group is mandatory for a Telepresence system which
1544        has RS323 interface."
1545
1546    GROUP           ciscoTpPeripheralAttributeGroup
1547    DESCRIPTION
1548        "This group is optional."
1549
1550    OBJECT          ctpSysUserAuthFailNotifyEnable
1551    MIN-ACCESS      read-only
1552    DESCRIPTION
1553        "Write access is not required."
1554
1555    OBJECT          ctpSystemReset
1556    MIN-ACCESS      read-only
1557    DESCRIPTION
1558        "Write access is not required."
1559
1560    OBJECT          ctpPeriStatusChangeNotifyEnable
1561    MIN-ACCESS      read-only
1562    DESCRIPTION
1563        "Write access is not required."
1564
1565    OBJECT          ctpSysUserAuthFailHistTableSize
1566    MIN-ACCESS      read-only
1567    DESCRIPTION
1568        "Write access is not required."
1569
1570    OBJECT          ctpPeripheralErrorHistTableSize
1571    MIN-ACCESS      read-only
1572    DESCRIPTION
1573        "Write access is not required."
1574    ::= { ciscoTelepresenceCompliances 3 }
1575
1576ciscoTelepresenceComplianceR03 MODULE-COMPLIANCE
1577    STATUS          deprecated
1578    DESCRIPTION
1579        "The compliance statement for entities which implement the
1580        Cisco Telepresence MIB."
1581    MODULE          -- this module
1582    MANDATORY-GROUPS {
1583                        ciscoTpConfigurationGroupR01,
1584                        ciscoTpPeripheralStatusGroupR02,
1585                        ciscoTpEventHistoryGroupR01,
1586                        ciscoTpNotificationGroupR01
1587                    }
1588
1589    GROUP           ciscoTpRS232PeripheralStatusGroup
1590    DESCRIPTION
1591        "This group is mandatory for a Telepresence system which
1592        has RS323 interface."
1593
1594    GROUP           ciscoTpPeripheralAttributeGroup
1595    DESCRIPTION
1596        "This group is optional."
1597
1598    OBJECT          ctpSysUserAuthFailNotifyEnable
1599    MIN-ACCESS      read-only
1600    DESCRIPTION
1601        "Write access is not required."
1602
1603    OBJECT          ctpSystemReset
1604    MIN-ACCESS      read-only
1605    DESCRIPTION
1606        "Write access is not required."
1607
1608    OBJECT          ctpSysUserAuthFailHistTableSize
1609    MIN-ACCESS      read-only
1610    DESCRIPTION
1611        "Write access is not required."
1612
1613    OBJECT          ctpPeripheralErrorHistTableSize
1614    MIN-ACCESS      read-only
1615    DESCRIPTION
1616        "Write access is not required."
1617    ::= { ciscoTelepresenceCompliances 4 }
1618
1619ciscoTelepresenceComplianceR04 MODULE-COMPLIANCE
1620    STATUS          deprecated
1621    DESCRIPTION
1622        "The compliance statement for entities which implement the
1623        Cisco Telepresence MIB."
1624    MODULE          -- this module
1625    MANDATORY-GROUPS {
1626                        ciscoTpConfigurationGroupR01,
1627                        ciscoTpConfigurationGroupR02,
1628                        ciscoTpPeripheralStatusGroupR02,
1629                        ciscoTpEventHistoryGroupR01,
1630                        ciscoTpNotificationGroupR01
1631                    }
1632
1633    GROUP           ciscoTpRS232PeripheralStatusGroup
1634    DESCRIPTION
1635        "This group is mandatory for a Telepresence system which
1636        has RS323 interface."
1637
1638    GROUP           ciscoTpPeripheralAttributeGroup
1639    DESCRIPTION
1640        "This group is optional."
1641
1642    OBJECT          ctpSysUserAuthFailNotifyEnable
1643    MIN-ACCESS      read-only
1644    DESCRIPTION
1645        "Write access is not required."
1646
1647    OBJECT          ctpSystemReset
1648    MIN-ACCESS      read-only
1649    DESCRIPTION
1650        "Write access is not required."
1651
1652    OBJECT          ctpSysUserAuthFailHistTableSize
1653    MIN-ACCESS      read-only
1654    DESCRIPTION
1655        "Write access is not required."
1656
1657    OBJECT          ctpPeripheralErrorHistTableSize
1658    MIN-ACCESS      read-only
1659    DESCRIPTION
1660        "Write access is not required."
1661    ::= { ciscoTelepresenceCompliances 5 }
1662
1663ciscoTelepresenceComplianceR05 MODULE-COMPLIANCE
1664    STATUS          current
1665    DESCRIPTION
1666        "The compliance statement for entities which implement the
1667        Cisco Telepresence MIB."
1668    MODULE          -- this module
1669    MANDATORY-GROUPS {
1670                        ciscoTpConfigurationGroupR01,
1671                        ciscoTpConfigurationGroupR02,
1672                        ciscoTpPeripheralStatusGroupR02,
1673                        ciscoTpEventHistoryGroupR01,
1674                        ciscoTpNotificationGroupR01
1675                    }
1676
1677    GROUP           ciscoTpDPPeripheralStatusGroup
1678    DESCRIPTION
1679        "This group is optional."
1680
1681    GROUP           ciscoTpRS232PeripheralStatusGroup
1682    DESCRIPTION
1683        "This group is mandatory for a Telepresence system which
1684        has RS323 interface."
1685
1686    GROUP           ciscoTpPeripheralAttributeGroup
1687    DESCRIPTION
1688        "This group is optional."
1689
1690    OBJECT          ctpSysUserAuthFailNotifyEnable
1691    MIN-ACCESS      read-only
1692    DESCRIPTION
1693        "Write access is not required."
1694
1695    OBJECT          ctpSystemReset
1696    MIN-ACCESS      read-only
1697    DESCRIPTION
1698        "Write access is not required."
1699
1700    OBJECT          ctpSysUserAuthFailHistTableSize
1701    MIN-ACCESS      read-only
1702    DESCRIPTION
1703        "Write access is not required."
1704
1705    OBJECT          ctpPeripheralErrorHistTableSize
1706    MIN-ACCESS      read-only
1707    DESCRIPTION
1708        "Write access is not required."
1709    ::= { ciscoTelepresenceCompliances 6 }
1710
1711-- Units of Conformance
1712
1713ciscoTpConfigurationGroup OBJECT-GROUP
1714    OBJECTS         {
1715                        ctpPeripheralErrorNotifyEnable,
1716                        ctpSysUserAuthFailNotifyEnable,
1717                        ctpSystemReset
1718                    }
1719    STATUS          deprecated
1720    DESCRIPTION
1721        "A collection of objects providing the notification
1722        configuration and system reset.
1723        ciscoTpConfigurationGroup object is superseded by
1724        ciscoTpConfigurationGroupR01."
1725    ::= { ciscoTelepresenceMIBGroups 1 }
1726
1727ciscoTpPeripheralStatusGroup OBJECT-GROUP
1728    OBJECTS         {
1729                        ctpPeripheralDescription,
1730                        ctpPeripheralStatus,
1731                        ctpEtherPeripheralIfIndex,
1732                        ctpEtherPeripheralAddrType,
1733                        ctpEtherPeripheralAddr,
1734                        ctpEtherPeripheralStatus,
1735                        ctpHDMIPeripheralCableStatus,
1736                        ctpHDMIPeripheralPowerStatus,
1737                        ctpDVIPeripheralCableStatus
1738                    }
1739    STATUS          deprecated
1740    DESCRIPTION
1741        "A collection of objects providing the Telepresence peripheral
1742        information.
1743        ciscoTpPeripheralStatusGroup object is superseded by
1744        ciscoTpPeripheralStatusGroupR01."
1745    ::= { ciscoTelepresenceMIBGroups 2 }
1746
1747ciscoTpEventHistoryGroup OBJECT-GROUP
1748    OBJECTS         {
1749                        ctpPeripheralErrorHistTableSize,
1750                        ctpPeripheralErrorHistLastIndex,
1751                        ctpPeripheralErrorIndex,
1752                        ctpPeripheralErrorStatus,
1753                        ctpPeripheralErrorTimeStamp,
1754                        ctpSysUserAuthFailHistTableSize,
1755                        ctpSysUserAuthFailHistLastIndex,
1756                        ctpSysUserAuthFailSourceAddrType,
1757                        ctpSysUserAuthFailSourceAddr,
1758                        ctpSysUserAuthFailSourcePort,
1759                        ctpSysUserAuthFailUserName,
1760                        ctpSysUserAuthFailAccessProtocol,
1761                        ctpSysUserAuthFailTimeStamp
1762                    }
1763    STATUS          deprecated
1764    DESCRIPTION
1765        "A collection of managed objects providing notification event
1766        history information.
1767        ciscoTpEventHistoryGroup object is superseded by
1768        ciscoTpEventHistoryGroupR01."
1769    ::= { ciscoTelepresenceMIBGroups 3 }
1770
1771ciscoTpNotificationGroup NOTIFICATION-GROUP
1772   NOTIFICATIONS    {
1773                        ctpPeripheralErrorNotification,
1774                        ctpSysUserAuthFailNotification
1775                    }
1776    STATUS          deprecated
1777    DESCRIPTION
1778        "A collection of Telepresence system notifications.
1779        ciscoTpNotificationGroup object is superseded by
1780        ciscoTpNotificationGroupR01."
1781    ::= { ciscoTelepresenceMIBGroups 4 }
1782
1783ciscoTpRS232PeripheralStatusGroup OBJECT-GROUP
1784    OBJECTS         {
1785                        ctpRS232PortIndex,
1786                        ctpRS232PeripheralConnStatus
1787                    }
1788    STATUS          current
1789    DESCRIPTION
1790        "A collection of objects providing the information
1791        about Telepresence peripheral which is connected via RS232."
1792    ::= { ciscoTelepresenceMIBGroups 5 }
1793
1794ciscoTpPeripheralAttributeGroup OBJECT-GROUP
1795    OBJECTS         {
1796                        ctpPeripheralAttributeDescr,
1797                        ctpPeripheralAttributeValue
1798                    }
1799    STATUS          current
1800    DESCRIPTION
1801        "A collection of managed objects providing peripheral
1802        attribute information."
1803    ::= { ciscoTelepresenceMIBGroups 6 }
1804
1805ciscoTpPeripheralStatusGroupR01 OBJECT-GROUP
1806    OBJECTS         {
1807                        ctpPeripheralDescription,
1808                        ctpPeripheralStatus,
1809                        ctpPeripheralDeviceCategory,
1810                        ctpPeripheralDeviceNumber,
1811                        ctpEtherPeripheralIfIndex,
1812                        ctpEtherPeripheralAddrType,
1813                        ctpEtherPeripheralAddr,
1814                        ctpEtherPeripheralStatus,
1815                        ctpHDMIPeripheralCableStatus,
1816                        ctpHDMIPeripheralPowerStatus,
1817                        ctpDVIPeripheralCableStatus
1818                    }
1819    STATUS          deprecated
1820    DESCRIPTION
1821        "A collection of objects providing the Telepresence peripheral
1822        information.
1823        ciscoTpPeripheralStatusGroupR01 object is superseded by
1824        ciscoTpPeripheralStatusGroupR02."
1825    ::= { ciscoTelepresenceMIBGroups 7 }
1826
1827ciscoTpEventHistoryGroupR01 OBJECT-GROUP
1828    OBJECTS         {
1829                        ctpPeripheralErrorHistTableSize,
1830                        ctpPeripheralErrorHistLastIndex,
1831                        ctpPeripheralErrorIndex,
1832                        ctpPeripheralErrorStatus,
1833                        ctpPeripheralErrorTimeStamp,
1834                        ctpPeripheralErrorDeviceCategory,
1835                        ctpPeripheralErrorDeviceNumber,
1836                        ctpSysUserAuthFailHistTableSize,
1837                        ctpSysUserAuthFailHistLastIndex,
1838                        ctpSysUserAuthFailSourceAddrType,
1839                        ctpSysUserAuthFailSourceAddr,
1840                        ctpSysUserAuthFailSourcePort,
1841                        ctpSysUserAuthFailUserName,
1842                        ctpSysUserAuthFailAccessProtocol,
1843                        ctpSysUserAuthFailTimeStamp
1844                    }
1845    STATUS          current
1846    DESCRIPTION
1847        "A collection of managed objects providing notification event
1848        history information."
1849    ::= { ciscoTelepresenceMIBGroups 8 }
1850
1851ciscoTpNotificationGroupR01 NOTIFICATION-GROUP
1852   NOTIFICATIONS    {
1853                        ctpPeriStatusChangeNotification,
1854                        ctpSysUserAuthFailNotification
1855                    }
1856    STATUS          current
1857    DESCRIPTION
1858        "A collection of Telepresence system notifications."
1859    ::= { ciscoTelepresenceMIBGroups 9 }
1860
1861ciscoTpConfigurationGroupR01 OBJECT-GROUP
1862    OBJECTS         {
1863                        ctpSysUserAuthFailNotifyEnable,
1864                        ctpSystemReset,
1865                        ctpPeriStatusChangeNotifyEnable
1866                    }
1867    STATUS          current
1868    DESCRIPTION
1869        "A collection of objects providing the notification
1870        configuration and system reset."
1871    ::= { ciscoTelepresenceMIBGroups 10 }
1872
1873ciscoTpPeripheralStatusGroupR02 OBJECT-GROUP
1874    OBJECTS         {
1875                        ctpPeripheralDescription,
1876                        ctpPeripheralStatus,
1877                        ctpPeripheralDeviceCategory,
1878                        ctpPeripheralDeviceNumber,
1879                        ctpEtherPeripheralIfIndex,
1880                        ctpEtherPeripheralAddrType,
1881                        ctpEtherPeripheralAddr,
1882                        ctpEtherPeripheralStatus,
1883                        ctpHDMIPeripheralCableStatus,
1884                        ctpHDMIPeripheralPowerStatus,
1885                        ctpDVIPeripheralCableStatus,
1886                        ctpUSBPeripheralCableStatus,
1887                        ctpUSBPeripheralPowerStatus,
1888                        ctpUSBPeripheralPortType,
1889                        ctpUSBPeripheralPortRate,
1890                        ctp802dot11PeripheralIfIndex,
1891                        ctp802dot11PeripheralAddrType,
1892                        ctp802dot11PeripheralAddr,
1893                        ctp802dot11PeripheralLinkStrength,
1894                        ctp802dot11PeripheralLinkStatus
1895                    }
1896    STATUS          current
1897    DESCRIPTION
1898        "A collection of objects providing the Telepresence peripheral
1899        information."
1900    ::= { ciscoTelepresenceMIBGroups 11 }
1901
1902ciscoTpConfigurationGroupR02 OBJECT-GROUP
1903    OBJECTS         {
1904                        ctpVlanId,
1905                        ctpDefaultGateway,
1906                        ctpDefaultGatewayAddrType
1907                    }
1908    STATUS          current
1909    DESCRIPTION
1910        "A collection of objects providing network configurations."
1911    ::= { ciscoTelepresenceMIBGroups 12 }
1912
1913ciscoTpDPPeripheralStatusGroup OBJECT-GROUP
1914    OBJECTS         {
1915                        ctpDPPeripheralCableStatus,
1916                        ctpDPPeripheralPowerStatus
1917                    }
1918    STATUS          current
1919    DESCRIPTION
1920        "A collection of objects providing the information
1921        about Telepresence peripheral which is connected via
1922        Display Port."
1923    ::= { ciscoTelepresenceMIBGroups 13 }
1924
1925END
1926
1927
1928
1929
1930
1931
1932
1933
1934