-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-CALL-RESOURCE-POOL-MIB-V1SMI.my
1881 lines (1622 loc) · 59.2 KB
/
CISCO-CALL-RESOURCE-POOL-MIB-V1SMI.my
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
-- MIB file created 06-Dec-2005 16:31:51, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-CALL-RESOURCE-POOL-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-CALL-RESOURCE-POOL-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus, TruthValue
FROM SNMPv2-TC-v1
CiscoRowOperStatus
FROM CISCO-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoCallResourcePoolMIB OBJECT IDENTIFIER ::= { ciscoMgmt 124 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200511180000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB module for call resource pool management.
--
-- This MIB supports the resource pool manager feature of
-- CISCO IOS. This feature provides the ability to accept
-- or reject calls based on DNIS numbers, resources required,
-- user DNS domains, and counts of currently active sessions.
-- RevDate
-- 200511180000Z
-- RevDescr
-- Updated the imports such that Unsigned32 is imported from
-- SNMPv2-SMI instead of CISCO-TC. Changed the syntax of
-- ccrpCDCallType and ccrpCPResourceCallType from OCTET
-- STRING(SIZE(1)) to BITS.
-- RevDate
-- 9811130000Z
-- RevDescr
-- Initial version of this MIB module.
cCallResourcePoolMIBObjects OBJECT IDENTIFIER ::= { ciscoCallResourcePoolMIB 1 }
ccrpConfiguration OBJECT IDENTIFIER ::= { cCallResourcePoolMIBObjects 1 }
ccrpGeneralConfig OBJECT IDENTIFIER ::= { ccrpConfiguration 1 }
ccrpDnisConfig OBJECT IDENTIFIER ::= { ccrpConfiguration 2 }
ccrpCallDiscriminatorConfig OBJECT IDENTIFIER ::= { ccrpConfiguration 3 }
ccrpResourceConfig OBJECT IDENTIFIER ::= { ccrpConfiguration 4 }
ccrpCustomerProfileConfig OBJECT IDENTIFIER ::= { ccrpConfiguration 5 }
ccrpStatistics OBJECT IDENTIFIER ::= { cCallResourcePoolMIBObjects 2 }
ccrpCPStatistics OBJECT IDENTIFIER ::= { ccrpStatistics 1 }
ccrpDnisStatistics OBJECT IDENTIFIER ::= { ccrpStatistics 2 }
ccrpCDStatistics OBJECT IDENTIFIER ::= { ccrpStatistics 3 }
ccrpMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoCallResourcePoolMIB 2 }
ccrpMIBConformance OBJECT IDENTIFIER ::= { ciscoCallResourcePoolMIB 3 }
ccrpMIBCompliances OBJECT IDENTIFIER ::= { ccrpMIBConformance 1 }
ccrpMIBGroups OBJECT IDENTIFIER ::= { ccrpMIBConformance 2 }
CcrpPhoneNumber ::= OCTET STRING(SIZE(1..64))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Text string representing a telephone number.
-- Limited to numeric characters 0-9.
CcrpPhoneNumberPattern ::= OCTET STRING(SIZE(1..64))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Text string representing a telephone number and wild card
-- characters. Limited to numeric characters 0-9 and the
-- wild cards '.' and 'x'. Both wild card characters match
-- single digits only.
PhysicalPosition ::= Gauge
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A physical port specification.
-- An unsigned integer representing the
-- slot and port within that slot.
-- The value is generated as:
--
-- slot*10^6 + port
--
-- Examples:
-- port 16 located in slot 7 would be
-- 7*10^6 + 16 = 7,000,000 + 16 = 7,000,016
--
-- port 0 located in slot 0 would be
-- 0*10^6 + 0 = 0
ccrpNoCPCallTreatment OBJECT-TYPE
SYNTAX INTEGER {
noAnswer(1),
busy(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Value returned to the telco switch if call is to be
rejected because it doesn't match any defined customer
profile.
noAnswer(1) - ignore the call
busy(2) - return busy
"
DEFVAL { noAnswer }
::= { ccrpGeneralConfig 1 }
ccrpNoResourceCallTreatment OBJECT-TYPE
SYNTAX INTEGER {
channelNotAvailable(1),
busy(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Value returned to the telco switch if call is to be
rejected because there is no available resource to
answer the call.
channelNotAvailable(1) - return channel not available,
allowing switch to continue searching for
an available channel
busy(2) - return busy
"
DEFVAL { channelNotAvailable }
::= { ccrpGeneralConfig 2 }
ccrpDnisGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpDnisGroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Table of DNIS groups. Each group is a list of
individual DNIS numbers."
::= { ccrpDnisConfig 1 }
ccrpDnisGroupEntry OBJECT-TYPE
SYNTAX CcrpDnisGroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing a single DNIS number
for the DNIS group identified by the first index.
A single DNIS number may not exist in more than one
DNIS group.
Entries in this table may be created and deleted via
the ccrpDnisGroupRowStatus object or the management
console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpDnisGroupRowStatus to 'createAndGo'
or 'createAndWait'. Rows are deleted by a SET request
setting the value of ccrpDnisGroupRowStatus to
'destroy'.
Deleting the last entry for a specific value of
ccrpDnisGroupName from this table will cause
associated entries in the dependent tables to
transition to a 'missingDependency' CiscoRowOperStatus."
INDEX { ccrpDnisGroupName, --?? IMPLIED may cause problems
IMPLIED ccrpDnisGroupMember }
::= { ccrpDnisGroupTable 1 }
CcrpDnisGroupEntry ::= SEQUENCE {
ccrpDnisGroupName SnmpAdminString,
ccrpDnisGroupMember CcrpPhoneNumberPattern,
ccrpDnisGroupRowStatus RowStatus
}
ccrpDnisGroupName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..23))
-- Rsyntax OCTET STRING(SIZE(1..23))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name for this DNIS group"
::= { ccrpDnisGroupEntry 1 }
ccrpDnisGroupMember OBJECT-TYPE
SYNTAX CcrpPhoneNumberPattern(SIZE(1..64))
-- Rsyntax OCTET STRING(SIZE(1..64))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"DNIS for member of this DNIS group.
A single DNIS number may not be a member of
more than one DNIS group.
Creating a new entry using a DNIS number that
already exists will fail. The existing entry must
be removed first, before creating a new entry under
a different DNIS group name."
::= { ccrpDnisGroupEntry 2 }
ccrpDnisGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpDnisGroupEntry 3 }
ccrpDnisGroupCallTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpDnisGroupCallTypeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
This table is used specify a call type to calls
arriving with a signaling protocol which does not
provide bearer capability. An example is Channel
Associated Signaling (CAS).
A call arriving with a DNIS configured in a DNIS group
in this table will be assigned the call type given
here."
::= { ccrpDnisConfig 2 }
ccrpDnisGroupCallTypeEntry OBJECT-TYPE
SYNTAX CcrpDnisGroupCallTypeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, identifying a call type to
assign to calls within the DNIS group.
Entries in this table may be created and deleted via
the ccrpDnisGroupCallTypeRowStatus object or the
management console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpDnisGroupCallTypeRowStatus to
'createAndGo' or 'createAndWait'. Rows are deleted by
a SET request setting the value of ccrpDnisGroupRowStatus
to 'destroy'.
Creating a new row with a value of ccrpDnisGroupName
which does not yet exist in ccrpDnisGroupTable will
cause the new row's ccrpDnisGroupCallTypeOperStatus
to have the value 'missingDependency'.
Existing rows may be modified when the row is active."
INDEX { --?? IMPLIED may cause problems
IMPLIED ccrpDnisGroupName }
::= { ccrpDnisGroupCallTypeTable 1 }
CcrpDnisGroupCallTypeEntry ::= SEQUENCE {
ccrpDnisGroupCallType INTEGER,
ccrpDnisGroupCallTypeOperStatus CiscoRowOperStatus,
ccrpDnisGroupCallTypeRowStatus RowStatus
}
ccrpDnisGroupCallType OBJECT-TYPE
SYNTAX INTEGER {
digital(1),
speech(2),
undefined(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Call type to assign to calls arriving with
DNIS number in this entry's DNIS group."
DEFVAL { undefined }
::= { ccrpDnisGroupCallTypeEntry 1 }
ccrpDnisGroupCallTypeOperStatus OBJECT-TYPE
SYNTAX CiscoRowOperStatus
-- Rsyntax INTEGER {
-- active(1),
-- activeDependencies(2),
-- inactiveDependency(3),
-- missingDependency(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A control object to indicate the operational status
of this entry. This object is used to determine that
the dependencies for this entry are valid and active.
This entry is dependent on entries in
ccrpDnisGroupTable.
"
::= { ccrpDnisGroupCallTypeEntry 2 }
ccrpDnisGroupCallTypeRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpDnisGroupCallTypeEntry 3 }
ccrpCallDiscriminatorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpCallDiscriminatorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of call discriminator definitions.
A call discriminator enables call filtering based on
call DNIS and call type. Calls to a specific
DNIS which have call types identified in the
associated call discriminator definition will be
rejected."
::= { ccrpCallDiscriminatorConfig 1 }
ccrpCallDiscriminatorEntry OBJECT-TYPE
SYNTAX CcrpCallDiscriminatorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information about a
single call discriminator definition.
Entries in this table may be created and deleted via
the ccrpCDRowStatus object or the management
console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpCDRowStatus to 'createAndGo'
or 'createAndWait'. Rows are deleted by a SET request
setting the value of ccrpCDRowStatus to 'destroy'.
Deleting an entry from this table will cause
associated entries in dependent tables to transition
to a 'missingDependency' CiscoRowOperStatus.
Existing rows may be modified when the row is active."
INDEX { --?? IMPLIED may cause problems
IMPLIED ccrpCDName }
::= { ccrpCallDiscriminatorTable 1 }
CcrpCallDiscriminatorEntry ::= SEQUENCE {
ccrpCDName SnmpAdminString,
ccrpCDCallType OCTET STRING,
ccrpCDRowStatus RowStatus
}
ccrpCDName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..23))
-- Rsyntax OCTET STRING(SIZE(1..23))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name for this call discriminator definition"
::= { ccrpCallDiscriminatorEntry 1 }
ccrpCDCallType OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- digital(0)
-- speech(1)
-- v110(2)
-- v120(3)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates types of calls to be filtered by this
call discriminator definition.
This object is a bit map, with each bit representing
a different call type as identified below.
A 1-bit indicates that call type is filtered.
A 0-bit indicates that call type is not filtered.
Bit 0 - Digital
Bit 1 - Speech
Bit 2 - V.110
Bit 3 - V.120
Setting all defined bits to 1 would result in all calls
being rejected by this call discriminator.
Setting all defined bits to zero would result in all
calls being accepted by this discriminator."
DEFVAL { '00'h }
::= { ccrpCallDiscriminatorEntry 2 }
ccrpCDRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpCallDiscriminatorEntry 3 }
ccrpCDDiscriminatedGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpCDDiscriminatedGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Table identifying the groups to which each
call discriminator definition is applied."
::= { ccrpCallDiscriminatorConfig 2 }
ccrpCDDiscriminatedGrpEntry OBJECT-TYPE
SYNTAX CcrpCDDiscriminatedGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry identifies a group to be discriminated
by the call discriminator. There may be multiple
entries for the same call discriminator name.
The same [group name, group type] pair may appear
under multiple call discriminators.
Entries in this table may be created and deleted via
the ccrpCDDiscriminatedGroupRowStatus object or the
management console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpCDDnisGroupRowStatus to 'createAndGo'
or 'createAndWait'. Rows are deleted by a SET request
setting the value of ccrpCDDnisGroupRowStatus to
'destroy'.
Creating a new row with a value of ccrpCDName which
does not yet exist in ccrpCallDiscriminatorTable will
cause the new row's ccrpCDDiscriminatedGroupOperStatus
to have the value 'missingDependency'."
INDEX { ccrpCDName, ccrpCDDiscriminatedGroupName, ccrpCDDiscriminatedGroupType }
::= { ccrpCDDiscriminatedGrpTable 1 }
CcrpCDDiscriminatedGrpEntry ::= SEQUENCE {
ccrpCDDiscriminatedGroupName SnmpAdminString,
ccrpCDDiscriminatedGroupType INTEGER,
ccrpCDDiscriminatedGroupOperStatus CiscoRowOperStatus,
ccrpCDDiscriminatedGroupRowStatus RowStatus
}
ccrpCDDiscriminatedGroupName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..23))
-- Rsyntax OCTET STRING(SIZE(1..23))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name for the group being discriminated
If this is a DNIS group, the value of this object
is the same as some value of ccrmDnisGroupName."
::= { ccrpCDDiscriminatedGrpEntry 1 }
ccrpCDDiscriminatedGroupType OBJECT-TYPE
SYNTAX INTEGER {
dnis(1)
}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Indicates type of group being discriminated and
the table where the value of ccrpCDDiscriminatedGroupName
is defined.
dnis(1) - DNIS Group. Value in
ccrpCDDiscriminatedGroupName is same as
value of ccrpDnisGroupName in the
ccrpDnisGroupTable."
::= { ccrpCDDiscriminatedGrpEntry 2 }
ccrpCDDiscriminatedGroupOperStatus OBJECT-TYPE
SYNTAX CiscoRowOperStatus
-- Rsyntax INTEGER {
-- active(1),
-- activeDependencies(2),
-- inactiveDependency(3),
-- missingDependency(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A control object to indicate the operational status
of this entry. This object is used to determine that
the dependencies for this entry are valid and active.
This entry is currently only dependent on entries in
ccrpDnisGroupTable."
::= { ccrpCDDiscriminatedGrpEntry 3 }
ccrpCDDiscriminatedGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
associated entries in other tables are also active.
All values of RowStatus are allowed."
::= { ccrpCDDiscriminatedGrpEntry 4 }
ccrpResourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpResourceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Table of resource group definitions. Resources
within a group have identical capabilities.
Group membership or size is defined differently
depending on the nature of the resource.
Resources identified by physical locality (port-based)
are specified with multiple ranges in the
ccrpResourceRangeTable.
Alternatively, groups consisting of non-port
resources simply use a single limit to specify the
size.
The object ccrpResourcePortBased is used to indicate
the resource type.
"
::= { ccrpResourceConfig 1 }
ccrpResourceEntry OBJECT-TYPE
SYNTAX CcrpResourceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
An entry in the table, containing definition for
a single resource group.
Entries in this table may be created and deleted via
the ccrpResourceGroupRowStatus object or the management
console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpResourceGroupRowStatus to
'createAndGo' or 'createAndWait'. Rows are deleted by a
SET request setting the value of
ccrpResourceGroupRowStatus to 'destroy'.
Deleting an entry from this table will cause
associated entries in dependent tables to transition
to a 'missingDependency' CiscoRowOperStatus.
Existing rows may be modified when the row is active."
INDEX { --?? IMPLIED may cause problems
IMPLIED ccrpResourceName }
::= { ccrpResourceTable 1 }
CcrpResourceEntry ::= SEQUENCE {
ccrpResourceName SnmpAdminString,
ccrpResourcePortBased TruthValue,
ccrpResourceLimit Gauge,
ccrpResourceGroupOperStatus CiscoRowOperStatus,
ccrpResourceGroupRowStatus RowStatus
}
ccrpResourceName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..23))
-- Rsyntax OCTET STRING(SIZE(1..23))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name for this physical resource"
::= { ccrpResourceEntry 1 }
ccrpResourcePortBased OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates if the resources within this group are
are port-based or not.
Instantiating this with a value of false will also
instantiate ccrpResourceLimit."
DEFVAL { true }
::= { ccrpResourceEntry 2 }
ccrpResourceLimit OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the size of this resource group for
non-port based resources.
This object is not instantiated for port-based
resources."
DEFVAL { 0 }
::= { ccrpResourceEntry 3 }
ccrpResourceGroupOperStatus OBJECT-TYPE
SYNTAX CiscoRowOperStatus
-- Rsyntax INTEGER {
-- active(1),
-- activeDependencies(2),
-- inactiveDependency(3),
-- missingDependency(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A control object to indicate the operational status
of this entry. This object is used to determine that
the dependencies for this entry are valid and active.
This entry is dependent on entries in ccrpResourceRangeTable
if the value of ccrpResourcePortBased is true."
::= { ccrpResourceEntry 4 }
ccrpResourceGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpResourceEntry 5 }
ccrpResourceRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpResourceRangeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Table of physical resource range definitions. Resources
within a group have identical capabilities. The hardware
implementing the resources within a range must be of the
same type.
Multiple ranges may be associated with the same resource
group. Each range within a single resource group must
be of identical hardware type.
A resource range may not be associated with multiple
resource groups.
"
::= { ccrpResourceConfig 2 }
ccrpResourceRangeEntry OBJECT-TYPE
SYNTAX CcrpResourceRangeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
An entry in the table, containing definition for
a single physical resource range.
Each entry specifies a contiguous range of individual
resources using start and end identification.
The individual resources within a range must be of the
same type and capabilities.
Entries in this table may be created and deleted via
the ccrpResourceRangeRangeRowStatus object or the
management console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpResourceRangeRowStatus to
'createAndGo' or 'createAndWait'. Rows are deleted by a
SET request setting the value of
ccrpResourceRangeRowStatus to 'destroy'.
Deleting the last entry for a specific value of
ccrpResourceName from this table will cause
the associated entry in the dependent ccrpResourceTable
to transition to a 'missingDependency' CiscoRowOperStatus.
Existing rows may be modified when the row is active."
INDEX { ccrpResourceName, ccrpResourceRangeIndex }
::= { ccrpResourceRangeTable 1 }
CcrpResourceRangeEntry ::= SEQUENCE {
ccrpResourceRangeIndex Gauge,
ccrpResourceRangeStartPort PhysicalPosition,
ccrpResourceRangeEndPort PhysicalPosition,
ccrpResourceRangeOperStatus CiscoRowOperStatus,
ccrpResourceRangeRowStatus RowStatus
}
ccrpResourceRangeIndex OBJECT-TYPE
SYNTAX Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Index for this physical resource range within the
resource group."
::= { ccrpResourceRangeEntry 1 }
ccrpResourceRangeStartPort OBJECT-TYPE
SYNTAX PhysicalPosition
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
Range start for specifying resources within
this range.
The allowable values for each field within this
object is system specific.
The default value is
slot 0, port 0"
DEFVAL { 0 }
::= { ccrpResourceRangeEntry 2 }
ccrpResourceRangeEndPort OBJECT-TYPE
SYNTAX PhysicalPosition
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
Range end for specifying resources within
this range.
The allowable values for each field within this
object is system specific.
The default value is
slot 0, port 0"
DEFVAL { 0 }
::= { ccrpResourceRangeEntry 3 }
ccrpResourceRangeOperStatus OBJECT-TYPE
SYNTAX CiscoRowOperStatus
-- Rsyntax INTEGER {
-- active(1),
-- activeDependencies(2),
-- inactiveDependency(3),
-- missingDependency(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A control object to indicate the operational status
of this entry. This object is used to determine that
the dependencies for this entry are valid and active.
This entry is dependent on entries in
ccrpResourceGroupTable."
::= { ccrpResourceRangeEntry 4 }
ccrpResourceRangeRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpResourceRangeEntry 5 }
ccrpCustomerProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpCustomerProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of customer profiles definitions."
::= { ccrpCustomerProfileConfig 1 }
ccrpCustomerProfileEntry OBJECT-TYPE
SYNTAX CcrpCustomerProfileEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the table, containing information about a
single customer profile.
Entries in this table may be created and deleted via
the ccrpCPRowStatus object or the management
console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpCPRowStatus to 'createAndGo'
or 'createAndWait'. Rows are deleted by a SET request
setting the value of ccrpCPRowStatus to 'destroy'.
Deleting an entry from this table will cause
associated entries in dependent tables to transition
to a 'missingDependency' CiscoRowOperStatus.
Existing rows may be modified when the row is active."
INDEX { --?? IMPLIED may cause problems
IMPLIED ccrpCPName }
::= { ccrpCustomerProfileTable 1 }
CcrpCustomerProfileEntry ::= SEQUENCE {
ccrpCPName SnmpAdminString,
ccrpCPSessionLimit Gauge,
ccrpCPOverflow INTEGER,
ccrpCPRowStatus RowStatus
}
ccrpCPName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(1..23))
-- Rsyntax OCTET STRING(SIZE(1..23))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Name for this Customer Profile"
::= { ccrpCustomerProfileEntry 1 }
ccrpCPSessionLimit OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Simultaneous sessions limit for this customer profile.
This is a soft limit if overflow is allowed as
indicated in the object ccrpCPOverflow.
The allowable value range is platform specific."
DEFVAL { 0 }
::= { ccrpCustomerProfileEntry 2 }
ccrpCPOverflow OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Number of simultaneous sessions allowed over the
value specified in ccrpCPSessionLimit.
If this value is zero, no overflow is allowed and
ccrpCPSessionLimit is a hard limit.
If this value is -1, the is no overflow limit. All
calls will be accepted, up to the exhaustion of
system resources.
The allowable value range is platform specific."
DEFVAL { 0 }
::= { ccrpCustomerProfileEntry 3 }
ccrpCPRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row.
An entry may not exist in the active(1) state unless
all objects in the entry have an appropriate value.
All values of RowStatus are allowed."
::= { ccrpCustomerProfileEntry 4 }
ccrpCPDnisGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcrpCPDnisGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table identifying DNIS groups for each customer
profile"
::= { ccrpCustomerProfileConfig 2 }
ccrpCPDnisGrpEntry OBJECT-TYPE
SYNTAX CcrpCPDnisGrpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry identifying a DNIS group for customer
profile. There may be multiple entries for the
same customer profile name. A single DNIS group may
not be associated with more than one customer profile.
Entries in this table may be created and deleted via
the ccrpCPDnisGroupRowStatus object or the management
console on the system.
Using SNMP, rows are created by a SET request setting
the value of ccrpCPDnisGroupRowStatus to 'createAndGo'
or 'createAndWait'. Rows are deleted by a SET request
setting the value of ccrpCPDnisGroupRowStatus to
'destroy'.
Creating a new row with values of ccrpCPName or
ccrpDnisGroupName which do not yet exist in
ccrpCustomerProfileTable or ccrpDnisGroupTable
respectively will cause the new row's
ccrpCPDnisGroupOperStatus to have the value
'missingDependency'.
Existing rows may be modified when the row is active."
INDEX { ccrpCPName, --?? IMPLIED may cause problems
IMPLIED ccrpDnisGroupName }
::= { ccrpCPDnisGrpTable 1 }