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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
|
Network Working Group B. Clouston, Editor
Request for Comments: 2232 Cisco Systems
Category: Standards Track B. Moore, Editor
IBM Corporation
November 1997
Definitions of Managed Objects
for DLUR using SMIv2
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (1997). All Rights Reserved.
Table of Contents
1. Status of this Memo .................................... 1
2. Introduction ........................................... 1
3. The SNMP Network Management Framework .................. 2
4. Overview ............................................... 2
4.1 DLUR MIB structure .................................... 3
5. Definitions ............................................ 5
6. Acknowledgments ........................................ 18
7. References ............................................. 19
8. Security Considerations ................................ 19
9. Authors' Addresses ..................................... 20
10. Full Copyright Statement ................................ 21
2. Introduction
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in the Internet community.
In particular, it defines objects for monitoring and controlling
network devices with DLUR (Dependent LU Requester) capabilities.
This memo identifies managed objects for the DLUR protocol.
Clouston & Moore Standards Track [Page 1]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
3. The SNMP Network Management Framework
The SNMP Network Management Framework consists of several components.
For the purpose of this specification, the applicable components of
the Framework are the SMI and related documents [1, 2, 3], which
define the mechanisms used for describing and naming objects for the
purpose of management.
The Framework permits new objects to be defined for the purpose of
experimentation and evaluation.
4. Overview
This document identifies objects for monitoring the configuration and
active characteristics of devices with DLUR capabilities. Dependent
LU requester/server (DLUR/S) is an extension to the Advanced Peer-
to-Peer Networking (APPN) architecture that provides dependent LU
services in APPN networks. See the SNANAU APPN MIB [4] for
management of APPN networks.
The base APPN architecture only provided for transport of data
between independent logical units (LUs). However, customers have an
enormous investment in applications based on dependent LU types.
DLUR/S provides for support of dependent LU sessions in an APPN
network.
A dependent LU server (DLUS) is an APPN node that provides System
Services Control Point (SSCP) services over an APPN network to remote
secondary dependent LUs by using SSCP-PU (physical unit) and SSCP-LU
sessions whose flows are encapsulated on LU 6.2 session flows between
the DLUS node and the appropriate dependent LU requester (DLUR) node.
The secondary dependent LUs may be local to the DLUR node, or in
adjacent type 2.0 or 2.1 nodes.
The LU 6.2 control sessions between a DLUS node and a DLUR node are
referred to as a CPSVRMGR pipe. CPSVRMGR refers to the mode used for
the sessions.
In this document, we describe DLUR managed objects.
The DLUR terms and overall architecture are described in [5].
Highlights of the management functions supported by the DLUR MIB
module include the following:
Clouston & Moore Standards Track [Page 2]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
o Identifying the node's DLUR capabilities
o Displaying the physical units (PUs) this node is supporting
o Identification of Dependent LU Servers
o Displaying the state of control sessions to Dependent LU
Servers.
This MIB module does not support:
o Management of dependent LU servers
o Configuration of DLUR nodes.
o Changing the state of control session to the DLUS
o Displaying the dependent LUs this node is supporting
o Traps. The APPN MIB contains a trap for Alert conditions that
may affect DLUR resources. The value for the affectedObject
object contained in the alertTrap is determined by the
implementation. It may contain a VariablePointer from the DLUR
MIB. The APPN/DLUR Alerts are defined in [6].
4.1. DLUR MIB Structure
Although DLUR is an extension to APPN, the DLUR MIB relies very
little upon the APPN MIB. The dlurNodeCpName object in this MIB has
the same value as the appnNodeCpName object in the APPN MIB. If the
dlurPuLsName object in the MIB has the same value as the appnLsName
object in the APPN MIB, then the two objects are referring to the
same link station.
The DLUR MIB module contains the following collections of objects:
o dlurNodeInfo--objects representing the capabilities and
architecture options supported by the DLUR implementation, as
well as default primary and backup DLUSs.
o dlurPuInfo--objects describing the PUs that this APPN node is
supporting with DLUR.
o dlurDlusInfo--objects describing the control sessions with
DLUSs.
These are described below in more detail.
Clouston & Moore Standards Track [Page 3]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
4.1.1. dlurNodeInfo group
The dlurNodeInfo group consists of the following objects and table:
1) dlurNodeCapabilities group
These objects represent the capabilities and options of the DLUR
implementation, such as the release level of the implementation
2) dlurDefaultDefBackupDlusTable
This table identifies the list of defined backup DLUSs for all PUs
served by this DLUR, if there is no specific DLUS backup list for the
PU. The list is in descending order of preference as a backup DLUS.
4.1.2. dlurPuInfo group
The dlurPuInfo group consists of the following tables:
1) dlurPuTable
This table has an entry for each PU this node is supporting via DLUR,
including the locally known name, the SSCP supplied name (if known),
and the PU status.
2) dlurPuDefBackupDlusTable
This table contains the backup DLUS list defined on a PU basis. The
table has an entry for each specifically defined backup DLUS on each
PU. The first index to the entry is the PU name, which organizes the
table by PU name. The second index is a ranking which further sorts
the table in descending order of preference as a backup DLUS for the
PU.
If a PU name is not found in this table, the
dlurDefaultDefBackupDlusNameTable is used as a backup list for that
PU.
4.1.3. dlurDlusInfo group
This group consists of the following table:
1) dlurDlusTable
This table contains information about the control sessions (CPSVRMGR
pipes) with the DLUS, including the control point (CP) name of the
DLUS and the status of the control session.
Clouston & Moore Standards Track [Page 4]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
5. Definitions
APPN-DLUR-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, TruthValue
FROM SNMPv2-TC
OBJECT-TYPE, MODULE-IDENTITY, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
snanauMIB
FROM SNA-NAU-MIB
SnaControlPointName
FROM APPN-MIB;
dlurMIB MODULE-IDENTITY
LAST-UPDATED "9705101500Z"
ORGANIZATION "IETF SNA NAU MIB WG / AIW APPN/HPR MIBs SIG"
CONTACT-INFO
"
Bob Clouston
Cisco Systems
7025 Kit Creek Road
P.O. Box 14987
Research Triangle Park, NC 27709, USA
Tel: 1 919 472 2333
E-mail: clouston@cisco.com
Bob Moore
IBM Corporation
800 Park Offices Drive
RHJA/664
P.O. Box 12195
Research Triangle Park, NC 27709, USA
Tel: 1 919 254 4436
E-mail: remoore@ralvm6.vnet.ibm.com
"
DESCRIPTION
"This is the MIB module for objects used to manage
network devices with DLUR capabilities. This MIB
contains information that is useful for managing an APPN
product that implements a DLUR (Dependent Logical Unit
Clouston & Moore Standards Track [Page 5]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
Requester). The DLUR product has a client/server
relationship with an APPN product that implements a DLUS
(Dependent Logical Unit Server)."
::= { snanauMIB 5 }
-- snanauMIB ::= { mib-2 34 }
-- *********************************************************************
-- Textual Convention
-- *********************************************************************
-- SnaControlPointName is imported from the APPN MIB
-- *********************************************************************
dlurObjects OBJECT IDENTIFIER ::= { dlurMIB 1 }
-- *********************************************************************
dlurNodeInfo OBJECT IDENTIFIER ::= { dlurObjects 1 }
-- *********************************************************************
-- DLUR Capabilities of the node
--
-- This group represents the capabilities and options of the DLUR
-- implementation.
-- *********************************************************************
dlurNodeCapabilities OBJECT IDENTIFIER ::= { dlurNodeInfo 1 }
dlurNodeCpName OBJECT-TYPE
SYNTAX SnaControlPointName
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Administratively assigned network name for the APPN node where
this DLUR implementation resides. If this object has the same
value as the appnNodeCpName object in the APPN MIB, then the
two objects are referring to the same APPN node."
::= { dlurNodeCapabilities 1 }
dlurReleaseLevel OBJECT-TYPE
SYNTAX DisplayString (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DLUR release level of this implementation. This is the
value that is encoded in the DLUR/DLUS Capabilites (CV 51).
To insure consistent display, this one-byte value is encoded
here as two displayable characters that are equivalent to a
hexadecimal display. For example, if the one-byte value as
Clouston & Moore Standards Track [Page 6]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
encoded in CV51 is X'01', this object will contain the
displayable string '01'."
::= { dlurNodeCapabilities 2 }
dlurAnsSupport OBJECT-TYPE
SYNTAX INTEGER {
continueOrStop(1),
stopOnly(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Automatic Network Shutdown (ANS) capability of this node.
- 'continueOrStop' indicates that the DLUR implementation
supports either ANS value (continue or stop) as
specified by the DLUS on ACTPU for each PU.
- 'stopOnly' indicates that the DLUR implementation only
supports the ANS value of stop.
ANS = continue means that the DLUR node will keep LU-LU
sessions active even if SSCP-PU and SSCP-LU control sessions
are interrupted.
ANS = stop means that LU-LU sessions will be interrupted when
the SSCP-PU and SSCP-LU sessions are interrupted."
::= { dlurNodeCapabilities 3 }
dlurMultiSubnetSupport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of whether this DLUR implementation can support
CPSVRMGR sessions that cross NetId boundaries."
::= { dlurNodeCapabilities 4 }
dlurDefaultDefPrimDlusName OBJECT-TYPE
SYNTAX SnaControlPointName
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNA name of the defined default primary DLUS for all of
the PUs served by this DLUR. This can be overridden for a
Clouston & Moore Standards Track [Page 7]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
particular PU by a defined primary DLUS for that PU,
represented by the dlurPuDefPrimDlusName object."
::= { dlurNodeCapabilities 5 }
dlurNetworkNameForwardingSupport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of whether this DLUR implementation supports
forwarding of Network Name control vectors on ACTPUs and
ACTLUs to DLUR-served PUs and their associated LUs.
This object corresponds to byte 9. bit 3 of cv51."
::= { dlurNodeCapabilities 6 }
dlurNondisDlusDlurSessDeactSup OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of whether this DLUR implementation supports
nondisruptive deactivation of its DLUR-DLUS sessions.
Upon receiving from a DLUS an UNBIND for the CPSVRMGR pipe
with sense data X'08A0 000B', a DLUR that supports this
option immediately begins attempting to activate a CPSVRMGR
pipe with a DLUS other than the one that sent the UNBIND.
This object corresponds to byte 9. bit 4 of cv51."
::= { dlurNodeCapabilities 7 }
-- *********************************************************************
-- DLUR default defined backup DLUS table
-- *********************************************************************
dlurDefaultDefBackupDlusTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlurDefaultDefBackupDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an ordered list of defined backup DLUSs
for all of the PUs served by this DLUR. These can be
overridden for a particular PU by a list of defined backup
DLUSs for that PU, represented by the
dlurPuDefBackupDlusNameTable. Entries in this table are
Clouston & Moore Standards Track [Page 8]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
ordered from most preferred default backup DLUS to least
preferred."
::= { dlurNodeInfo 2 }
dlurDefaultDefBackupDlusEntry OBJECT-TYPE
SYNTAX DlurDefaultDefBackupDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is indexed by an integer-valued index, which
orders the entries from most preferred default backup DLUS
to least preferred."
INDEX { dlurDefaultDefBackupDlusIndex }
::= { dlurDefaultDefBackupDlusTable 1 }
DlurDefaultDefBackupDlusEntry ::= SEQUENCE {
dlurDefaultDefBackupDlusIndex Unsigned32,
dlurDefaultDefBackupDlusName SnaControlPointName
}
dlurDefaultDefBackupDlusIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for this table. The index values start at 1,
which identifies the most preferred default backup DLUS."
::= { dlurDefaultDefBackupDlusEntry 1 }
dlurDefaultDefBackupDlusName OBJECT-TYPE
SYNTAX SnaControlPointName
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fully qualified name of a default backup DLUS for PUs served
by this DLUR."
::= { dlurDefaultDefBackupDlusEntry 2 }
-- *********************************************************************
-- PU Information
--
-- The following table carries information about the PUs that this APPN
-- node is supporting via DLUR.
Clouston & Moore Standards Track [Page 9]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
-- *********************************************************************
dlurPuInfo OBJECT IDENTIFIER ::= { dlurObjects 2 }
dlurPuTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlurPuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the PUs supported by this DLUR."
::= { dlurPuInfo 1 }
dlurPuEntry OBJECT-TYPE
SYNTAX DlurPuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in a table of PU information, indexed by PU name."
INDEX { dlurPuName }
::= { dlurPuTable 1 }
DlurPuEntry ::= SEQUENCE {
dlurPuName DisplayString,
dlurPuSscpSuppliedName DisplayString,
dlurPuStatus INTEGER,
dlurPuAnsSupport INTEGER,
dlurPuLocation INTEGER,
dlurPuLsName DisplayString,
dlurPuDlusSessnStatus INTEGER,
dlurPuActiveDlusName DisplayString,
dlurPuDefPrimDlusName DisplayString
}
dlurPuName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..17))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Locally administered name of the PU."
::= { dlurPuEntry 1 }
dlurPuSscpSuppliedName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..17))
MAX-ACCESS read-only
Clouston & Moore Standards Track [Page 10]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
STATUS current
DESCRIPTION
"The SNA name of the PU. This value is supplied to a PU by the
SSCP that activated it. If a value has not been supplied, a
zero-length string is returned."
::= { dlurPuEntry 2 }
dlurPuStatus OBJECT-TYPE
SYNTAX INTEGER {
reset(1),
pendReqActpuRsp(2),
pendActpu(3),
pendActpuRsp(4),
active(5),
pendLinkact(6),
pendDactpuRsp(7),
pendInop(8),
pendInopActpu(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the DLUR-supported PU. The following values are
defined:
reset(1) - reset
pendReqActpuRsp(2) - pending a response from the DLUS
to a Request ACTPU
pendActpu(3) - pending an ACTPU from the DLUS
pendActpuRsp(4) - pending an ACTPU response from the PU
active(5) - active
pendLinkact(6) - pending activation of the link to a
downstream PU
pendDactpuRsp(7) - pending a DACTPU response from the PU
pendInop(8) - the CPSVRMGR pipe became inoperative
while the DLUR was pending an ACTPU
response from the PU
pendInopActpu(9) - when the DLUR was in the pendInop
state, a CPSVRMGR pipe became active
and a new ACTPU was received over it,
before a response to the previous
ACTPU was received from the PU."
::= { dlurPuEntry 3 }
dlurPuAnsSupport OBJECT-TYPE
SYNTAX INTEGER {
Clouston & Moore Standards Track [Page 11]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
continue(1),
stop(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Automatic Network Shutdown (ANS) support configured for
this PU. This value (as configured by the network
administrator) is sent by DLUS with ACTPU for each PU.
- 'continue' means that the DLUR node will attempt to keep
LU-LU sessions active even if SSCP-PU and SSCP-LU
control sessions are interrupted.
- 'stop' means that LU-LU sessions will be interrupted
when the SSCP-PU and SSCP-LU sessions are interrupted."
::= { dlurPuEntry 4 }
dlurPuLocation OBJECT-TYPE
SYNTAX INTEGER {
internal(1),
downstream(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Location of the DLUR-support PU:
internal(1) - internal to the APPN node itself (no link)
downstream(2) - downstream of the APPN node (connected via
a link)."
::= { dlurPuEntry 5 }
dlurPuLsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Administratively assigned name of the link station through
which a downstream PU is connected to this DLUR. A zero-length
string is returned for internal PUs. If this object has the
same value as the appnLsName object in the APPN MIB, then the
two are identifying the same link station."
::= { dlurPuEntry 6 }
dlurPuDlusSessnStatus OBJECT-TYPE
SYNTAX INTEGER {
Clouston & Moore Standards Track [Page 12]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
reset(1),
pendingActive(2),
active(3),
pendingInactive(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the control session to the DLUS identified in
dlurPuActiveDlusName. This is a combination of the separate
states for the contention-winner and contention-loser sessions:
reset(1) - none of the cases below
pendingActive(2) - either contention-winner session or
contention-loser session is pending active
active(3) - contention-winner and contention-loser
sessions are both active
pendingInactive(4) - either contention-winner session or
contention-loser session is pending
inactive - this test is made AFTER the
'pendingActive' test.
The following matrix provides a different representation of
how the values of this object are related to the individual
states of the contention-winner and contention-loser sessions:
Conwinner
| pA | pI | A | X = !(pA | pI | A)
C ++++++++++++++++++++++++++++++++++
o pA | 2 | 2 | 2 | 2
n ++++++++++++++++++++++++++++++++++
l pI | 2 | 4 | 4 | 4
o ++++++++++++++++++++++++++++++++++
s A | 2 | 4 | 3 | 1
e ++++++++++++++++++++++++++++++++++
r X | 2 | 4 | 1 | 1
++++++++++++++++++++++++++++++++++
"
::= { dlurPuEntry 7 }
dlurPuActiveDlusName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNA name of the active DLUS for this PU. If its length
is not zero, this name follows the SnaControlPointName textual
Clouston & Moore Standards Track [Page 13]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
convention. A zero-length string indicates that the PU does
not currently have an active DLUS."
::= { dlurPuEntry 8 }
dlurPuDefPrimDlusName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNA name of the defined primary DLUS for this PU, if one
has been defined. If present, this name follows the
SnaControlPointName textual convention. A zero-length string
indicates that no primary DLUS has been defined for this PU, in
which case the global default represented by the
dlurDefaultDefPrimDlusName object is used."
::= { dlurPuEntry 9 }
-- *****************************************
-- Defined backup DLUS table for a PU
-- *****************************************
dlurPuDefBackupDlusTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlurPuDefBackupDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an ordered list of defined backup DLUSs
for those PUs served by this DLUR that have their own defined
backup DLUSs. PUs that have no entries in this table use the
global default backup DLUSs for the DLUR, represented by the
dlurDefaultDefBackupDlusNameTable. Entries in this table are
ordered from most preferred backup DLUS to least preferred for
each PU."
::= { dlurPuInfo 2 }
dlurPuDefBackupDlusEntry OBJECT-TYPE
SYNTAX DlurPuDefBackupDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is indexed by PU name and by an integer-valued
index, which orders the entries from most preferred backup DLUS
for the PU to least preferred."
INDEX { dlurPuDefBackupDlusPuName,
Clouston & Moore Standards Track [Page 14]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
dlurPuDefBackupDlusIndex }
::= { dlurPuDefBackupDlusTable 1 }
DlurPuDefBackupDlusEntry ::= SEQUENCE {
dlurPuDefBackupDlusPuName DisplayString,
dlurPuDefBackupDlusIndex Unsigned32,
dlurPuDefBackupDlusName SnaControlPointName
}
dlurPuDefBackupDlusPuName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..17))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Locally administered name of the PU. If this object has the
same value as the dlurPuName object, then the two are
identifying the same PU."
::= { dlurPuDefBackupDlusEntry 1 }
dlurPuDefBackupDlusIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Secondary index for this table. The index values start at 1,
which identifies the most preferred backup DLUS for the PU."
::= { dlurPuDefBackupDlusEntry 2 }
dlurPuDefBackupDlusName OBJECT-TYPE
SYNTAX SnaControlPointName
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fully qualified name of a backup DLUS for this PU."
::= { dlurPuDefBackupDlusEntry 3 }
-- *********************************************************************
-- DLUS Control Sessions (CPSVRMGR Pipes)
--
-- This table contains information about DLUS control sessions, also
-- known as CPSVRMGR pipes. Although DLUR uses a pair of CPSVRMGR
-- sessions for communication, for the purpose of status, information
-- about these two sessions is combined to yield a single status for the
-- requester/server connection.
Clouston & Moore Standards Track [Page 15]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
-- *********************************************************************
dlurDlusInfo OBJECT IDENTIFIER ::= { dlurObjects 3 }
dlurDlusTable OBJECT-TYPE
SYNTAX SEQUENCE OF DlurDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about DLUS control sessions."
::= { dlurDlusInfo 1}
dlurDlusEntry OBJECT-TYPE
SYNTAX DlurDlusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry is indexed by the name of the DLUS."
INDEX { dlurDlusName }
::= { dlurDlusTable 1 }
DlurDlusEntry ::= SEQUENCE {
dlurDlusName SnaControlPointName,
dlurDlusSessnStatus INTEGER
}
dlurDlusName OBJECT-TYPE
SYNTAX SnaControlPointName
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SNA name of a DLUS with which this DLUR currently has a
CPSVRMGR pipe established."
::= { dlurDlusEntry 1 }
dlurDlusSessnStatus OBJECT-TYPE
SYNTAX INTEGER {
reset(1),
pendingActive(2),
active(3),
pendingInactive(4)
}
MAX-ACCESS read-only
STATUS current
Clouston & Moore Standards Track [Page 16]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
DESCRIPTION
"Status of the CPSVRMGR pipe between the DLUR and this DLUS.
This is a combination of the separate states for the
contention-winner and contention-loser sessions:
reset(1) - none of the cases below
pendingActive(2) - either contention-winner session or
contention-loser session is pending active
active(3) - contention-winner and contention-loser
sessions are both active
pendingInactive(4) - either contention-winner session or
contention-loser session is pending
inactive - this test is made AFTER the
'pendingActive' test.
The following matrix provides a different representation of
how the values of this object are related to the individual
states of the contention-winner and contention-loser sessions:
Conwinner
| pA | pI | A | X = !(pA | pI | A)
C ++++++++++++++++++++++++++++++++++
o pA | 2 | 2 | 2 | 2
n ++++++++++++++++++++++++++++++++++
l pI | 2 | 4 | 4 | 4
o ++++++++++++++++++++++++++++++++++
s A | 2 | 4 | 3 | 1
e ++++++++++++++++++++++++++++++++++
r X | 2 | 4 | 1 | 1
++++++++++++++++++++++++++++++++++
"
::= { dlurDlusEntry 2 }
-- ***************************************************************
-- Conformance information
-- ***************************************************************
dlurConformance OBJECT IDENTIFIER ::= { dlurMIB 2 }
dlurCompliances OBJECT IDENTIFIER ::= { dlurConformance 1 }
dlurGroups OBJECT IDENTIFIER ::= { dlurConformance 2 }
-- Compliance statements
dlurCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
Clouston & Moore Standards Track [Page 17]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
"The compliance statement for the SNMPv2 entities which
implement the DLUR MIB."
MODULE -- this module
-- Unconditionally mandatory groups
MANDATORY-GROUPS { dlurConfGroup }
::= { dlurCompliances 1 }
-- Units of conformance
dlurConfGroup OBJECT-GROUP
OBJECTS {
dlurNodeCpName,
dlurReleaseLevel,
dlurAnsSupport,
dlurMultiSubnetSupport,
dlurNetworkNameForwardingSupport,
dlurNondisDlusDlurSessDeactSup,
dlurDefaultDefPrimDlusName,
dlurDefaultDefBackupDlusName,
dlurPuSscpSuppliedName,
dlurPuStatus,
dlurPuAnsSupport,
dlurPuLocation,
dlurPuLsName,
dlurPuDlusSessnStatus,
dlurPuActiveDlusName,
dlurPuDefPrimDlusName,
dlurPuDefBackupDlusName,
dlurDlusSessnStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing information on an
implementation of APPN DLUR."
::= { dlurGroups 1 }
-- end of conformance statement
END
6. Acknowledgments
This MIB module is the product of the IETF SNA NAU MIB WG and the AIW
APPN/HPR MIBs SIG.
Clouston & Moore Standards Track [Page 18]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
7. References
[1] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser,
"Structure of Management Information for version 2 of
the Simple Network Management Protocol (SNMPv2)", RFC 1902,
January 1996.
[2] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser,
"Textual Conventions for Version 2 of the Simple
Network Management Protocol (SNMPv2)", RFC 1903, January 1996.
[3] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser,
"Conformance Statements for Version 2 of the Simple
Network Management Protocol (SNMPv2)", RFC 1904, January 1996.
[4] Clouston, B., and B. Moore, "Definition of Managed Objects for
APPN", RFC 2155, June 1997.
[5] IBM, Systems Network Architecture Advanced Peer-to-Peer
Networking Dependent LU Requester Architecture Reference,
Version 1.2, SV40-1010-01, December 1995.
[6] IBM, SNA/MS Formats, GC31-8302-00.
8. Security Considerations
In most cases, MIBs are not themselves security risks; if SNMP
security is operating as intended, the use of a MIB to view
information about a system, or to change some parameter at the
system, is a tool, not a threat.
None of the read-only objects in the DLUR MIB reports a password,
user data, or anything else that is particularly sensitive. Some
enterprises view their network configuration itself, as well as
information about network usage and performance, as corporate assets;
such enterprises may wish to restrict SNMP access to most of the
objects in the MIB.
There are no read-write objects in the DLUR MIB.
Clouston & Moore Standards Track [Page 19]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
9. Authors' Addresses
Bob Clouston
Cisco Systems
7025 Kit Creek Road
P.O. Box 14987
Research Triangle Park, NC 27709, USA
Phone: +1 919 472 2333
EMail: clouston@cisco.com
Bob Moore
IBM Corporation
800 Park Offices Drive
CNMA/664
P.O. Box 12195
Research Triangle Park, NC 27709, USA
Phone: +1 919 254 4436
EMail: remoore@ralvm6.vnet.ibm.com
Clouston & Moore Standards Track [Page 20]
^L
RFC 2232 Managed Objects for DLUR using SMIv2 November 1997
10. Full Copyright Statement
Copyright (C) The Internet Society (1997). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Clouston & Moore Standards Track [Page 21]
^L
|