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
|
<pre>Network Working Group M. Wahl
Request for Comments: 2256 Critical Angle Inc.
Category: Standards Track December 1997
<span class="h1">A Summary of the X.500(96) User Schema for use with LDAPv3</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Status of this Memo</span>
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.
IESG Note
This document describes a directory access protocol that provides
both read and update access. Update access requires secure
authentication, but this document does not mandate implementation of
any satisfactory authentication mechanisms.
In accordance with <a href="./rfc2026#section-4.4.1">RFC 2026, section 4.4.1</a>, this specification is
being approved by IESG as a Proposed Standard despite this
limitation, for the following reasons:
a. to encourage implementation and interoperability testing of
these protocols (with or without update access) before they
are deployed, and
b. to encourage deployment and use of these protocols in read-only
applications. (e.g. applications where LDAPv3 is used as
a query language for directories which are updated by some
secure mechanism other than LDAP), and
c. to avoid delaying the advancement and deployment of other Internet
standards-track protocols which require the ability to query, but
not update, LDAPv3 directory servers.
Readers are hereby warned that until mandatory authentication
mechanisms are standardized, clients and servers written according to
this specification which make use of update functionality are
UNLIKELY TO INTEROPERATE, or MAY INTEROPERATE ONLY IF AUTHENTICATION
IS REDUCED TO AN UNACCEPTABLY WEAK LEVEL.
<span class="grey">Wahl Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
Implementors are hereby discouraged from deploying LDAPv3 clients or
servers which implement the update functionality, until a Proposed
Standard for mandatory authentication in LDAPv3 has been approved and
published as an RFC.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Abstract</span>
This document provides an overview of the attribute types and object
classes defined by the ISO and ITU-T committees in the X.500
documents, in particular those intended for use by directory clients.
This is the most widely used schema for LDAP/X.500 directories, and
many other schema definitions for white pages objects use it as a
basis. This document does not cover attributes used for the
administration of X.500 directory servers, nor does it include
attributes defined by other ISO/ITU-T documents.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="#ref-6" title=""Key words for use in RFCs to Indicate Requirement Levels"">6</a>].
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. General Issues</span>
This document references syntaxes given in <a href="#section-6">section 6</a> of this document
and section 6 of [<a href="#ref-1" title=""Lightweight X.500 Directory Access Protocol (v3): Attribute Syntax Definitions"">1</a>]. Matching rules are listed in <a href="#section-8">section 8</a> of this
document and section 8 of [<a href="#ref-1" title=""Lightweight X.500 Directory Access Protocol (v3): Attribute Syntax Definitions"">1</a>].
The attribute type and object class definitions are written using the
BNF form of AttributeTypeDescription and ObjectClassDescription given
in [<a href="#ref-1" title=""Lightweight X.500 Directory Access Protocol (v3): Attribute Syntax Definitions"">1</a>]. Lines have been folded for readability.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Source</span>
The schema definitions in this document are based on those found in
X.500 [<a href="#ref-2">2</a>],[<a href="#ref-3">3</a>],[<a href="#ref-4">4</a>],[<a href="#ref-5">5</a>], and updates to these documents, specifically:
Sections Source
============ ============
5.1 - 5.2 X.501(93)
5.3 - 5.36 X.520(88)
5.37 - 5.41 X.509(93)
5.42 - 5.52 X.520(93)
5.53 - 5.54 X.509(96)
5.55 X.520(96)
6.1 <a href="./rfc1274">RFC 1274</a>
6.2 (new syntax)
6.3 - 6.6 <a href="./rfc1274">RFC 1274</a>
7.1 - 7.2 X.501(93)
7.3 - 7.18 X.521(93)
<span class="grey">Wahl Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
7.19 - 7.21 X.509(96)
7.22 X.521(96)
Some attribute names are different from those found in X.520(93).
Three new attributes supportedAlgorithms, deltaRevocationList and
dmdName, and the objectClass dmd, are defined in the X.500(96)
documents.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Attribute Types</span>
An LDAP server implementation SHOULD recognize the attribute types
described in this section.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. objectClass</span>
The values of the objectClass attribute describe the kind of object
which an entry represents. The objectClass attribute is present in
every entry, with at least two values. One of the values is either
"top" or "alias".
( 2.5.4.0 NAME 'objectClass' EQUALITY objectIdentifierMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. aliasedObjectName</span>
The aliasedObjectName attribute is used by the directory service if
the entry containing this attribute is an alias.
( 2.5.4.1 NAME 'aliasedObjectName' EQUALITY distinguishedNameMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 SINGLE-VALUE )
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. knowledgeInformation</span>
This attribute is no longer used.
( 2.5.4.2 NAME 'knowledgeInformation' EQUALITY caseIgnoreMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} )
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. cn</span>
This is the X.500 commonName attribute, which contains a name of an
object. If the object corresponds to a person, it is typically the
person's full name.
( 2.5.4.3 NAME 'cn' SUP name )
<span class="grey">Wahl Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. sn</span>
This is the X.500 surname attribute, which contains the family name
of a person.
( 2.5.4.4 NAME 'sn' SUP name )
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. serialNumber</span>
This attribute contains the serial number of a device.
( 2.5.4.5 NAME 'serialNumber' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{64} )
<span class="h3"><a class="selflink" id="section-5.7" href="#section-5.7">5.7</a>. c</span>
This attribute contains a two-letter ISO 3166 country code
(countryName).
( 2.5.4.6 NAME 'c' SUP name SINGLE-VALUE )
<span class="h3"><a class="selflink" id="section-5.8" href="#section-5.8">5.8</a>. l</span>
This attribute contains the name of a locality, such as a city,
county or other geographic region (localityName).
( 2.5.4.7 NAME 'l' SUP name )
<span class="h3"><a class="selflink" id="section-5.9" href="#section-5.9">5.9</a>. st</span>
This attribute contains the full name of a state or province
(stateOrProvinceName).
( 2.5.4.8 NAME 'st' SUP name )
<span class="h3"><a class="selflink" id="section-5.10" href="#section-5.10">5.10</a>. street</span>
This attribute contains the physical address of the object to which
the entry corresponds, such as an address for package delivery
(streetAddress).
( 2.5.4.9 NAME 'street' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} )
<span class="grey">Wahl Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.11" href="#section-5.11">5.11</a>. o</span>
This attribute contains the name of an organization
(organizationName).
( 2.5.4.10 NAME 'o' SUP name )
<span class="h3"><a class="selflink" id="section-5.12" href="#section-5.12">5.12</a>. ou</span>
This attribute contains the name of an organizational unit
(organizationalUnitName).
( 2.5.4.11 NAME 'ou' SUP name )
<span class="h3"><a class="selflink" id="section-5.13" href="#section-5.13">5.13</a>. title</span>
This attribute contains the title, such as "Vice President", of a
person in their organizational context. The "personalTitle"
attribute would be used for a person's title independent of their job
function.
( 2.5.4.12 NAME 'title' SUP name )
<span class="h3"><a class="selflink" id="section-5.14" href="#section-5.14">5.14</a>. description</span>
This attribute contains a human-readable description of the object.
( 2.5.4.13 NAME 'description' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024} )
<span class="h3"><a class="selflink" id="section-5.15" href="#section-5.15">5.15</a>. searchGuide</span>
This attribute is for use by X.500 clients in constructing search
filters. It is obsoleted by enhancedSearchGuide, described below in
5.48.
( 2.5.4.14 NAME 'searchGuide'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.25 )
<span class="h3"><a class="selflink" id="section-5.16" href="#section-5.16">5.16</a>. businessCategory</span>
This attribute describes the kind of business performed by an
organization.
( 2.5.4.15 NAME 'businessCategory' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} )
<span class="grey">Wahl Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.17" href="#section-5.17">5.17</a>. postalAddress</span>
( 2.5.4.16 NAME 'postalAddress' EQUALITY caseIgnoreListMatch
SUBSTR caseIgnoreListSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )
<span class="h3"><a class="selflink" id="section-5.18" href="#section-5.18">5.18</a>. postalCode</span>
( 2.5.4.17 NAME 'postalCode' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40} )
<span class="h3"><a class="selflink" id="section-5.19" href="#section-5.19">5.19</a>. postOfficeBox</span>
( 2.5.4.18 NAME 'postOfficeBox' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{40} )
<span class="h3"><a class="selflink" id="section-5.20" href="#section-5.20">5.20</a>. physicalDeliveryOfficeName</span>
( 2.5.4.19 NAME 'physicalDeliveryOfficeName' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} )
<span class="h3"><a class="selflink" id="section-5.21" href="#section-5.21">5.21</a>. telephoneNumber</span>
( 2.5.4.20 NAME 'telephoneNumber' EQUALITY telephoneNumberMatch
SUBSTR telephoneNumberSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.50{32} )
<span class="h3"><a class="selflink" id="section-5.22" href="#section-5.22">5.22</a>. telexNumber</span>
( 2.5.4.21 NAME 'telexNumber'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.52 )
<span class="h3"><a class="selflink" id="section-5.23" href="#section-5.23">5.23</a>. teletexTerminalIdentifier</span>
( 2.5.4.22 NAME 'teletexTerminalIdentifier'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.51 )
<span class="h3"><a class="selflink" id="section-5.24" href="#section-5.24">5.24</a>. facsimileTelephoneNumber</span>
( 2.5.4.23 NAME 'facsimileTelephoneNumber'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.22 )
<span class="grey">Wahl Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.25" href="#section-5.25">5.25</a>. x121Address</span>
( 2.5.4.24 NAME 'x121Address' EQUALITY numericStringMatch
SUBSTR numericStringSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{15} )
<span class="h3"><a class="selflink" id="section-5.26" href="#section-5.26">5.26</a>. internationaliSDNNumber</span>
( 2.5.4.25 NAME 'internationaliSDNNumber' EQUALITY numericStringMatch
SUBSTR numericStringSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.36{16} )
<span class="h3"><a class="selflink" id="section-5.27" href="#section-5.27">5.27</a>. registeredAddress</span>
This attribute holds a postal address suitable for reception of
telegrams or expedited documents, where it is necessary to have the
recipient accept delivery.
( 2.5.4.26 NAME 'registeredAddress' SUP postalAddress
SYNTAX 1.3.6.1.4.1.1466.115.121.1.41 )
<span class="h3"><a class="selflink" id="section-5.28" href="#section-5.28">5.28</a>. destinationIndicator</span>
This attribute is used for the telegram service.
( 2.5.4.27 NAME 'destinationIndicator' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44{128} )
<span class="h3"><a class="selflink" id="section-5.29" href="#section-5.29">5.29</a>. preferredDeliveryMethod</span>
( 2.5.4.28 NAME 'preferredDeliveryMethod'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.14
SINGLE-VALUE )
<span class="h3"><a class="selflink" id="section-5.30" href="#section-5.30">5.30</a>. presentationAddress</span>
This attribute contains an OSI presentation address.
( 2.5.4.29 NAME 'presentationAddress'
EQUALITY presentationAddressMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.43
SINGLE-VALUE )
<span class="grey">Wahl Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.31" href="#section-5.31">5.31</a>. supportedApplicationContext</span>
This attribute contains the identifiers of OSI application contexts.
( 2.5.4.30 NAME 'supportedApplicationContext'
EQUALITY objectIdentifierMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )
<span class="h3"><a class="selflink" id="section-5.32" href="#section-5.32">5.32</a>. member</span>
( 2.5.4.31 NAME 'member' SUP distinguishedName )
<span class="h3"><a class="selflink" id="section-5.33" href="#section-5.33">5.33</a>. owner</span>
( 2.5.4.32 NAME 'owner' SUP distinguishedName )
<span class="h3"><a class="selflink" id="section-5.34" href="#section-5.34">5.34</a>. roleOccupant</span>
( 2.5.4.33 NAME 'roleOccupant' SUP distinguishedName )
<span class="h3"><a class="selflink" id="section-5.35" href="#section-5.35">5.35</a>. seeAlso</span>
( 2.5.4.34 NAME 'seeAlso' SUP distinguishedName )
<span class="h3"><a class="selflink" id="section-5.36" href="#section-5.36">5.36</a>. userPassword</span>
( 2.5.4.35 NAME 'userPassword' EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40{128} )
Passwords are stored using an Octet String syntax and are not
encrypted. Transfer of cleartext passwords are strongly discouraged
where the underlying transport service cannot guarantee
confidentiality and may result in disclosure of the password to
unauthorized parties.
<span class="h3"><a class="selflink" id="section-5.37" href="#section-5.37">5.37</a>. userCertificate</span>
This attribute is to be stored and requested in the binary form, as
'userCertificate;binary'.
( 2.5.4.36 NAME 'userCertificate'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 )
<span class="h3"><a class="selflink" id="section-5.38" href="#section-5.38">5.38</a>. cACertificate</span>
This attribute is to be stored and requested in the binary form, as
'cACertificate;binary'.
<span class="grey">Wahl Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
( 2.5.4.37 NAME 'cACertificate'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.8 )
<span class="h3"><a class="selflink" id="section-5.39" href="#section-5.39">5.39</a>. authorityRevocationList</span>
This attribute is to be stored and requested in the binary form, as
'authorityRevocationList;binary'.
( 2.5.4.38 NAME 'authorityRevocationList'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 )
<span class="h3"><a class="selflink" id="section-5.40" href="#section-5.40">5.40</a>. certificateRevocationList</span>
This attribute is to be stored and requested in the binary form, as
'certificateRevocationList;binary'.
( 2.5.4.39 NAME 'certificateRevocationList'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 )
<span class="h3"><a class="selflink" id="section-5.41" href="#section-5.41">5.41</a>. crossCertificatePair</span>
This attribute is to be stored and requested in the binary form, as
'crossCertificatePair;binary'.
( 2.5.4.40 NAME 'crossCertificatePair'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.10 )
<span class="h3"><a class="selflink" id="section-5.42" href="#section-5.42">5.42</a>. name</span>
The name attribute type is the attribute supertype from which string
attribute types typically used for naming may be formed. It is
unlikely that values of this type itself will occur in an entry. LDAP
server implementations which do not support attribute subtyping need
not recognize this attribute in requests. Client implementations
MUST NOT assume that LDAP servers are capable of performing attribute
subtyping.
( 2.5.4.41 NAME 'name' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} )
<span class="h3"><a class="selflink" id="section-5.43" href="#section-5.43">5.43</a>. givenName</span>
The givenName attribute is used to hold the part of a person's name
which is not their surname nor middle name.
( 2.5.4.42 NAME 'givenName' SUP name )
<span class="grey">Wahl Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.44" href="#section-5.44">5.44</a>. initials</span>
The initials attribute contains the initials of some or all of an
individuals names, but not the surname(s).
( 2.5.4.43 NAME 'initials' SUP name )
<span class="h3"><a class="selflink" id="section-5.45" href="#section-5.45">5.45</a>. generationQualifier</span>
The generationQualifier attribute contains the part of the name which
typically is the suffix, as in "IIIrd".
( 2.5.4.44 NAME 'generationQualifier' SUP name )
<span class="h3"><a class="selflink" id="section-5.46" href="#section-5.46">5.46</a>. x500UniqueIdentifier</span>
The x500UniqueIdentifier attribute is used to distinguish between
objects when a distinguished name has been reused. This is a
different attribute type from both the "uid" and "uniqueIdentifier"
types.
( 2.5.4.45 NAME 'x500UniqueIdentifier' EQUALITY bitStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.6 )
<span class="h3"><a class="selflink" id="section-5.47" href="#section-5.47">5.47</a>. dnQualifier</span>
The dnQualifier attribute type specifies disambiguating information
to add to the relative distinguished name of an entry. It is
intended for use when merging data from multiple sources in order to
prevent conflicts between entries which would otherwise have the same
name. It is recommended that the value of the dnQualifier attribute
be the same for all entries from a particular source.
( 2.5.4.46 NAME 'dnQualifier' EQUALITY caseIgnoreMatch
ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.44 )
<span class="h3"><a class="selflink" id="section-5.48" href="#section-5.48">5.48</a>. enhancedSearchGuide</span>
This attribute is for use by X.500 clients in constructing search
filters.
( 2.5.4.47 NAME 'enhancedSearchGuide'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.21 )
<span class="grey">Wahl Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.49" href="#section-5.49">5.49</a>. protocolInformation</span>
This attribute is used in conjunction with the presentationAddress
attribute, to provide additional information to the OSI network
service.
( 2.5.4.48 NAME 'protocolInformation'
EQUALITY protocolInformationMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.42 )
<span class="h3"><a class="selflink" id="section-5.50" href="#section-5.50">5.50</a>. distinguishedName</span>
This attribute type is not used as the name of the object itself, but
it is instead a base type from which attributes with DN syntax
inherit.
It is unlikely that values of this type itself will occur in an
entry. LDAP server implementations which do not support attribute
subtyping need not recognize this attribute in requests. Client
implementations MUST NOT assume that LDAP servers are capable of
performing attribute subtyping.
( 2.5.4.49 NAME 'distinguishedName' EQUALITY distinguishedNameMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 )
<span class="h3"><a class="selflink" id="section-5.51" href="#section-5.51">5.51</a>. uniqueMember</span>
( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 )
<span class="h3"><a class="selflink" id="section-5.52" href="#section-5.52">5.52</a>. houseIdentifier</span>
This attribute is used to identify a building within a location.
( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768} )
<span class="h3"><a class="selflink" id="section-5.53" href="#section-5.53">5.53</a>. supportedAlgorithms</span>
This attribute is to be stored and requested in the binary form, as
'supportedAlgorithms;binary'.
( 2.5.4.52 NAME 'supportedAlgorithms'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.49 )
<span class="grey">Wahl Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-5.54" href="#section-5.54">5.54</a>. deltaRevocationList</span>
This attribute is to be stored and requested in the binary form, as
'deltaRevocationList;binary'.
( 2.5.4.53 NAME 'deltaRevocationList'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.9 )
<span class="h3"><a class="selflink" id="section-5.55" href="#section-5.55">5.55</a>. dmdName</span>
The value of this attribute specifies a directory management domain
(DMD), the administrative authority which operates the directory
server.
( 2.5.4.54 NAME 'dmdName' SUP name )
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Syntaxes</span>
Servers SHOULD recognize the syntaxes defined in this section. Each
syntax begins with a sample value of the ldapSyntaxes attribute which
defines the OBJECT IDENTIFIER of the syntax. The descriptions of
syntax names are not carried in protocol, and are not guaranteed to
be unique.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Delivery Method</span>
( 1.3.6.1.4.1.1466.115.121.1.14 DESC 'Delivery Method' )
Values in this syntax are encoded according to the following BNF:
delivery-value = pdm / ( pdm whsp "$" whsp delivery-value )
pdm = "any" / "mhs" / "physical" / "telex" / "teletex" /
"g3fax" / "g4fax" / "ia5" / "videotex" / "telephone"
Example:
telephone
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Enhanced Guide</span>
( 1.3.6.1.4.1.1466.115.121.1.21 DESC 'Enhanced Guide' )
Values in this syntax are encoded according to the following BNF:
EnhancedGuide = woid whsp "#" whsp criteria whsp "#" whsp subset
subset = "baseobject" / "oneLevel" / "wholeSubtree"
<span class="grey">Wahl Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
The criteria production is defined in the Guide syntax below. This
syntax has been added subsequent to <a href="./rfc1778">RFC 1778</a>.
Example:
person#(sn)#oneLevel
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Guide</span>
( 1.3.6.1.4.1.1466.115.121.1.25 DESC 'Guide' )
Values in this syntax are encoded according to the following BNF:
guide-value = [ object-class "#" ] criteria
object-class = woid
criteria = criteria-item / criteria-set / ( "!" criteria )
criteria-set = ( [ "(" ] criteria "&" criteria-set [ ")" ] ) /
( [ "(" ] criteria "|" criteria-set [ ")" ] )
criteria-item = [ "(" ] attributetype "$" match-type [ ")" ]
match-type = "EQ" / "SUBSTR" / "GE" / "LE" / "APPROX"
This syntax should not be used for defining new attributes.
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Octet String</span>
( 1.3.6.1.4.1.1466.115.121.1.40 DESC 'Octet String' )
Values in this syntax are encoded as octet strings.
Example:
secret
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Teletex Terminal Identifier</span>
( 1.3.6.1.4.1.1466.115.121.1.51 DESC 'Teletex Terminal Identifier' )
Values in this syntax are encoded according to the following BNF:
teletex-id = ttx-term 0*("$" ttx-param)
ttx-term = printablestring
<span class="grey">Wahl Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
ttx-param = ttx-key ":" ttx-value
ttx-key = "graphic" / "control" / "misc" / "page" / "private"
ttx-value = octetstring
In the above, the first printablestring is the encoding of the first
portion of the teletex terminal identifier to be encoded, and the
subsequent 0 or more octetstrings are subsequent portions of the
teletex terminal identifier.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>. Telex Number</span>
( 1.3.6.1.4.1.1466.115.121.1.52 DESC 'Telex Number' )
Values in this syntax are encoded according to the following BNF:
telex-number = actual-number "$" country "$" answerback
actual-number = printablestring
country = printablestring
answerback = printablestring
In the above, actual-number is the syntactic representation of the
number portion of the TELEX number being encoded, country is the
TELEX country code, and answerback is the answerback code of a TELEX
terminal.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>. Supported Algorithm</span>
( 1.3.6.1.4.1.1466.115.121.1.49 DESC 'Supported Algorithm' )
No printable representation of values of the supportedAlgorithms
attribute is defined in this document. Clients which wish to store
and retrieve this attribute MUST use "supportedAlgorithms;binary", in
which the value is transferred as a binary encoding.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Object Classes</span>
LDAP servers MUST recognize the object classes "top" and "subschema".
LDAP servers SHOULD recognize all the other object classes listed
here as values of the objectClass attribute.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. top</span>
( 2.5.6.0 NAME 'top' ABSTRACT MUST objectClass )
<span class="grey">Wahl Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. alias</span>
( 2.5.6.1 NAME 'alias' SUP top STRUCTURAL MUST aliasedObjectName )
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. country</span>
( 2.5.6.2 NAME 'country' SUP top STRUCTURAL MUST c
MAY ( searchGuide $ description ) )
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. locality</span>
( 2.5.6.3 NAME 'locality' SUP top STRUCTURAL
MAY ( street $ seeAlso $ searchGuide $ st $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.5" href="#section-7.5">7.5</a>. organization</span>
( 2.5.6.4 NAME 'organization' SUP top STRUCTURAL MUST o
MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $
x121Address $ registeredAddress $ destinationIndicator $
preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
telephoneNumber $ internationaliSDNNumber $
facsimileTelephoneNumber $
street $ postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ st $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.6" href="#section-7.6">7.6</a>. organizationalUnit</span>
( 2.5.6.5 NAME 'organizationalUnit' SUP top STRUCTURAL MUST ou
MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $
x121Address $ registeredAddress $ destinationIndicator $
preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
telephoneNumber $ internationaliSDNNumber $
facsimileTelephoneNumber $
street $ postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ st $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.7" href="#section-7.7">7.7</a>. person</span>
( 2.5.6.6 NAME 'person' SUP top STRUCTURAL MUST ( sn $ cn )
MAY ( userPassword $ telephoneNumber $ seeAlso $ description ) )
<span class="h3"><a class="selflink" id="section-7.8" href="#section-7.8">7.8</a>. organizationalPerson</span>
( 2.5.6.7 NAME 'organizationalPerson' SUP person STRUCTURAL
MAY ( title $ x121Address $ registeredAddress $
destinationIndicator $
preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
telephoneNumber $ internationaliSDNNumber $
<span class="grey">Wahl Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
facsimileTelephoneNumber $
street $ postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ ou $ st $ l ) )
<span class="h3"><a class="selflink" id="section-7.9" href="#section-7.9">7.9</a>. organizationalRole</span>
( 2.5.6.8 NAME 'organizationalRole' SUP top STRUCTURAL MUST cn
MAY ( x121Address $ registeredAddress $ destinationIndicator $
preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
telephoneNumber $ internationaliSDNNumber $
facsimileTelephoneNumber $
seeAlso $ roleOccupant $ preferredDeliveryMethod $ street $
postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ ou $ st $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.10" href="#section-7.10">7.10</a>. groupOfNames</span>
( 2.5.6.9 NAME 'groupOfNames' SUP top STRUCTURAL MUST ( member $ cn )
MAY ( businessCategory $ seeAlso $ owner $ ou $ o $ description ) )
<span class="h3"><a class="selflink" id="section-7.11" href="#section-7.11">7.11</a>. residentialPerson</span>
( 2.5.6.10 NAME 'residentialPerson' SUP person STRUCTURAL MUST l
MAY ( businessCategory $ x121Address $ registeredAddress $
destinationIndicator $ preferredDeliveryMethod $ telexNumber $
teletexTerminalIdentifier $ telephoneNumber $
internationaliSDNNumber $
facsimileTelephoneNumber $ preferredDeliveryMethod $ street $
postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ st $ l ) )
<span class="h3"><a class="selflink" id="section-7.12" href="#section-7.12">7.12</a>. applicationProcess</span>
( 2.5.6.11 NAME 'applicationProcess' SUP top STRUCTURAL MUST cn
MAY ( seeAlso $ ou $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.13" href="#section-7.13">7.13</a>. applicationEntity</span>
( 2.5.6.12 NAME 'applicationEntity' SUP top STRUCTURAL
MUST ( presentationAddress $ cn )
MAY ( supportedApplicationContext $ seeAlso $ ou $ o $ l $
description ) )
<span class="h3"><a class="selflink" id="section-7.14" href="#section-7.14">7.14</a>. dSA</span>
( 2.5.6.13 NAME 'dSA' SUP applicationEntity STRUCTURAL
MAY knowledgeInformation )
<span class="grey">Wahl Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h3"><a class="selflink" id="section-7.15" href="#section-7.15">7.15</a>. device</span>
( 2.5.6.14 NAME 'device' SUP top STRUCTURAL MUST cn
MAY ( serialNumber $ seeAlso $ owner $ ou $ o $ l $ description ) )
<span class="h3"><a class="selflink" id="section-7.16" href="#section-7.16">7.16</a>. strongAuthenticationUser</span>
( 2.5.6.15 NAME 'strongAuthenticationUser' SUP top AUXILIARY
MUST userCertificate )
<span class="h3"><a class="selflink" id="section-7.17" href="#section-7.17">7.17</a>. certificationAuthority</span>
( 2.5.6.16 NAME 'certificationAuthority' SUP top AUXILIARY
MUST ( authorityRevocationList $ certificateRevocationList $
cACertificate ) MAY crossCertificatePair )
<span class="h3"><a class="selflink" id="section-7.18" href="#section-7.18">7.18</a>. groupOfUniqueNames</span>
( 2.5.6.17 NAME 'groupOfUniqueNames' SUP top STRUCTURAL
MUST ( uniqueMember $ cn )
MAY ( businessCategory $ seeAlso $ owner $ ou $ o $ description ) )
<span class="h3"><a class="selflink" id="section-7.19" href="#section-7.19">7.19</a>. userSecurityInformation</span>
( 2.5.6.18 NAME 'userSecurityInformation' SUP top AUXILIARY
MAY ( supportedAlgorithms ) )
<span class="h3"><a class="selflink" id="section-7.20" href="#section-7.20">7.20</a>. certificationAuthority-V2</span>
( 2.5.6.16.2 NAME 'certificationAuthority-V2' SUP
certificationAuthority
AUXILIARY MAY ( deltaRevocationList ) )
<span class="h3"><a class="selflink" id="section-7.21" href="#section-7.21">7.21</a>. cRLDistributionPoint</span>
( 2.5.6.19 NAME 'cRLDistributionPoint' SUP top STRUCTURAL
MUST ( cn ) MAY ( certificateRevocationList $
authorityRevocationList $
deltaRevocationList ) )
<span class="h3"><a class="selflink" id="section-7.22" href="#section-7.22">7.22</a>. dmd</span>
( 2.5.6.20 NAME 'dmd' SUP top STRUCTURAL MUST ( dmdName )
MAY ( userPassword $ searchGuide $ seeAlso $ businessCategory $
x121Address $ registeredAddress $ destinationIndicator $
preferredDeliveryMethod $ telexNumber $ teletexTerminalIdentifier $
telephoneNumber $ internationaliSDNNumber $
facsimileTelephoneNumber $
<span class="grey">Wahl Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
street $ postOfficeBox $ postalCode $ postalAddress $
physicalDeliveryOfficeName $ st $ l $ description ) )
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Matching Rules</span>
Servers MAY implement additional matching rules.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. octetStringMatch</span>
Servers which implement the extensibleMatch filter SHOULD allow the
matching rule listed in this section to be used in the
extensibleMatch. In general these servers SHOULD allow matching
rules to be used with all attribute types known to the server, when
the assertion syntax of the matching rule is the same as the value
syntax of the attribute.
( 2.5.13.17 NAME 'octetStringMatch'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Security Considerations</span>
Attributes of directory entries are used to provide descriptive
information about the real-world objects they represent, which can be
people, organizations or devices. Most countries have privacy laws
regarding the publication of information about people.
Transfer of cleartext passwords are strongly discouraged where the
underlying transport service cannot guarantee confidentiality and may
result in disclosure of the password to unauthorized parties.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Acknowledgements</span>
The definitions on which this document have been developed by
committees for telecommunications and international standards. No
new attribute definitions have been added. The syntax definitions
are based on the ISODE "QUIPU" implementation of X.500.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Bibliography</span>
[<a id="ref-1">1</a>] Wahl, M., Coulbeck, A., Howes, T., and S. Kille,
"Lightweight X.500 Directory Access Protocol (v3): Attribute
Syntax Definitions", <a href="./rfc2252">RFC 2252</a>, December 1997.
[<a id="ref-2">2</a>] The Directory: Models. ITU-T Recommendation X.501, 1996.
[<a id="ref-3">3</a>] The Directory: Authentication Framework. ITU-T Recommendation
X.509, 1996.
<span class="grey">Wahl Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
[<a id="ref-4">4</a>] The Directory: Selected Attribute Types. ITU-T Recommendation
X.520, 1996.
[<a id="ref-5">5</a>] The Directory: Selected Object Classes. ITU-T Recommendation
X.521, 1996.
[<a id="ref-6">6</a>] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", <a href="./rfc2119">RFC 2119</a>, March 1997.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Author's Address</span>
Mark Wahl
Critical Angle Inc.
4815 West Braker Lane #502-385
Austin, TX 78759
USA
Phone: +1 512 372 3160
EMail: M.Wahl@critical-angle.com
<span class="grey">Wahl Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc2256">RFC 2256</a> LDAPv3 Schema December 1997</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Full Copyright Statement</span>
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.
Wahl Standards Track [Page 20]
</pre>
|