-- extracted from draft-kajos-hmultimediamib-00.txt -- at Mon Nov 15 17:11:06 1999 H245-MIB DEFINITIONS ::= BEGIN IMPORTS Counter32, Integer32, enterprises, OBJECT-TYPE, MODULE-IDENTITY FROM SNMPv2-SMI DisplayString, TAddress,TruthValue FROM SNMPv2-TC H323TAddressTag FROM H323-MULITMEDIA-TC; -- Define the top of this MIB. media OBJECT IDENTIFIER ::= { enterprises videoserver(3011) 1 } -- this is the MIB module for the H.245 objects h245 MODULE-IDENTITY LAST-UPDATED "9806012253Z" -- June 1, 1998 ORGANIZATION "VideoServer" CONTACT-INFO " Irina Suconick Postal: Video Server 63 Third st. Burlington, MA 01803 Tel: (781)505-2155 E-Mail: isuconick@videoserver.com " DESCRIPTION " " ::= { media 1 } --h245 OBJECT IDENTIFIER ::= { media 1 } --groups in h245 controlChannel OBJECT IDENTIFIER ::= { h245 1 } capExchange OBJECT IDENTIFIER ::= { h245 2 } logChannels OBJECT IDENTIFIER ::= { h245 3 } conference OBJECT IDENTIFIER ::= { h245 4 } misc OBJECT IDENTIFIER ::= { h245 5 } controlChannelNumberOfListenPorts OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of H245 Listen ports. These ports are used for the remote entity to send a connect on" ::= { controlChannel 1 } controlChannelMaxConnections OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of maximum active h245 channels allowed." ::= { controlChannel 2 } controlChannelNumberOfListenFails OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of Listen fails. The fail could be due to exhaustion of system resources" ::= { controlChannel 3 } controlChannelNumberOfActiveConnections OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of the active H245 connections." ::= { controlChannel 4 } controlChannelMasterSlaveMaxRetries OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of maximum master slave retries. Reties are needed when the result of master slave process is indeterminate" ::= { controlChannel 5 } controlChannelConnectionAttemptsFail OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of failures when trying to connect to a listen port." ::= { controlChannel 6 } controlChanneMasterSlavelDeterminations OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of messages sent from a MSDSE to a peer MSDSE for master/slave determination purpose." ::= { controlChannel 7 } controlChannelMasterSlaveAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of acks that are used to confirm whether the terminal is the master terminal or the slave terminal, as indicated by decision. When decision is of type master, the terminal receiving this message is the master terminal and when decision is of type slave, it is the slave terminal. " ::= { controlChannel 8 } controlChannelMasterSlavelRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects of the MasterSlaveDetermination message. When the cause is of type identicalNumbers, the rejection was due to the random numbers being equivalent and the terminal types being the same." ::= { controlChannel 9 } controlChannelMasterSlaveT106Rejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects of the MasterSlaveDetermination message. When the cause is of type identicalNumbers, the rejection was due to the random numbers being equivalent and the terminal types being the same." ::= { controlChannel 10 } controlChannelMasterSlaveMSDRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects of the MasterSlaveDetermination message. Rejects can happen due to different reasons like identical random number after maximum tries, timeouts..." ::= { controlChannel 11 } controlChannelNumberOfMasterSlaveInconsistentFieldRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects of the MasterSlaveDetermination message. The cause is due to conflict in the status that both entities arrive to." ::= { controlChannel 12 } controlChannelMasterSlaveMaxCounterRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects of the MasterSlaveDetermination message. There are many reasons why the rejection could happen." ::= { controlChannel 13 } controlChannelMasterSlaveReleases OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of rejects due to a time out. " ::= { controlChannel 14 } controlChannelMasterSlaveTable OBJECT-TYPE SYNTAX SEQUENCE OF ControlChannelMasterSlaveTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains information about entities that are connected to this entity. It is a list of connection entries. The number of entries equals to the number of active connections." ::= { controlChannel 15 } controlChannelMasterSlaveTableEntry OBJECT-TYPE SYNTAX ControlChannelMasterSlaveTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "It contains objects that describe the status of the master slave determination procedure." INDEX { controlChannelSrcAddressTag, controlChannelSrcTransportAddress, controlChannelDestAddressTag, controlChannelDestTransportAddress} ::= { controlChannelMasterSlaveTable 1 } ControlChannelMasterSlaveTableEntry ::= SEQUENCE { controlChannelSrcAddressTag H323TAddressTag, controlChannelSrcTransportAddress TAddress, controlChannelDestAddressTag H323TAddressTag, controlChannelDestTransportAddress TAddress, controlChannelIndex Integer32, controlChannelState INTEGER, controlChannelTerminalType INTEGER, controlChannelNumberOfMSDRetries Integer32 } controlChannelSrcAddressTag OBJECT-TYPE SYNTAX H323TAddressTag MAX-ACCESS read-only STATUS current DESCRIPTION " It describes the type of address (IP v4, IPv6...) of the source" ::= { controlChannelMasterSlaveTableEntry 1 } controlChannelSrcTransportAddress OBJECT-TYPE SYNTAX TAddress MAX-ACCESS read-only STATUS current DESCRIPTION "Source transport address. " ::= { controlChannelMasterSlaveTableEntry 2 } controlChannelDestAddressTag OBJECT-TYPE SYNTAX H323TAddressTag MAX-ACCESS read-only STATUS current DESCRIPTION " It describes the type of address (IP v4,IPv6...) of the source" ::= { controlChannelMasterSlaveTableEntry 3 } controlChannelDestTransportAddress OBJECT-TYPE SYNTAX TAddress MAX-ACCESS read-only STATUS current DESCRIPTION "Remote transport address. " ::= { controlChannelMasterSlaveTableEntry 4 } controlChannelIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "It is an arbitrary number that is being incremented by 1 for every entry in this table" ::= {controlChannelMasterSlaveTableEntry 5 } controlChannelState OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "It describes the state of the master slave determination procdure. It can be OUTGOING WAITING RESPONSE, INCOMING WAITING RESPONSE, IDLE" ::= {controlChannelMasterSlaveTableEntry 6 } controlChannelTerminalType OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The terminal type could be terminal, gateway, mc...The terminal type is used in the master slave determination procedure. " ::= {controlChannelMasterSlaveTableEntry 7 } controlChannelNumberOfMSDRetries OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of tries of master slave determination before a meaningfull result is concluded. " ::= {controlChannelMasterSlaveTableEntry 8 } capExchangeSets OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySets that were sent and received by the local CESE (Capability Exchange Signalling Entity). A TerminalCapabilitySet is used for the intention to signal a terminal's capabilities to ensure that the only multimedia signals to be transmitted are those that can be received and treated appropriately be the receive terminal." ::= { capExchange 1 } capExchangeAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetAcks that were sent and received by the local CESE (Capability Exchange Signalling Entity). A TerminalCapabilitySetAck is used as a confirmation for a TerminalCapabilitySet that was successfully received and processed." ::= { capExchange 2 } capExchangeRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetRejects that were sent and received by the local CESE (Capability Exchange Signalling Entity). A TerminalCapabilitySetReject is used to indicate a failure due to a specific error for a TerminalCapabilitySet that was received, but, yet to be fully processed." ::= { capExchange 3 } capExchangeRejectUnspecified OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetRejects that were sent and received by the local CESE (Capability Exchange Signalling Entity) with the cause value set to unspecified. This means that there was no cause for the rejection of a TerminalCapabilitySet specified." ::= { capExchange 4 } capExchangeRejectUndefinedTableEntryUsed OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetRejects that were sent and received by the local CESE (Capability Exchange Signalling Entity) with the cause value set to undefinedTableEntryUsed. This means that the cause of the rejection of a TerminalCapabilitySet was due to a capability descriptor made reference to a capability table entry number in the capability table of the TerminalCapabilitySet was not defined." ::= { capExchange 5 } capExchangeRejectDescriptorCapacityExceeded OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetRejects that were sent and received by the local CESE (Capability Exchange Signalling Entity) with the cause value set to descriptorCapacityExceeded. This means that the cause of the rejection of a TerminalCapabilitySet was due to a terminal incapable of storing all of the information from the capabilityDescriptors of the TerminalCapabilitySet." ::= { capExchange 6 } capExchangeRejectTableEntryCapacityExeeded OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetRejects that were sent and received by the local CESE (Capability Exchange Signalling Entity) with the cause value set to tableEntryCapacityExceeded. This means that the cause of the rejection of a TerminalCapabilitySet was due to a terminal incapable of storing some (indicated in the highestEntryNumberProcessed) or all (indicated in the noneProcessed) of the information from the capability table of the TerminalCapabilitySet." ::= { capExchange 7 } capExchangeReleases OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of TerminalCapabilitySetReleases that were sent and received by the local CESE (Capability Exchange Signalling Entity). This means that a response for a TerminalCapabilitySet was not received/issued in time. A timer expiry had occurred for the local CESE." ::= { capExchange 8 } capExchangeCapabilityTable OBJECT-TYPE SYNTAX SEQUENCE OF CapExchangeCapabilityTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains all the local incoming and outgoing CESEs (Capability Exchange Signalling Entity) that currently exists in this terminal." ::= { capExchange 9 } capExchangeCapabilityTableEntry OBJECT-TYPE SYNTAX CapExchangeCapabilityTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains either the local incoming or outgoing CESE (Capability Exchange Signalling Entity) that is derived from a particular H.245 Control Channel, Logical Channel 0, or H.245 session." INDEX { controlChannelIndex, capExchangeDirection } ::= { capExchangeCapabilityTable 1 } CapExchangeCapabilityTableEntry ::= SEQUENCE { capExchangeDirection INTEGER, capExchangeCapabilitySequenceNumber Integer32, capExchangeState INTEGER, capExchangeProtocolId OCTET STRING, capExchangeErrorCode INTEGER, capExchangeRejectCause INTEGER, capExchangeMultiplexCapability DisplayString, capExchangeCapability DisplayString, capExchangeCapabilityDescriptors DisplayString } capExchangeDirection OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "Represents either the local incoming CESE or the local outgoing CESE (Capability Exchange Signalling Entity)." ::= { capExchangeCapabilityTableEntry 1 } capExchangeCapabilitySequenceNumber OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the latest TerminalCapabilitySet sent or received by this CESE depending if this CESE is the outgoing or the incoming CESE (Capability Exchange Signalling Entity)." ::= { capExchangeCapabilityTableEntry 2 } capExchangeState OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The current state of this CESE (Capability Exchange Signalling Entity)." ::= { capExchangeCapabilityTableEntry 3 } capExchangeProtocolId OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The version of the H.245 protocol used. This specifies how H.245 messages are formatted and used." ::= { capExchangeCapabilityTableEntry 4 } capExchangeErrorCode OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The latest error condition that this CESE (Capability Exchange Signalling Entity) had encountered." ::= { capExchangeCapabilityTableEntry 5 } capExchangeRejectCause OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The latest reject cause value extracted from the latest TerminalCapabilitySetReject." ::= { capExchangeCapabilityTableEntry 6 } capExchangeMultiplexCapability OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "The latest multiplexCapability extracted from a TerminalCapabilitySet." ::= { capExchangeCapabilityTableEntry 7 } capExchangeCapability OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "The latest capabilityTable extracted from the latest TerminalCapabilitySet." ::= { capExchangeCapabilityTableEntry 8 } capExchangeCapabilityDescriptors OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "The latest capabilityDescriptors extracted from the latest TerminalCapabilitySet." ::= { capExchangeCapabilityTableEntry 9 } logChannelsChannelTable OBJECT-TYPE SYNTAX SEQUENCE OF LogChannelsChannelTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains all the local incoming and outgoing LCSEs (Uni or Bi-directional Logical Channel Signalling Entity) that currently exists in this terminal with their logical channels open or in the process of being opened or closed." ::= { logChannels 1} logChannelsChannelTableEntry OBJECT-TYPE SYNTAX LogChannelsChannelTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains either the local incoming or outgoing LCSE (Uni or Bi-directional Logical Channel Signalling Entity) that is derived from a particular H.245 Control Channel, Logical Channel 0, or H.245 session with its logical channels that are currently open or in the process of being opened or closed." INDEX { controlChannelIndex, logChannelsChannelNumber, logChannelsChannelDirection } ::= { logChannelsChannelTable 1 } LogChannelsChannelTableEntry ::= SEQUENCE { logChannelsChannelNumber Integer32, logChannelsChannelDirection INTEGER, logChannelsIndex Integer32, logChannelsChannelState INTEGER, logChannelsMediaTableType INTEGER } logChannelsChannelNumber OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The forwardLogicalChannelNumber used to distinguish this media channel by this LCSE (Uni or Bi-directional Logical Channel Signalling Entity)." ::= { logChannelsChannelTableEntry 1 } logChannelsChannelDirection OBJECT-TYPE SYNTAX INTEGER { receive(1), transmit (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "Represents the direction of this media channel used by this LCSE (Uni or Bi-directional Logical Channel Signalling Entity) ." ::= { logChannelsChannelTableEntry 2 } logChannelsIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "A unique value representing this media channel." ::= { logChannelsChannelTableEntry 3 } logChannelsChannelState OBJECT-TYPE SYNTAX INTEGER { awaitingEstablishment (1), established (2), awaitingRelease (3), awaitingConfirmation (4) } MAX-ACCESS read-only STATUS current DESCRIPTION "The current state of the media channel which also represents the state of this LCSE (Uni or Bi-rectional Logical Channel Signalling Entity)." ::= { logChannelsChannelTableEntry 4 } logChannelsMediaTableType OBJECT-TYPE SYNTAX INTEGER { nonStandard (1), videoNonStandard (2), h261VideoCapability (3), h262VideoCapability (4), h263VideoCapability (5), is11172VideoCapability (6), audioNonStandard (7), g711Alaw64k (8), g711Alaw56k (9), g711Ulaw64k (10), g711Ulaw56k (11), g722-64k (12), g722-56k (13), g722-48k (14), g7231 (15), g728 (16), g729 (17), g729AnnexA (18), is11172AudioCapability (19), is13818AudioCapability (20), g729wAnnexB (21), g729AnnexAwAnnexB (22), g7231AnnexCCapability (23), gsmFullRate (24), gsmHalfRate (25), gsmEnhancedFullRate (26), dataNonStandard (27), t120 (28), dsm-cc (29), userData (30), t84 (31), t434 (32), h224 (33), nlpid (34), dsvdControl (35), h222DataPartitioning (36), t30fax (37), t140 (38), h233EncryptionCapability (39), conferenceCapability (40), h235SecurityCapability (41), maxPendingReplacementFor (42), userInputCapability (43), h225 (44), h222 (45), h223 (46), v76 (47) } MAX-ACCESS read-only STATUS current DESCRIPTION "The actual media or data type used for this logical channel." ::= { logChannelsChannelTableEntry 5 } logChannelsCapabilityG711Table OBJECT-TYPE SYNTAX SEQUENCE OF LogChannelsCapabilityG711TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains all the logical channels that are currently opened on this terminal that carries the media or data type G.711. G.711 is a certain type of an audio algorithm." ::= { logChannels 2 } logChannelsCapabilityG711TableEntry OBJECT-TYPE SYNTAX LogChannelsCapabilityG711TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains the actual specifics and options used by a particular open logical channel that carries the audio G.711." INDEX {logChannelsIndex } ::= { logChannelsCapabilityG711Table 1 } LogChannelsCapabilityG711TableEntry ::= SEQUENCE { logChannelsCapabilityG711Type INTEGER, logChannelsCapabilityG711Value Integer32 } logChannelsCapabilityG711Type OBJECT-TYPE SYNTAX INTEGER { g711Alaw64k (1), g711Alaw56k (2), g711Ulaw64k (3), g711Ulaw56k (4) } MAX-ACCESS read-only STATUS current DESCRIPTION "The specific G.711 mode and transfer rate (in bits/sec) used for this open logical channel." ::= { logChannelsCapabilityG711TableEntry 1 } logChannelsCapabilityG711Value OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "For a H.222 multiplex, the value indicates the size of the STD buffer in units of 256 octets. For a H.223 multiplex, the value indicates the maximum number of audio frames per AL-SDU. For a H.225.0 multiplex, the value indicates the maximum number of audio frames per packet." ::= { logChannelsCapabilityG711TableEntry 2 } logChannelsCapabilityH261Table OBJECT-TYPE SYNTAX SEQUENCE OF LogChannelsCapabilityH261TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains all the logical channels that are currently opened on this terminal that carries the media or data type H.261. H.261 is a certain type of a video algorithm." ::= { logChannels 3 } logChannelsCapabilityH261TableEntry OBJECT-TYPE SYNTAX LogChannelsCapabilityH261TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains the actual specifics and options used by a particular open logical channel that carries the video H.261." INDEX { logChannelsIndex} ::= { logChannelsCapabilityH261Table 1 } LogChannelsCapabilityH261TableEntry ::= SEQUENCE { logChannelsCapabilityH261qcifMPI Integer32, logChannelsCapabilityH261cifMPI Integer32, logChannelsCapabilityH261TemporalSpatialTradeOffCapability TruthValue, logChannelsCapabilityH261MaxBitRate Integer32, logChannelsCapabilityH261StillImageTransmission TruthValue } logChannelsCapabilityH261qcifMPI OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "A particular video mode indicating the minimum picture interval in units of 1/29.7 for the encoding and decoding of QCIF pictures. If NULL, this mode is not used." ::= { logChannelsCapabilityH261TableEntry 1 } logChannelsCapabilityH261cifMPI OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "A particular video mode indicating the minimum picture interval in units of 1/29.7 for the encoding and decoding of CIF pictures. If NULL, this mode is not used." ::= { logChannelsCapabilityH261TableEntry 2 } logChannelsCapabilityH261TemporalSpatialTradeOffCapability OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If true, this indicates that the encoder is able to vary its trade-off between temporal and spatial resolution as commanded by the remote terminal." ::= { logChannelsCapabilityH261TableEntry 3 } logChannelsCapabilityH261MaxBitRate OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates the maximum bit rate or transfer rate used, in units of 100 bits/s, at which the video H.261 is being transmitted." ::= { logChannelsCapabilityH261TableEntry 4 } logChannelsCapabilityH261StillImageTransmission OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If true, this indicates the capability for still images to be transmitted for H.261 video." ::= { logChannelsCapabilityH261TableEntry 5 } logChannelsCapabilityT120Table OBJECT-TYPE SYNTAX SEQUENCE OF LogChannelsCapabilityT120TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains all the logical channels that are currently opened on this terminal that carries the media or data type T.120. T.120 is a certain type data application or data sharing protocol." ::= { logChannels 4 } logChannelsCapabilityT120TableEntry OBJECT-TYPE SYNTAX LogChannelsCapabilityT120TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains the actual specifics and options used by a particular open logical channel that carries the data T.120." INDEX {logChannelsIndex} ::= { logChannelsCapabilityT120Table 1 } LogChannelsCapabilityT120TableEntry ::= SEQUENCE { logChannelsCapabilityT120SeparateLANStack TruthValue, logChannelsCapabilityT120MaxBitRate Integer32 } logChannelsCapabilityT120SeparateLANStack OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "If true, this indicates that a separate transport stack will be used to transport the data and provides an address to use to establish the stack which is either a Q.2931, E.164, or local area network transport address." ::= { logChannelsCapabilityT120TableEntry 1 } logChannelsCapabilityT120MaxBitRate OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates the maximum bit rate or transfer rate used, in units of 100 bits/s, at which the data T.120 is being transmitted." ::= { logChannelsCapabilityT120TableEntry 2 } logChannelsH225Table OBJECT-TYPE SYNTAX SEQUENCE OF LogChannelsH225TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Contains the H2250LogicalChannelParameters that are used in all of the logical channels that are currently opened on this terminal." ::= { logChannels 5 } logChannelsH225TableEntry OBJECT-TYPE SYNTAX LogChannelsH225TableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Each entry contains the actual specifics and options used in the H2250LogicalChannelParameters within a particular open logical channel." INDEX {logChannelsIndex} ::= { logChannelsH225Table 1 } LogChannelsH225TableEntry ::= SEQUENCE { logChannelsSessionId Integer32, logChannelsAssociateSessionId Integer32, logChannelsMediaChannel TAddress, logChannelsMediaGuaranteedDelivery TruthValue, logChannelsMediaControlChannel TAddress, logChannelsMediaControlGuaranteedDelivery TruthValue, logChannelsSilenceSuppression TruthValue, logChannelsDestination OCTET STRING, logChannelsDynamicRTPPayloadType Integer32, logChannelsH261aVideoPacketization TruthValue, logChannelsRTPPayloadDescriptor INTEGER, logChannelsRTPPayloadType OCTET STRING, logChannelsTransportCapability DisplayString, logChannelsRedundancyEncoding DisplayString, logChannelsSrcTerminalLabel OCTET STRING } logChannelsSessionId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "A unique RTP or T.120 Session Identifier in a conference. It is used by the transmitter to refer to the session to which the logical channel applies." ::= { logChannelsH225TableEntry 1 } logChannelsAssociateSessionId OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "This is used to associate one session with another in a conference. A typical use will be to associate an audio session with a video session to indicate which sessions to process for lip synchronization." ::= { logChannelsH225TableEntry 2 } logChannelsMediaChannel OBJECT-TYPE SYNTAX TAddress MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates a transportAddress to be used for the logical channel." ::= { logChannelsH225TableEntry 3 } logChannelsMediaGuaranteedDelivery OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates whether or not the underlying media transport should be selected to provide or not to provide guaranteed delivery of data." ::= { logChannelsH225TableEntry 4 } logChannelsMediaControlChannel OBJECT-TYPE SYNTAX TAddress MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates the media control channel in which the sender of the open logical channel will be listening for media control messages for this session. This field is present only when a media control channel is required." ::= { logChannelsH225TableEntry 5 } logChannelsMediaControlGuaranteedDelivery OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates whether or not the underlying media control transport should be selected to provide or not to provide guaranteed delivery of data. This field is present only when a media control channel is required." ::= { logChannelsH225TableEntry 6 } logChannelsSilenceSuppression OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates whether the transmitter stops sending packets during times of silence for bandwidth reasons. This can only be enabled for an audio channel only." ::= { logChannelsH225TableEntry 7 } logChannelsDestination OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates the terminal label (composed of a mcu number and a terminal number) of the destination if one has been assigned." ::= { logChannelsH225TableEntry 8 } logChannelsDynamicRTPPayloadType OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates a dynamic payload value which is used in H.323 for the H.225.0 alternative H.261 video packetization scheme. This field is present only when a dynamic RTP payload is in use." ::= { logChannelsH225TableEntry 9 } logChannelsH261aVideoPacketization OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates that the H.261 alternative RTP payload form is in use as described in H.225.0." ::= { logChannelsH225TableEntry 10 } logChannelsRTPPayloadDescriptor OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "If the rfc-number is chosen, it indicates the offical document of the IETF in which the payload format is defined. Obsolete RFCs should not be referenced here. If the oid component is chosen, this identifies a payload format specified as part of a Recommendation defined by the ITU or an International Standard defined by the ISO and registered in the respective document under this Object Indentifier." ::= { logChannelsH225TableEntry 11 } logChannelsRTPPayloadType OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates which payload type value used. If the dynamic payload type is used, the values of this field and the logChannelsDynamicRTPPayloadType should match." ::= { logChannelsH225TableEntry 12 } logChannelsTransportCapability OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates optional transport capabilites such as quality of service and median channel type capabilites." ::= { logChannelsH225TableEntry 13 } logChannelsRedundancyEncoding OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "Indicates which redundancy encoding modes are supported (if any).The redundancyEncoding indicates that the redundant encoding method indicated in this parameter is to be used for this logical channel. The primary encoding is defined by the dataType of the forwardLogicalChannelParameters or the reverseLogicalChannelParameters, respectively. The type of redundancy encoding to be applied for this logical channel is identified by the redundancyEncodingMethod parameter, the secondary encoding is specified in the secondaryEncoding parameter. The DataType (audio, video, etc.) selected for both primary and secondary encoding shall match and shall be in accordance with the redundancyEncodingMethod selected." ::= { logChannelsH225TableEntry 14 } logChannelsSrcTerminalLabel OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "This is used to identify the terminal number of the sender of the OpenLogicalChannel message." ::= { logChannelsH225TableEntry 15 } logChannelsOpenLogChanTotalRequests OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of attempts to open a uni-directional logical channel between an outgoing LCSE and a peer incoming LCSE and a bi-directional logical channel between an outgoing B-LCSE and a peer incoming B-LCSE." ::= { logChannels 6 } logChannelsOpenLogChanAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of confirmations to accept an open logical channel request. This would represent the final stage of establishing a uni-directional channel that can be used for transmission." ::= { logChannels 7 } logChannelsOpenLogChanConfirms OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of confirmations used for the purpose of bi-directional channel signaling that the reverse channel is open and can be used for transmission. This represents the final stage of establishing a bi-directional channel that can be used for transmission in both directions." ::= { logChannels 8 } logChannelsOpenLogChanRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE." ::= { logChannels 9 } logChannelsOpenLogChanRejectUnspecified OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was unspecified." ::= { logChannels 10 } logChannelsOpenLogChanRejectUnsuitableReverseParameters OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a bi-directional logical channel from a B-LCSE when the reason for the rejection was the reverseLogicalChannelParameters in the OpenLogicalChannel were inappropriate." ::= { logChannels 11 } logChannelsOpenLogChanRejectDataTypeNotSupported OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a terminal not capable of supporting the desired dataType." ::= { logChannels 12 } logChannelsOpenLogChanRejectDataTypeNotAvailable OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a terminal not capable of supporting the desired dataType simultaneously with the dataTypes of logical channels that are already open." ::= { logChannels 13 } logChannelsOpenLogChanRejectUnknownDataType OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a terminal not understanding the dataType indicated in the OpenLogicalChannel." ::= { logChannels 14 } logChannelsOpenLogChanRejectDataTypeALCombinationNotSupported OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a terminal not capable of supporting the dataType indicated in OpenLogicalChannel simultaneously with the Adaptation Layer type indicated in H223LogicalChannelParameters." ::= { logChannels 15 } logChannelsOpenLogChanRejectMulticastChannelNotAllowed OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for he rejection was due to a multicast Channel that could not be opened." ::= { logChannels 16 } logChannelsOpenLogChanRejectInsuffientBandwdith OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was because permission to use the requested bandwidth for the logical channel was denied." ::= { logChannels 17 } logChannelsOpenLogChanRejectSeparateStackEstablishmentFailed OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a request to run the data portion of a call on a separate stack failed." ::= { logChannels 18 } logChannelsOpenLogChanRejectInvalidSessionID OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to an attempt by a slave to set the SessionID when opening a logical channel to the master." ::= { logChannels 19 } logChannelsOpenLogChanRejectMasterSlaveConflict OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to an attempt by a slave to open a logical channel in which the master has determined a conflict may occur." ::= { logChannels 20 } logChannelsOpenLogChanRejectWaitForCommunicationMode OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to an attempt to open a logical channel before MC has transmitted the CommunicationModeCommand." ::= { logChannels 21 } logChannelsOpenLogChanRejectInvalidDependentChannel OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to an attempt to open a logical channel with a dependent channel specified which is not present." ::= { logChannels 22 } logChannelsOpenLogChanRejectReplacementForRejected OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of rejections used as a response to a request to open a uni or a bi-directional logical channel from a LCSE or B-LCSE when the reason for the rejection was due to a logical channel of the type attempted cannot be opened using the replacementFor parameter." ::= { logChannels 23 } logChannelsCloseLogChannels OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the outgoing LCSE or B-LCSE to close a logical channel between two peer LCSEs or B-LCSEs. Note. In the case of a bi-directional logical channel, this closes both forward and reverse channels. It is not possible to close one and not the other." ::= { logChannels 24 } logChannelsCloseLogChanAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made to confirm the closing of a logical channel connection. " ::= { logChannels 25 } logChannelsCloseLogChanRequests OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the out-going CLCSE to request the closing of a logical channel connection between two peer LCSEs. " ::= { logChannels 26 } logChannelsCloseLogChanRequestsAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the in-coming CLCSE to indicate that the logical channel connection will be closed. " ::= { logChannels 27 } logChannelsCloseLogChanRequestRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the in-coming CLCSE to indicate that the logical channel connection will not be closed. The only valid cause value for rejecting to close a channel is unspecified." ::= { logChannels 28 } logChannelsCloseLogChanRequestReleases OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the out-going CLCSE in the case of a time out." ::= { logChannels 29 } miscRoundTripDelayTable OBJECT-TYPE SYNTAX SEQUENCE OF MiscRoundTripDelayTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains information about round trip delay tests. It is a list round trip delay entries. The number of entries equals to the number of tests prformed." ::= { misc 1 } miscRoundTripDelayTableEntry OBJECT-TYPE SYNTAX MiscRoundTripDelayTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "It contains information about the round trip delay messages." INDEX { controlChannelIndex } ::= { miscRoundTripDelayTable 1 } MiscRoundTripDelayTableEntry ::= SEQUENCE { miscRTDState INTEGER, miscT105TimerExpired TruthValue, miscLastRTDRequestSent Integer32, miscLastRTDRequestRcvd Integer32, miscLastRTDResponseSent Integer32, miscLastRTDResponseRcvd Integer32 } miscRTDState OBJECT-TYPE SYNTAX INTEGER { idle (1), waiting (2)} MAX-ACCESS read-only STATUS current DESCRIPTION "The state of the round trip delay. It can be either idle or waiting for response. " ::= { miscRoundTripDelayTableEntry 1 } miscT105TimerExpired OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "Round trip delay timer expired waiting for a response from the other entity. " ::= { miscRoundTripDelayTableEntry 2 } miscLastRTDRequestSent OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Information about the last round trip delay request sent. " ::= { miscRoundTripDelayTableEntry 3 } miscLastRTDRequestRcvd OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Information about the last round trip delay request received. " ::= { miscRoundTripDelayTableEntry 4 } miscLastRTDResponseSent OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Information about the last round trip delay response sent. " ::= { miscRoundTripDelayTableEntry 5 } miscLastRTDResponseRcvd OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Information about the last round trip delay response received. " ::= { miscRoundTripDelayTableEntry 6 } miscMaintenanceLoopTable OBJECT-TYPE SYNTAX SEQUENCE OF MiscMaintenanceLoopTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains information about maintenance loop mode. It is a list of maintenance loop entries. The number of entries equals to the number of maintenance loop procedures. " ::= { misc 2 } miscMaintenanceLoopTableEntry OBJECT-TYPE SYNTAX MiscMaintenanceLoopTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "It contains an entries that describe the mainenance loop procedure." INDEX { controlChannelIndex, miscMaintenanceLoopDirection } ::= { miscMaintenanceLoopTable 1 } MiscMaintenanceLoopTableEntry ::= SEQUENCE { miscMaintainenceLoopDirection INTEGER, miscMLState INTEGER, miscNumberOfRequests Counter32, miscNumberOfAcks Counter32, miscLastMLRequestOrAckType INTEGER, miscMLMediaOrLogicalChannelLoopRejectChannelNumber Integer32, miscNumberOfRejects Counter32, miscLastRejectType INTEGER, miscErrorCode INTEGER } miscMaintainenceLoopDirection OBJECT-TYPE SYNTAX INTEGER { incoming (1), outgoing (2) } MAX-ACCESS read-only STATUS current DESCRIPTION "The direction could be either incoming or outgoing. " ::= {miscMaintenanceLoopTableEntry 1 } miscMLState OBJECT-TYPE SYNTAX INTEGER { notLooped (1), waiting (2), looped (3)} MAX-ACCESS read-only STATUS current DESCRIPTION "The state of the channel which can be: not looped, waiting to be looped or looped. " ::= {miscMaintenanceLoopTableEntry 2 } miscNumberOfRequests OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of loop requests on that channel. " ::= {miscMaintenanceLoopTableEntry 3 } miscNumberOfAcks OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of maintainance loop acks on the channel." ::= {miscMaintenanceLoopTableEntry 4 } miscLastMLRequestOrAckType OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The type of the last request or response received. The type can be either media or logical channel loop. " ::= {miscMaintenanceLoopTableEntry 5 } miscMLMediaOrLogicalChannelLoopRejectChannelNumber OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "If the loop rejecte is of type media loop or logical channel loop then this represents the channel number for the logical channel. " ::= {miscMaintenanceLoopTableEntry 6 } miscNumberOfRejects OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of loop requests that got rejected. " ::= {miscMaintenanceLoopTableEntry 7 } miscLastRejectType OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The type of the last reject for the loop request." ::= {miscMaintenanceLoopTableEntry 8 } miscErrorCode OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The error code that caused the rejection of the loop request. " ::= {miscMaintenanceLoopTableEntry 9 } conferenceTerminalTable OBJECT-TYPE SYNTAX SEQUENCE OF ConferenceTerminalTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains information about the terminal charachteristics that are related to a conference. It is a list entries. The number of entries equals to the number of conferences." ::= { conference 1 } conferenceTerminalTableEntry OBJECT-TYPE SYNTAX ConferenceTerminalTableEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "It contains objects that describe a terminal as a conference participant." INDEX { conferenceConferenceId, conferenceTerminalLabel } ::= { conferenceTerminalTable 1 } ConferenceTerminalTableEntry ::= SEQUENCE { conferenceConferenceId OCTET STRING (SIZE(1..32)), conferenceTerminalLabel OCTET STRING, conferenceControlChannelIndex Integer32, conferenceBroadcaster TruthValue, conferenceConferenceChair TruthValue, conferenceMultipoint TruthValue } conferenceConferenceId OBJECT-TYPE SYNTAX OCTET STRING (SIZE(1..32)) MAX-ACCESS read-only STATUS current DESCRIPTION "The conference identifier." ::= {conferenceTerminalTableEntry 1 } conferenceTerminalLabel OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The terminal label of this terminal " ::= {conferenceTerminalTableEntry 2 } conferenceControlChannelIndex OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The index of the control channel table that identifys the control channel for the conference." ::= {conferenceTerminalTableEntry 3 } conferenceBroadcaster OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "The indicator of the terminal being a broadcaster." ::= {conferenceTerminalTableEntry 4 } conferenceConferenceChair OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "The indicator of the terminal being a conference chair." ::= {conferenceTerminalTableEntry 5 } conferenceMultipoint OBJECT-TYPE SYNTAX TruthValue MAX-ACCESS read-only STATUS current DESCRIPTION "The indicator of the conference being a multipoint." ::= {conferenceTerminalTableEntry 6 } conferenceBroadcastMyLogicalChannel OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by a terminal to transmit MCV command to force an associated MCU to broadcast its video signal used to transmit the picture of a chairman or VIP, alternatively to hold a picture source during the transmission of graphics." ::= { conference 7 } conferenceCancelBroadcastMyLogicalChannel OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by a terminal to cancel MCV command. " ::= { conference 8 } conferenceSendThisSource OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by a terminal to send VCS command to MCU to cause transmission to itself of the video from the terminal whose identity number follows VCS." ::= { conference 9 } conferenceCancelSendThisSource OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by a terminal to cancel VCS and return to automatic video switching at the MCU." ::= { conference 10 } conferenceDropConference OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by a terminal that is chair- control to drop all terminals from the conference. " ::= { conference 11 } conferenceEqualiseDelay OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The the same meaning as the command ACE in H.230." ::= { conference 12 } conferenceZeroDelay OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The same meaning as the command ACZ defined in H.230." ::= { conference 13 } conferenceMultipointModeCommand OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the MCU to send request to a terminal to comply with all MCU requestMode requests." ::= { conference 14 } conferenceCancelMultipointModeCommand OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of attempts made by the MCU to send a cancelation of a MultipointModeCommand. " ::= { conference 15 } conferenceVideoFreezePicture OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of commands that are sent/received to/from the video decoder to complete updating the current video frame and subsequently display the frozen picture until receipt of the appropriate freeze-picture release control signal." ::= { conference 16 } conferenceVideoFastUpdatePicture OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of commands sent/received to enter the fast update mode." ::= { conference 17 } conferenceVideoFastUpdateGOB OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of commands sent/received by the video encoder to fast update one or more GOBs." ::= { conference 18 } conferenceVideoTemporalSpatialTradeOff OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of commands sent/received by video encoder to change its trade off between temporal and spatial resolution. " ::= { conference 19 } conferenceVideoSendSyncEveryGOB OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of commands sent/received by video encoder to use sync for every GOB until the cancel command is received. " ::= { conference 20 } conferenceVideoFastUpdateMB OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of sent/received by video encoder to perform a fast update of one or more MBs." ::= { conference 21 } END