-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-IETF-MEGACO-MIB.mib
1302 lines (1175 loc) · 46.7 KB
/
CISCO-IETF-MEGACO-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--*********************************************************************
-- CISCO-IETF-MEGACO-MIB
--
-- This MIB module is based on the Internet Draft
-- draft-ietf-megaco-mib-05.txt.
-- In terms of object syntax and semantics, the content of this Cisco
-- MIB is the same as the corresponding Internet Draft revision.
-- This Cisco MIB was created due to the "subject to change" nature
-- of Internet Drafts.
--
-- This Cisco MIB may later be deprecated, and the stable RFC, which
-- may replace the Internet Draft, may be implemented in its place.
--
-- April 2003, Margaret Hsieh
--
-- Copyright (c) 2003 by cisco Systems, Inc.
-- All rights reserved.
--
--*********************************************************************
CISCO-IETF-MEGACO-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32, Integer32, IpAddress, Unsigned32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
RowStatus, TestAndIncr, AutonomousType, TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InterfaceIndex
FROM IF-MIB
ciscoExperiment
FROM CISCO-SMI;
ciscoIetfMegacoMIB MODULE-IDENTITY
LAST-UPDATED "200304281200Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This MIB module is based on the Internet Draft
draft-ietf-megaco-mib-05.txt.
It defines the attributes of Megaco protocol.
Reference: ITU H.248 (Rev. COM16-107)."
REVISION "200304281200Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoExperiment 99999 }
-- *****************************************************************
--
-- OID For the MIB
--
-- *****************************************************************
ciscoIetfMegacoMIBNotifs OBJECT IDENTIFIER::= { ciscoIetfMegacoMIB 0 }
ciscoIetfMegacoMIBObjects OBJECT IDENTIFIER::= { ciscoIetfMegacoMIB 1 }
-- *****************************************************************
-- Abbreviations/Terminologies
--
-- Media Gateway Link - A signaling channels that is identified by an
-- IP address and a UDP port of a media gateway.
-- A media gateway can have one or more links
-- (one or more signaling channels)
--
-- H248 - Media Gateway Control Protocol, ITU H.248
--
-- *****************************************************************
--
--
-- *****************************************************************
--
-- CISCO-IETF-MEGACO-MIB
--
-- The Media Gateway MIB contains 4 (object) groups
-- cmedConfiguration
-- This group consists of all the configuration related
-- information pertained with the Media Gateways and
-- Media Gateway Controllers in the network being managed.
-- This group contains the following three tables:
-- cmedLinkIdTable - Table used to provide the linkId to create
-- new entries in the gateway table
-- cmedGatewayConfigTable - Table provides the list of
-- gateways in the network and their
-- configuration
-- cmedGwyControllerTable - Table provides the list of
-- media gateway controllers in
-- the network and their
-- configuration
-- cmedStatistics
-- This group consists of all the statistics related information
-- pertained with the gateways. This group contains the following
-- table:
-- cmedGatewayStatsTable - Table provides the gateway statistics
-- and related information
--
-- cmedConnections
-- This group consists of the connections, terminations and their
-- properties related information for the gateways being managed
-- This group contains the following three tables:
-- cmedTermIdTable - Table used to provide the manager the next
-- available termination Id.
-- cmedTerminationsTable - Table provides the list of
-- terminations and their configuration
-- & status
-- cmedPropertyProfileTable - Table provides the list of profiles
-- that are being supported by the
-- gateway
--
-- cmedProperties
-- For Future Extension
--
--
-- *****************************************************************
--
-- *****************************************************************
--
-- Group Objects
--
-- *****************************************************************
cmedConfiguration
OBJECT IDENTIFIER::= { ciscoIetfMegacoMIBObjects 1 }
cmedStatistics
OBJECT IDENTIFIER::= { ciscoIetfMegacoMIBObjects 2 }
cmedConnections
OBJECT IDENTIFIER::= { ciscoIetfMegacoMIBObjects 3 }
cmedProperties
OBJECT IDENTIFIER::= { ciscoIetfMegacoMIBObjects 4 }
-- *****************************************************************
--
-- Textual conventions for the Media Gateway MIB
--
-- *****************************************************************
CMediaGatewayId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible Media Gateway Id that can be used to identify
any media gateway uniquely"
SYNTAX INTEGER (1..2147483647)
CMediaGatewayLinkId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible Media Gateway Link Id that can be used to identify
any media gateway link uniquely"
SYNTAX Unsigned32 (1..2147483647)
CMediaGatewayTermId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible Termination Id that can be used to identify
any media gateway termination uniquely"
SYNTAX Unsigned32 (1..2147483647)
-- *****************************************************************
--
-- cmedLinkIdTable
-- Cisco Media Gateway LinkId Table...
--
-- Provides the manager with the nextId for use in creating a
-- LinkId. There is one entry in this table for each MediaGateway.
--
-- Link represents the signaling link between the media gateway
-- and the media gateway controller. The following rules guide
-- the creation of the LinkId
--
-- (1) There could be more than one media gateways (cmedGatewayId)
-- sharing the same signaling link (cmedLinkId).
--
-- (2) A gateway may have many links (interfaces) towards the Media
-- Gateway Controller but only the active link that is currently
-- being used to communicate with the controller would be
-- accounted in this table
--
-- If this table isn't implemented, the manager would be
-- responsible for providing the (unique) nextId (via retaining
-- used id's, hashing, etc)
--
-- *****************************************************************
cmedLinkIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedLinkIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a nextLinkId for each Gateway.
It provides the manager with the nextLinkId for use
in creating new Gateway Table Entries."
::= { cmedConfiguration 1}
cmedLinkIdEntry OBJECT-TYPE
SYNTAX CmedLinkIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the NextLinkId for this Gateway
and is indexed by mediaGatewayId."
INDEX { cmedGatewayId }
::= { cmedLinkIdTable 1 }
CmedLinkIdEntry ::= SEQUENCE
{
cmedNextLinkId TestAndIncr
}
cmedNextLinkId OBJECT-TYPE
SYNTAX TestAndIncr
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Next Value for a cmedGatewayLinkId. Assists the
manager in selecting a value for cmedGatewayLinkId.
Using the TestAndIncr syntax, A Manager will 'lock' this
variable, ensuring single access."
::= { cmedLinkIdEntry 1 }
-- *****************************************************************
--
-- cmedGatewayConfigTable
--
-- The Media Gateway Configuration Table...
--
-- There would be one entry in this table and is indexed by
-- (cmedGatewayId, cmedGatewayLinkId). The table is guided by
-- the following rules:
--
-- (1) There is one entry in this table for each MediaGateway
-- SignallingLink.
--
-- (2) Even though gateways could share the signaling link, they
-- could have different IP Address and/or Port Number.
-- In order to accommodate that, the table is indexed by
-- both cmedGatewayId and cmedGatewayLinkId.
--
-- (3) Virtual MGs need not have to be represented as a separate
-- entry in this table
--
-- *****************************************************************
cmedGatewayConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedGatewayConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cmedGatewayConfigEntry objects."
::= { cmedConfiguration 2 }
cmedGatewayConfigEntry OBJECT-TYPE
SYNTAX CmedGatewayConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry holding configuration information about a
group of Media Gateway Controllers sharing the same
signaling link."
INDEX { cmedGatewayId, cmedGatewayLinkId }
::= { cmedGatewayConfigTable 1 }
CmedGatewayConfigEntry ::= SEQUENCE
{
cmedGatewayId CMediaGatewayId,
cmedGatewayLinkId CMediaGatewayLinkId,
cmedGatewayLinkName SnmpAdminString,
cmedGatewayIPAddress IpAddress,
cmedGatewayPort Integer32,
cmedGatewayEncodingScheme INTEGER,
cmedGatewayProtocol INTEGER,
cmedGatewaySigTptProtocol INTEGER,
cmedGatewayAdminStatus INTEGER,
cmedGatewayOperStatus INTEGER,
cmedGatewayLastStatusChange TimeStamp,
cmedGatewayResetStatistics INTEGER,
cmedGatewayRowStatus RowStatus
}
cmedGatewayId OBJECT-TYPE
SYNTAX CMediaGatewayId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique Media Gateway Id which identifies this
media gateway"
::= { cmedGatewayConfigEntry 1 }
cmedGatewayLinkId OBJECT-TYPE
SYNTAX CMediaGatewayLinkId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique link id which identifies the signaling
link that this gateway uses to communicate with the
Gateway Controllers to form an H.248 association."
::= { cmedGatewayConfigEntry 2 }
cmedGatewayLinkName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE (0..255) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A descriptive name of this signaling link / media
gateway combination"
::= { cmedGatewayConfigEntry 3 }
cmedGatewayIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address that the Media Gateway Controller
will use to communicate with the Media Gateway.
This object reflects the IP address over control
PVC that user configures in cMediaGwIpConfigTable.
The value 0.0.0.0 is returned if the entry is
invalid."
::= { cmedGatewayConfigEntry 4 }
cmedGatewayPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"TCP/UDP port number that the Media Gateway Controller will
use to communicate with the Media Gateway. The value
0 is returned if the entry is invalid."
DEFVAL { 2944 }
::= { cmedGatewayConfigEntry 5 }
cmedGatewayEncodingScheme OBJECT-TYPE
SYNTAX INTEGER {
text (1),
binary (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encoding scheme that would be used to encode the H.248
messages that are sent/received to/from the gateway
controller"
DEFVAL { text }
::= { cmedGatewayConfigEntry 6 }
cmedGatewayProtocol OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
other (2),
dss1Ip (3),
ipdc (4),
megacov1 (5),
megacov2 (6),
mgcp (7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of the control protocol in use
notApplicable (1) -
other (2) - Other (none from the list below)
dss1-ip (3) - Q931+
ipdc (4) - IPDC
megacov1 (5) - MEGACO/H.248 Version 1
megacov2 (6) - MEGACO/H.248 Version 2
mgcp (7) - MGCP "
::= { cmedGatewayConfigEntry 7 }
cmedGatewaySigTptProtocol OBJECT-TYPE
SYNTAX INTEGER {
tcp (1),
udp (2),
sctp (3),
other (4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of the transport protocol that is being used to
transport the H.248 signaling traffic"
::= { cmedGatewayConfigEntry 8 }
cmedGatewayAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (2),
testing (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The desired state of the gateway.
The testing(3) state indicates that no signaling
packets can be passed.
When a managed system initializes, all gateways start
with cmedGatewayAdminStatus in the down(2) state.
As a result of either explicit management action or
per configuration information retained by the
managed system, cmedGatewayAdminStatus is then changed
to either the up(1) or testing(3) states (or remains in
the down(2) state)."
::= { cmedGatewayConfigEntry 9 }
cmedGatewayOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (2),
testing(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the gateway.
up (1) - ready to communicate with MGC
down (2)
testing(3) - in some test mode
unknown(4) - status can not be determined for some
reason.
The testing(3) state indicates that no signaling packets
can be passed.
If cmedGatewayAdminStatus is down(2) then
cmedGatewayOperStatus should be down(2).
If cmedGatewayAdminStatus is changed to up(1) then
cmedGatewayOperStatus should change to up(1) if the
gateway is ready to transmit and receive signaling
traffic; it should remain in the down(2) state if and
only if there is a fault that prevents it from going to
the up(1) state"
::= { cmedGatewayConfigEntry 10 }
cmedGatewayLastStatusChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time the associated
link entered its current operational status. If
the current status was entered prior to the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { cmedGatewayConfigEntry 11 }
cmedGatewayResetStatistics OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (1),
other (2),
reset (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object can be used to reset all statistics
collected for this media gateway link so far.
Statistics will be reset when the object is SET
to 'reset'. Upon reset, the agent changes the value
of this object to 'notApplicable'."
::= { cmedGatewayConfigEntry 12 }
cmedGatewayRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is used to create new rows, modify existing rows
and to delete existing rows."
::= { cmedGatewayConfigEntry 13 }
-- *****************************************************************
--
-- cmedGwyControllerTable
--
-- The Media Gateway Controller Table...
--
-- This table would provide information about the media gateway
-- controllers in the network and their configuration. The rules
-- that guide this table are:
--
-- (1) This table consists a 'List' of Media Gateway Controllers
-- (on a media gateway), and Configuration Information for
-- these Controllers.
--
-- (2) An Entry in this Table is automatically created when a
-- manager creates an entry in the cmedGatewayConfigTable
-- because even though the same MGC could manage many gateways,
-- they could have different logical IP address/Port number
-- towards each of the gateway
--
-- (3) There can be many logical gateways inside a physical
-- gateway (cmedGatewayId) and there can be multiple media
-- gateway controllers (cmedGwyControllerId) and there can be
-- many links between "m" number of gateways and "n" number of
-- controllers (cmedGatewayLinkId).
--
-- The relationship can be, for example, as follows:
--
-- cmedGatewayId cmedGwyControllerId
-- +==========+ cmedGatewayLinkId +==========+
-- | mg1 |========================>| mgc1 |
-- | +==========+ | | +==========+
-- | | mg2 | +=============>| mgc2 |
-- | | +==========+ | | +==========+
-- +-| | mg3 |======================>| | mgc3 |
-- | | | | | | |
-- +-| | +===========>| |
-- | | | |
-- +==========+ +==========+
--
-- *****************************************************************
cmedGwyControllerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedGwyControllerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of the Media Gateway Controllers that are managed
in the network"
::= { cmedConfiguration 3 }
cmedGwyControllerEntry OBJECT-TYPE
SYNTAX CmedGwyControllerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry holding information about an individual
Media Gateway Controller."
INDEX { cmedGatewayId,
cmedGatewayLinkId,
cmedGwyControllerId }
::= { cmedGwyControllerTable 1 }
CmedGwyControllerEntry ::= SEQUENCE
{
cmedGwyControllerId Unsigned32,
cmedGwyControllerIPAddress IpAddress,
cmedGwyControllerPort Integer32,
cmedGwyControllerAdminStatus INTEGER,
cmedGwyControllerOperStatus INTEGER
}
cmedGwyControllerId OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An unique identification number that is assigned to
the gateway controller by the manager"
::= { cmedGwyControllerEntry 1 }
cmedGwyControllerIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the Media Gateway Controller. The
value 0.0.0.0 is returned if the entry is invalid."
::= { cmedGwyControllerEntry 2 }
cmedGwyControllerPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TCP port of the Media Gateway Controller. The value
0 is returned if the entry is invalid."
::= { cmedGwyControllerEntry 3 }
cmedGwyControllerAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (2),
testing (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the gateway.
The testing(3) state indicates that no signaling
packets can be passed.
When a managed system initializes, all gateways start
with cmedGwyControllerAdminStatus in the down(2)
state. As a result of either explicit management action
or per configuration information retained by the managed
system, cmedGwyControllerAdminStatus is then
changed to either the up(1) or testing(3) states (or
remains in the down(2) state)."
::= { cmedGwyControllerEntry 4 }
cmedGwyControllerOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (2),
standby (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the gateway controller.
The standby(3) state indicates that it is in the standby
mode and no signaling packets can be passed. If
cmedGwyControllerAdminStatus is down(2) then
cmedGwyControllerOperStatus should be down(2).
If cmedGwyControllerAdminStatus is changed to
up(1), then cmedGwyControllerOperStatus should
change to up(1).
If the gateway controller is ready to transmit and receive
signaling traffic; it should remain in the down(2) state
if and only if there is a fault that prevents it from
going to the up(1) state"
::= { cmedGwyControllerEntry 5 }
-- *****************************************************************
--
-- cmedGatewayStatsTable
--
-- The Media Gateway Stats Table...
--
-- This table provides the control protocol related statistics for
-- the gateways that are being managed in the network. The rules
-- that guide this table are:
--
-- (1) There is one entry in this table for each
-- MediaGateway/SignallingLink.
-- (2) The Agent creates this table, when a GatewayConfigTable
-- Entry is created.
--
-- *****************************************************************
cmedGatewayStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedGatewayStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of mediaGatewayTableEntry objects."
::= { cmedStatistics 1 }
cmedGatewayStatsEntry OBJECT-TYPE
SYNTAX CmedGatewayStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry holding statistics about a group of
media Gateway/signaling link pair "
INDEX { cmedGatewayId, cmedGatewayLinkId }
::= { cmedGatewayStatsTable 1 }
CmedGatewayStatsEntry ::= SEQUENCE
{
cmedNumInMessages Counter32,
cmedNumInOctets Counter32,
cmedNumOutMessages Counter32,
cmedNumOutOctets Counter32,
cmedNumErrors Counter32,
cmedNumTimerRecovery Counter32,
cmedTransportNumLosses Counter32,
cmedTransportNumSwitchover Counter32,
cmedTransportTotalNumAlarms Counter32,
cmedTransportLastEvent INTEGER,
cmedTransportLastEventTime TimeStamp,
cmedLastStatisticsReset TimeStamp
}
cmedNumInMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of messages received on the link."
::= { cmedGatewayStatsEntry 1 }
cmedNumInOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of octets received on the link."
::= { cmedGatewayStatsEntry 2 }
cmedNumOutMessages OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of messages sent on the link."
::= { cmedGatewayStatsEntry 3 }
cmedNumOutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of octets sent on the link."
::= { cmedGatewayStatsEntry 4 }
cmedNumErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of signaling-level errors encountered.
Includes, but is not limited to, number of bad
messages received, number of failures to sent a
message and number of other errors."
::= { cmedGatewayStatsEntry 5 }
cmedNumTimerRecovery OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of timer recovery events since the
statistics was last reset. This reflects all protocol
timers that are supported (For H.248, T - start timer,
S - short timer, L - long timer, and Z - long duration
timer etc)"
::= { cmedGatewayStatsEntry 6 }
cmedTransportNumLosses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times a transport link was lost
(excluding switch-over cases). A link loss is defined
as loss of communication with the entity (MGC) due to
hardware/transient problems in the interface or other
related hardware/software"
::= { cmedGatewayStatsEntry 7 }
cmedTransportNumSwitchover OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times when the signaling was switched
over to an alternative link. This includes
switchover due to the Handoffs initiated by the
gateway controllers"
::= { cmedGatewayStatsEntry 8 }
cmedTransportTotalNumAlarms OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of all alarms issued for the transport
layer."
::= { cmedGatewayStatsEntry 9 }
cmedTransportLastEvent OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (1),
other (2),
linkUp (3),
linkLoss (4),
persistentError (5),
linkShutdown (6),
switchOver (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last event reported by the transport layer.
notApplicable (1) - Invalid/unknown.
other (2) - None from the list below.
linkUp (3) - Transport link is up.
linkLoss (4) - Transport link loss.
persistentError (5) - No link - persistent error.
linkShutdown (6) - Link is shut down.
switchOver (7) - Fail-over."
::= { cmedGatewayStatsEntry 10 }
cmedTransportLastEventTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time when the event
specified by cmedTransportLastEvent occurred.
If the last event occurred prior to the last
re-initialization of the local network management
subsystem, then this object contains a zero value."
::= { cmedGatewayStatsEntry 11 }
cmedLastStatisticsReset OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time when the
statistics were reset. If the reset occurred prior to
the last re-initialization of the local network
management subsystem, this object contains a zero
value."
::= { cmedGatewayStatsEntry 12 }
-- *****************************************************************
--
-- cmedTermIdTable
--
-- TerminationId Table...
--
-- This table provides unique TerminationId for the creation of
-- an entry into the TerminationsTable. The following rules guide
-- this table:
--
-- (1) This table provides the manager with the nextId for use in
-- creating a Termination.
-- There is one entry in this table for each MediaGateway.
-- (2) If this table isn't implemented, the manager would be
-- responsible for providing the (unique) nextId (via
-- retaining used id's, hashing, etc)
--
-- *****************************************************************
cmedTermIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedTermIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a nextTerminationId for each
Gateway. It provides the manager with the
nextTerminationId for use in creating a new
TerminationsTable Entry."
::= { cmedConnections 1}
cmedTermIdEntry OBJECT-TYPE
SYNTAX CmedTermIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a nextTerminationId for each
Gateway, and is indexed by mediaGatewayId."
INDEX { cmedGatewayId }
::= { cmedTermIdTable 1 }
CmedTermIdEntry ::= SEQUENCE
{
cmedNextTerminationId TestAndIncr
}
cmedNextTerminationId OBJECT-TYPE
SYNTAX TestAndIncr
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Next Value for a MediaGateway TerminationId.
Assists the manager in selecting a value for
cmedTermId.
Using the TestAndIncr syntax, A Manager will 'lock' this
variable, ensuring single access."
::= { cmedTermIdEntry 1 }
-- *****************************************************************
--
-- cmedTerminationsTable
--
-- This table provides the list of terminations available in
-- the gateway and their corresponding profile information and
-- related configuration information.
-- The following rules guide this table:
-- (1) There is one entry in this table for each Termination in a
-- MediaGateway.
-- (2) The list of terminations include terminations that are
-- present for all the contexts that are present in the
-- gateway (excluding the NULL context)(Subject to Discussion)
--
-- *****************************************************************
cmedTerminationsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmedTerminationsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about terminations
in a media gateway. It is a list of terminations.
The number of entries equals to the total number of
terminations for all contexts in a gateway."
::= { cmedConnections 2}
cmedTerminationsEntry OBJECT-TYPE
SYNTAX CmedTerminationsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"It contains objects that describe a termination."
INDEX { cmedGatewayId, cmedTermId }
::= { cmedTerminationsTable 1 }
CmedTerminationsEntry ::= SEQUENCE
{
cmedTermId CMediaGatewayTermId,
cmedTermName SnmpAdminString,
cmedTermAdminStatus INTEGER,
cmedTermOperStatus INTEGER,
cmedTermInterfaceIdentifier InterfaceIndex,
cmedTermPropertyProfileId Unsigned32,
cmedTermRowStatus RowStatus
}
cmedTermId OBJECT-TYPE
SYNTAX CMediaGatewayTermId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An unique identification number that is assigned to
the termination by a media gateway. This is the
TerminationId that would be used in the protocol
messages that are sent from the gateway"
::= { cmedTerminationsEntry 1 }
cmedTermName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE (0..64) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A descriptive name that would describe this termination
and its use. For example, 'emergency-ds0-1' indicating
that this termination is reserved as an emergency DS0
channel"
::= { cmedTerminationsEntry 2 }
cmedTermAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
inService (1),
outOfService (2),
testing (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The desired state of the termination.
The testing(3) state indicates that no connections
can be created for this termination.
When a managed system initializes, all terminations
start with cmedTermAdminStatus in the
outOfService(2) state. As a result of either
explicit management action or per configuration
information retained by the managed system,
cmedTermAdminStatus is then changed to
either the inService(1) or testing(3) states
(or remains in the outOfService(2) state)."
::= { cmedTerminationsEntry 3 }
cmedTermOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up (1),
down (2),
testing (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the termination.
The testing(3) state indicates that it is in the
testing mode and no connections can be created on it.
If cmedTermAdminStatus is outOfService(2)
then cmedTermOperStatus should be down(2).
If cmedTermAdminStatus is changed to up(1)
then cmedTermOperStatus should change to up (1)
and the termination is ready to accept connections;
it should remain in the down(2) state if and only if
there is a fault that prevents it from going to the
up(1) state"
::= { cmedTerminationsEntry 4 }
cmedTermInterfaceIdentifier OBJECT-TYPE
SYNTAX InterfaceIndex