Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

226 lines
9.0 KiB

  1. Microsoft LAN Manager 2.2c for MS-DOS Release Notes
  2. ---------------------------------------------------
  3. This file contains additional information about Microsoft LAN Manager
  4. version 2.2c for MS-DOS (also called Microsoft Network Client version 2.2c).
  5. Past versions of release notes were distributed in Microsoft Word (.DOC)
  6. format as well as .TXT format; these release notes are in .TXT format only.
  7. Contents
  8. --------
  9. 1. Updating From a Previous LAN Manager Version
  10. 2. IPCONFIG.EXE and Controlling DHCP Leases
  11. 3. Specifying WINS Servers
  12. 4. Differences in MS-DOS TCP/IP
  13. 5. Logging On With TCP/IP Across a Router
  14. 6. Installing With Microsoft Windows 3.1
  15. 7. EMM386 Memory Conflict with Token Ring Network Adapters
  16. 8. Overview of Windows Sockets
  17. 9. Setting DNR and Sockets Settings
  18. 10. If Microsoft RPC Is Installed
  19. ---------------------------------
  20. 1. Updating From a Previous LAN Manager Version
  21. -----------------------------------------------
  22. There is no automatic upgrade available from an earlier version of
  23. LAN Manager. You must save configuration information for reference
  24. purposes (for example, C:\LANMAN.DOS\*.INI, C:\CONFIG.SYS, and
  25. C:\AUTOEXEC.BAT), remove the earlier version, and then install
  26. version 2.2c.
  27. Do not simply reinstall the configuration files from the earlier
  28. version; use them as a reference for modifying the new files if
  29. necessary.
  30. 2. IPCONFIG.EXE and Controlling DHCP Leases
  31. -------------------------------------------
  32. The IPCONFIG.EXE utility provides DHCP configuration information.
  33. The version of IPCONFIG.EXE provided with the LAN Manager client
  34. does not support command-line switches for controlling DHCP
  35. address leases; you must use the DHCP Administration Utility
  36. instead.
  37. Specifically, the LAN Manager IPCONFIG.EXE utility does not support
  38. the following switches, which are available in the IPCONFIG.EXE utilities
  39. for Windows for Workgroups and for Windows NT:
  40. IPCONFIG /release
  41. IPCONFIG /renew
  42. IPCONFIG /?
  43. IPCONFIG /all
  44. 3. Specifying WINS Servers
  45. --------------------------
  46. If your MS-DOS client uses DHCP (the default setting for MS-DOS TCP/IP),
  47. it will automatically receive the address for the WINS server. If you
  48. want to statically configure your WINS server IP address, you must edit
  49. the client's PROTOCOL.INI file and add the IP address into the [TCPIP]
  50. section.
  51. For example, if you have 2 WINS servers available, add them into the
  52. [TCPIP] section as shown in the example below. Note that there are no
  53. dots (.) in the IP addresses.
  54. [TCPIP]
  55. WINS_SERVER0 = 11 101 13 53
  56. WINS_SERVER1 = 11 101 12 198
  57. Name queries will be sent to the WINS servers in the order in which they
  58. appear in the .INI file. The IPCONFIG command may show a different order
  59. of WINS servers (or even different WINS servers altogether) -- these
  60. are the WINS server names sent by DHCP, and the PROTOCOL.INI settings
  61. override them.
  62. 4. Differences in MS-DOS TCP/IP
  63. -------------------------------
  64. There is a difference in functionality available in TCP/IP for
  65. Windows for Workgroups, and Windows NT Workstation and Server, versus
  66. MS-DOS TCP/IP. Specifically, an MS-DOS TCP/IP client does not:
  67. support DNS resolution using WINS
  68. support WINS resolution using DNS
  69. register its name with the WINS database; it does queries only
  70. act as a WINS proxy node
  71. have multihomed support
  72. support IGMP
  73. 5. Logging On With TCP/IP Across a Router
  74. -----------------------------------------
  75. If the domain controller is across a router from the LAN Manager client,
  76. you must add a line to the client's LMHOSTS file for logons to be
  77. validated. The line is of the following form:
  78. www.xxx.yyy.zzz SRV_NAME #DOM:DOM_NAME
  79. where
  80. www.xxx.yyy.zzz is the IP address of the domain controller
  81. SRV_NAME is the NetBIOS name of the domain controller
  82. DOM_NAME is the name of the domain
  83. You must also ensure that the domain controller can contact the client,
  84. using one of the following methods:
  85. Enter the client's IP address and name in the domain controller's
  86. LMHOSTS file.
  87. Register the client with a WINS server that is accessible by
  88. the domain controller. (LAN Manager clients do not automatically
  89. register with WINS servers; they only query the WINS servers.)
  90. Use the LAN Manager 2.1a (and higher) "TCP/IP Extensions for
  91. LAN Manager," a hub/node service that runs on LAN Manager
  92. servers to integrate domains across routers.
  93. 6. Installing With Microsoft Windows 3.1
  94. ----------------------------------------
  95. If possible, install Microsoft Windows before installing LAN Manager,
  96. so that the LAN Manager Setup program detects the presence of Windows
  97. and makes changes automatically to the Windows SYSTEM.INI file.
  98. If you do install Windows after LAN Manager, add the following lines
  99. manually to the end of the [386enh] section in the SYSTEM.INI file:
  100. TimerCriticalSection=5000
  101. UniqueDosPSP=True
  102. PSPIncrement=2
  103. 7. EMM386 Memory Conflict with Token Ring Network Adapters
  104. ----------------------------------------------------------
  105. The error message "Error 36: Unspecified Hardware failure" may occur
  106. when you start the computer with a token ring adapter if there is a
  107. memory conflict with EMM386. If this occurs, exclude the memory address
  108. of the network adapter on the EMM386 line in CONFIG.SYS.
  109. For more information about memory conflicts and excluding memory ranges,
  110. see the "Microsoft Network Client 2.2 Installation Guide for Clients,"
  111. Appendix F, or the "LAN Manager 2.2 Installation Guide."
  112. 8. Overview of Windows Sockets
  113. ------------------------------
  114. Microsoft TCP/IP includes support for Windows Sockets on Microsoft Windows
  115. and Workgroups for Windows workstations. A socket provides an end point to
  116. a connection; two sockets form a complete path. A socket works as a
  117. bi-directional pipe for incoming and outgoing data. The Windows Sockets API
  118. is a networking API tailored for use by programmers using the Microsoft
  119. Windows operating system. Windows Sockets is a public specification based
  120. on Berkeley UNIX sockets and aims to:
  121. * Provide a familiar networking API to programmers using Windows or UNIX.
  122. * Offer binary compatibility between heterogeneous Windows-based TCP/IP
  123. stack and utilities vendors.
  124. * Support both connection-oriented and connectionless protocols.
  125. If you are running an application that uses Windows Sockets, be sure to
  126. enable Windows Sockets when you configure Microsoft TCP/IP. If you are
  127. unsure whether any of your applications use Windows Sockets, refer to the
  128. documentation included with that vendor's application.
  129. 9. Setting DNR and Sockets Settings
  130. -----------------------------------
  131. If you specify the MS TCP/IP protocol during setup, you will now see an
  132. additional dialog box after you have used the Advanced button in the
  133. MS-TCP/IP Configuration dialog box. This new dialog box, DNR and Sockets
  134. Settings, is used only if your MS TCP/IP network has a domain name service
  135. (DNS) server. If your network has a DNS and you choose to configure the
  136. Domain Name Resolver (DNR) parameters, the DNR module will be loaded with
  137. your sockets and Telnet applications to resolve hostname-to-IP address
  138. mappings. This allows you to specify remote computers by computername
  139. without knowing specific IP addresses. If you use this dialog box, these
  140. are the values you will need to supply:
  141. Username
  142. Your username.
  143. Hostname
  144. The computername your workstation will report when using the remote
  145. services. The default is your LAN Manager computername.
  146. Primary Nameserver IP Address
  147. The IP address of the DNS server you want the DNR to consult first when
  148. resolving computername-to-IP address mappings.
  149. If you use DHCP, the DHCP server typically provides a DNS server
  150. address automatically; you can leave this entry blank. If you do
  151. specify an address here, it overrides the address provided by DHCP.
  152. Secondary Nameserver IP Address
  153. The IP address of the DNS server you want the DNR to consult when
  154. resolving computername-to-IP address mappings if the request to the
  155. primary nameserver fails.
  156. If you use DHCP, the DHCP server typically provides a DNS server
  157. address automatically; you can leave this entry blank. If you do
  158. specify an address here, it overrides the address provided by DHCP.
  159. Domain Name Suffix
  160. The suffix appended to any computername for DNS processing. Your network
  161. administrator can tell you what to enter here.
  162. Enable Windows Sockets
  163. Mark this checkbox if you want Sockets to be invoked from the
  164. AUTOEXEC.BAT file.
  165. Number of Sockets
  166. The maximum number of sockets that can be made available to applications
  167. at any one time. The range is 1 to 22 sockets.
  168. Note: Some applications may use more than one socket to provide a service.
  169. Consider this when trying to maximize available memory. The total
  170. number of sockets and NetBIOS sessions combined must not exceed 22.
  171. 10. If Microsoft RPC Is Installed
  172. ---------------------------------
  173. If Microsoft Remote Procedure Call (RPC) is installed on your system,
  174. you must copy RPC16C3.DLL from the \DRIVERS\PROTOCOL\TCPIP directory of
  175. the DOS DRIVERS 2 disk to your WINDOWS\SYSTEM directory in order for
  176. Windows Sockets to work properly with Microsoft TCP/IP.