home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1997 December / Internet_Info_CD-ROM_Walnut_Creek_December_1997.iso / drafts / draft_n_r / draft-provan-dhcp-options-dir-serv-00.txt < prev    next >
Text File  |  1996-11-15  |  6KB  |  168 lines

  1.  
  2.  
  3.                                                               don provan
  4. INTERNET-DRAFT                                              Novell, Inc.
  5.                                                         13 November 1996
  6.                                                      Expires 18 May 1997
  7.  
  8.  
  9.                 DHCP Options for Novell Directory Services
  10.                   draft-provan-dhcp-options-dir-serv-00.txt
  11.  
  12.  
  13. Status of this Memo
  14.  
  15.    This document is an Internet-Draft.  Internet Drafts are working
  16.    documents of the Internet Engineering Task Force (IETF), its Areas,
  17.    and its Working Groups.  Note that other groups may also distribute
  18.    working documents as Internet-Drafts.
  19.    
  20.    Internet-Drafts are draft documents valid for a maximum of six
  21.    months, and may be updated, replaced, or obsoleted by other
  22.    documents at any time.  It is not appropriate to use Internet
  23.    Drafts as reference material, or to cite them other than as a
  24.    ``working draft'' or ``work in progress.''
  25.    
  26.    To learn the current status of any Internet-Draft, please check the
  27.    ``1id-abstracts.txt'' listing contained in the internet-drafts
  28.    Shadow Directories on ds.internic.net (US East Coast),
  29.    nic.nordu.net (Europe), ftp.isi.edu (US West Coast), or
  30.    munnari.oz.au (Pacific Rim).
  31.    
  32. Abstract
  33.  
  34.    This document defines three new DHCP options for delivering
  35.    configuration information to clients of the Novell Directory
  36.    Services. The first option carries a list of NDS servers. The
  37.    second option carries the name of the client's NDS tree. The third
  38.    carries the initial NDS context. These three options provide an NDS
  39.    client with enough information to connect to an NDS tree without
  40.    manual configuration of the client.
  41.    
  42. 1. Introduction
  43.  
  44.    Novell Directory Services is a distributed, replicated,
  45.    hierarchical database of objects representing network resources
  46.    such as nodes, services, users, and applications. An NDS client
  47.    must be able to locate an NDS server in order to authenticate
  48.    itself to the network and gain access to the database. In addition,
  49.    the node's user is better served if the NDS client's attention is
  50.    focused on the area of the NDS database likely to be of the most
  51.    interest to the user.
  52.  
  53.  
  54. Provan                 Expires 18 May 1997                      [Page 1]
  55.  
  56. INTERNET-DRAFT         DHCP Options for NDS             13 November 1996
  57.  
  58.    This specification describes DHCP options [1] that carry NDS
  59.    information to TCP/IP clients of NDS. The first option, the NDS
  60.    Servers option, carries a list of NDS servers. The other two
  61.    options, the NDS Tree Name option and the NDS Context option,
  62.    provide the client with a default context within the NDS database.
  63.    
  64. 2. NDS Servers Option
  65.  
  66.    This option specifies one or more NDS servers for the client to
  67.    contact for access to the NDS database. Servers SHOULD be listed in
  68.    order of preference.
  69.    
  70.    The code for this option is 85. The minimum length of this option
  71.    is 4 octets, and the length MUST be a multiple of 4.
  72.    
  73.       Code   Len        Address 1               Address 2
  74.      +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--
  75.      | 85  |  n  |  a1 |  a2 | a3  |  a4 |  a1 |  a2 |  a3 |  a4 |  ...
  76.      +-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--
  77.  
  78. 3. NDS Tree Name Option
  79.  
  80.    This option specifies the name of the NDS tree the client will be
  81.    contacting. The tree name is formatted as a string of 16-bit
  82.    Unicode characters, with each Unicode character transmitted in
  83.    network order (most significant byte first).
  84.    
  85.    The code for this option is 86. Current implementations of NDS
  86.    limit tree names to 32 Unicode characters (64 bytes), but
  87.    implementations of this option are encouraged to support the
  88.    maximum possible length for the option: 254 bytes. The length MUST
  89.    be a multiple of 2.
  90.    
  91.        Code Len  NDS Tree Name
  92.       +----+----+----+----+----+----+----+----+--
  93.       | 86 | n  |   uc1   |   uc2   |   uc3   |  ...
  94.       +----+----+----+----+----+----+----+----+--
  95.  
  96. 4. NDS Context Option
  97.  
  98.    This option specifies the initial NDS context the client should
  99.    use. The context is formatted as a string of 16-bit Unicode
  100.    characters, with each Unicode character transmitted in network
  101.    order (most significant byte first).
  102.    
  103.    A single DHCP option can only contain 127 Unicode characters. Since
  104.    an NDS context name can be longer than that, this option can appear
  105.    more than once in the DHCP packet. The contents of all NDS Context
  106.    options in the packet should be concatenated as suggested in the
  107.    DHCP specification [2, page 23] to get the complete NDS context.
  108.    
  109.  
  110. Provan                 Expires 18 May 1997                      [Page 2]
  111.  
  112. INTERNET-DRAFT         DHCP Options for NDS             13 November 1996
  113.  
  114.    The code for this option is 87. The length of each individual
  115.    context option MUST be a multiple of 2. The maximum length for each
  116.    instance is 254, but, as just described, the option may appear more
  117.    than once if the desired NDS context is longer than 127 Unicode
  118.    characters. Current implementations of NDS limit contexts to 256
  119.    Unicode characters (512 bytes), but implementations are discouraged
  120.    from enforcing any specific maximum to the final concatenated NDS
  121.    context.
  122.    
  123.        Code Len  Initial NDS Context
  124.       +----+----+----+----+----+----+----+----+--
  125.       | 87 | n  |   uc1   |   uc2   |   uc3   |  ...
  126.       +----+----+----+----+----+----+----+----+--
  127.  
  128.  
  129. References
  130.  
  131.    [1] S. Alexander and R. Droms.  DHCP Options and BOOTP Vendor
  132.        Extensions. draft-ietf-dhc-options-1533update-04.txt, May 1996.
  133.  
  134.    [2] R. Droms.  Dynamic Host Configuration Protocol.
  135.        draft-ietf-dhc-dhcp-07.txt, May 1996.
  136.  
  137.  
  138. Author's Address
  139.  
  140.    Don Provan
  141.    Novell, Inc.
  142.    2180 Fortune Drive
  143.    San Jose, California, 95131
  144.  
  145.    Phone: +1 408 577 8440
  146.  
  147.    EMail: donp@Novell.Com
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166. Provan                 Expires 18 May 1997                      [Page 3]
  167.  
  168.