-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNETLINK-SPECIFIC-MIB
10347 lines (9260 loc) · 383 KB
/
NETLINK-SPECIFIC-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
NETLINK-SPECIFIC-MIB DEFINITIONS ::= BEGIN
-- **************************************************************************
-- * *
-- * CSI Netlink *
-- * *
-- * File: netlink-mib.txt *
-- * Release: 4.0.0 (with some pre 4.0.2 Voice Additions *
-- * Release Date: April 3, 1998 *
-- * *
-- **************************************************************************
-- * *
-- * Copyright (c) 1998 by CSI Netlink. All rights reserved. No part of *
-- * this work covered by copyrights herein may be reproduced or copied in *
-- * any form or by any means - electronic, graphic, or mechanical, *
-- * including photocopying, recording, taping, or using information and *
-- * retrieval systems - without prior written permission from CSI Netlink. *
-- * *
-- * This is proprietary information which is protected by copyright. *
-- * Netlink, FRX4000 (TM), FRX6000 (TM), FRX7000 (TM), and FRX8000 (TM) *
-- * are trademarks of Cabletron Systems, Inc. NetFRAD (TM) and OmniLinx *
-- * Switch (TM) are trademarks of CSI Netlink. All other product *
-- * designations are the property of their respective owners. *
-- * *
-- **************************************************************************
IMPORTS
OBJECT-TYPE
FROM RFC-1212
RowStatus, MacAddress, TimeInterval
FROM SNMPv2-TC
mib-2, DisplayString, PhysAddress
FROM RFC1213-MIB
enterprises, mgmt, TimeTicks, Gauge, Counter, IpAddress, NetworkAddress
FROM RFC1155-SMI;
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in RFC 1212.
-- textual conventions
-- DisplayString ::= OCTET STRING
-- This data type is used to model textual information taken
-- from the NVT ASCII character set. By convention, objects
-- with this syntax are declared as having
--
-- SIZE (0..255)
-- PhysAddress ::= OCTET STRING
-- This data type is used to model media addresses. For many
-- types of media, this will be in a binary representation.
-- For example, an ethernet address would be represented as
-- a string of 6 octets.
NlSubscriberAddress ::= OCTET STRING (SIZE(1..15))
-- this should really be a X121Address, which is defined in RFC 1382 as
-- X121Address ::= OCTET STRING (SIZE(0..17))
-- 0 to 17 bytes in length containing the ASCII
-- characters [0-9], each octet contains one digit
-- of the address.
-- Since we only support non-TOA/NPI type addresses (see X.25 Blue Book)
-- our addresses are upto 15 digits.
-- Since we cannot configure empty addresses, the minimum is 1 digit,
-- which suits us, since indices need at least one component.
-- NOTE: need to support wildcard characters '?' and '*'.
-- NOTE: the screen interface allows 'U' and 'G', which is a bug.
-- Also, since we use it as an index, we could use the binary equivalent
-- of decimal digits, rather than the ASCII equivalent. But, since digits
-- besides decimal digits are used (?, *) we prefer the ASCII representation.
-- This will make usage from most management applications (ie. browsers) a
-- little more complicated, but no funny mapping is done.
-- We use the SMI rules for variable-string indexing (first subid specifies
-- the length, the rest of the subids are big-endian).
-- the following RFC 1747 object type is used by the SDLC link station
-- tables defined in this mib.
snaDLC OBJECT IDENTIFIER ::= {mib-2 41}
sdlc OBJECT IDENTIFIER ::= {snaDLC 1}
sdlcLSGroup OBJECT IDENTIFIER ::= {sdlc 2}
sdlcLSAdminTable OBJECT IDENTIFIER ::= {sdlcLSGroup 1}
sdlcLSAdminEntry OBJECT IDENTIFIER ::= {sdlcLSAdminTable 1}
sdlcLSAddress OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the poll address of the
secondary link station for this SDLC link. It
uniquely identifies the SDLC link station
within a single SDLC port."
::= { sdlcLSAdminEntry 1 }
netlink OBJECT IDENTIFIER ::= { enterprises 173 }
-- ***********************
-- * THE NETWORK GROUP *
-- ***********************
network OBJECT IDENTIFIER ::= { netlink 6 }
netstat OBJECT IDENTIFIER ::= { network 1 }
--
-- The netstat group is used to describe network status information for
-- a node. It only applies to the FRX8000 nodes since the FRX4000s and
-- FRX6000s have no knowledge of any other nodes.
--
nsMaxNeigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Maximum number of neighbor nodes. This value is currently
always 64 for FRX8000 and 20 for an N7400 or 7500.
A neighbor is the closest node in a path from the local node."
::= { netstat 1 }
nsThisNode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "This nodes number. (1-250) "
::= { netstat 2 }
nsNodTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table showing all nodes known to this node
along with status and neighbor information."
::= { netstat 3 }
nsEntry OBJECT-TYPE
SYNTAX NsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Each entry of the node table is indexed by
node number."
INDEX { nsNodNum }
::= { nsNodTable 1 }
NsEntry ::=
SEQUENCE {
nsNodNum
INTEGER,
nsStatus
INTEGER,
nsNumNeigh
INTEGER
}
nsNodNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The node number of the desired node. This is the
index into the node table."
::= { nsEntry 1 }
nsStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The operational status of the node. The status is
given as:
1 = Node is defined in the database;
9 = Node is operational;"
::= { nsEntry 2 }
nsNumNeigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Current number of neighbor nodes to this node."
::= { nsEntry 3 }
nsNeighTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsNeighEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The neighbor table lists the status of a nodes
neighbors."
::= { netstat 4 }
nsNeighEntry OBJECT-TYPE
SYNTAX NsNeighEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table entries are indexed by the node number and
the neighbors node number."
INDEX { nsNTNode, nsNTNeigh }
::= { nsNeighTable 1 }
NsNeighEntry ::=
SEQUENCE {
nsNTNode
INTEGER,
nsNTNeigh
INTEGER,
nsNTNeighStat
INTEGER
}
nsNTNode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The node number of the node whose neighbor's status
is being sought."
::= { nsNeighEntry 1 }
nsNTNeigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The node number of the neighbor whose status is being
sought."
::= { nsNeighEntry 2 }
nsNTNeighStat OBJECT-TYPE
SYNTAX INTEGER { notConnected(1),
connected(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The status of the neighbor node given as:
1 = previously, but not currently, connected;
2 = Currently connected; "
::= { nsNeighEntry 3 }
-- ********************
-- * THE NODE GROUP *
-- ********************
local OBJECT IDENTIFIER ::= { netlink 7 }
node OBJECT IDENTIFIER ::= { local 1 }
nodeCfgTable OBJECT IDENTIFIER ::= { node 1 }
nodeAlmTable OBJECT IDENTIFIER ::= { node 2 }
nodeSNMPGroup OBJECT IDENTIFIER ::= { node 3 }
--
-- The NODE group is used to describe configuration of the node
--
nodeModel OBJECT-TYPE
SYNTAX INTEGER { model1(1),
model2(2),
rackmount(3),
highavail(4),
netfrad(5),
frx4000(6),
ss1800(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Describes the unit model"
::= { nodeSNMPGroup 1 }
--
-- The Traps group provides information about Traps on the node
--
nodeTrapText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION "Text of the last alarm generated"
::= { nodeSNMPGroup 2 }
nodeTrapAdrTable OBJECT-TYPE
SYNTAX SEQUENCE OF TpAdrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table used to define the IP address of end-nodes
to receive alarms generated by this node. Up to 16 addresses
can be specified."
::= { nodeSNMPGroup 3 }
tpAdrEntry OBJECT-TYPE
SYNTAX TpAdrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A Trap entry containing objects relating to SNMP traps."
INDEX { tpAdrIdx }
::= { nodeTrapAdrTable 1 }
TpAdrEntry ::=
SEQUENCE {
tpAdrIdx
INTEGER,
tpAddress
IpAddress,
tpAdrFlag
INTEGER,
tpAdrSLev
INTEGER
}
tpAdrIdx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The index into the trap configuration table"
::= { tpAdrEntry 1 }
tpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "The IP Address of the end-station to send alarms"
::= { tpAdrEntry 2 }
tpAdrFlag OBJECT-TYPE
SYNTAX INTEGER { disableTraps(1),
enableTraps(2),
delete(3) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Defines the state of this entry as:
0 = Do not send traps to the Address;
1 = Send traps to the Address;
2 = This Address entry is deleted from the table; "
::= { tpAdrEntry 3 }
tpAdrSLev OBJECT-TYPE
SYNTAX INTEGER { critical(1),
major(2),
minor(3),
informational(4) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Lowest severity level traps that will be sent to
this Address; 1 is the highest, 4 is the lowest."
::= { tpAdrEntry 4 }
nodeBagTable OBJECT IDENTIFIER ::= { node 4 }
-- *****************************
-- * THE HARDWARE CARD GROUP *
-- *****************************
hwcard OBJECT IDENTIFIER ::= { local 2 }
--
-- This item describes the Max number of Protocols allowed on each RLP
--
rlpMaxProtos OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "Maximum number of protocols allowed on each RLP.
This value is currently 11 for FRX4000s, 9 for FRX6000s, and
5 for FRX7000s and FRX8000s."
::= { hwcard 1 }
--
-- The RLP Table used to describe each RLP on a node
--
rlpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A Table to describe each RLP on the node"
::= { hwcard 2 }
rlpEntry OBJECT-TYPE
SYNTAX RlpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An RLP entry containing objects relating to RLPs."
INDEX { rlpIndex }
::= { rlpConfigTable 1 }
RlpEntry ::=
SEQUENCE {
rlpIndex
INTEGER,
rlpStatus
INTEGER,
rlpMemorySize
INTEGER,
rlpLIC1Type
INTEGER,
rlpLIC2Type
INTEGER,
rlpProtocol
OCTET STRING,
rlpGroupNumber
INTEGER,
rlpGroupResponsibility
INTEGER
}
rlpIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The RLP number on the node"
::= { rlpEntry 1 }
rlpStatus OBJECT-TYPE
SYNTAX INTEGER { installed(1),
configured(2),
load-failed(3),
loading(4),
ipl-failed(5),
ipl-in-progress(6),
failed(7),
operational(8),
power-off(9),
power-on(10) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The current state of this RLP"
::= { rlpEntry 2 }
rlpMemorySize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of memory installed on this RLP"
::= { rlpEntry 3 }
rlpLIC1Type OBJECT-TYPE
SYNTAX INTEGER { none(1),
rs232(2),
rs422(3),
v35(4) ,
hs-rs232(5),
x21(6),
rs449(7),
universal(8),
t1(10),
e1(11),
voice(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Type of Line Interface card in the first position"
::= { rlpEntry 4 }
rlpLIC2Type OBJECT-TYPE
SYNTAX INTEGER { none(1),
rs232(2),
rs422(3),
v35(4) ,
hs-rs232(5),
x21(6),
rs449(7),
universal(8),
t1(10),
e1(11),
voice(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Type of Line Interface card in the second position"
::= { rlpEntry 5 }
rlpProtocol OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION "The protocols configured on this RLP. This is an OCTET
STRING where each octet represents a protocol type. The size of this
is the maximum number of protocols allowed on an RLP (rlpMaxProtos).
The protocol types are defined as:
00 = none
01 = X.25
02 = Frame Relay
03 = Async
04 = SDLC
05 = BSC Interactive
07 = IP
08 = SNMP
09 = RIP
0A = LLC2
0B = Trunk
0C = IPX
0D = Config
0E = LLC2-R
0F = IP-R
10 = NVSP
11 = Bridge
"
::= { rlpEntry 6 }
rlpGroupNumber OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The group to which this RLP belongs- always 1 if not
FRX7000."
::= { rlpEntry 7 }
rlpGroupResponsibility OBJECT-TYPE
SYNTAX INTEGER {
primary (1),
secondary (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The responsibility of this RLP within its group, always
primary if not FRX7000."
::= { rlpEntry 8 }
-- ********************
-- * THE PORT GROUP *
-- ********************
port OBJECT IDENTIFIER ::= { local 3 }
portX25Group OBJECT IDENTIFIER ::= { port 1 }
portPhyX25AdminTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortPhyX25AdminEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains Netlink Enterprise specific
objects to manage an X25 port. Changing one of
these parameters may take effect in the operating
port immediately or may wait until the interface is
restarted depending on the details of the
implementation.
Most of the objects in this read-write table have
corresponding read-only objects in the
portX25OperTable that return the current
operating value.
The operating values may be different from these
configured values if a configured parameter was
configured after the interface was started."
::= { portX25Group 1 }
portPhyX25AdminEntry OBJECT-TYPE
SYNTAX PortPhyX25AdminEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of configured values for an X25 port."
INDEX { nlIfRlp, nlIfPort }
::= { portPhyX25AdminTable 1 }
PortPhyX25AdminEntry ::= SEQUENCE
{
portPhyX25AdminConnector INTEGER,
portPhyX25AdminSpeed INTEGER,
portPhyX25AdminGenerateClock INTEGER,
portPhyX25AdminRcvClockFromDTE INTEGER,
portPhyX25AdminDialOut INTEGER,
portPhyX25AdminInactivityTimer INTEGER,
portPhyX25AdminDisconnectTimer INTEGER,
portPhyX25AdminSetupTimer INTEGER,
portPhyX25AdminTrunkFlag INTEGER,
portPhyX25AdminTrunkGroup OCTET STRING,
portPhyX25AdminRowStatus RowStatus
}
portPhyX25AdminConnector OBJECT-TYPE
SYNTAX INTEGER{
rs232 (3),
v35 (5),
rs449 (6),
rs530 (7),
x21 (8),
t1 (10),
e1 (11)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Physical port interface connector type."
::= { portPhyX25AdminEntry 1 }
portPhyX25AdminSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object defines the speed of the X25 port. The speed may
only be set to one of a series of reasonable values, and if an attempt
is made to set the speed to a value which is within the valid range
but not equal to one of these values, the speed will be rounded up.
If the connector type of the port is RS232, the port could be a
standard port or a high speed port. If the port is a high speed
RS232 port, the maximum valid speed is 256000. If the port is a
standard RS232 port, the maximum valid speed is 64000 on the
FRX4000/SS1840 and 19200 on all other products. It may be possible
to set the speed of a standard RS232 port to a speed which is valid
for a high speed RS232 port but invalid for a standard RS232 port.
In this case, the port may not end up having the invalid speed.
The default speed for a standard RS232 port on the FRX6000 is 19200."
DEFVAL { 64000 }
::= { portPhyX25AdminEntry 2 }
portPhyX25AdminGenerateClock OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the port will generate the clock
necessary to synchronize traffic over the link."
DEFVAL { no }
::= { portPhyX25AdminEntry 3 }
portPhyX25AdminRcvClockFromDTE OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object defines whether the receive clock
will be used from the DTE."
DEFVAL { no }
::= { portPhyX25AdminEntry 4 }
portPhyX25AdminDialOut OBJECT-TYPE
SYNTAX INTEGER {
none(1),
dialIn(2),
dialOut(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This flag indicates whether the port is connected to a dial
modem, and whethter connections will be initiated through
dial-in or dial-out calls."
DEFVAL { none }
::= { portPhyX25AdminEntry 5 }
portPhyX25AdminInactivityTimer OBJECT-TYPE
SYNTAX INTEGER (1..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This timer defines in minutes, the period of inactivity
allowed between calls. Once the timer expires, the port
is disabled untill the next call is placed, if a Dial out
port, or the Disconnect Timer expires, if a Dial in port.
This variable is only meaningful if the port is a Dial port."
DEFVAL { 5 }
::= { portPhyX25AdminEntry 6 }
portPhyX25AdminDisconnectTimer OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This timer defines, in seconds, the length of time a
dial-in port will remain disabled after expiration of the
InActivity Timer."
DEFVAL { 5 }
::= { portPhyX25AdminEntry 7 }
portPhyX25AdminSetupTimer OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This timer determines the length of time, in seconds, that
a response must be received by the port, after entering the
Linkup state. If a response is not received, the port enters
a Failed state."
DEFVAL { 5 }
::= { portPhyX25AdminEntry 8 }
portPhyX25AdminTrunkFlag OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This flag, when set, indicates the port is associated
with a network trunk group. It will be disabled/enabled
if the network trunk is not operational."
DEFVAL { no }
::= { portPhyX25AdminEntry 9 }
portPhyX25AdminTrunkGroup OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable contains a string of 8 bytes, with each
byte indicating 8 ports on an RLP that may be a part of
a trunk group. Since a TurboFrad has only 1 RLP, only the
first byte is valid if the node is an FRX4000. Each
port is represented by a single bit within the RLP byte.
The bit position represents the port number...for example,
if port 2 on RLP 0 was in a trunk group, the first byte of
the string would contain x04 and all other bytes would be 0."
::= { portPhyX25AdminEntry 10 }
portPhyX25AdminRowStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable is used to manage the creation and deletion
of conceptual rows in the portPhyX25AdminTable and follows the
SNMPv2 RowStatus conventions by supporting the following values:
- `active', which indicates that the conceptual row is
available for use by the managed device, and which is
supplied by a management station wishing to exercise an
on-line update of the existing conceptual row. For a
management protocol set operation, a genErr response is
returned when the row does not exist.
- `createAndGo', which is supplied by a management
station wishing to create a new instance of a
conceptual row and to have its status automatically set
to active, making it available for use by the managed
device. For a management protocol set operation, a
genErr response is returned when the row already exists.
- `destroy', which is supplied by a management station
wishing to delete all of the instances associated with
an existing conceptual row.
Note that all of the above values may be specified in a
management protocol set operation, and only the 'active'
value will be returned in response to a management protocol
retrieval operation. For a management protocol set operation,
if other variable bindings are included in the same PDU, then
a genErr response is returned."
::= { portPhyX25AdminEntry 11 }
portPhyX25OperTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortPhyX25OperEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains Netlink Enterprise specific
objects to manage an X25 port. Changing one of
these parameters may take effect in the operating
port immediately or may wait until the interface is
restarted depending on the details of the
implementation.
All of the objects in this table are read-only.
The operating values may be different from these
configured values if a configured parameter was
configured after the interface was started."
::= { portX25Group 2 }
portPhyX25OperEntry OBJECT-TYPE
SYNTAX PortPhyX25OperEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of configured values for an X25 port."
INDEX { nlIfRlp, nlIfPort }
::= { portPhyX25OperTable 1 }
PortPhyX25OperEntry ::= SEQUENCE
{
portPhyX25OperConnector INTEGER,
portPhyX25OperSpeed INTEGER,
portPhyX25OperGenerateClock INTEGER,
portPhyX25OperRcvClockFromDTE INTEGER,
portPhyX25OperDialOut INTEGER,
portPhyX25OperInactivityTimer INTEGER,
portPhyX25OperDisconnectTimer INTEGER,
portPhyX25OperSetupTimer INTEGER,
portPhyX25OperTrunkFlag INTEGER,
portPhyX25OperTrunkGroup OCTET STRING
}
portPhyX25OperConnector OBJECT-TYPE
SYNTAX INTEGER{
rs232 (3),
v35 (5),
rs449 (6),
rs530 (7),
x21 (8),
t1 (10),
e1 (11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Physical port interface connector type."
::= { portPhyX25OperEntry 1 }
portPhyX25OperSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object defines the speed of the X25 port. The speed may
only be set to one of a series of reasonable values, and if an attempt
is made to set the speed to a value which is within the valid range
but not equal to one of these values, the speed will be rounded up.
If the connector type of the port is RS232, the port could be a
standard port or a high speed port. If the port is a high speed
RS232 port, the maximum valid speed is 256000. If the port is a
standard RS232 port, the maximum valid speed is 64000 on the
FRX4000/SS1840 and 19200 on all other products. It may be possible
to set the speed of a standard RS232 port to a speed which is valid
for a high speed RS232 port but invalid for a standard RS232 port.
In this case, the port may not end up having the invalid speed.
The default speed for a standard RS232 port on the FRX6000 is 19200."
::= { portPhyX25OperEntry 2 }
portPhyX25OperGenerateClock OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies whether the port will generate the clock
necessary to synchronize traffic over the link."
::= { portPhyX25OperEntry 3 }
portPhyX25OperRcvClockFromDTE OBJECT-TYPE
SYNTAX INTEGER {
no (1),
yes (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object defines whether the receive clock will be
used from the DTE."
::= { portPhyX25OperEntry 4 }
portPhyX25OperDialOut OBJECT-TYPE
SYNTAX INTEGER {
none(1),
dialIn(2),
dialOut(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This flag indicates whether the port is connected to a dial
modem, and whethter connections will be initiated through
dial-in or dial-out calls."
::= { portPhyX25OperEntry 5 }
portPhyX25OperInactivityTimer OBJECT-TYPE
SYNTAX INTEGER (1..30)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This timer defines in minutes, the period of inactivity
allowed between calls. Once the timer expires, the port
is disabled untill the next call is placed, if a Dial out
port, or the Disconnect Timer expires, if a Dial in port.
This variable is only meaningful if the port is a Dial port."
::= { portPhyX25OperEntry 6 }
portPhyX25OperDisconnectTimer OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This timer defines, in seconds, the length of time a
dial-in port will remain disabled after expiration of the
InActivity Timer."
::= { portPhyX25OperEntry 7 }
portPhyX25OperSetupTimer OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This timer determines the length of time, in seconds, that
a response must be received by the port, after entering the
Linkup state. If a response is not received, the port enters
a Failed state."
::= { portPhyX25OperEntry 8 }
portPhyX25OperTrunkFlag OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This flag, when set, indicates the port is associated
with a network trunk group. It will be disabled/enabled
if the network trunk is not operational."
::= { portPhyX25OperEntry 9 }
portPhyX25OperTrunkGroup OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable contains a string of 8 bytes, with each
byte indicating a port on this RLP that may be a part of
a trunk group."
::= { portPhyX25OperEntry 10 }
-- Admin Table for X25 logical ports
portLogicalX25AdminTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortLogicalX25AdminEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains Netlink Enterprise specific
objects to manage an X25 Logical port. Changing one of
these parameters may take effect in the operating
port immediately or may wait until the interface is
restarted depending on the details of the
implementation.
The operating values may be different from these
configured values if a configured parameter was
configured after the interface was started."
::= { portX25Group 3 }
portLogicalX25AdminEntry OBJECT-TYPE
SYNTAX PortLogicalX25AdminEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of configured values for an X25 logical port."
INDEX { nlIfRlp, nlIfPhyPort, nlIfPort }
::= { portLogicalX25AdminTable 1 }
PortLogicalX25AdminEntry ::= SEQUENCE
{
portLogicalX25AdminFrDlci INTEGER,
portLogicalX25AdminCxnPriority INTEGER,
portLogicalX25AdminRfc1490 INTEGER,
portLogicalX25AdminBAG INTEGER,
portLogicalX25AdminRowStatus RowStatus
}
portLogicalX25AdminFrDlci OBJECT-TYPE
SYNTAX INTEGER (16..991)
ACCESS read-write
STATUS mandatory
DESCRIPTION
" The DLCI number used to identify the entry in the table. The
range is 16-991. "
DEFVAL { 16 }
::= { portLogicalX25AdminEntry 1 }
portLogicalX25AdminCxnPriority OBJECT-TYPE
SYNTAX INTEGER (0..9)
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This field sets the priority of the connection among others on the
physical port. The range is 0 for lowest priority to 9 for
the highest priority. "
DEFVAL { 0 }
::= { portLogicalX25AdminEntry 2 }
portLogicalX25AdminRfc1490 OBJECT-TYPE
SYNTAX INTEGER {
annexG (1),
rfc1490 (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
" This field indicates the encapsulation method used"
DEFVAL { rfc1490 }
::= { portLogicalX25AdminEntry 3 }
portLogicalX25AdminBAG OBJECT-TYPE
SYNTAX INTEGER (0..16)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Assigns this DLCI to one of sixteen groups whose parameters
regulate bandwidth usage. A 0 value indicates the DLCI does
not use BAGs"
DEFVAL { 0 }
::= { portLogicalX25AdminEntry 4 }
portLogicalX25AdminRowStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable is used to manage the creation and deletion
of conceptual rows in the portLogicalX25AdminTable and follows the
SNMPv2 RowStatus conventions by supporting the following values:
- `active', which indicates that the conceptual row is