-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-APPN-MIB
3213 lines (2873 loc) · 132 KB
/
CTRON-APPN-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
CTRON-APPN-MIB DEFINITIONS ::= BEGIN
-- ctron-appn-mib.txt
-- Revision: 1.00.03
-- Part Number: 2171066
-- Date: June 20, 1996
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides authoritative definitions for Cabletron's
-- enterprise specific APPN Routing Services MIB.
--
--
-- This module will be extended as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 95 Cabletron Systems
IMPORTS
OBJECT-TYPE
FROM RFC-1212
nwRtrProtoSuites
FROM ROUTER-OIDS
DisplayString
FROM RFC1213-MIB
Counter, TimeTicks
FROM RFC1155-SMI;
-- The APPN Router Group.
nwAppnRouter OBJECT IDENTIFIER ::= { nwRtrProtoSuites 5 }
nwAppnMibs OBJECT IDENTIFIER ::= { nwAppnRouter 1 }
nwAppnComponents OBJECT IDENTIFIER ::= { nwAppnRouter 2 }
-- APPN Router Component Groups
nwAppnSystem OBJECT IDENTIFIER ::= { nwAppnComponents 1 }
nwAppnForwarding OBJECT IDENTIFIER ::= { nwAppnComponents 2 }
nwAppnTopology OBJECT IDENTIFIER ::= { nwAppnComponents 4 }
nwAppnFib OBJECT IDENTIFIER ::= { nwAppnComponents 5 }
nwAppnEndSystems OBJECT IDENTIFIER ::= { nwAppnComponents 6 }
nwAppnAccessControl OBJECT IDENTIFIER ::= { nwAppnComponents 7 }
nwAppnFilters OBJECT IDENTIFIER ::= { nwAppnComponents 8 }
nwAppnRedirector OBJECT IDENTIFIER ::= { nwAppnComponents 9 }
nwAppnEvent OBJECT IDENTIFIER ::= { nwAppnComponents 10 }
nwAppnWorkGroup OBJECT IDENTIFIER ::= { nwAppnComponents 11 }
-- APPN Router System Groups
nwAppnSysConfig OBJECT IDENTIFIER ::= { nwAppnSystem 1 }
nwAppnSysAdministration OBJECT IDENTIFIER ::= { nwAppnSystem 2 }
-- APPN Router System Configuration Groups
nwAppnSysCfgLocalNode OBJECT IDENTIFIER ::= { nwAppnSysConfig 2 }
nwAppnSysCfgTables OBJECT IDENTIFIER ::= { nwAppnSysConfig 3 }
-- APPN Router Forwarding Groups
nwAppnFwdSystem OBJECT IDENTIFIER ::= { nwAppnForwarding 1 }
nwAppnFwdInterfaces OBJECT IDENTIFIER ::= { nwAppnForwarding 2 }
nwAppnFwdLinks OBJECT IDENTIFIER ::= { nwAppnForwarding 3 }
nwAppnFwdCounters OBJECT IDENTIFIER ::= { nwAppnFwdSystem 1 }
nwAppnFwdIfConfig OBJECT IDENTIFIER ::= { nwAppnFwdInterfaces 1 }
nwAppnIfCn OBJECT IDENTIFIER ::= { nwAppnFwdIfConfig 3 }
nwAppnFwdIfCounters OBJECT IDENTIFIER ::= { nwAppnFwdInterfaces 2 }
nwAppnFwdLsConfig OBJECT IDENTIFIER ::= { nwAppnFwdLinks 1 }
nwAppnFwdLsCounters OBJECT IDENTIFIER ::= { nwAppnFwdLinks 2 }
-- APPN Router Routing Groups
nwAppnDistanceVector OBJECT IDENTIFIER ::= { nwAppnTopology 1 }
nwAppnLinkState OBJECT IDENTIFIER ::= { nwAppnTopology 2 }
nwAppnIsr OBJECT IDENTIFIER ::= { nwAppnLinkState 1 }
nwAppnIsrSystem OBJECT IDENTIFIER ::= { nwAppnIsr 1 }
nwAppnIsrInterfaces OBJECT IDENTIFIER ::= { nwAppnIsr 2 }
nwAppnIsrDatabase OBJECT IDENTIFIER ::= { nwAppnIsr 3 }
nwAppnIsrFilters OBJECT IDENTIFIER ::= { nwAppnIsr 4 }
nwAppnIsrConfig OBJECT IDENTIFIER ::= { nwAppnIsrSystem 1 }
nwAppnIsrCounters OBJECT IDENTIFIER ::= { nwAppnIsrSystem 2 }
nwAppnIsrIfConfig OBJECT IDENTIFIER ::= { nwAppnIsrInterfaces 1 }
nwAppnIsrIfCounters OBJECT IDENTIFIER ::= { nwAppnIsrInterfaces 2 }
-- APPN Router Host End Systems Groups ( NOT USED )
nwAppnHostsSystem OBJECT IDENTIFIER ::= { nwAppnEndSystems 1 }
nwAppnHostsInterfaces OBJECT IDENTIFIER ::= { nwAppnEndSystems 2 }
-- APPN Router Event Log Group
nwAppnEventLogConfig OBJECT IDENTIFIER ::= { nwAppnEvent 1 }
nwAppnEventLogFilterTable OBJECT IDENTIFIER ::= { nwAppnEvent 2 }
nwAppnEventLogTable OBJECT IDENTIFIER ::= { nwAppnEvent 3 }
-- APPN MIB Group
-- This group contains information about the revision level of this
-- MIB within the device. It allows verification of the released
-- version without having to read other objects.
nwAppnMibRevText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the Cabletron APPN
Router MIB in textual format."
::= { nwAppnMibs 1 }
-- APPN Routing Services System Group
-- This group contains the objects related to APPN Routing Services at a
-- global system-wide level.
-- APPN Routing Services System Configuration Group
-- This group contains the objects that pertain to the setup and
-- configuration of APPN Routing Services at a global,
-- system-wide level.
nwAppnSysRouterId OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the APPN Fully-Qualified Control Point name that is used
to uniquely identify APPN Routing Services in an APPN network. The
name format is NNNNNNNN.CCCCCCCC where NNNNNNNN is the network
identifier and CCCCCCCC is the Control Point name. Valid characters
to make up these two strings are uppercase letters A through Z,
numerics 0 through 9, and the special characters $, @, and #. The
first character of the string must NOT be numeric. Each string must
be a maximum length of 8 characters with no embedded spaces and the
strings are joined by a dot. nwAppnSysRouterId cannot be modified
while APPN routing services is in any operational state other than
DISABLED as reflected in nwAppnSysOperStatus. Otherwise, the
request will be rejected."
::= { nwAppnSysConfig 1 }
-- APPN Routing Services System Group
-- This group contains the objects related to initializing APPN Routing Services
-- at a global, system-wide level.
-- All parameters (except for Stop Type) cannot be modified unless the
-- operational state is disabled. Otherwise, the request will be rejected.
nwAppnSysNodeType OBJECT-TYPE
SYNTAX INTEGER {
networknode(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the node type supported by APPN Routing Services which
is always of type Network Node. "
DEFVAL { networknode }
::= { nwAppnSysCfgLocalNode 1 }
nwAppnSysCpAlias OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Control Point alias name used by APPN Routing
Services. "
::= { nwAppnSysCfgLocalNode 2 }
nwAppnSysModeCosMap OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether mode to COS mapping is supported by
APPN Routing Services."
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 3 }
nwAppnSysMdsSupport OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether Management Services supports Multiple
Domain Support and Management Services capabilities. "
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 4 }
nwAppnSysMaxLocates OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum Number of locate requests that APPN Routing
Services can concurrently process. Note: if nwAppnSysMaxLocates is
set to a value too small, it will be internally increased to a
higher value after APPN Routing Services has been successfully
enabled. A subsequent GET operation on nwAppnSysMaxLocates will
reflect this new value."
DEFVAL { 10 }
::= { nwAppnSysCfgLocalNode 6 }
nwAppnSysDirCacheSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies number of located resources maintained in the Directory
Cache. Note: if nwAppnSysDirCacheSize is set to a value too small,
it will be internally increased to a higher value after APPN routing
services has been successfully enabled. A subsequent GET
operation on nwAppnSysDirCacheSize will reflect this new value. "
DEFVAL { 255 }
::= { nwAppnSysCfgLocalNode 7 }
nwAppnSysMaxDirEntries OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of directory entries. If zero is selected,
the number of entries is unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 8}
nwAppnSysLocateTimeout OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies time in seconds before a network search will timeout. Zero
indicates that the search has no timeout."
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 9 }
nwAppnSysRegCds OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the local or domain resources can be registered
with the Central Directory Server."
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 10 }
nwAppnSysMdsSendQSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies size of the MDS send alert Queue."
DEFVAL { 100 }
::= { nwAppnSysCfgLocalNode 11 }
nwAppnSysCosSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of COS definitions maintained in the COS
database weights cache. It determines the size of the COS Database
weights cache. Note: if nwAppnSysCosSize is set to a value too
small, it will be internally increased to a higher value after
APPN Routing Services has been successfully enabled. A subsequent
GET operation on nwAppnSysCosSize will reflect this new value. "
DEFVAL { 16 }
::= { nwAppnSysCfgLocalNode 12 }
nwAppnSysTreeSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the number of routes maintained in the Topology Database
routing tree cache. Note: if nwAppnSysTreeSize is set to a value
too small, it will be internally increased to a higher value after
APPN Routing Services has been successfully enabled. A subsequent
GET operation on nwAppnSysTreeSize will reflect this new value. "
DEFVAL { 40 }
::= { nwAppnSysCfgLocalNode 13 }
nwAppnSysTreeUseLimit OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum number of times a cached tree will be used to compute a
route before the tree is discarded and recomputed. This
allows the APPN Routing Services to balance sessions among
equal weight routes. A low value provides better load balancing
at the expense of increased activation latency. "
DEFVAL { 40 }
::= { nwAppnSysCfgLocalNode 14 }
nwAppnSysMaxTdmNodes OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of nodes that can be stored in the Topology
Database. Zero means unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 15 }
nwAppnSysMaxTdmTGs OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of transmission groups that can be stored in
Topology Database. Zero means unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 16 }
nwAppnSysMaxIsrSessions OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of intermediate routing sessions permitted
by APPN Routing Services at one time. This must be a non-negative
number."
DEFVAL { 1000 }
::= { nwAppnSysCfgLocalNode 18 }
nwAppnSysIsrUpperThresh OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The thresholds control the congestion status of APPN routing
services. If the number of ISR sessions exceeds the upper
threshold, congestion status changes from uncongested to congested.
When this occurs, the status will not become uncongested until the
the number of ISR sessions fall below the lower threshold. The
lower threshold should be less than the upper threshold to prevent
thrashing. The upper threshold should be lower than
nwAppnSysMaxIsrSessions. This must be a non-negative number."
DEFVAL { 900 }
::= { nwAppnSysCfgLocalNode 19 }
nwAppnSysIsrLowerThresh OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifes the number of ISR sessions at which congestion status will
revert to uncongested. This must be a non-negative number.
nwAppnSysIsrLowerThresh must be less than nwAppnSysIsrUpperThresh
to prevent thrashing. "
DEFVAL { 800 }
::= { nwAppnSysCfgLocalNode 20 }
nwAppnSysIsrMaxRuSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum RU size supported for intermediate sessions.
Note: the number provided will be rounded up to the
next valid RU size if necessary after APPN Routing Services has
been successfully enabled. A subsequent GET operation on
nwAppnSysMaxLocates will reflect this new value."
DEFVAL { 1024 }
::= { nwAppnSysCfgLocalNode 21 }
nwAppnSysIsrRcvPaceWind OBJECT-TYPE
SYNTAX INTEGER (1..63)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies suggested receive pacing window size for intermediate
sessions. This value may be used as a fixed window size for
fixed pacing, or as a tuning value for adaptive pacing. "
DEFVAL { 8 }
::= { nwAppnSysCfgLocalNode 22 }
nwAppnSysRtAddResist OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies a desirability factor for APPN Routing Services to
perform intermediate session routing. 255 is least desirable
and 0 is more desirable. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 23 }
nwAppnSysStopType OBJECT-TYPE
SYNTAX INTEGER {
abort(1), -- Shutdown APPN Routing Services immediately
immediate(2), -- deactivate links then abort(1)
quiesce(3), -- advertize quiesce, deactivate endpoint
-- sessions, then immediate(2)
quiesceIsr(4) -- allow all isr sessions to end then
-- quiesce(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of APPN Routing Services shutdown.
Once specified, select disable from nwAppnSysAdminStatus. The
shutdown choices are as follows:
abort(1) All APPN Routing Services components are immediately
stopped and resources released. To become active again,
the APPN Routing Services must be enabled.
immediate(2) APPN Routing Services immediately deactivates all links
then performs abort(1) processing.
quiesce(3) APPN Routing Services indicates to other APPN network
nodes that it is quiesced. Session limits
are reset on all modes, UNBINDs are issued
on all endpoint sessions (CP-CP sessions last),
and then immediate(2) processing is performed.
quiesceIsr(4) Allows all intermediate sessions to end,
then performs the quiesce(3) processing."
DEFVAL { quiesceIsr }
::= { nwAppnSysCfgLocalNode 24 }
nwAppnSysBlockNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(3))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 3 hexadecimal digit block number which
precedes the 5 digit id number in the 8 digit node id used in
XIDs and Alerts. The block number identifies the product type.
Both the block number and id number combined, uniquely identify
this instance of APPN Routing Services within the installation
network."
-- DEFVAL { 'e08'H }
::= { nwAppnSysCfgLocalNode 25 }
nwAppnSysIdNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(5))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 5 hexadecimal digit id number which follows
the 3 digit block number in the 8 digit node id used in XIDs and
Alerts. The id number uniquely identifies this instance of APPN
Routing Services within a product type indicated by the block number.
Both the block number and id number combined, uniquely identify
this instance of APPN Routing Services within the installation
network."
-- DEFVAL { '00000'H }
::= { nwAppnSysCfgLocalNode 26 }
-- APPN Router System Group - Local APPN Routing Service Parameters
-- This group contains tables related to configuring:
--
-- LU Definition Table
--
-- LU Table
--
nwAppnSysLuTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnSysLuEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains entries for LUs that are owned by adjacent
LEN nodes. Defining or deleting an entry is equivalent to defining
or deleting an entry in the directory database. To add an entry,
set nwAppnSysLuControl to other. To delete an entry, set
nwAppnSysLuControl to delete."
::= { nwAppnSysCfgTables 1 }
nwAppnSysLuEntry OBJECT-TYPE
SYNTAX NwAppnSysLuEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry defines an LU entry in the directory database. The
fully qualified CP name and the name of the LU are the indexes into
this table."
INDEX { nwAppnSysCpName, nwAppnSysLuName }
::= { nwAppnSysLuTable 1 }
NwAppnSysLuEntry ::= SEQUENCE {
nwAppnSysCpName DisplayString,
nwAppnSysLuName DisplayString,
nwAppnSysLuControl INTEGER
}
nwAppnSysCpName OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the fully qualified name of the Control Point
containing the LU being defined. The format of this name
is NNNNNNNN.CCCCCCCC where NNNNNNNN is the network identifier and
CCCCCCCC is the LU or Control Point name. Valid characters to make
up these two strings are uppercase letters A through Z, numerics 0
through 9 and the special charcters $, @, and #. The first character
of the name must NOT be numeric. Each string must be a maximum length
of 8 characters with no embedded spaces and the strings are joined by
a dot. This CP name must appear as an Adjacent CP in a link station
definition where the adjacent CP type is EN and CP-CP session support
is NO."
::= { nwAppnSysLuEntry 1 }
nwAppnSysLuName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the name of the LU being registered. The name format is
LLLLLLLL where LLLLLLLL are the characters: uppercase letters
A through Z, numerics 0 through 9, and the special characters
$, @, and #. The first character of the name must NOT be numeric.
The string must be a maximum length of 8 characters with no
embedded spaces. Note that the nework identifier of the LU is
taken from the fully qualified control point name of the adjacent
LEN node (nwAppnSysCpName) which owns the LU. "
::= { nwAppnSysLuEntry 2 }
nwAppnSysLuControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set this object to delete to remove an entry."
::= { nwAppnSysLuEntry 3 }
-- APPN System Administration Group
-- This group contains the objects that pertain to the administration of
-- APPN Routing Services at a global, system-wide level.
nwAppnSysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disable(2), -- shut down APPN Routing Services
enabled(3) -- start up APPN Routing Services
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the system-wide administrative state of APPN Routing Services.
If enable(3) is selected, APPN Routing Services is activated.
There are two cases: the very first activation, and activations
subsequent to the successful first activation. Before activating
APPN Routing Services the very first time, nwAppnSysRouterId in
the System Configuration branch and all objects under
nwAppnSysCfgLocalNode must be assigned a value. If not explicitly
assigned, default values will be used for objects under
nwAppnSysCfgLocalNode. After this first activation has completed
successfully, all objects under nwAppnSysCfgLocalNode will be
saved in non-volatile RAM and restored for the next node activation
at power up time. After this subsequent power up, enable(3) may be
selected without setting nwAppnSysRouterId or any objects under
under nwAppnSysCfgLocalNode. Those values defined prior to the
last power up or reset will be used.
If disable(2) is selected, APPN Routing Services will become
inactive in the manner specifed by nwAppnSysStopType. To
modify objects under nwAppnSysCfgLocalNode, nwAppnSysAdminStatus
must be disabled. "
::= { nwAppnSysAdministration 1 }
nwAppnSysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating system-wide status of APPN
Routing Services. "
::= { nwAppnSysAdministration 2 }
nwAppnSysAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets APPN Routing Services system-wide. Reset (2) forces a
restart of APPN Routing Services without a graceful shutdown on
any active router ports, without affecting any other routing
services."
::= { nwAppnSysAdministration 3 }
nwAppnSysOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwAppnOperStatus has been in its current state."
::= { nwAppnSysAdministration 4 }
nwAppnSysVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of APPN routing
services in textual format."
::= { nwAppnSysAdministration 5 }
-- APPN Forwarding Group
-- This group contains the managed objects used to setup and configure
-- APPN Routing Services for aggregate, system-wide, port Message Unit
-- (MU) and byte counters.
nwAppnFwdCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the aggregate, system-wide,
port Message Unit (MU) and byte counters. Enabled (3) causes
these counters to become active. Disabled (2) causes these
counters to become inactive."
::= { nwAppnFwdCounters 1 }
nwAppnFwdCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the aggregate, system-wide port Message Unit (MU)
and byte counters. Reset (2) resets the aggregate counters to 0.
nwAppnFwdCtrOperationalTime is also reset to 0."
::= { nwAppnFwdCounters 2 }
nwAppnFwdCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAppnFwdCtrAdminStatus has been in the current state."
::= { nwAppnFwdCounters 3 }
nwAppnFwdCtrInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been received system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 4 }
nwAppnFwdCtrOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been transmitted system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 5 }
nwAppnFwdCtrFwdMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been forwarded system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 6 }
nwAppnFwdCtrFilteredMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 7 }
nwAppnFwdCtrDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 8 }
nwAppnFwdCtrAddrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs)
that have been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain an address error(s)
in the SNA header."
::= { nwAppnFwdCounters 9 }
nwAppnFwdCtrLenErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain a length error."
::= { nwAppnFwdCounters 10 }
nwAppnFwdCtrHdrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain an SNA header error
other than an address or length error."
::= { nwAppnFwdCounters 11 }
nwAppnFwdCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates number of bytes in Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 12 }
nwAppnFwdCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs) that
have been forwarded system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 13 }
nwAppnFwdCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs) that
have been forwarded system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 14 }
nwAppnFwdCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 15 }
nwAppnFwdCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 16 }
nwAppnFwdCtrHostInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been delivered system-wide (for all ports), to local half
sessions during nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 17 }
nwAppnFwdCtrHostOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been successfully sent from local half sessions system-wide
(for all ports), to Path Control during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 18 }
nwAppnFwdCtrHostDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 19 }
nwAppnFwdCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs)
that have been delivered system-wide (for all ports), to
local half sessions during nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 20 }
nwAppnFwdCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs)
that have been successfully sent from local half sessions
system-wide (for all ports), to Path Control during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 21 }
nwAppnFwdCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 22 }
-- APPN Forwarding Port Table
-- This table contains the managed objects used to setup and configure
-- each port used by APPN Routing Services.
--
--
nwAppnFwdIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port which can
be used by APPN Routing Services. This table is indexed by
nwAppnFwdIfIndex, which indicates the value of MIB 2 ifindex
which identifes the router port for which an entry exists.
These port configuration entries will be provided automatically
based on physical port configuration. Such entries cannot be
deleted - only modified."
::= { nwAppnFwdIfConfig 1 }
nwAppnFwdIfEntry OBJECT-TYPE
SYNTAX NwAppnFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the APPN Routing Services port
configuration for the router port for which the entry exists."
INDEX { nwAppnFwdIfIndex }
::= { nwAppnFwdIfTable 1 }
NwAppnFwdIfEntry ::=
SEQUENCE {
nwAppnFwdIfIndex INTEGER,
nwAppnFwdIfAdminStatus INTEGER,
nwAppnFwdIfOperStatus INTEGER,
nwAppnFwdIfOperationalTime TimeTicks,
nwAppnFwdIfControl INTEGER,
nwAppnFwdIfMtu INTEGER,
nwAppnFwdIfForwarding INTEGER,
nwAppnFwdIfFrameType INTEGER,
nwAppnFwdIfAclIdentifier INTEGER,
nwAppnFwdIfAclStatus INTEGER,
nwAppnFwdIfCacheControl INTEGER,
nwAppnFwdIfCacheEntries Counter,
nwAppnFwdIfCacheHits Counter,
nwAppnFwdIfCacheMisses Counter
}
nwAppnFwdIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB2 ifindex, which identifies the
router port for which the entry exists. "
::= { nwAppnFwdIfEntry 1 }
nwAppnFwdIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of an APPN Routing Services
port for which the entry exists. enabled(3) causes the
APPN Routing Services port to become active. disable(2)
causes it to become inactive. There are various choices
for the method by which the port can be disabled, which are
enumerated by nwAppnExtIfStopType. "
::= { nwAppnFwdIfEntry 2 }
nwAppnFwdIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of the APPN Routing
Services port for which the entry exists."
::= { nwAppnFwdIfEntry 3 }
nwAppnFwdIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwAppnFwdIfOperStatus has been in the current state."
::= { nwAppnFwdIfEntry 4 }
nwAppnFwdIfControl OBJECT-TYPE
SYNTAX INTEGER {
other(1)
}
ACCESS read-write
STATUS mandatory