summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-VOICE-CALL-ACTIVE-MIB
blob: 4be1433dda4813a828c77bfaddeac70615e12122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
-- ==========================================================================
-- Copyright (C) 2008 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The purpose of this MIB file is to provide the definition of
--              voice call record.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2008-02-17 Initial version, created by Tian Xiaoqiang, Qu Jin
-- ==========================================================================
HH3C-VOICE-CALL-ACTIVE-MIB DEFINITIONS ::= BEGIN
IMPORTS
        OBJECT-TYPE, MODULE-IDENTITY, Integer32, Gauge32
    FROM SNMPv2-SMI
        InetAddressType, InetAddress
    FROM INET-ADDRESS-MIB
        Hh3cCodecType
    FROM HH3C-VOICE-DIAL-CONTROL-MIB
        callActiveSetupTime, callActiveIndex
    FROM DIAL-CONTROL-MIB
        TEXTUAL-CONVENTION
    FROM SNMPv2-TC
        hh3cVoice
    FROM HH3C-OID-MIB;

hh3cVoCallActive MODULE-IDENTITY
    LAST-UPDATED "200802170000Z"
    ORGANIZATION
        "New H3C Technologies Co., Ltd."
    CONTACT-INFO
        "Platform Team New H3C Technologies Co., Ltd.
         Hai-Dian District Beijing P.R. China
         Http://www.h3c.com
         Zip:100085"
    DESCRIPTION
        "This MIB file is to provide the definition of voice call
         active record information."
    REVISION "200802170000Z"
    DESCRIPTION
        "The initial version of this MIB file."
    ::= { hh3cVoice 15 }

-- ======================================
--          Type declaration
-- ======================================

Hh3cGUid ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Represents a global call identifier. The global call identifier is
         used as an unique identifier for an end-to-end call. A zero length
         Hh3cGUid indicates no value for the global call identifier."
    SYNTAX       OCTET STRING(SIZE(0..16))


hh3cVoiceCallActiveObjects OBJECT IDENTIFIER ::= { hh3cVoCallActive 1 }

-- ===========================================================================
--                        hh3cVoiceCallActiveTable
-- ===========================================================================
hh3cVoiceCallActiveTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cVoiceCallActiveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table is the voice extension to the call active table
         of DIAL-CONTROL-MIB. It contains voice encapsulation call
         leg information that is derived from the statistics
         of lower layer telephony interface."
    ::= { hh3cVoiceCallActiveObjects 1 }

hh3cVoiceCallActiveEntry OBJECT-TYPE
    SYNTAX Hh3cVoiceCallActiveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The information regarding a single voice encapsulation
         call leg.
         The call leg entry is identified by using the same index
         objects that are used by call active table of
         DIAL-CONTROL-MIB to identify the call.
         An entry of this table is created when its associated call
         active entry in the DIAL-CONTROL-MIB is created and
         call active entry contains the call establishment to a
         voice over telephony network peer.
         The entry is deleted when its associated call active entry
         in the DIAL-CONTROL-MIB is deleted."
    INDEX { callActiveSetupTime, callActiveIndex }
    ::= { hh3cVoiceCallActiveTable 1 }

Hh3cVoiceCallActiveEntry ::= SEQUENCE {
        hh3cVoCallActiveConnectionId Hh3cGUid,
        hh3cVoCallActiveTxDuration Gauge32,
        hh3cVoCallActiveVoiceTxDuration Gauge32,
        hh3cVoCallActiveFaxTxDuration Gauge32,
        hh3cVoCallActiveCoderType Hh3cCodecType,
        hh3cVoCallActiveImgPageCount Gauge32
    }

hh3cVoCallActiveConnectionId OBJECT-TYPE
    SYNTAX Hh3cGUid
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The global call identifier for the gateway call."
    ::= { hh3cVoiceCallActiveEntry 1 }

hh3cVoCallActiveTxDuration OBJECT-TYPE
    SYNTAX Gauge32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Duration of transmit path open from this peer to the
         voice gateway for the call. The units is milliseconds."
    ::= { hh3cVoiceCallActiveEntry 2 }

hh3cVoCallActiveVoiceTxDuration OBJECT-TYPE
    SYNTAX Gauge32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Duration of voice transmitted from this peer to voice
         gateway for this call. The voice utilization rate can be
         obtained by dividing this by hh3cVoCallActiveTXDuration object.
         The units is milliseconds."
    ::= { hh3cVoiceCallActiveEntry 3 }

hh3cVoCallActiveFaxTxDuration OBJECT-TYPE
    SYNTAX Gauge32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Duration of fax transmitted from this peer to voice gateway
         for this call. The fax utilization rate can be obtained by
         dividing this by hh3cVoCallActiveTXDuration object. The units
         is milliseconds."
    ::= { hh3cVoiceCallActiveEntry 4 }

hh3cVoCallActiveCoderType OBJECT-TYPE
    SYNTAX Hh3cCodecType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The negotiated coder type. It specifies the encode type to
         the PSTN leg of a call."
    ::= { hh3cVoiceCallActiveEntry 5 }

hh3cVoCallActiveImgPageCount OBJECT-TYPE
    SYNTAX Gauge32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The number of fax related image pages are received or
         transmitted via the peer for the call. The units is pages."
    ::= { hh3cVoiceCallActiveEntry 6 }


-- ===========================================================================
--                        hh3cVoiceVoIPCallActiveTable
-- ===========================================================================
hh3cVoiceVoIPCallActiveTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cVoiceVoIPCallActiveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "This table is the VoIP extension to the call active table of
         DIAL-CONTROL-MIB. It contains VoIP call leg
         information about specific VoIP call destination."
    ::= { hh3cVoiceCallActiveObjects 2 }

hh3cVoiceVoIPCallActiveEntry OBJECT-TYPE
    SYNTAX Hh3cVoiceVoIPCallActiveEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION
        "The information regarding a single VoIP call leg.
         The call leg entry is identified by using the same index
         objects that are used by call active table of DIAL-CONTROL-MIB
         to identify the call.
         An entry of this table is created when its associated call
         active entry in the DIAL-CONTROL-MIB is created and the
         call active entry contains information for the call
         establishment to the peer on the IP backbone via a voice
         over IP peer.
         The entry is deleted when its associated call active entry
         in the DIAL-CONTROL-MIB is deleted."
    INDEX { callActiveSetupTime, callActiveIndex }
    ::= { hh3cVoiceVoIPCallActiveTable 1 }

Hh3cVoiceVoIPCallActiveEntry ::= SEQUENCE {
    hh3cVoVoIPCallActiveConnectionId Hh3cGUid,
    hh3cVoVoIPCallActiveRemSigIPType InetAddressType,
    hh3cVoVoIPCallActiveRemSigIPAddr InetAddress,
    hh3cVoVoIPCallActiveRemSigPort Integer32,
    hh3cVoVoIPCallActiveRemMedIPType InetAddressType,
    hh3cVoVoIPCallActiveRemMedIPAddr InetAddress,
    hh3cVoVoIPCallActiveRemMedPort Integer32,
    hh3cVoVoIPCallActiveSessProtocol INTEGER,
    hh3cVoVoIPCallActiveCoderType Hh3cCodecType
    }

hh3cVoVoIPCallActiveConnectionId OBJECT-TYPE
    SYNTAX Hh3cGUid
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The global call identifier for the gateway call."
    ::= { hh3cVoiceVoIPCallActiveEntry 1 }

hh3cVoVoIPCallActiveRemSigIPType OBJECT-TYPE
    SYNTAX InetAddressType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The type of remote system signalling IP address for the VoIP call."
    ::= { hh3cVoiceVoIPCallActiveEntry 2 }

hh3cVoVoIPCallActiveRemSigIPAddr OBJECT-TYPE
    SYNTAX InetAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Remote system signalling IP address for the VoIP call."
    ::= { hh3cVoiceVoIPCallActiveEntry 3 }

hh3cVoVoIPCallActiveRemSigPort OBJECT-TYPE
    SYNTAX Integer32(0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Remote system UDP listener signalling port to which to transmit voice
         packets."
    ::= { hh3cVoiceVoIPCallActiveEntry 4 }

hh3cVoVoIPCallActiveRemMedIPType OBJECT-TYPE
    SYNTAX InetAddressType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The type of remote system media IP address for the VoIP call."
    ::= { hh3cVoiceVoIPCallActiveEntry 5 }

hh3cVoVoIPCallActiveRemMedIPAddr OBJECT-TYPE
    SYNTAX InetAddress
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Remote system media IP address for the VoIP call."
    ::= { hh3cVoiceVoIPCallActiveEntry 6 }

hh3cVoVoIPCallActiveRemMedPort OBJECT-TYPE
    SYNTAX Integer32(0..65535)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "Remote system UDP listener media port to which to transmit voice
         packets."
    ::= { hh3cVoiceVoIPCallActiveEntry 7 }

hh3cVoVoIPCallActiveSessProtocol OBJECT-TYPE
    SYNTAX INTEGER {
        unknown(1),
        h323(2),
        sip(3)
        }
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The object specifies the session protocol to be used
         for internet call between local and remote router via
         IP backbone."
    ::= { hh3cVoiceVoIPCallActiveEntry 8 }

hh3cVoVoIPCallActiveCoderType OBJECT-TYPE
    SYNTAX Hh3cCodecType
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION
        "The negotiated coder type. It specifies the encode type to
         the VoIP leg of a call."
    ::= { hh3cVoiceVoIPCallActiveEntry 9 }


END