PageRenderTime 36ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/release/src/router/samba/docs/htmldocs/DOMAIN_MEMBER.html

https://gitlab.com/envieidoc/advancedtomato2
HTML | 127 lines | 116 code | 11 blank | 0 comment | 0 complexity | 47d4bc9d6ace963d24e6a7328f7f9805 MD5 | raw file
  1. <html><head><title>Joining an NT Domain with Samba 2.0</title>
  2. <link rev="made" href="mailto:samba@samba.org">
  3. </head>
  4. <body>
  5. <hr>
  6. <h1>Joining an NT Domain with Samba 2.0</h1>
  7. <h2>Jeremy Allison, Samba Team</h2>
  8. <h2>7th October 1999</h2>
  9. <h1>Table of Contents </h1><p></p>
  10. <p><hr><p><br>
  11. <p><center>Joining an NT Domain with Samba 2.0 </center>
  12. <center>----------------------------------- </center>
  13. <p>In order for a Samba-2 server to join an NT domain, you must first add
  14. the NetBIOS name of the Samba server to the NT domain on the PDC using
  15. Server Manager for Domains. This creates the machine account in the
  16. domain (PDC) SAM. Note that you should add the Samba server as a "Windows
  17. NT Workstation or Server", <em>NOT</em> as a Primary or backup domain controller.
  18. <p>Assume you have a Samba-2 server with a NetBIOS name of <code>SERV1</code> and are
  19. joining an NT domain called <code>DOM</code>, which has a PDC with a NetBIOS name
  20. of <code>DOMPDC</code> and two backup domain controllers with NetBIOS names <code>DOMBDC1</code>
  21. and <code>DOMBDC2</code>.
  22. <p>In order to join the domain, first stop all Samba daemons and run the
  23. command
  24. <p><code>smbpasswd -j DOM -r DOMPDC</code>
  25. <p>as we are joining the domain DOM and the PDC for that domain (the only
  26. machine that has write access to the domain SAM database) is DOMPDC. If this is
  27. successful you will see the message:
  28. <p><code>smbpasswd: Joined domain DOM.</code>
  29. <p>in your terminal window. See the <a href="smbpasswd.8.html"><strong>smbpasswd</strong></a>
  30. man page for more details.
  31. <p>This command goes through the machine account password change
  32. protocol, then writes the new (random) machine account password for
  33. this Samba server into a file in the same directory in which an
  34. smbpasswd file would be stored - normally :
  35. <p><code>/usr/local/samba/private</code>
  36. <p>The filename looks like this:
  37. <p><code>&lt;NT DOMAIN NAME&gt;.&lt;Samba Server Name&gt;.mac</code>
  38. <p>The <code>.mac</code> suffix stands for machine account password file. So in
  39. our example above, the file would be called:
  40. <p><code>DOM.SERV1.mac</code>
  41. <p>This file is created and owned by root and is not readable by any
  42. other user. It is the key to the domain-level security for your
  43. system, and should be treated as carefully as a shadow password file.
  44. <p>Now, before restarting the Samba daemons you must edit your
  45. <a href="smb.conf.5.html"><strong>smb.conf</strong></a> file to tell Samba it should now
  46. use domain security.
  47. <p>Change (or add) your
  48. <p><a href="smb.conf.5.html#security"><strong>"security ="</strong></a>
  49. <p>line in the <a href="smb.conf.5.html#global"><strong>[global]</strong></a> section of your
  50. <a href="smb.conf.5.html"><strong>smb.conf</strong></a> to read:
  51. <p><code>security = domain</code>
  52. <p>Next change the
  53. <p><a href="smb.conf.5.html#workgroup"><strong>"workgroup ="</strong></a>
  54. <p>line in the <a href="smb.conf.5.html#global"><strong>[global]</strong></a> section to read:
  55. <p><code>workgroup = DOM</code>
  56. <p>as this is the name of the domain we are joining.
  57. <p>You must also have the parameter <a href="smb.conf.5.html#encryptpasswords"><strong>"encrypt passwords"</strong></a>
  58. set to <code>"yes"</code> in order for your users to authenticate to the
  59. NT PDC.
  60. <p>Finally, add (or modify) a:
  61. <p><a href="smb.conf.5.html#passwordserver"><strong>"password server ="</strong></a>
  62. <p>line in the <a href="smb.conf.5.html#global"><strong>[global]</strong></a> section to read:
  63. <p><code>password server = DOMPDC DOMBDC1 DOMBDC2</code>
  64. <p>These are the primary and backup domain controllers Samba will attempt
  65. to contact in order to authenticate users. Samba will try to contact
  66. each of these servers in order, so you may want to rearrange this list
  67. in order to spread out the authentication load among domain
  68. controllers.
  69. <p>Alternatively, if you want smbd to automatically determine the
  70. list of Domain controllers to use for authentication, you may set this line to be :
  71. <p><code>password server = *</code>
  72. <p>This method, which is new in Samba 2.0.6 and above, allows Samba
  73. to use exactly the same mechanism that NT does. This method either broadcasts or
  74. uses a WINS database in order to find domain controllers to
  75. authenticate against.
  76. <p>Finally, restart your Samba daemons and get ready for clients to begin
  77. using domain security!
  78. <p><center>Why is this better than security = server? </center>
  79. <center>------------------------------------------ </center>
  80. <p>Currently, domain security in Samba doesn't free you from having to
  81. create local Unix users to represent the users attaching to your
  82. server. This means that if domain user <code>DOM\fred</code> attaches to your
  83. domain security Samba server, there needs to be a local Unix user fred
  84. to represent that user in the Unix filesystem. This is very similar to
  85. the older Samba security mode <a href="smb.conf.5.html#securityequalserver"><strong>"security=server"</strong></a>, where Samba would pass
  86. through the authentication request to a Windows NT server in the same
  87. way as a Windows 95 or Windows 98 server would.
  88. <p>The advantage to domain-level security is that the authentication in
  89. domain-level security is passed down the authenticated RPC channel in
  90. exactly the same way that an NT server would do it. This means Samba
  91. servers now participate in domain trust relationships in exactly the
  92. same way NT servers do (i.e., you can add Samba servers into a
  93. resource domain and have the authentication passed on from a resource
  94. domain PDC to an account domain PDC.
  95. <p>In addition, with <a href="smb.conf.5.html#securityequalserver"><strong>"security=server"</strong></a> every Samba daemon on a
  96. server has to keep a connection open to the authenticating server for
  97. as long as that daemon lasts. This can drain the connection resources
  98. on a Microsoft NT server and cause it to run out of available
  99. connections. With <a href="smb.conf.5.html#securityequaldomain"><strong>"security =domain"</strong></a>, however, the Samba
  100. daemons connect to the PDC/BDC only for as long as is necessary to
  101. authenticate the user, and then drop the connection, thus conserving
  102. PDC connection resources.
  103. <p>And finally, acting in the same manner as an NT server authenticating
  104. to a PDC means that as part of the authentication reply, the Samba
  105. server gets the user identification information such as the user SID,
  106. the list of NT groups the user belongs to, etc. All this information
  107. will allow Samba to be extended in the future into a mode the
  108. developers currently call appliance mode. In this mode, no local Unix
  109. users will be necessary, and Samba will generate Unix uids and gids
  110. from the information passed back from the PDC when a user is
  111. authenticated, making a Samba server truly plug and play in an NT
  112. domain environment. Watch for this code soon.
  113. <p><em>NOTE:</em> Much of the text of this document was first published in the
  114. Web magazine <a href="http://www.linuxworld.com"><strong>"LinuxWorld"</strong></a> as the article <a href="http://www.linuxworld.com/linuxworld/lw-1998-10/lw-10-samba.html"><strong>"Doing the NIS/NT Samba"</strong></a>.
  115. </body>
  116. </html>