-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-DLSW-EXT-MIB.mib
1742 lines (1535 loc) · 60.6 KB
/
CISCO-DLSW-EXT-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- CISCO-DLSW-EXT-MIB.my: DLSW Cisco Specific Features MIB file
--
-- March 1997, John Lautmann
--
-- Copyright (c) 1997 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-DLSW-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
TimeTicks
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
TruthValue,
TEXTUAL-CONVENTION,
DisplayString
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
dlswTConnConfigEntry,
dlswTConnOperEntry,
dlswTConnTcpConfigEntry,
dlswIfEntry,
dlswCircuitEntry,
dlswTConnConfigIndex,
DlcType,
TAddress,
MacAddressNC,
LFSize,
dlswTConnOperState,
dlswCircuitState
FROM DLSW-MIB
DlciNumber
FROM CISCO-FRAME-RELAY-MIB
SAPType
FROM CISCO-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoDlswExtMIB MODULE-IDENTITY
LAST-UPDATED "9703110000Z"
ORGANIZATION "Cisco IBU Engineering Working Group"
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The MIB module for management of Cisco specific Data Link
Switching protocol enhancements. DLSw is described in
RFC 1795 and RFC 2024.
DLSw+ Defined
Data link switching Plus (DLSw+) is a means of transporting
Systems Network Architecture (SNA) and NetBIOS traffic over
an IP network. The end systems can attach to the network over
Token Ring, Ethernet, Synchronous Data Link Control
(SDLC) protocol, or Qualified Logical Link Control (QLLC).
DLSw+ switches between diverse media, and locally terminates
the data links, keeping acknowledgments, keepalives, and polling
off of the WAN. Local termination of data links also
eliminates data link control time-outs that can occur during
transient network congestion or when rerouting around failed
links. Finally, DLSw+ provides a mechanism for dynamically
searching a network for SNA or NetBIOS resources and
includes caching algorithms that minimize the broadcast traffic
required.
In this document, DLSw+ routers are referred to as
peers, or partners. The connection between two DLSw+
routers is referred to as a peer connection. A DLSw circuit is
comprised of the data link control connection between the
originating end system and the originating router, the connection
between the two routers (typically a TCP connection), and
the data link control connection between the target router and
the target end system. A single peer connection can carry
multiple circuits.
The transport connection between DLSw+ routers can vary according
to the needs of the network and is not tied to TCP/IP
as the DLSw standard is. Cisco supports four different transport
protocols between DLSw+ routers:
TCP/IP-for transport of SNA and NetBIOS traffic across WANs where
local acknowledgment is required to minimize
unnecessary traffic and prevent data-link control timeouts and
where non-disruptive rerouting around link failures is
critical. This transport option is required when DLSw+ is
operating in DLSw standards mode.
FST/IP-for transport across WANs with an arbitrary topology and
with sufficient bandwidth to accommodate SNA
and NetBIOS traffic. This solution allows for rerouting around
link failures, but recovery may be disruptive depending
on the time required to find an alternate path. This option does
not support local acknowledgment of frames.
Direct-encapsulation for transport across a point-to-point or
Frame Relay connection where the benefits of an
arbitrary topology are not important and where nondisruptive
rerouting around link failures is not required. This option
does not support local acknowledgment of frames.
DLSw Lite-also known as Logical Link Control, Type2 (LLC2)
encapsulation -for transport across a point-to-point
connection (currently only Frame Relay is supported) where
local acknowledgment and reliable transport are
important, but where nondisruptive rerouting around link
failures is not required. DLSw Lite uses RFC 1490
encapsulation of LLC2."
REVISION "9703110000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 74 }
ciscoDlswExtMIBObjects OBJECT IDENTIFIER ::= { ciscoDlswExtMIB 1 }
cdeDomains OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 1 }
cdeNode OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 2 }
cdeTConn OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 3 }
cdeInterface OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 4 }
cdeCircuit OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 5 }
cdeFast OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 6 }
cdeTrapControl OBJECT IDENTIFIER ::= { ciscoDlswExtMIBObjects 7 }
TDomainType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of DLSw encapsulation in use on this peer connection."
SYNTAX INTEGER {
tcp (1),
fst (2),
directHdlc (3),
directFrameRelay (4),
llc2 (5)
}
Cost ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Allows a cost to be assigned to a peer.
If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination."
SYNTAX INTEGER (1..5)
KeepaliveInterval ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The keepalive parameter refers to how often DLSw peers
send peer keep alives to each other. These periodic messages
allow DLSw to keep track of the state of all peers.
The keepalive interval is measured in seconds.
If set to zero, no keepalives are sent."
SYNTAX INTEGER (0..1200)
TCPQueueMax ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"For DLSw over TCP encapsulation, packets may be queued
due to congestion of the TCP network. The TCPQueueMax
is used to set the output queue maximum of the underlying
TCP connection."
SYNTAX INTEGER (25..2000)
-- *******************************************************************
-- DLSw Transport Domain definitions
-- *******************************************************************
-- The Domain definition allows the DLSw peer encapsulation method
-- to be distinguished for conceptual rows within the peer tables
-- defined in both CISCO-DLSW-EXT-MIB and DLSW-MIB (RFC 2024).
-- These tables include dlswTConnConfigTable and dlswTConnOperTable
-- in DLSW-MIB (RFC 2024), which are augmented in this MIB
-- by cdeTConnConfigTable and cdeTConnOperTable, respectively.
--
-- The domain is simply an Object Identifier of the table which
-- provides specific information about that type of peer encapsulation.
-- It allows a management station to obtain further information about
-- a conceptual row in the TConn table, since the domain specifies
-- the type of encapsulation used by the peer.
--
-- DLSW-MIB defines only a dlswTCPDomain which represents
-- a peer encapsulation type of TCP/IP.
-- An additional peer encapsulation type is FST, Fast Sequenced Transport,
-- and its domain is defined here.
cdeFSTDomain OBJECT IDENTIFIER ::= { cdeDomains 1 }
-- Another type of peer encapsulation is DLSw over Direct interface
-- using hdlc, and its domain is defined here.
cdeDirectHdlcDomain OBJECT IDENTIFIER ::= { cdeDomains 2 }
-- Another type of peer encapsulation is DLSw over Direct interface
-- using Frame Relay, and its domain is defined here.
cdeDirectFrameRelayDomain OBJECT IDENTIFIER ::= { cdeDomains 3 }
-- another type of peer encapsulation is DLSw Lite-also known as
-- Logical Link Control, Type2 (LLC2), and its domain is defined here.
cdeLlc2Domain OBJECT IDENTIFIER ::= { cdeDomains 4 }
--
-- Cisco DLSw Extension Node Objects
--
cdeNodeTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local peer IP address; required for Fast-Sequenced
Transport (FST) and TCP. If no local peer IP address
is configured then this object will be the empty string."
DEFVAL { ''H } -- the empty string
::= { cdeNode 1 }
cdeNodeGroup OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Peer group number for this router.
Peer groups are arbitrary groups of routers with one or
more designated border peers. Border peers form peer
connections with every router in their group and with
border peers in other groups. The role of a border peer
is to forward explorers on behalf of other routers.
A value of zero means no group has been set and the
DLSw is not a group member."
DEFVAL { 0 }
::= { cdeNode 2 }
cdeNodeBorder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if this DLSw is capable of
operating as a border peer. True indicates that it is
capable, false indicates that it is not.
Border peers form peer connections with every router in
their group and with border peers in other groups. The
role of a border peer is to forward explorers on behalf
of other DLSw routers."
DEFVAL { false }
::= { cdeNode 3 }
cdeNodeCost OBJECT-TYPE
SYNTAX Cost
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Peer cost advertised to remote peers in the capabilities
exchange. If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination. A value of zero means no cost has been set
and that cost will not be considered during circuit
establishment."
DEFVAL { 3 }
::= { cdeNode 4 }
cdeNodeKeepaliveInterval OBJECT-TYPE
SYNTAX KeepaliveInterval
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default remote peer keepalive interval in seconds.
The keepalive parameter refers to how often DLSw peers
send peer keep alives to each other. These periodic messages
allow DLSw to keep track of the state of all peers.
If set to zero, no keepalives are sent."
DEFVAL { 30 }
::= { cdeNode 5 }
cdeNodePassiveConnect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if DLSw will not initiate
remote peer connections to configured peers. True
indicates that it will not initiate remote peer connections,
false indicates that it will initiate remote peer connections.
In other words a passive peer will wait for the remote peer
to initiate a peer connection"
DEFVAL { false }
::= { cdeNode 6 }
cdeNodeBiuSegment OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if DLSw will spoof the maximum
receivable Basic Information Unit (frame) size in XID so that
each end station sends the largest frame it can. True indicates
that it will spoof, false indicates that it will not."
DEFVAL { false }
::= { cdeNode 7 }
cdeNodeInitPacingWindow OBJECT-TYPE
SYNTAX INTEGER (1..2000)
UNITS "packets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Initial pacing window size. This is the starting size of the
pacing window. DLSw uses an adaptive pacing
flow control algorithm that automatically adjusts to congestion
levels in the network. Pacing windows are used to control
how many packets may be sent to a peer before acknowlegement."
DEFVAL { 20 }
::= { cdeNode 8 }
cdeNodeMaxPacingWindow OBJECT-TYPE
SYNTAX INTEGER (1..2000)
UNITS "packets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum pacing window size. This is the largest size that
the pacing window will grow to. DLSw uses an adaptive pacing
flow control algorithm that automatically adjusts to congestion
levels in the network. Pacing windows are used to control
how many packets may be sent to a peer before acknowlegement."
DEFVAL { 50 }
::= { cdeNode 9 }
cdeNodePromiscuous OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if DLSw will accept connections from
non-configured remote peers. Promiscuous routers will
accept peer connection requests from routers that are
not preconfigured. This feature allows central site routers
to remain unchanged when branch offices are added or deleted.
It also minimizes required coordination of configurations.
True indicates that it will accept connections,
false indicates that it will not."
DEFVAL { false }
::= { cdeNode 10 }
cdeNodePromPeerDefaultsCost OBJECT-TYPE
SYNTAX Cost
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the cost that will be used with
promiscuous peers.
If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination."
DEFVAL { 3 }
::= { cdeNode 11 }
cdeNodePromPeerDefaultsDestMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Permits the promiscuous peer connection to be established
only when there is an explorer frame destined for the
specified 48-bit MAC address. If no default destination mac
is configured then this object will be the empty string."
DEFVAL { ''H } -- the empty string
::= { cdeNode 12 }
cdeNodePromPeerDefaultsKeepaliveInterval OBJECT-TYPE
SYNTAX KeepaliveInterval
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default promiscuous peer keepalive interval in seconds.
The keepalive parameter refers to how often DLSw peers
send peer keep alives to each other. These periodic messages
allow DLSw to keep track of the state of all peers.
If set to zero, no keepalives are sent."
DEFVAL { 30 }
::= { cdeNode 13 }
cdeNodePromPeerDefaultsLFSize OBJECT-TYPE
SYNTAX LFSize
UNITS "bytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default Largest Frame Size associated with the
default promiscuous peer transport connection.
In other words its the largest size of the INFO field
(including DLC header, not including any MAC-level or framing
octets)."
DEFVAL { lfs17749 }
::= { cdeNode 14 }
cdeNodePromPeerDefaultsTCPQueueMax OBJECT-TYPE
SYNTAX TCPQueueMax
UNITS "packets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default promiscuous peer maximum output TCP queue size.
For DLSw over TCP encapsulation, packets may be queued
due to congestion of the TCP network. This variable
is used to set the output queue maximum of the underlying
TCP connection, by default on a promiscuous
peer transport connection."
DEFVAL { 200 }
::= { cdeNode 15 }
cdeNodePeerOnDemandDefaultsCost OBJECT-TYPE
SYNTAX Cost
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the cost that will be used with
peer on demand peers.
If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination."
DEFVAL { 3 }
::= { cdeNode 16 }
cdeNodePeerOnDemandDefaultsFst OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if Fast-Sequenced Transport (FST)
will be for peer on demand peers. True indicates that
FST will be used, false indicates that it will not."
DEFVAL { false }
::= { cdeNode 17 }
cdeNodePeerOnDemandDefaultsInactivityInterval OBJECT-TYPE
SYNTAX INTEGER (0..1440)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates the length of time a peer on demand
connection can be idle before shutting down this peer
on demand connection. If set to zero, the peer on demand
connection will not be closed due to inactivity."
DEFVAL { 10 }
::= { cdeNode 18 }
cdeNodePeerOnDemandDefaultsKeepaliveInterval OBJECT-TYPE
SYNTAX KeepaliveInterval
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default peer on demand keepalive interval in seconds.
The keepalive parameter refers to how often DLSw peers
send peer keep alives to each other. These periodic messages
allow DLSw to keep track of the state of all peers.
If set to zero, no keepalives are sent."
DEFVAL { 30 }
::= { cdeNode 19 }
cdeNodePeerOnDemandDefaultsLFSize OBJECT-TYPE
SYNTAX LFSize
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The default Largest Frame Size associated with the
default peer on demand transport connections.
In other words its the largest size of the INFO field
(including DLC header, not including any MAC-level or framing
octets)."
DEFVAL { lfs17749 }
::= { cdeNode 20 }
cdeNodePeerOnDemandDefaultsPriority OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates if circuit prioritization will be used
for peer-on-demand peers. True indicates that circuit
prioritization specified by the dlswCircuitPriority object
in the DLSW-MIB (RFC 2024) will be used, false indicates that
there will be no circuit prioritization."
DEFVAL { false }
::= { cdeNode 21 }
cdeNodePeerOnDemandDefaultsTCPQueueMax OBJECT-TYPE
SYNTAX TCPQueueMax
UNITS "packets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default peer-on-demand Maximum output TCP queue size.
For DLSw over TCP encapsulation, packets may be queued
due to congestion of the TCP network. This variable
is used to set the output queue maximum of the underlying
TCP connection, by default on a peer on demand
transport connection."
DEFVAL { 200 }
::= { cdeNode 22 }
--
-- Cisco DLSw Extension Transport Connection MIB-Group
--
-- an extended collection of objects providing information about
-- DLSw transport connections and peer associations
--
-- Cisco DLSw Extension Transport Connection Configuration Table
--
cdeTConnConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdeTConnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the peer transport connections
that will be initiated or accepted by this
DLSw. Structure of masks allows wildcard
definition for a collection of transport
connections by a conceptual row. For a
specific transport connection, there may
be multiple conceptual rows that match the
transport address. The `best' match will be
the one to determine the characteristics
of the transport connection.
This table augments dlswTConnConfigTable."
::= { cdeTConn 1 }
cdeTConnConfigEntry OBJECT-TYPE
SYNTAX CdeTConnConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects that define specific configuration for
a DLSw peer transport connection."
AUGMENTS { dlswTConnConfigEntry }
::= { cdeTConnConfigTable 1 }
CdeTConnConfigEntry ::= SEQUENCE {
cdeTConnConfigTDomainType TDomainType,
cdeTConnConfigLocalAck TruthValue,
cdeTConnConfigCost Cost,
cdeTConnConfigLFSize LFSize,
cdeTConnConfigKeepaliveInterval KeepaliveInterval,
cdeTConnConfigBackup TruthValue,
cdeTConnConfigBackupTAddr TAddress,
cdeTConnConfigBackupLinger TruthValue,
cdeTConnConfigBackupLingerInterval INTEGER,
cdeTConnConfigPriority TruthValue,
cdeTConnConfigDestMac MacAddressNC,
cdeTConnConfigDynamic TruthValue,
cdeTConnConfigDynamicNoLlc INTEGER,
cdeTConnConfigDynamicInactivityInterval INTEGER
}
cdeTConnConfigTDomainType OBJECT-TYPE
SYNTAX TDomainType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of DLSw encapsulation in use on this peer connection."
DEFVAL { tcp }
::= { cdeTConnConfigEntry 1 }
cdeTConnConfigLocalAck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Reflects whether the peer connection is locally acknowledged.
Locally acknoledgement means terminating the DLC connections
at the router, eliminating the requirement for link-layer
acknowledgements and keepalive messages to flow across the
WAN. In addition because link-layer frames are acknowledged
locally, link-layer time-outs should not occur.
In general ciscoDlswTConnConfigLocalAck will be true when the
domain type is tcp, false when the domain type is fst,
direct-hdlc, or direct-frame-relay.
Configuring the remote-peer as pass-thru, the remote peer
will not use local acknowlegement."
DEFVAL { true }
::= { cdeTConnConfigEntry 2 }
cdeTConnConfigCost OBJECT-TYPE
SYNTAX Cost
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The cost associated with the transport connection,
assigned to this conceptual row representing a peer.
If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination."
DEFVAL { 3 }
::= { cdeTConnConfigEntry 3 }
cdeTConnConfigLFSize OBJECT-TYPE
SYNTAX LFSize
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Largest Frame Size associated with the transport connection.
In other words its the largest size of the INFO field
(including DLC header, not including any MAC-level or framing
octets)."
DEFVAL { lfs17749 }
::= { cdeTConnConfigEntry 4 }
cdeTConnConfigKeepaliveInterval OBJECT-TYPE
SYNTAX KeepaliveInterval
UNITS "Seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The amount of time between keepalive messages on a transport
connection.
The keepalive parameter refers to how often DLSw peers
send peer keep alives to each other. These periodic messages
allow DLSw to keep track of the state of all peers.
If set to zero, no keepalives are sent."
DEFVAL { 30 }
::= { cdeTConnConfigEntry 5 }
cdeTConnConfigBackup OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable indicates if this peer is defined
as a backup to an existing peer. A backup peer is used
to provide an alternate path in case an existing peer becomes
unavailable. A backup peer will not enter the connected
state until the primary peer that it backs up becomes
disconnected.
True indicates that this conecptual row is a backup peer
to a pre-existing peer, false indicates this peer is not
a backup peer."
DEFVAL { false }
::= { cdeTConnConfigEntry 6 }
cdeTConnConfigBackupTAddr OBJECT-TYPE
SYNTAX TAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The primary peer's IP address that this entry backs up.
Valid only when ciscoDlswTConnConfigBackup is true."
DEFVAL { ''H } -- the empty string
::= { cdeTConnConfigEntry 7 }
cdeTConnConfigBackupLinger OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable indicates whether the backup peer will
remain connected after the primary peer connection has
been re-established.
True indicates that the backup peer will remain connected after
the primary peer connection has been re-established, for the
length of time specified in cdeTConnConfigBackupLingerInterval.
False indicates that the backup peer will remain connected until
all circuits on the backup peer connection have been disconnected."
DEFVAL { false }
::= { cdeTConnConfigEntry 8 }
cdeTConnConfigBackupLingerInterval OBJECT-TYPE
SYNTAX INTEGER (0..1440)
UNITS "Minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable indicates the length of time the backup peer
remains connected after the primary peer connection has
been re-established. If this variable is zero, the backup peer
will be disconnected immediately after the primary peer connection
has been re-established. If greater than zero the backup will
stay connected for the number of minutes indicated by this variable,
after the primary peer connection has been re-established.
Note that the linger interval is only used when
cdeTConnConfigBackupLinger is true."
DEFVAL { 0 }
::= { cdeTConnConfigEntry 9 }
cdeTConnConfigPriority OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicator of whether this peer connection supports priority.
When priority is configured for the remote peer,
DLSw+ will automatically activate four TCP connections to that
remote peer (ports 2065, 1981, 1982, and 1983). Priority only
needs to be configured if you need to prioritize between SNA
and NetBIOS, or within SNA by LOCADDR or MAC/SAP pair
(known as SAP prioritization). In addition, this granular packet
classification is only possible when TCP encapsulation is selected
for a specific remote peer. By default DLSw+ assigns certain
traffic to specific TCP ports."
DEFVAL { false }
::= { cdeTConnConfigEntry 10 }
cdeTConnConfigDestMac OBJECT-TYPE
SYNTAX MacAddressNC
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Permits the peer connection to be established only when there is an
explorer frame destined for the specified 48-bit MAC address.
If no expolorer traffic with a destination address of
cdeTConnConfigDestMac is received by DLSw,
the peer reprented by this conceptual row will not be connected."
DEFVAL { ''H } -- the empty string
::= { cdeTConnConfigEntry 11 }
cdeTConnConfigDynamic OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the peer connection is to be established only
when there is DLSw+ data to send."
DEFVAL { false }
::= { cdeTConnConfigEntry 12 }
cdeTConnConfigDynamicNoLlc OBJECT-TYPE
SYNTAX INTEGER (1..300)
UNITS "Minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This variable indicates the length of time a dynamic peer
remains connected after all LLC2 circuits are gone."
DEFVAL { 5 }
::= { cdeTConnConfigEntry 13 }
cdeTConnConfigDynamicInactivityInterval OBJECT-TYPE
SYNTAX INTEGER (0..300)
UNITS "Minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the length of time a connection can be idle before
closing the dynamic peer connection. If set to zero, the dynamic
peer connection will not be closed due to inactivity."
DEFVAL { 0 }
::= { cdeTConnConfigEntry 14 }
--
-- Cisco DLSw Extension Transport Connection Operation Table
--
cdeTConnOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdeTConnOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of peer transport connections.
Each connected peer will create a conceptual row in the table.
When the peer disconnects, the row will be deleted from the table.
This table augments dlswTConnOperTable."
::= { cdeTConn 2 }
cdeTConnOperEntry OBJECT-TYPE
SYNTAX CdeTConnOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects that contain spefific operational
information for a DLSw peer transport connection."
AUGMENTS { dlswTConnOperEntry }
::= { cdeTConnOperTable 1 }
CdeTConnOperEntry ::= SEQUENCE {
cdeTConnOperPartnerCost Cost,
cdeTConnOperPartnerPriority TruthValue,
cdeTConnOperPartnerBorderPeer TruthValue,
cdeTConnOperPartnerGroupNum INTEGER,
cdeTConnOperTDomainType TDomainType
}
cdeTConnOperPartnerCost OBJECT-TYPE
SYNTAX Cost
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The partner's cost on this peer connection, as received
through capabilities exchange.
If an end station can be reached through more
than one peer, the cost of each peer will be considered when
a circuit is established.
A lower cost indicates that peer will be the
preferred choice if there is more than one path to the
destination."
DEFVAL { 3 }
::= { cdeTConnOperEntry 1 }
cdeTConnOperPartnerPriority OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The partner's priority setting on this peer connection,
as received through capabilities exchange.
When priority is enabled for the remote peer,
DLSw+ will automatically activate four TCP connections to that
remote peer (ports 2065, 1981, 1982, and 1983). Priority only
needs to be configured if you need to prioritize between SNA
and NetBIOS, or within SNA by LOCADDR or MAC/SAP pair
(known as SAP prioritization). In addition, this granular packet
classification is only possible when TCP encapsulation is selected
for a specific remote peer. By default DLSw+ assigns certain
traffic to specific TCP ports."
::= { cdeTConnOperEntry 2 }
cdeTConnOperPartnerBorderPeer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates if the partner DLSw is capable of
operating as a border peer, as received through capabilities
exchange. True indicates that it is
capable, false indicates that it is not.
Border peers form peer connections with every router in
their group and with border peers in other groups. The
role of a border peer is to forward explorers on behalf
of other DLSw routers."
::= { cdeTConnOperEntry 3 }
cdeTConnOperPartnerGroupNum OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the partner's group number, as
received through capabilities exchange.
Peer groups are arbitrary groups of routers with one or
more designated border peers. Border peers form peer
connections with every router in their group and with
border peers in other groups. The role of a border peer
is to forward explorers on behalf of other routers.
A value of zero means no group has been set and the
DLSw is not a group member."
::= { cdeTConnOperEntry 4 }
cdeTConnOperTDomainType OBJECT-TYPE
SYNTAX TDomainType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of DLSw encapsulation in use on this peer connection."
::= { cdeTConnOperEntry 5 }
-- *******************************************************************
-- Transport Connection Specific
-- *******************************************************************
cdeTConnSpecific OBJECT IDENTIFIER ::= { cdeTConn 3 }
cdeTConnTcp OBJECT IDENTIFIER ::= { cdeTConnSpecific 1 }
cdeTConnDirect OBJECT IDENTIFIER ::= { cdeTConnSpecific 2 }
--
-- Cisco DLSw Extension TCP Transport Connection Specific Configuration
--
cdeTConnTcpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdeTConnTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the TCP transport connections that
will be either initiated by or accepted by this DSLw.
It augments the entries in dlswTConnConfigTable whose
domain is dlswTCPDomain. In other words for each conceptual row
in the dlswTConnConfigTable, if the dlswTConnConfigTDomain is
dlswTCPDomain, that conceptual row will be augmented by this
table.
dlswTCPDomain, dlswTConnConfigTable, and dlswTConnConfigTDomain
are all imported from DLSW-MIB (RFC 2024).
This table augments dlswTConnTcpConfigTable."
::= { cdeTConnTcp 1 }
cdeTConnTcpConfigEntry OBJECT-TYPE
SYNTAX CdeTConnTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of objects that define spefific configuration for
a DLSw peer transport connection within the dlswTCPDomain.
dlswTCPDomain is imported from DLSW-MIB (RFC 2024)."
AUGMENTS { dlswTConnTcpConfigEntry }
::= { cdeTConnTcpConfigTable 1 }
CdeTConnTcpConfigEntry ::= SEQUENCE {
cdeTConnTcpConfigQueueMax TCPQueueMax
}
cdeTConnTcpConfigQueueMax OBJECT-TYPE
SYNTAX TCPQueueMax
UNITS "packets"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum output TCP queue size for this remote peer.
For DLSw over TCP encapsulation, packets may be queued
due to congestion of the TCP network. This variable
is used to set the output queue maximum of the underlying
TCP connection for the peer represented by the conceptual row."
DEFVAL { 200 }
::= { cdeTConnTcpConfigEntry 1 }
--
-- Cisco DLSw Extension Direct Transport Connection Specific Configuration
--
cdeTConnDirectConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdeTConnDirectConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains direct peer media-specific
configuration information.
An entry is maintained for every peer in the
cdeTConnConfigTable whose domain is either cdeDirectHdlcDomain,
cdeDirectFrameRelayDomain, or cdeLlc2Domain.
In other words, for each conceptual row
in the dlswTConnConfigTable, if the dlswTConnConfigTDomain is
either cdeDirectHdlcDomain, cdeDirectFrameRelayDomain, or
cdeLlc2Domain, there will be an entry in this table.
dlswTConnConfigTable, and dlswTConnConfigTDomain
are imported from DLSW-MIB (RFC 2024)."
::= { cdeTConnDirect 1 }
cdeTConnDirectConfigEntry OBJECT-TYPE
SYNTAX CdeTConnDirectConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each conceptual row defines parameters that are
specific to peer transport connections whose domain is
either cdeDirectHdlcDomain, cdeDirectFrameRelayDomain, or
cdeLlc2Domain."
INDEX { dlswTConnConfigIndex }
::= { cdeTConnDirectConfigTable 1 }
CdeTConnDirectConfigEntry ::= SEQUENCE {
cdeTConnDirectConfigIfIndex InterfaceIndex,
cdeTConnDirectConfigMediaEncap INTEGER,
cdeTConnDirectConfigFrameRelayDlci DlciNumber