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 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
|
<pre>Network Working Group K. McCloghrie
Request for Comments: 1230 Hughes LAN Systems, Inc.
R. Fox
Synoptics, Inc.
May 1991
<span class="h1">IEEE 802.4 Token Bus MIB</span>
Status of this Memo
This memo defines a MIB for the IEEE 802.4 Token Bus for use with the
SNMP protocol. This memo is a product of the Transmission Working
Group of the Internet Engineering Task Force (IETF). This RFC
specifies an IAB standards track protocol for the Internet community,
and requests discussion and suggestions for improvements. Please
refer to the current edition of the "IAB Official Protocol Standards"
for the standardization state and status of this protocol.
Distribution of this memo is unlimited.
Table of Contents
<a href="#section-1">1</a>. Abstract .............................................. <a href="#page-1">1</a>
<a href="#section-2">2</a>. The Network Management Framework....................... <a href="#page-2">2</a>
<a href="#section-3">3</a>. Objects ............................................... <a href="#page-2">2</a>
<a href="#section-3.1">3.1</a> Format of Definitions ................................ <a href="#page-3">3</a>
<a href="#section-4">4</a>. Overview .............................................. <a href="#page-3">3</a>
<a href="#section-4.1">4.1</a> Scope of Definitions ................................. <a href="#page-3">3</a>
<a href="#section-4.2">4.2</a> Textual Conventions .................................. <a href="#page-4">4</a>
<a href="#section-4.3">4.3</a> Optional Objects ..................................... <a href="#page-4">4</a>
<a href="#section-5">5</a>. Definitions ........................................... <a href="#page-4">4</a>
<a href="#section-6">6</a>. Acknowledgements ...................................... <a href="#page-22">22</a>
<a href="#section-7">7</a>. References ............................................ <a href="#page-22">22</a>
<a href="#section-8">8</a>. Security Considerations................................ <a href="#page-23">23</a>
<a href="#section-9">9</a>. Authors' Addresses..................................... <a href="#page-23">23</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Abstract</span>
This memo defines an experimental portion of the Management
Information Base (MIB) for use with network management protocols in
TCP/IP-based internets. In particular, this memo defines managed
objects used for managing subnetworks which use the IEEE 802.4 Token
Bus technology described in 802.4 Token-Passing Bus Access Method and
Physical Layer Specifications, IEEE Standard 802.4.
<span class="grey">Transmission Working Group [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. The Network Management Framework</span>
The Internet-standard Network Management Framework consists of three
components. They are:
<a href="./rfc1155">RFC 1155</a> which defines the SMI, the mechanisms used for describing
and naming objects for the purpose of management. <a href="./rfc1212">RFC 1212</a>
defines a more concise description mechanism, which is wholly
consistent with the SMI.
<a href="./rfc1156">RFC 1156</a> which defines MIB-I, the core set of managed objects for
the Internet suite of protocols. <a href="./rfc1213">RFC 1213</a>, defines MIB-II, an
evolution of MIB-I based on implementation experience and new
operational requirements.
<a href="./rfc1157">RFC 1157</a> which defines the SNMP, the protocol used for network
access to managed objects.
The Framework permits new objects to be defined for the purpose of
experimentation and evaluation.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Objects</span>
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the subset of Abstract Syntax Notation One (ASN.1) [<a href="#ref-7" title=" International Organization for Standardization">7</a>]
defined in the SMI. In particular, each object has a name, a syntax,
and an encoding. The name is an object identifier, an
administratively assigned name, which specifies an object type. The
object type together with an object instance serves to uniquely
identify a specific instantiation of the object. For human
convenience, we often use a textual string, termed the OBJECT
DESCRIPTOR, to also refer to the object type.
The syntax of an object type defines the abstract data structure
corresponding to that object type. The ASN.1 language is used for
this purpose. However, the SMI [<a href="#ref-3" title=""Structure and Identification of Management Information for TCP/IP-based internets"">3</a>] purposely restricts the ASN.1
constructs which may be used. These restrictions are explicitly made
for simplicity.
The encoding of an object type is simply how that object type is
represented using the object type's syntax. Implicitly tied to the
notion of an object type's syntax and encoding is how the object type
is represented when being transmitted on the network.
The SMI specifies the use of the basic encoding rules of ASN.1 [<a href="#ref-8" title=" International Standard 8825">8</a>],
subject to the additional requirements imposed by the SNMP.
<span class="grey">Transmission Working Group [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Format of Definitions</span>
<a href="#section-5">Section 5</a> contains contains the specification of all object types
contained in this MIB module. The object types are defined using the
conventions defined in the SMI, as amended by the extensions
specified in [<a href="#ref-9" title=""Concise MIB Definitions"">9</a>,<a href="#ref-10" title=" IEEE Standard 802.4">10</a>].
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Overview</span>
This memo defines three tables:
- the 802.4 Operational Table containing state and
operational parameter information which is specific to
802.4 interfaces;
- the 802.4 Initialization Table containing the parameter
information used by an 802.4 interface as the values to
be assigned to its operational parameters upon
initialization; and
- the 802.4 Statistics Table containing 802.4 interface
statistics.
A managed system will have one entry in each of these tables for each
of its 802.4 interfaces.
This memo also defines OBJECT IDENTIFIERs, some to identify 802.4
tests, for use with the ifExtnsTestTable defined in [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>], and some to
identify Token Bus interface Chip Sets, for use with the
ifExtnsChipSet object defined in [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>].
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Scope of Definitions</span>
All objects defined in this memo are registered in a single subtree
within the experimental namespace [<a href="#ref-3" title=""Structure and Identification of Management Information for TCP/IP-based internets"">3</a>], and are for use with every
interface which conforms to the IEEE 802.4 Token Bus Access Method
[<a href="#ref-10" title=" IEEE Standard 802.4">10</a>]. At present, this applies to interfaces for which the ifType
variable in the Internet-standard MIB [<a href="#ref-4" title=""Management Information Base for Network Management of TCP/IP-based internets"">4</a>,<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>] has the value:
iso88024-tokenBus(8)
For these interfaces, the value of the ifSpecific variable in the
MIB-II [<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>] has the OBJECT IDENTIFIER value:
dot4 OBJECT IDENTIFIER ::= { experimental 7 }
as defined below.
<span class="grey">Transmission Working Group [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Textual Conventions</span>
Two new datatypes, MacAddress and OctetTime, are introduced as
textual conventions in this document. These textual conventions have
NO effect on either the syntax nor the semantics of any managed
object. Objects defined using these conventions are always encoded by
means of the rules that define their primitive type. Hence, no
changes to the SMI or the SNMP are necessary to accommodate these
textual conventions which are adopted merely for the convenience of
readers and writers in pursuit of the elusive goal of a concise and
unambiguous specification.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Optional Objects</span>
A few objects are defined in this memo with "optional" status for the
purpose of allowing experimentation to determine whether they are
useful or not. If sufficient consensus is reached in the Internet
community to result in a subsequent revision of this memo being
placed in the Internet-standard MIB, then these optional objects will
either be removed or become mandatory.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Definitions</span>
<a href="./rfc1230">RFC1230</a>-MIB DEFINITIONS ::= BEGIN
-- IEEE 802.4 Token Bus MIB
IMPORTS
experimental
FROM <a href="./rfc1155">RFC1155</a>-SMI
OBJECT-TYPE
FROM <a href="./rfc1212">RFC-1212</a>;
-- This MIB Module uses the extended OBJECT-TYPE macro as
-- defined in [<a href="#ref-9" title=""Concise MIB Definitions"">9</a>].
dot4 OBJECT IDENTIFIER ::= { experimental 7 }
-- All representations of MAC addresses in this MIB Module
-- use, as a textual convention (i.e. this convention does
-- not affect their encoding), the data type:
MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet
-- address in the
-- "canonical" order
<span class="grey">Transmission Working Group [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
-- defined by IEEE
-- 802.1a.
-- 16-bit addresses, if needed, are represented by setting
-- their upper 4 octets to all 0's, i.e., AAFF would be
-- represented as 00000000AAFF.
-- This specification follows the 802.4 convention of
-- specifying time intervals, which are dependent on the
-- bandwidth of the media, in units of octet time. One
-- octet time is the time taken to transmit eight bits.
-- Representation of such time intervals in this MIB Module
-- use, as a textual convention (i.e., this convention does
-- not affect their encoding), the data type:
OctetTime ::= INTEGER -- the value of a time
-- interval in units of octet
-- time.
-- The 802.4 Operational Table
-- This table contains state and parameter information which
-- is specific to 802.4 interfaces. It is mandatory that
-- systems having 802.4 interfaces implement this table in
-- addition to the generic interfaces table [<a href="#ref-4" title=""Management Information Base for Network Management of TCP/IP-based internets"">4</a>,<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>] and its
-- generic extensions [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>].
dot4Table OBJECT-TYPE
SYNTAX SEQUENCE OF Dot4Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains Token Bus interface
parameters and state variables, one entry
per 802.5 interface."
::= { dot4 1 }
dot4Entry OBJECT-TYPE
SYNTAX Dot4Entry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of Token Bus status and operational
parameter values for an 802.4 interface."
INDEX { dot4IfIndex }
::= { dot4Table 1 }
<span class="grey">Transmission Working Group [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
Dot4Entry ::= SEQUENCE {
dot4IfIndex
INTEGER,
dot4Options
INTEGER,
dot4State
INTEGER,
dot4Commands
INTEGER,
dot4MacAddrLen
INTEGER,
dot4NextStation
MacAddress,
dot4PreviousStation
MacAddress,
dot4SlotTime
OctetTime,
dot4LastTokenRotTime
OctetTime,
dot4HiPriTokenHoldTime
OctetTime,
dot4TargetRotTimeClass4
OctetTime,
dot4TargetRotTimeClass2
OctetTime,
dot4TargetRotTimeClass0
OctetTime,
dot4TargetRotTimeRingMaint
OctetTime,
dot4RingMaintTimerInitValue
OctetTime,
dot4MaxInterSolicitCount
INTEGER (16..255),
dot4MaxRetries
INTEGER (0..7),
dot4MinPostSilencePreambLen
INTEGER,
dot4StandardRevision
INTEGER
}
dot4IfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
<span class="grey">Transmission Working Group [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
802.4 interface for which this entry
contains management information. The
value of this object for a particular
interface has the same value as the
ifIndex object, defined in [<a href="#ref-4" title=""Management Information Base for Network Management of TCP/IP-based internets"">4</a>,<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>], for the
same interface."
::= { dot4Entry 1 }
dot4Options OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The optional parts of the 802.4
specification which are in use by this
station. The options of the 802.4
specification are represented by the
following values:
1 - Priority
2 - Request-With-Response
The value of this object is given by the
sum of the above representations for
those options in use on this interface.
The value zero indicates that no options
are in use."
::= { dot4Entry 2 }
dot4State OBJECT-TYPE
SYNTAX INTEGER {
other(1),
offline(2),
outOfRing(3),
enteringRing(4),
inRing(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current state of the 802.4
interface. The value of other(1) is
used if the state is unknown
(e.g., due to an error condition)."
::= { dot4Entry 3 }
dot4Commands OBJECT-TYPE
SYNTAX INTEGER {
no-op(1),
enterRing(2),
<span class="grey">Transmission Working Group [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
exitRing(3),
reset(4),
initialize(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object causes the station
to change the state of the interface as
indicated by the specified value. An
initialize(5) command causes the
interfaceto load its operational
parameters from its initialization
parameters; the value of
dot4InitInRingDesired determines
whether the station tries to enter the
logical ring immediately.
Note that the 802.4 specification
suggests a station remain Offline after a
'remote Network Management' reset(4),
until a 'local Network Management'
initialize(5) is performed.
Setting this object to a value of
no-op(1) has no effect. When read,
this object always has the value no-op(1)."
::= { dot4Entry 4 }
dot4MacAddrLen OBJECT-TYPE
SYNTAX INTEGER {
sixteenBit(1),
forty-eightBit(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the size of MAC
addresses interpreted by this station."
::= { dot4Entry 5 }
dot4NextStation OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of this station's
successor in the logical ring."
::= { dot4Entry 6 }
<span class="grey">Transmission Working Group [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
dot4PreviousStation OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The source MAC address of the last token
addressed to this station."
::= { dot4Entry 7 }
dot4SlotTime OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum time any station need wait
for an immediate MAC-level response from
another station.
This value must the same in all stations on
the 802.4 network."
::= { dot4Entry 8 }
dot4LastTokenRotTime OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The observed token rotation time for the
last token rotation, timed from token
arrival to token arrival. A value of
zero indicates that the token is not
rotating."
::= { dot4Entry 9 }
dot4HiPriTokenHoldTime OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum duration for which a station
can hold the token to transmit frames of
access class 6 (if the priority option is
implemented), or of any access class (if
the priority option is not implemented)."
::= { dot4Entry 10 }
dot4TargetRotTimeClass4 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
<span class="grey">Transmission Working Group [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
STATUS mandatory
DESCRIPTION
"If the priority scheme is being used,
this value specifies a limit on how long
a station can transmit frames at access
class 4. The limit is measured from the
time the station is able to start
transmitting frames at this access class
on one rotation, to the time it must stop
transmitting frames at this access class
on the next rotation. If the priority
scheme is not being used, this object has
the value 0."
::= { dot4Entry 11 }
dot4TargetRotTimeClass2 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the priority scheme is being used,
this value specifies a limit on how long
a station can transmit frames at access
class 2. The limit is measured from the
time the station is able to start
transmitting frames at this access
class on one rotation, to the time it
must stop transmitting frames at this
access class on the next rotation. If
the priority scheme is not being used,
this object has the value 0."
::= { dot4Entry 12 }
dot4TargetRotTimeClass0 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the priority scheme is being used,
this value specifies a limit on how long
a station can transmit frames at access
class 0. The limit is measured from the
time the station is able to start
transmitting frames at this access
class on one rotation, to the time it
must stop transmitting frames at this
access class on the next rotation. If
the priority scheme is not being used,
<span class="grey">Transmission Working Group [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
this object has the value 0."
::= { dot4Entry 13 }
dot4TargetRotTimeRingMaint OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value used to limit the duration of a
token rotation. If the duration of a
token rotation exceeds this value, the
station will not open the response window
to solicit for a new successor."
::= { dot4Entry 14 }
dot4RingMaintTimerInitValue OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value to which the
dot4TargetRotTimeRingMaint is set, each
time the station enters the ring.
A large value will cause the station to
solicit successors immediately upon entry
to the ring; a value of zero will cause
the station to defer this solicitation
for at least one token rotation."
::= { dot4Entry 15 }
dot4MaxInterSolicitCount OBJECT-TYPE
SYNTAX INTEGER (16..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of consecutive token
rotations without soliciting for a
successor. If this count expires, the
station opens the response window to
solicit for a successor (providing the
duration of the current token rotation
has not exceeded
dot4TargetRotTimeRingMaint). The least
significant two bits of the count are
determined randomly by the station on a
per-use basis."
::= { dot4Entry 16 }
<span class="grey">Transmission Working Group [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
dot4MaxRetries OBJECT-TYPE
SYNTAX INTEGER (0..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of retries of a
Request-with-Response (RWR) frame. If
the RWR option is not in use, this object
has the value 0."
::= { dot4Entry 17 }
dot4MinPostSilencePreambLen OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum number of octets of preamble
on the first frame transmitted by this
station after a period of 'transmitted'
silence."
::= { dot4Entry 18 }
dot4StandardRevision OBJECT-TYPE
SYNTAX INTEGER {
rev2(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Revision number of the 802.4 standard
implemented by this station."
::= { dot4Entry 19 }
-- 802.4 Initialization Table
-- This table contains the parameter information used by an
-- 802.4 interface as the values to be assigned to its
-- operational parameters upon initialization. It is
-- mandatory that systems having 802.4 interfaces implement
-- this table.
dot4InitTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot4InitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains Token Bus
<span class="grey">Transmission Working Group [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
initialization parameters, one entry per
802.4 interface."
::= { dot4 2 }
dot4InitEntry OBJECT-TYPE
SYNTAX Dot4InitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of Token Bus initialization
parameters for an 802.4 interface."
INDEX { dot4InitIfIndex }
::= { dot4InitTable 1 }
Dot4InitEntry ::= SEQUENCE {
dot4InitIfIndex
INTEGER,
dot4InitSlotTime
OctetTime,
dot4InitMaxInterSolicitCount
INTEGER (16..255),
dot4InitMaxRetries
INTEGER (0..7),
dot4InitHiPriTokenHoldTime
OctetTime,
dot4InitTargetRotTimeClass4
OctetTime,
dot4InitTargetRotTimeClass2
OctetTime,
dot4InitTargetRotTimeClass0
OctetTime,
dot4InitTargetRotTimeRingMaint
OctetTime,
dot4InitRingMaintTimerInitValue
OctetTime,
dot4InitMinPostSilencePreambLen
INTEGER,
dot4InitInRingDesired
INTEGER
}
dot4InitIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
802.4 interface for which this entry
<span class="grey">Transmission Working Group [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
contains management information. The
value of this object for a particular
interface has the same value as the
ifIndex object, defined in [<a href="#ref-4" title=""Management Information Base for Network Management of TCP/IP-based internets"">4</a>,<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>], for
the same interface."
::= { dot4InitEntry 1 }
dot4InitSlotTime OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4SlotTime when the station is
initialized."
::= { dot4InitEntry 2 }
dot4InitMaxInterSolicitCount OBJECT-TYPE
SYNTAX INTEGER (16..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4MaxInterSolicitCount when the station
is initialized."
::= { dot4InitEntry 3 }
dot4InitMaxRetries OBJECT-TYPE
SYNTAX INTEGER (0..7)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4MaxRetries when the station is
initialized."
::= { dot4InitEntry 4 }
dot4InitHiPriTokenHoldTime OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4HiPriTokenHoldTime when the station
is initialized."
::= { dot4InitEntry 5 }
<span class="grey">Transmission Working Group [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
dot4InitTargetRotTimeClass4 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4TargetRotTimeClass4 when the station
is initialized."
::= { dot4InitEntry 6 }
dot4InitTargetRotTimeClass2 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4TargetRotTimeClass2 when the station
is initialized."
::= { dot4InitEntry 7 }
dot4InitTargetRotTimeClass0 OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4TargetRotTimeClass0 when the station
is initialized."
::= { dot4InitEntry 8 }
dot4InitTargetRotTimeRingMaint OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4TargetRotTimeRingMaint when the station
is initialized."
::= { dot4InitEntry 9 }
dot4InitRingMaintTimerInitValue OBJECT-TYPE
SYNTAX OctetTime
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4RingMaintTimerInitValue when the
station is initialized."
<span class="grey">Transmission Working Group [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
::= { dot4InitEntry 10 }
dot4InitMinPostSilencePreambLen OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value assigned to the object
dot4MinPostSilencePreambLen when the
station is initialized."
::= { dot4InitEntry 11 }
dot4InitInRingDesired OBJECT-TYPE
SYNTAX INTEGER {
inRing(1),
outOfRing(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object determines whether the
station will attempt to enter the logical
ring immediately after initialization."
::= { dot4InitEntry 12 }
-- 802.4 Statistics Table
-- This table contains Token Bus statistics, one entry per
-- 802.4 interface. It is mandatory that systems having
-- 802.4 interfaces implement this table.
dot4StatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot4StatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing Token Bus statistics.
All the statistics are defined using the
syntax Counter as 32 bit wrap around
counters. Thus, if an interface's
hardware chip set maintains these
statistics in 16-bit counters, then the
agent must read the hardware's counters
frequently enough to prevent loss of
significance, in order to maintain
a 32-bit counter in software."
::= { dot4 3 }
<span class="grey">Transmission Working Group [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
dot4StatsEntry OBJECT-TYPE
SYNTAX Dot4StatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing the 802.4 statistics
for a particular interface."
INDEX { dot4StatsIfIndex }
::= { dot4StatsTable 1 }
Dot4StatsEntry ::= SEQUENCE {
dot4StatsIfIndex
INTEGER,
dot4StatsTokenPasses
Counter,
dot4StatsTokenHeards
Counter,
dot4StatsNoSuccessors
Counter,
dot4StatsWhoFollows
Counter,
dot4StatsTokenPassFails
Counter,
dot4StatsNonSilences
Counter,
dot4StatsFcsErrors
Counter,
dot4StatsEbitErrors
Counter,
dot4StatsFrameFrags
Counter,
dot4StatsFrameTooLongs
Counter,
dot4StatsOverRuns
Counter,
dot4StatsDupAddresses
Counter
}
dot4StatsIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object identifies the
802.4 interface for which this entry
contains management information. The
value of this object for a particular
<span class="grey">Transmission Working Group [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
interface has the same value as the
ifIndex object, defined in [<a href="#ref-4" title=""Management Information Base for Network Management of TCP/IP-based internets"">4</a>,<a href="#ref-6" title=""Management Information Base for Network Management of TCP/IP-based internets"">6</a>], for the
same interface."
::= { dot4StatsEntry 1 }
dot4StatsTokenPasses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS optional
DESCRIPTION
"The number of times this station has
passed the token."
::= { dot4StatsEntry 2 }
dot4StatsTokenHeards OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS optional
DESCRIPTION
"The number of tokens heard by this
station."
::= { dot4StatsEntry 3 }
dot4StatsNoSuccessors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the station could
not find a successor while believing
itself not the only station in the ring.
This can signify a faulty transmitter
condition in this station."
::= { dot4StatsEntry 4 }
dot4StatsWhoFollows OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the station has had
to look for a new next station."
::= { dot4StatsEntry 5 }
dot4StatsTokenPassFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
<span class="grey">Transmission Working Group [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
DESCRIPTION
"The number of times the station failed in
passing the token to the next station."
::= { dot4StatsEntry 6 }
dot4StatsNonSilences OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of occurrences of non-silence
followed by silence in which a start
delimiter was not detected."
::= { dot4StatsEntry 7 }
dot4StatsFcsErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames received with an
incorrect FCS and the E-bit reset."
::= { dot4StatsEntry 8 }
dot4StatsEbitErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames the station
received with the E-bit set in the
end delimiter."
::= { dot4StatsEntry 9 }
dot4StatsFrameFrags OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of occurrences of receiving a
start delimiter followed by another start
delimiter, an invalid symbol sequence or
silence, without an intervening end
delimiter."
::= { dot4StatsEntry 10 }
dot4StatsFrameTooLongs OBJECT-TYPE
SYNTAX Counter
<span class="grey">Transmission Working Group [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames that were received
that were larger than the media's MTU."
::= { dot4StatsEntry 11 }
dot4StatsOverRuns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times a FIFO overrun was
detected in the station."
::= { dot4StatsEntry 12 }
dot4StatsDupAddresses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this station
detected another station using the same
MAC address."
::= { dot4StatsEntry 13 }
-- 802.4 Interface Tests
dot4Tests OBJECT IDENTIFIER ::= { dot4 5 }
-- The extensions to the interfaces table proposed in [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>]
-- define a table object, ifExtnsTestTable, through which a
-- network manager can instruct an agent to test an interface
-- for various faults. A test to be performed is identified
-- (as the value of ifExtnsTestType) via an OBJECT IDENTIFIER.
-- When a test fails, the object ifExtnsTestCode, defined in
-- [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>], may contain a media-specific error-code. For 802.4
-- interfaces, the following is defined as the value of
-- ifExtnsTestCode when a test fails because the modem could
-- not be initialized:
dot4Errors OBJECT IDENTIFIER ::= { dot4 4 }
dot4ModemInitFailed OBJECT IDENTIFIER ::= { dot4Errors 1 }
-- The Full-Duplex Loop Back Test is a common test, defined
-- in [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>] as:
<span class="grey">Transmission Working Group [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
--
-- testFullDuplexLoopBack
--
-- Invoking this test on a 802.4 interface causes the
-- interface to check the path from memory through the chip
-- set's serial interface back to memory, thus checking the
-- proper functioning of the transmit and receive machines
-- of the token bus hardware.
-- This test may only be invoked when the interface is
-- the Offline state.
-- The FIFO Path test is defined by:
testFifoPath OBJECT IDENTIFIER ::= { dot4Tests 1 }
-- Invoking this test causes the interface to check the path
-- from memory to the chip set's FIFO and back to memory.
-- This test checks the hosts interface to the token bus
-- hardware. This test may only be invoked when the
-- interface is the Offline state.
-- The External Loopback test is defined by:
testExternalLoopback OBJECT IDENTIFIER ::= { dot4Tests 2 }
-- Invoking this test causes the interface to check the path
-- from memory through the chip set and out onto the network
-- for external (e.g., at the head-end) loopback through the
-- chip set to memory. This test checks the host's interface
-- to the 802.4 network. This test is liable to cause
-- serious disruption if invoked on an operational network.
-- 802.4 Hardware Chip Sets
dot4ChipSets OBJECT IDENTIFIER ::= { dot4 6 }
-- The extensions to the interfaces table proposed in [<a href="#ref-11" title=""Extensions to the Generic-Interface MIB"">11</a>]
-- define an object, ifExtnsChipSet, with the syntax of
-- OBJECT IDENTIFIER, to identify the hardware chip set in
-- use by an interface. That definition specifies just
-- one applicable object identifier:
--
-- unknownChipSet
--
-- for use as the value of ifExtnsChipSet when the specific
-- chip set is unknown.
<span class="grey">Transmission Working Group [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
--
-- This MIB defines the following for use as values of
-- ifExtnsChipSet:
-- for use as values of ifExtnsChipSet
-- Motorola 68824 Token Bus Controller
chipSetMc68824 OBJECT IDENTIFIER ::= { dot4ChipSets 1 }
END
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Acknowledgements</span>
This document was produced under the auspices of the IETF's
Transmission Working Group. The comments of the following
individuals are acknowledged:
Brian Kline, Hughes LAN Systems, Inc.
Bruce Lieberman, Hughes LAN Systems, Inc.
Marshall T. Rose, Performance Systems International, Inc.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
[<a id="ref-1">1</a>] Cerf, V., "IAB Recommendations for the Development of Internet
Network Management Standards", <a href="./rfc1052">RFC 1052</a>, NRI, April 1988.
[<a id="ref-2">2</a>] Cerf, V., "Report of the Second Ad Hoc Network Management Review
Group", <a href="./rfc1109">RFC 1109</a>, NRI, August 1989.
[<a id="ref-3">3</a>] Rose M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based internets", <a href="./rfc1155">RFC 1155</a>,
Performance Systems International, Hughes LAN Systems, May 1990.
[<a id="ref-4">4</a>] McCloghrie K., and M. Rose, "Management Information Base for
Network Management of TCP/IP-based internets", <a href="./rfc1156">RFC 1156</a>, Hughes
LAN Systems, Performance Systems International, May 1990.
[<a id="ref-5">5</a>] Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple
Network Management Protocol (SNMP), <a href="./rfc1157">RFC 1157</a>, SNMP Research,
Performance Systems International, Performance Systems
International, MIT Laboratory for Computer Science, May 1990.
[<a id="ref-6">6</a>] McCloghrie K., and M. Rose, Editors, "Management Information Base
for Network Management of TCP/IP-based internets", <a href="./rfc1213">RFC 1213</a>,
Performance Systems International, March 1991.
[<a id="ref-7">7</a>] Information processing systems - Open Systems Interconnection -
Specification of Abstract Syntax Notation One (ASN.1),
International Organization for Standardization, International
<span class="grey">Transmission Working Group [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc1230">RFC 1230</a> IEEE 802.4 MIB May 1991</span>
Standard 8824, December 1987.
[<a id="ref-8">8</a>] Information processing systems - Open Systems Interconnection -
Specification of Basic Encoding Rules for Abstract Notation One
(ASN.1), International Organization for Standardization,
International Standard 8825, December 1987.
[<a id="ref-9">9</a>] Rose, M., and K. McCloghrie, Editors, "Concise MIB Definitions",
<a href="./rfc1212">RFC 1212</a>, Performance Systems International, Hughes LAN Systems,
March 1991.
[<a id="ref-10">10</a>] Token-Passing Bus Access Method and Physical Layer
Specifications, Institute of Electrical and Electronic Engineers,
IEEE Standard 802.4, May 1988.
[<a id="ref-11">11</a>] McCloghrie, K., Editor, "Extensions to the Generic-Interface
MIB", <a href="./rfc1229">RFC 1229</a>, Hughes LAN Systems, May 1991.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
Security issues are not discussed in this memo.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Authors' Addresses</span>
Keith McCloghrie
Hughes LAN Systems, Inc.
1225 Charleston Road
Mountain View, CA 94043
Phone: (415) 966-7934
EMail: kzm@hls.com
Richard Fox
Synoptics, Inc.
4401 Great America Pkwy
PO Box 58185
Santa Clara, Cal. 95052
Phone: (408) 764-1372
EMail: rfox@synoptics.com
Transmission Working Group [Page 23]
</pre>
|