-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-AppleTalk-ROUTER-MIB
3339 lines (2991 loc) · 118 KB
/
CTRON-AppleTalk-ROUTER-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-AppleTalk-ROUTER-MIB DEFINITIONS ::= BEGIN
-- ctron-appletalk-router-mib.txt
-- Revision: 1.01.00
-- Part Number:
-- Date: August 11, 1995
-- 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 at 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
DisplayString, PhysAddress
FROM RFC1213-MIB
nwRouter, nwRtrProtoSuites
FROM ROUTER-OIDS
Counter, TimeTicks, Gauge
FROM RFC1155-SMI;
nwRtrExperimental OBJECT IDENTIFIER ::= { nwRouter 4 }
-- The At Router Group.
nwAtRouter OBJECT IDENTIFIER ::= { nwRtrProtoSuites 4 }
nwAtMibs OBJECT IDENTIFIER ::= { nwAtRouter 1 }
nwAtComponents OBJECT IDENTIFIER ::= { nwAtRouter 2 }
-- At Router Component Groups
nwAtSystem OBJECT IDENTIFIER ::= { nwAtComponents 1 }
nwAtForwarding OBJECT IDENTIFIER ::= { nwAtComponents 2 }
nwAtTopology OBJECT IDENTIFIER ::= { nwAtComponents 4 }
nwAtFib OBJECT IDENTIFIER ::= { nwAtComponents 5 }
nwAtEndSystems OBJECT IDENTIFIER ::= { nwAtComponents 6 }
nwAtAccessControl OBJECT IDENTIFIER ::= { nwAtComponents 7 }
nwAtFilters OBJECT IDENTIFIER ::= { nwAtComponents 8 }
nwAtRedirector OBJECT IDENTIFIER ::= { nwAtComponents 9 }
nwAtEvent OBJECT IDENTIFIER ::= { nwAtComponents 10 }
nwAtWorkGroup OBJECT IDENTIFIER ::= { nwAtComponents 11 }
nwAtNetDiag OBJECT IDENTIFIER ::= { nwAtComponents 12 }
-- At Router System Groups
nwAtSysConfig OBJECT IDENTIFIER ::= { nwAtSystem 1 }
nwAtSysAdministration OBJECT IDENTIFIER ::= { nwAtSystem 2 }
-- At Router Forwarding Groups
nwAtFwdSystem OBJECT IDENTIFIER ::= { nwAtForwarding 1 }
nwAtFwdInterfaces OBJECT IDENTIFIER ::= { nwAtForwarding 2 }
nwAtFwdCounters OBJECT IDENTIFIER ::= { nwAtFwdSystem 1 }
nwAtFwdIfConfig OBJECT IDENTIFIER ::= { nwAtFwdInterfaces 1 }
nwAtFwdIfCounters OBJECT IDENTIFIER ::= { nwAtFwdInterfaces 2 }
-- At Router Routing Groups
nwAtDistanceVector OBJECT IDENTIFIER ::= { nwAtTopology 1 }
nwAtLinkState OBJECT IDENTIFIER ::= { nwAtTopology 2 }
nwAtProto OBJECT IDENTIFIER ::= { nwAtDistanceVector 1 }
nwAtProtoSystem OBJECT IDENTIFIER ::= { nwAtProto 1 }
nwAtProtoInterface OBJECT IDENTIFIER ::= { nwAtProto 2 }
nwAtProtoConfig OBJECT IDENTIFIER ::= { nwAtProtoSystem 1 }
nwAtProtoCounters OBJECT IDENTIFIER ::= { nwAtProtoSystem 2 }
nwAtProtoIfConfig OBJECT IDENTIFIER ::= { nwAtProtoInterface 1 }
nwAtProtoIfCounters OBJECT IDENTIFIER ::= { nwAtProtoInterface 2 }
-- At Router Host End Systems Groups
nwAtHostsSystem OBJECT IDENTIFIER ::= { nwAtEndSystems 1 }
nwAtHostsInterfaces OBJECT IDENTIFIER ::= { nwAtEndSystems 2 }
nwAtHostsToMedia OBJECT IDENTIFIER ::= { nwAtEndSystems 3 }
-- At Router Access Control Group
-- At Router Filters Group
-- At Router Redirector Group
-- At Router Event Log Group
nwAtEventLogConfig OBJECT IDENTIFIER ::= { nwAtEvent 1 }
nwAtEventLogFilterTable OBJECT IDENTIFIER ::= { nwAtEvent 2 }
nwAtEventLogTable OBJECT IDENTIFIER ::= { nwAtEvent 3 }
-- At Router Work-Group Group
-- AT Network Diagnostic Group
nwAtNetDiagPing OBJECT IDENTIFIER ::= { nwAtNetDiag 1 }
nwAtNetDiagTelnet OBJECT IDENTIFIER ::= { nwAtNetDiag 2 }
nwAtNetDiagOutbound OBJECT IDENTIFIER ::= { nwAtNetDiag 3 }
AtNetworkNumber ::=
-- 2 octets of network number in network byte order
OCTET STRING (SIZE (2))
AtDdpNodeAddress ::=
-- 2 octets of net number in network byte order,
-- 1 octet of node number
OCTET STRING (SIZE (3))
AtName ::=
-- 0 to 32 octets of
-- AppleTalk ASCII [10]
OCTET STRING (SIZE (0..32))
-- At 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.
nwAtMibRevText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the Cabletron at
Routing Services MIB in textual format."
::= { nwAtMibs 1 }
-- At Router System Group
-- This group contains the objects that pertain to the at routing
-- services at a global, device-wide level.
-- At System Configuration Group
-- This group contains the objects that pertain to the setup and
-- configuration of the At routing services at a global,
-- device-wide level.
nwAtSysRouterId OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk node address used to uniquely identify the
host (device) running the AppleTalk Routing Services. The
value of nwAtSysRouterId is equal to the highest AppleTalk
node address assigned to any router port."
::= { nwAtSysConfig 1 }
-- At System Administration Group
-- This group contains the objects that pertain to the administration of
-- At routing services at a global, device-wide level.
nwAtSysAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- shutdown the router
enabled(3) -- startup the router
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of AppleTalk Routing
Services system wide. Enabled (3) causes AppleTalk Routing
Services to become active on all router ports configured
and enabled for AppleTalk Routing Services. Disabled (2)
causes AppleTalk Routing Services to become inactive
system-wide."
::= { nwAtSysAdministration 1 }
nwAtSysOperSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the operating condition of AppleTalk Routing
Services system- wide. The value of nwAtSysOperStatus
indicates any problem with your AppleTalk Routing Services
configuration. A value of 6 indicates that regardless of
the value of nwAtSysAdminStatus, AppleTalk Routing
Services is not operating because of an invalid
configuration."
::= { nwAtSysAdministration 2 }
nwAtSysAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets AppleTalk Routing Services system-wide. Reset (2)
forces a restart of AppleTalk Routing Services without a
graceful shutdown on any active router ports and without
affecting any other routing services."
::= { nwAtSysAdministration 3 }
nwAtSysOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtSysOperStatus has been in its current state."
::= { nwAtSysAdministration 4 }
nwAtSysVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the AppleTalk
Routing Services firmware, in textual format."
::= { nwAtSysAdministration 5 }
-- at Forwarding Group
-- This group contains the managed objects used to setup and configure
-- the at router ports for packet forwarding as well as the aggregate
-- and per-interface at packet forwarding counters.
-- at System-wide Packet Forwarding Counters
-- This group contains the aggregate (device-wide) at packet forwarding
-- counters. The byte counters include bytes for the network layer on
-- up, framing is not included.
nwAtFwdCtrAdminSTATUS 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) AppleTalk packet and byte counters.
Enabled (3) causes these counters to become active.
Disabled (2) causes these counters to become inactive."
::= { nwAtFwdCounters 1 }
nwAtFwdCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset(2) resets the aggregate (system-wide) AppleTalk
packet and byte counters. Reset (2) resets the AppleTalk
aggregate counters to 0.nwAtFwdCtrOperationalTime is also
reset to 0."
::= { nwAtFwdCounters 2 }
nwAtFwdCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtFwdCtrAdminStatus has been in the current state."
::= { nwAtFwdCounters 3 }
nwAtFwdCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been received, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 4 }
nwAtFwdCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 5 }
nwAtFwdCtrFwdPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been forwarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 6 }
nwAtFwdCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been administratively filtered, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 7 }
nwAtFwdCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 8 }
nwAtFwdCtrAddrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime because of addressing errors
in the AppleTalk header."
::= { nwAtFwdCounters 9 }
nwAtFwdCtrLenErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime, because an invalid packet
length is contained in the AppleTalk header."
::= { nwAtFwdCounters 10 }
nwAtFwdCtrHdrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of at packets that have been
discarded, device-wide, during nwAtFwdCtrOperationalTime,
because of an invalid at header."
::= { nwAtFwdCounters 11 }
nwAtFwdCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been received, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 12 }
nwAtFwdCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 13 }
nwAtFwdCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been forwarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 14 }
nwAtFwdCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been administratively filtered,
system-wide, during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 15 }
nwAtFwdCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded, system wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 16 }
nwAtFwdCtrHostInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been successfully delivered to the local host,
during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 17 }
nwAtFwdCtrHostOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted by the local host, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 18 }
nwAtFwdCtrHostDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded by the local host, during
nwAtFwdCtrOperationalTiime, due to a lack of host
resources."
::= { nwAtFwdCounters 19 }
nwAtFwdCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been received by the local host, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 20 }
nwAtFwdCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted by the local host,
during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 21 }
nwAtFwdCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded by the local host,
during nwAtFwdCtrOperationalTime, due to a lack of host
resources."
::= { nwAtFwdCounters 22 }
-- at Forwarding Interface Table
-- This table contains the managed objects used to set-up and configure
-- each router port.
nwAtFwdIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port.
This table is indexed by nwAtFwdIfIndex, which indicates
the value of MIB 2 ifindex, which identifies the router
port for which each entry exists."
::= { nwAtFwdIfConfig 1 }
nwAtFwdIfEntry OBJECT-TYPE
SYNTAX NwAtFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the AppeTalk Routing Services
configuration for the router port for which the entry
exists."
INDEX { nwAtFwdIfIndex }
::= { nwAtFwdIfTable 1 }
NwAtFwdIfEntry ::=
SEQUENCE {
nwAtFwdIfIndex INTEGER,
nwAtFwdIfAdminSTATUS INTEGER,
nwAtFwdIfOperSTATUS INTEGER,
nwAtFwdIfOperationalTime TimeTicks,
nwAtFwdIfControl INTEGER,
nwAtFwdIfMtu INTEGER,
nwAtFwdIfForwarding INTEGER,
nwAtFwdIfFrameType INTEGER,
nwAtFwdIfAclIdentifier INTEGER,
nwAtFwdIfAclSTATUS INTEGER,
nwAtFwdIfCacheControl INTEGER,
nwAtFwdIfCacheEntries Counter,
nwAtFwdIfCacheHits Counter,
nwAtFwdIfCacheMisses Counter
}
nwAtFwdIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of the MIB 2 ifIndex, which
identifies the router port for which the entry exists."
::= { nwAtFwdIfEntry 1 }
nwAtFwdIfAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of AppleTalk Routing
Services on the router port for which the entry exists.
Enabled (3) causes AppleTalk Routing Services to become
active. Disabled (2) causes it to become inactive."
::= { nwAtFwdIfEntry 2 }
nwAtFwdIfOperSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of AppleTalk
Routing Services on the AppleTalk router port for which
the entry exists. The value of nwAtFwdIfOperStatus
indicates any problem with the configuration of AppleTalk
Routing Services on the router port. A value of 6
indicates that regardless of the state of
nwAtFwdIfAdminStatus AppleTalk Routing Services is not
operating because of an invalid port-level configuration."
::= { nwAtFwdIfEntry 3 }
nwAtFwdIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtFwdIfOper Status has been in its current state."
::= { nwAtFwdIfEntry 4 }
nwAtFwdIfControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
add(2),
delete(3)
}
ACCESS read-write
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. Setting this
object has no effect."
::= { nwAtFwdIfEntry 5 }
nwAtFwdIfMtu OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Maximum Transmissions Unit (MTU) for
AppleTalk packets on the router port for which the entry
exists. This includes the AppleTalk header and data, but
does not include framing."
::= { nwAtFwdIfEntry 6 }
nwAtFwdIfForwarding OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls forwarding of AppleTalk packets on the
AppleTalk router port for which the entry exists.
Enabled (3) causes AppleTalk packets to be forwarded.
Disabled (2) prevents AppleTalk packets from being
forwarded."
::= { nwAtFwdIfEntry 7 }
nwAtFwdIfFrameType OBJECT-TYPE
SYNTAX INTEGER { -- valid media types
other(1), -- experimental
ethernet(2), -- ethernet
snap(3), -- enet,fddi,and token ring
nativewan(8), -- wan media types
encapenet(9), -- wan media types
encapenetsnap(11), -- wan media types
encapfddisnap(16), -- wan media types
canonical(17) -- special, tbd
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type for AppleTalk packets forwarded on the
router port for which the entry exists. Some frame types are only
valid for specific media types. The comments reflect those valid
media types."
DEFVAL { snap }
::= { nwAtFwdIfEntry 8 }
nwAtFwdIfAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Access Control ID of the access control
list in effect for AppleTalk packets being routed on
the router port for which the entry exists. A value of 0
indicates that no access control list is in effect."
::= { nwAtFwdIfEntry 9 }
nwAtFwdIfAclSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of any access control list
configured for AppleTalk traffic on the router port for
which the entry exists. Enabled (3) applies the access
control list indicated by the value of
nwAtFwdIfAclIdentifier to all AppleTalk traffic being
routed on the port. Disabled (2) prevents the access
control list from being applied."
::= { nwAtFwdIfEntry 10 }
nwAtFwdIfCacheControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls AppleTalk Address caching on the router port
for which the entry exists. When AppleTalk Address
caching is enabled, AppleTalk Addresses used for address
validation, filtering, and forwarding are stored in the
cache. This cache is checked first before doing a full
route table lockup, which speeds up the switching process.
Enabled (3) turns on AppleTalk Address caching.
Disabled (2) turns it off."
::= { nwAtFwdIfEntry 11 }
nwAtFwdIfCacheEntries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of entries in the AppleTalk Address
cache on the router port for which the entry exists."
::= { nwAtFwdIfEntry 12 }
nwAtFwdIfCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times entries in the AppleTalk
Address cache have been used to provide the AppleTalk
address required to validate, filter, or forward an
AppleTalk packet on the router port."
::= { nwAtFwdIfEntry 13 }
nwAtFwdIfCacheMisses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times the AppleTalk Address
required to validate, filter, or forward an AppleTalk
packet on the router port was not found in the AppleTalk
Address cache."
::= { nwAtFwdIfEntry 14 }
-- The at Interface Address Table
-- This table contains the managed object used to setup and configure
-- at addresses on a per router port basis.
nwAtportTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port
configured for AppleTalk Routing Services."
::= { nwAtFwdIfConfig 2 }
nwAtportEntry OBJECT-TYPE
SYNTAX NwAtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the AppleTalk address information
for the router port for which the entry exists."
INDEX { nwAtportIndex }
::= { nwAtportTable 1 }
NwAtportEntry ::= SEQUENCE {
nwAtportIndex INTEGER,
nwAtportDescr DisplayString,
nwAtportType INTEGER,
nwAtportNetStart AtNetworkNumber,
nwAtportNetEnd AtNetworkNumber,
nwAtportNetAddress AtDdpNodeAddress,
nwAtportSTATUS INTEGER,
nwAtportNetConfig INTEGER,
nwAtportZoneConfig INTEGER,
nwAtportZoneDefault AtName,
nwAtportIfIndex INTEGER,
nwAtportNetFrom AtDdpNodeAddress,
nwAtportZoneFrom AtDdpNodeAddress,
nwAtportInPkts Counter,
nwAtportOutPkts Counter,
nwAtportHome INTEGER,
nwAtportCurrentZone AtName,
nwAtportConflictPhysAddr OCTET STRING
}
nwAtportIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates a unique value for each router port. The value
of nwAtportIndex is an integer between 1 and the total
number of ports configured for AppleTalk Routing
Services."
::= { nwAtportEntry 1 }
nwAtportDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This text string provides a description of the port to
the end-user; it must not contain anything but printable
ASCII characters."
::= { nwAtportEntry 2 }
-- objects throughout the MIB key off of nwAtportType to determine
-- the format of address OCTET STRINGs. The address formats
-- are as follows:
-- localtalk, ethertalk1, ethertalk2, tokentalk, iptalk,
-- fdditalk, smdstalk, arctalk, and virtual take the format of
-- DdpNodeAddress
-- serialPPP: null OCTET STRING
-- serialNonstandard: vendor specific
-- aurp: see AURP MIB to determine format
-- frameRelay: 32 bit DLCI in network byte order
-- (OCTET STRING (SIZE (4)))
-- x25: X121Address (see RFC 1382)
-- ip: IpAddress (see RFC 1155)
-- osi: NSAP (OCTET STRING (SIZE (3..20)))
-- decnetIV: 6 bit area, 10 bit host in network byte order
-- (OCTET STRING (SIZE (2)))
-- arap: ???
-- isdnInThePacketMode: ???
-- nonAppleTalk3Com: based on ifType
-- ipx: 32 bit network number in network byte order followed
-- by datalink address of host
-- arns: 32 bit ARNS header
-- hdlc: DdpNodeAddress or null OCTET STRING
nwAtportType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
localtalk(2),
ethertalk1(3),
ethertalk2(4),
tokentalk(5),
iptalk(6),
serialPPP(7),
serialNonstandard(8),
virtual(9), -- an internal interface
fdditalk(10),
arctalk(11),
smdstalk(12),
aurp(13),
frameRelay(14),
x25(15),
ip(16),
osi(17),
decnetIV(18),
arap(19),
isdnInThePacketMode(20),
nonAppleTalk3Com(21),
ipx(22),
arns(23),
hdlc(24)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of nwArPortType indicates which link-layer
protocol is running immediately below DDP in the protocol
stack on the router port for which the entry exists. The
value of nwAtPortType determines the format of address
octet stings throughout the entire AppleTalk MIB."
::= { nwAtportEntry 3 }
nwAtportNetStart OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The first AppleTalk network address in the network range
configured for the port. If the port is not a native
AppleTalk port, this object will have the value of two
octets of zero. Set this value to the first network
address in the network range configured for the port."
::= { nwAtportEntry 4 }
nwAtportNetEnd OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The last AppleTalk network address in the network range
configured for the port. If the network to which this
AppleTalk port is connected is a non-extended network, or
if it is not a native AppleTalk port, the value for
nwAtportNetEnd will be two octets of zero. Set this value
to the last network address in the network range
configured for the port."
::= { nwAtportEntry 5 }
nwAtportNetAddress OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk node number configured for the port. This
value may be used as a hint for an initial node number
used during node-finding. If the port is not a native
AppleTalk port, this object shall have the value of
three octets of zero."
::= { nwAtportEntry 6 }
nwAtportSTATUS OBJECT-TYPE
SYNTAX INTEGER {
routing(1), -- this port is fully configured and routing
unconfigured(2),
off(3),
invalid(4),
endNode(5), -- this port is acting as an end node
offDueToConflict(6), -- port is off due to configuration
other(7) -- none of the states defined above
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the current state of the router port's
AppleTalk configuration. If either nwAtportNetConfig or
nwApportZoneConfig are set to (5), conflictAverseSeed,
and either the configured network number range or zone
name seeded by the port conflict with the settings of a
neighbor router, nwApPortStatus will have a value of (6),
offDueToConflict."
::= { nwAtportEntry 7 }
nwAtportNetConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1),
garnered(2),
guessed(3),
unconfigured(4),
conflictAverseSeed(5),
softSeed(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the network configuration type of the port.
If the port is not a native AppleTalk port, this object
will have an unconfigured (4) value."
::= { nwAtportEntry 8 }
nwAtportZoneConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1),
garnered(2),
guessed(3),
unconfigured(4),
conflictAverseSeed(5),
softSeed(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the zone information configuration type of the port. If the port is not a native AppleTalk port, this object will have an unconfigured (4) value."
::= { nwAtportEntry 9 }
nwAtportZoneDefault OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the name of the default zone for the port. If
the port only has one zone, that zone is represented
here. If the port is not a native AppleTalk port, this
object will contain an octet string of zero length."
::= { nwAtportEntry 10 }
nwAtportIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifIndex, which identifies
the router port for which the entry exists."
::= { nwAtportEntry 11 }
nwAtportNetFrom OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When nwAtportNetConfig is set to garnered (2), this
variable contains the DDP address of the entity from