~veger/ubuntu/precise/samba/fix-for-902339

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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 24. Winbind: Use of Domain Accounts</title><link rel="stylesheet" href="../samba.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="The Official Samba 3.5.x HOWTO and Reference Guide"><link rel="up" href="optional.html" title="Part III. Advanced Configuration"><link rel="prev" href="VFS.html" title="Chapter 23. Stackable VFS modules"><link rel="next" href="AdvancedNetworkManagement.html" title="Chapter 25. Advanced Network Management"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 24. Winbind: Use of Domain Accounts</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="VFS.html">Prev</a> </td><th width="60%" align="center">Part III. Advanced Configuration</th><td width="20%" align="right"> <a accesskey="n" href="AdvancedNetworkManagement.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter 24. Winbind: Use of Domain Accounts"><div class="titlepage"><div><div><h2 class="title"><a name="winbind"></a>Chapter 24. Winbind: Use of Domain Accounts</h2></div><div><div class="author"><h3 class="author"><span class="firstname">Tim</span> <span class="surname">Potter</span></h3><div class="affiliation"><span class="orgname">Samba Team<br></span><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:tpot@linuxcare.com.au">tpot@linuxcare.com.au</a>&gt;</code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Andrew</span> <span class="surname">Tridgell</span></h3><div class="affiliation"><span class="orgname">Samba Team<br></span><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:tridge@samba.org">tridge@samba.org</a>&gt;</code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Naag</span> <span class="surname">Mummaneni</span></h3><span class="contrib">Notes for Solaris</span> <div class="affiliation"><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:getnag@rediffmail.com">getnag@rediffmail.com</a>&gt;</code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">John</span> <span class="surname">Trostel</span></h3><div class="affiliation"><span class="orgname">SNAP<br></span><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:jtrostel@snapserver.com">jtrostel@snapserver.com</a>&gt;</code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">Jelmer</span> <span class="othername">R.</span> <span class="surname">Vernooij</span></h3><div class="affiliation"><span class="orgname">The Samba Team<br></span><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:jelmer@samba.org">jelmer@samba.org</a>&gt;</code></p></div></div></div></div><div><div class="author"><h3 class="author"><span class="firstname">John</span> <span class="othername">H.</span> <span class="surname">Terpstra</span></h3><div class="affiliation"><span class="orgname">Samba Team<br></span><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:jht@samba.org">jht@samba.org</a>&gt;</code></p></div></div></div></div><div><p class="pubdate">June 15, 2005</p></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="winbind.html#id417272">Features and Benefits</a></span></dt><dt><span class="sect1"><a href="winbind.html#id417589">Introduction</a></span></dt><dt><span class="sect1"><a href="winbind.html#id417666">What Winbind Provides</a></span></dt><dd><dl><dt><span class="sect2"><a href="winbind.html#id417805">Target Uses</a></span></dt><dt><span class="sect2"><a href="winbind.html#id417844">Handling of Foreign SIDs</a></span></dt></dl></dd><dt><span class="sect1"><a href="winbind.html#id417956">How Winbind Works</a></span></dt><dd><dl><dt><span class="sect2"><a href="winbind.html#id418004">Microsoft Remote Procedure Calls</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418082">Microsoft Active Directory Services</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418126">Name Service Switch</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418338">Pluggable Authentication Modules</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418479">User and Group ID Allocation</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418546">Result Caching</a></span></dt></dl></dd><dt><span class="sect1"><a href="winbind.html#id418597">Installation and Configuration</a></span></dt><dd><dl><dt><span class="sect2"><a href="winbind.html#id418602">Introduction</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418709">Requirements</a></span></dt><dt><span class="sect2"><a href="winbind.html#id418852">Testing Things Out</a></span></dt></dl></dd><dt><span class="sect1"><a href="winbind.html#id421094">Conclusion</a></span></dt><dt><span class="sect1"><a href="winbind.html#id421140">Common Errors</a></span></dt><dd><dl><dt><span class="sect2"><a href="winbind.html#id421173">NSCD Problem Warning</a></span></dt><dt><span class="sect2"><a href="winbind.html#id421207">Winbind Is Not Resolving Users and Groups</a></span></dt></dl></dd></dl></div><div class="sect1" title="Features and Benefits"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id417272"></a>Features and Benefits</h2></div></div></div><p>
<a class="indexterm" name="id417280"></a>
<a class="indexterm" name="id417286"></a>
	Integration of UNIX and Microsoft Windows NT through a unified logon has
	been considered a <span class="quote">&#8220;<span class="quote">holy grail</span>&#8221;</span> in heterogeneous computing environments for
	a long time.
	</p><p>
<a class="indexterm" name="id417301"></a>
<a class="indexterm" name="id417308"></a>
<a class="indexterm" name="id417315"></a>
<a class="indexterm" name="id417322"></a>
	There is one other facility without which UNIX and Microsoft Windows network
	interoperability would suffer greatly. It is imperative that there be a
	mechanism for sharing files across UNIX systems and to be able to assign
	domain user and group ownerships with integrity.
	</p><p>
<a class="indexterm" name="id417334"></a>
<a class="indexterm" name="id417343"></a>
<a class="indexterm" name="id417350"></a>
<a class="indexterm" name="id417357"></a>
	<span class="emphasis"><em>winbind</em></span> is a component of the Samba suite of programs that
	solves the unified logon problem. Winbind uses a UNIX implementation of Microsoft
	RPC calls, Pluggable Authentication Modules (PAMs), and the name service switch (NSS) to
	allow Windows NT domain users to appear and operate as UNIX users on a UNIX
	machine. This chapter describes the Winbind system, the functionality
	it provides, how it is configured, and how it works internally.
	</p><p>
	Winbind provides three separate functions:
	</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
<a class="indexterm" name="id417380"></a>
<a class="indexterm" name="id417387"></a>
		Authentication of user credentials (via PAM). This makes it possible to
		log onto a UNIX/Linux system using user and group accounts from a Windows
		NT4 (including a Samba domain) or an Active Directory domain.
		</p></li><li class="listitem"><p>
<a class="indexterm" name="id417400"></a>
<a class="indexterm" name="id417407"></a>
		Identity resolution (via NSS). This is the default when winbind is not used.
		</p></li><li class="listitem"><p>
<a class="indexterm" name="id417418"></a>
<a class="indexterm" name="id417425"></a>
<a class="indexterm" name="id417432"></a>
<a class="indexterm" name="id417438"></a>
<a class="indexterm" name="id417445"></a>
<a class="indexterm" name="id417452"></a>
		Winbind maintains a database called winbind_idmap.tdb in which it stores
		mappings between UNIX UIDs, GIDs, and NT SIDs. This mapping is used only
		for users and groups that do not have a local UID/GID. It stores the UID/GID
		allocated from the idmap uid/gid range that it has mapped to the NT SID.
		If <em class="parameter"><code>idmap backend</code></em> has been specified as <code class="constant">ldap:ldap://hostname[:389]</code>,
		then instead of using a local mapping, Winbind will obtain this information
		from the LDAP database.
		</p></li></ul></div><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
	<a class="indexterm" name="id417477"></a>
	<a class="indexterm" name="id417484"></a>
<a class="indexterm" name="id417493"></a>
<a class="indexterm" name="id417500"></a>
<a class="indexterm" name="id417507"></a>
<a class="indexterm" name="id417514"></a>
	If <code class="literal">winbindd</code> is not running, smbd (which calls <code class="literal">winbindd</code>) will fall back to
	using purely local information from <code class="filename">/etc/passwd</code> and <code class="filename">/etc/group</code> and no dynamic
	mapping will be used. On an operating system that has been enabled with the NSS,
	the resolution of user and group information will be accomplished via NSS.
	</p></div><div class="figure"><a name="winbind_idmap"></a><p class="title"><b>Figure 24.1. Winbind Idmap</b></p><div class="figure-contents"><div class="mediaobject"><img src="images/idmap_winbind_no_loop.png" width="243" alt="Winbind Idmap"></div></div></div><br class="figure-break"></div><div class="sect1" title="Introduction"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id417589"></a>Introduction</h2></div></div></div><p>It is well known that UNIX and Microsoft Windows NT have
	different models for representing user and group information and
	use different technologies for implementing them. This fact has
	made it difficult to integrate the two systems in a satisfactory
	manner.</p><p>
<a class="indexterm" name="id417602"></a>
<a class="indexterm" name="id417609"></a>
	One common solution in use today has been to create
	identically named user accounts on both the UNIX and Windows systems
	and use the Samba suite of programs to provide file and print services
	between the two. This solution is far from perfect, however, because
	adding and deleting users on both sets of machines becomes a chore,
	and two sets of passwords are required  both of which
	can lead to synchronization problems between the UNIX and Windows
	systems and confusion for users.</p><p>We divide the unified logon problem for UNIX machines into
	three smaller problems:</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>Obtaining Windows NT user and group information.
		</p></li><li class="listitem"><p>Authenticating Windows NT users.
		</p></li><li class="listitem"><p>Password changing for Windows NT users.
		</p></li></ul></div><p>
<a class="indexterm" name="id417648"></a>
<a class="indexterm" name="id417654"></a>
	Ideally, a prospective solution to the unified logon problem
	would satisfy all the above components without duplication of
	information on the UNIX machines and without creating additional
	tasks for the system administrator when maintaining users and
	groups on either system. The Winbind system provides a simple
	and elegant solution to all three components of the unified logon
	problem.</p></div><div class="sect1" title="What Winbind Provides"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id417666"></a>What Winbind Provides</h2></div></div></div><p>
<a class="indexterm" name="id417674"></a>
<a class="indexterm" name="id417681"></a>
<a class="indexterm" name="id417688"></a>
<a class="indexterm" name="id417695"></a>
	Winbind unifies UNIX and Windows NT account management by
	allowing a UNIX box to become a full member of an NT domain. Once
	this is done, the UNIX box will see NT users and groups as if
	they were <span class="quote">&#8220;<span class="quote">native</span>&#8221;</span> UNIX users and groups, allowing the NT domain
	to be used in much the same manner that NIS+ is used within
	UNIX-only environments.</p><p>
<a class="indexterm" name="id417711"></a>
<a class="indexterm" name="id417718"></a>
<a class="indexterm" name="id417725"></a>
<a class="indexterm" name="id417731"></a>
	The end result is that whenever a
	program on the UNIX machine asks the operating system to look up
	a user or group name, the query will be resolved by asking the
	NT domain controller for the specified domain to do the lookup.
	Because Winbind hooks into the operating system at a low level
	(via the NSS name resolution modules in the C library), this
	redirection to the NT domain controller is completely
	transparent.</p><p>
<a class="indexterm" name="id417745"></a>
<a class="indexterm" name="id417752"></a>
	Users on the UNIX machine can then use NT user and group
	names as they would <span class="quote">&#8220;<span class="quote">native</span>&#8221;</span> UNIX names. They can chown files
	so they are owned by NT domain users or even login to the
	UNIX machine and run a UNIX X Window session as a domain user.</p><p>
<a class="indexterm" name="id417768"></a>
	The only obvious indication that Winbind is being used is
	that user and group names take the form <code class="constant">DOMAIN\user</code> and
	<code class="constant">DOMAIN\group</code>. This is necessary because it allows Winbind to determine
	that redirection to a domain controller is wanted for a particular
	lookup and which trusted domain is being referenced.</p><p>
<a class="indexterm" name="id417787"></a>
<a class="indexterm" name="id417794"></a>
	Additionally, Winbind provides an authentication service that hooks into the PAM system
	to provide authentication via an NT domain to any PAM-enabled
	applications. This capability solves the problem of synchronizing
	passwords between systems, since all passwords are stored in a single
	location (on the domain controller).</p><div class="sect2" title="Target Uses"><div class="titlepage"><div><div><h3 class="title"><a name="id417805"></a>Target Uses</h3></div></div></div><p>
<a class="indexterm" name="id417813"></a>
		Winbind is targeted at organizations that have an
		existing NT-based domain infrastructure into which they wish
		to put UNIX workstations or servers. Winbind will allow these
		organizations to deploy UNIX workstations without having to
		maintain a separate account infrastructure. This greatly
		simplifies the administrative overhead of deploying UNIX
		workstations into an NT-based organization.</p><p>
<a class="indexterm" name="id417826"></a>
<a class="indexterm" name="id417833"></a>
		Another interesting way in which we expect Winbind to
		be used is as a central part of UNIX-based appliances. Appliances
		that provide file and print services to Microsoft-based networks
		will be able to use Winbind to provide seamless integration of
		the appliance into the domain.</p></div><div class="sect2" title="Handling of Foreign SIDs"><div class="titlepage"><div><div><h3 class="title"><a name="id417844"></a>Handling of Foreign SIDs</h3></div></div></div><p>
<a class="indexterm" name="id417852"></a>
	The term <span class="emphasis"><em>foreign SID</em></span> is often met with the reaction that it
	is not relevant to a particular environment. The following documents an interchange
	that took place on the Samba mailing list. It is a good example of the confusion
	often expressed regarding the use of winbind.
	</p><p>
<a class="indexterm" name="id417868"></a>
	Fact: Winbind is needed to handle users who use workstations that are NOT part
	of the local domain.
	</p><p>
<a class="indexterm" name="id417879"></a>
	Response: <span class="quote">&#8220;<span class="quote">Why? I've used Samba with workstations that are not part of my domains
	lots of times without using winbind. I thought winbind was for using Samba as a member server
	in a domain controlled by another Samba/Windows PDC.</span>&#8221;</span>
	</p><p>
<a class="indexterm" name="id417895"></a>
<a class="indexterm" name="id417901"></a>
<a class="indexterm" name="id417908"></a>
	If the Samba server will be accessed from a domain other than the local Samba domain, or
	if there will be access from machines that are not local domain members, winbind will
	permit the allocation of UIDs and GIDs from the assigned pool that will keep the identity
	of the foreign user separate from users that are members of the Samba domain.
	</p><p>
<a class="indexterm" name="id417921"></a>
<a class="indexterm" name="id417927"></a>
<a class="indexterm" name="id417934"></a>
<a class="indexterm" name="id417941"></a>
	This means that winbind is eminently useful in cases where a single
	Samba PDC on a local network is combined with both domain member and domain non-member workstations.
	If winbind is not used, the user george on a Windows workstation that is not a domain
	member will be able to access the files of a user called george in the account database
	of the Samba server that is acting as a PDC. When winbind is used, the default condition
	is that the local user george will be treated as the account DOMAIN\george and the
	foreign (non-member of the domain) account will be treated as MACHINE\george because
	each has a different SID.
	</p></div></div><div class="sect1" title="How Winbind Works"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id417956"></a>How Winbind Works</h2></div></div></div><p>
<a class="indexterm" name="id417964"></a>
<a class="indexterm" name="id417971"></a>
<a class="indexterm" name="id417978"></a>
<a class="indexterm" name="id417984"></a>
	The Winbind system is designed around a client/server
	architecture. A long-running <code class="literal">winbindd</code> daemon
	listens on a UNIX domain socket waiting for requests
	to arrive. These requests are generated by the NSS and PAM
	clients and are processed sequentially.</p><p>The technologies used to implement Winbind are described
	in detail below.</p><div class="sect2" title="Microsoft Remote Procedure Calls"><div class="titlepage"><div><div><h3 class="title"><a name="id418004"></a>Microsoft Remote Procedure Calls</h3></div></div></div><p>
<a class="indexterm" name="id418012"></a>
<a class="indexterm" name="id418021"></a>
<a class="indexterm" name="id418028"></a>
<a class="indexterm" name="id418034"></a>
<a class="indexterm" name="id418041"></a>
		Over the last few years, efforts have been underway by various Samba Team members to implement various aspects of
		the Microsoft Remote Procedure Call (MSRPC) system. This system is used for most network-related operations
		between Windows NT machines, including remote management, user authentication, and print spooling. Although
		initially this work was done to aid the implementation of Primary Domain Controller (PDC) functionality in
		Samba, it has also yielded a body of code that can be used for other purposes.
		</p><p>
<a class="indexterm" name="id418056"></a>
<a class="indexterm" name="id418063"></a>
<a class="indexterm" name="id418069"></a>
		Winbind uses various MSRPC calls to enumerate domain users and groups and to obtain detailed information about
		individual users or groups. Other MSRPC calls can be used to authenticate NT domain users and to change user
		passwords. By directly querying a Windows PDC for user and group information, Winbind maps the NT account
		information onto UNIX user and group names.
		</p></div><div class="sect2" title="Microsoft Active Directory Services"><div class="titlepage"><div><div><h3 class="title"><a name="id418082"></a>Microsoft Active Directory Services</h3></div></div></div><p>
<a class="indexterm" name="id418090"></a>
<a class="indexterm" name="id418096"></a>
<a class="indexterm" name="id418103"></a>
<a class="indexterm" name="id418110"></a>
		Since late 2001, Samba has gained the ability to interact with Microsoft Windows 2000 using its <span class="quote">&#8220;<span class="quote">native
		mode</span>&#8221;</span> protocols rather than the NT4 RPC services.  Using LDAP and Kerberos, a domain member running
		Winbind can enumerate users and groups in exactly the same way as a Windows 200x client would, and in so doing
		provide a much more efficient and effective Winbind implementation.
		</p></div><div class="sect2" title="Name Service Switch"><div class="titlepage"><div><div><h3 class="title"><a name="id418126"></a>Name Service Switch</h3></div></div></div><p>
<a class="indexterm" name="id418134"></a>
<a class="indexterm" name="id418140"></a>
<a class="indexterm" name="id418147"></a>
<a class="indexterm" name="id418153"></a>
		The NSS is a feature that is present in many UNIX operating systems. It allows system
		information such as hostnames, mail aliases, and user information
		to be resolved from different sources. For example, a standalone
		UNIX workstation may resolve system information from a series of
		flat files stored on the local file system. A networked workstation
		may first attempt to resolve system information from local files,
		and then consult an NIS database for user information or a DNS server
		for hostname information.</p><p>
<a class="indexterm" name="id418168"></a>
<a class="indexterm" name="id418174"></a>
<a class="indexterm" name="id418181"></a>
<a class="indexterm" name="id418188"></a>
<a class="indexterm" name="id418195"></a>
		The NSS application programming interface allows Winbind to present itself as a source of system
		information when resolving UNIX usernames and groups. Winbind uses this interface and information obtained
		from a Windows NT server using MSRPC calls to provide a new source of account enumeration. Using standard UNIX
		library calls, you can enumerate the users and groups on a UNIX machine running Winbind and see all users and
		groups in an NT domain plus any trusted domain as though they were local users and groups.
		</p><p>
<a class="indexterm" name="id418209"></a>
<a class="indexterm" name="id418216"></a>
<a class="indexterm" name="id418222"></a>
		The primary control file for NSS is <code class="filename">/etc/nsswitch.conf</code>.  When a UNIX application
		makes a request to do a lookup, the C library looks in <code class="filename">/etc/nsswitch.conf</code> for a line that
		matches the service type being requested; for example, the <span class="quote">&#8220;<span class="quote">passwd</span>&#8221;</span> service type is used when
		user or group names are looked up. This config line specifies which implementations of that service should be
		tried and in what order. If the passwd config line is:
</p><pre class="screen">
passwd: files example
</pre><p>
<a class="indexterm" name="id418254"></a>
<a class="indexterm" name="id418260"></a>
<a class="indexterm" name="id418267"></a>
		then the C library will first load a module called <code class="filename">/lib/libnss_files.so</code> followed
		by the module <code class="filename">/lib/libnss_example.so</code>. The C library will dynamically load each of these
		modules in turn and call resolver functions within the modules to try to resolve the request. Once the request
		is resolved, the C library returns the result to the application.
		</p><p>
<a class="indexterm" name="id418292"></a>
<a class="indexterm" name="id418298"></a>
<a class="indexterm" name="id418305"></a>
		This NSS interface provides an easy way for Winbind to hook into the operating system. All that needs
		to be done is to put <code class="filename">libnss_winbind.so</code> in <code class="filename">/lib/</code> then add
		<span class="quote">&#8220;<span class="quote">winbind</span>&#8221;</span> into <code class="filename">/etc/nsswitch.conf</code> at the appropriate place. The C library
		will then call Winbind to resolve user and group names.
		</p></div><div class="sect2" title="Pluggable Authentication Modules"><div class="titlepage"><div><div><h3 class="title"><a name="id418338"></a>Pluggable Authentication Modules</h3></div></div></div><p>
<a class="indexterm" name="id418346"></a>
<a class="indexterm" name="id418352"></a>
<a class="indexterm" name="id418359"></a>
<a class="indexterm" name="id418366"></a>
		PAMs provide a system for abstracting authentication and authorization technologies. With a PAM
		module, it is possible to specify different authentication methods for different system applications without
		having to recompile these applications. PAM is also useful for implementing a particular policy for
		authorization. For example, a system administrator may only allow console logins from users stored in the
		local password file but only allow users resolved from an NIS database to log in over the network.
		</p><p>
<a class="indexterm" name="id418380"></a>
<a class="indexterm" name="id418387"></a>
<a class="indexterm" name="id418394"></a>
<a class="indexterm" name="id418400"></a>
<a class="indexterm" name="id418407"></a>
		Winbind uses the authentication management and password management PAM interface to integrate Windows
		NT users into a UNIX system. This allows Windows NT users to log in to a UNIX machine and be authenticated
		against a suitable PDC.  These users can also change their passwords and have this change take effect directly
		on the PDC.
		</p><p>
<a class="indexterm" name="id418420"></a>
<a class="indexterm" name="id418426"></a>
<a class="indexterm" name="id418433"></a>
<a class="indexterm" name="id418440"></a>
		PAM is configured by providing control files in the directory <code class="filename">/etc/pam.d/</code> for
		each of the services that require authentication. When an authentication request is made by an application,
		the PAM code in the C library looks up this control file to determine what modules to load to do the
		authentication check and in what order. This interface makes adding a new authentication service for Winbind
		very easy: simply copy the <code class="filename">pam_winbind.so</code> module to <code class="filename">/lib/security/</code>,
		and the PAM control files for relevant services are updated to allow authentication via Winbind. See the PAM
		documentation in <a class="link" href="pam.html" title="Chapter 28. PAM-Based Distributed Authentication">PAM-Based Distributed Authentication</a>, for more information.
		</p></div><div class="sect2" title="User and Group ID Allocation"><div class="titlepage"><div><div><h3 class="title"><a name="id418479"></a>User and Group ID Allocation</h3></div></div></div><p>
<a class="indexterm" name="id418486"></a>
<a class="indexterm" name="id418493"></a>
<a class="indexterm" name="id418500"></a>
		When a user or group is created under Windows NT/200x, it is allocated a numerical relative identifier
		(RID). This is slightly different from UNIX, which has a range of numbers that are used to identify users and
		the same range used to identify groups. It is Winbind's job to convert RIDs to UNIX ID numbers and vice versa.
		When Winbind is configured, it is given part of the UNIX user ID space and a part of the UNIX group ID space
		in which to store Windows NT users and groups. If a Windows NT user is resolved for the first time, it is
		allocated the next UNIX ID from the range. The same process applies for Windows NT groups. Over time, Winbind
		will have mapped all Windows NT users and groups to UNIX user IDs and group IDs.
		</p><p>
<a class="indexterm" name="id418516"></a>
<a class="indexterm" name="id418523"></a>
<a class="indexterm" name="id418529"></a>
<a class="indexterm" name="id418536"></a>
		The results of this mapping are stored persistently in an ID mapping database held in a tdb database.
		This ensures that RIDs are mapped to UNIX IDs in a consistent way.
		</p></div><div class="sect2" title="Result Caching"><div class="titlepage"><div><div><h3 class="title"><a name="id418546"></a>Result Caching</h3></div></div></div><p>
<a class="indexterm" name="id418554"></a>
<a class="indexterm" name="id418561"></a>
<a class="indexterm" name="id418567"></a>
<a class="indexterm" name="id418574"></a>
<a class="indexterm" name="id418581"></a>
		An active directory system can generate a lot of user and group name lookups. To reduce the network
		cost of these lookups, Winbind uses a caching scheme based on the SAM sequence number supplied by NT domain
		controllers. User or group information returned by a PDC is cached by Winbind along with a sequence number
		also returned by the PDC. This sequence number is incremented by Windows NT whenever any user or group
		information is modified. If a cached entry has expired, the sequence number is requested from the PDC and
		compared against the sequence number of the cached entry.  If the sequence numbers do not match, then the
		cached information is discarded and up-to-date information is requested directly from the PDC.
		</p></div></div><div class="sect1" title="Installation and Configuration"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id418597"></a>Installation and Configuration</h2></div></div></div><div class="sect2" title="Introduction"><div class="titlepage"><div><div><h3 class="title"><a name="id418602"></a>Introduction</h3></div></div></div><p>
<a class="indexterm" name="id418610"></a>
<a class="indexterm" name="id418617"></a>
<a class="indexterm" name="id418624"></a>
This section describes the procedures used to get Winbind up and running. Winbind is capable of providing
access and authentication control for Windows Domain users through an NT or Windows 200x PDC for regular
services, such as telnet and ftp, as well for Samba services.
</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
	<span class="emphasis"><em>Why should I do this?</em></span>
	</p><p>
<a class="indexterm" name="id418647"></a>
<a class="indexterm" name="id418654"></a>
<a class="indexterm" name="id418661"></a>
<a class="indexterm" name="id418667"></a>
This allows the Samba administrator to rely on the authentication mechanisms on the Windows NT/200x PDC
for the authentication of domain members. Windows NT/200x users no longer need to have separate accounts on
the Samba server.
	</p></li><li class="listitem"><p>
	<span class="emphasis"><em>Who should be reading this document?</em></span>
	</p><p>
<a class="indexterm" name="id418690"></a>
<a class="indexterm" name="id418696"></a>
This document is designed for system administrators. If you are implementing Samba on a file server and wish
to (fairly easily) integrate existing Windows NT/200x users from your PDC onto the Samba server, this document
is for you.
	</p></li></ul></div></div><div class="sect2" title="Requirements"><div class="titlepage"><div><div><h3 class="title"><a name="id418709"></a>Requirements</h3></div></div></div><p>
<a class="indexterm" name="id418717"></a>
<a class="indexterm" name="id418724"></a>
<a class="indexterm" name="id418730"></a>
If you have a Samba configuration file that you are currently using, <span class="emphasis"><em>BACK IT UP!</em></span>
If your system already uses PAM, <span class="emphasis"><em>back up the <code class="filename">/etc/pam.d</code> directory
contents!</em></span> If you haven't already made a boot disk, <span class="emphasis"><em>MAKE ONE NOW!</em></span>
</p><p>
<a class="indexterm" name="id418758"></a>
<a class="indexterm" name="id418765"></a>
<a class="indexterm" name="id418772"></a>
Messing with the PAM configuration files can make it nearly impossible to log in to your machine. That's
why you want to be able to boot back into your machine in single-user mode and restore your
<code class="filename">/etc/pam.d</code> to the original state it was in if you get frustrated with the
way things are going.
</p><p>
<a class="indexterm" name="id418790"></a>
<a class="indexterm" name="id418797"></a>
The latest version of Samba-3 includes a functioning winbindd daemon. Please refer to the <a class="ulink" href="http://samba.org/" target="_top">main Samba Web page</a>, or better yet, your closest Samba mirror site for
instructions on downloading the source code.
</p><p>
<a class="indexterm" name="id418815"></a>
<a class="indexterm" name="id418821"></a>
<a class="indexterm" name="id418828"></a>
<a class="indexterm" name="id418835"></a>
To allow domain users the ability to access Samba shares and files, as well as potentially other services
provided by your Samba machine, PAM must be set up properly on your
machine. In order to compile the Winbind modules, the PAM development libraries should be installed
on your system. Please refer to the <a class="ulink" href="http://www.kernel.org/pub/linux/libs/pam/" target="_top">PAM Web Site</a>.
</p></div><div class="sect2" title="Testing Things Out"><div class="titlepage"><div><div><h3 class="title"><a name="id418852"></a>Testing Things Out</h3></div></div></div><p>
<a class="indexterm" name="id418860"></a>
<a class="indexterm" name="id418867"></a>
<a class="indexterm" name="id418874"></a>
<a class="indexterm" name="id418880"></a>
<a class="indexterm" name="id418887"></a>
Before starting, it is probably best to kill off all the Samba-related daemons running on your server.
Kill off all <span class="application">smbd</span>, <span class="application">nmbd</span>, and <span class="application">winbindd</span> processes that may be running. To use PAM,
make sure that you have the standard PAM package that supplies the <code class="filename">/etc/pam.d</code>
directory structure, including the PAM modules that are used by PAM-aware services, several PAM libraries,
and the <code class="filename">/usr/doc</code> and <code class="filename">/usr/man</code> entries for PAM. Winbind is built
better in Samba if the pam-devel package is also installed. This package includes the header files
needed to compile PAM-aware applications.
</p><div class="sect3" title="Configure nsswitch.conf and the Winbind Libraries on Linux and Solaris"><div class="titlepage"><div><div><h4 class="title"><a name="id418935"></a>Configure <code class="filename">nsswitch.conf</code> and the Winbind Libraries on Linux and Solaris</h4></div></div></div><p>
<a class="indexterm" name="id418949"></a>
<a class="indexterm" name="id418955"></a>
<a class="indexterm" name="id418962"></a>
<a class="indexterm" name="id418969"></a>
PAM is a standard component of most current generation UNIX/Linux systems. Unfortunately, few systems install
the <code class="filename">pam-devel</code> libraries that are needed to build PAM-enabled Samba. Additionally, Samba-3
may auto-install the Winbind files into their correct locations on your system, so before you get too far down
the track, be sure to check if the following configuration is really
necessary. You may only need to configure
<code class="filename">/etc/nsswitch.conf</code>.
</p><p>
The libraries needed to run the <span class="application">winbindd</span> daemon through nsswitch need to be copied to their proper locations:
</p><p>
<a class="indexterm" name="id419004"></a>
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>cp ../samba/source/nsswitch/libnss_winbind.so /lib</code></strong>
</pre><p>
</p><p>
I also found it necessary to make the following symbolic link:
</p><p>
<code class="prompt">root# </code> <strong class="userinput"><code>ln -s /lib/libnss_winbind.so /lib/libnss_winbind.so.2</code></strong>
</p><p>And, in the case of Sun Solaris:
<a class="indexterm" name="id419049"></a>
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>ln -s /usr/lib/libnss_winbind.so /usr/lib/libnss_winbind.so.1</code></strong>
<code class="prompt">root# </code><strong class="userinput"><code>ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.1</code></strong>
<code class="prompt">root# </code><strong class="userinput"><code>ln -s /usr/lib/libnss_winbind.so /usr/lib/nss_winbind.so.2</code></strong>
</pre><p>
</p><p>
<a class="indexterm" name="id419097"></a>
As root, edit <code class="filename">/etc/nsswitch.conf</code> to allow user and group entries to be visible from the
<span class="application">winbindd</span> daemon. My <code class="filename">/etc/nsswitch.conf</code> file looked like this after editing:
</p><pre class="programlisting">
passwd:     files winbind
shadow:     files
group:      files winbind
</pre><p>
<a class="indexterm" name="id419131"></a>
<a class="indexterm" name="id419138"></a>
<a class="indexterm" name="id419145"></a>
<a class="indexterm" name="id419151"></a>
<a class="indexterm" name="id419158"></a>
The libraries needed by the <code class="literal">winbindd</code> daemon will be automatically
entered into the <code class="literal">ldconfig</code> cache the next time
your system reboots, but it is faster (and you do not need to reboot) if you do it manually:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>/sbin/ldconfig -v | grep winbind</code></strong>
</pre><p>
This makes <code class="filename">libnss_winbind</code> available to winbindd and reports the current
search path that is used by the dynamic link loader. The use of the <code class="literal">grep</code>
filters the output of the <code class="literal">ldconfig</code> command so that we may see proof that
this library is indeed recognized by the dynamic link loader.
</p><p>
<a class="indexterm" name="id419218"></a>
<a class="indexterm" name="id419224"></a>
<a class="indexterm" name="id419231"></a>
<a class="indexterm" name="id419238"></a>
<a class="indexterm" name="id419245"></a>
The Sun Solaris dynamic link loader management tool is called <code class="literal">crle</code>. The
use of this tool is necessary to instruct the dynamic link loader to search directories that
contain library files that were not supplied as part of the original operating system platform.
The following example shows how to use this tool to add the directory <code class="filename">/usr/local/lib</code>
to the dynamic link loader's search path:
</p><pre class="screen">
<code class="prompt">root# </code> crle -u -l /usr/lib:/usr/local/lib
</pre><p>
When executed without arguments, <code class="literal">crle</code> reports the current dynamic
link loader configuration. This is demonstrated here:
</p><pre class="screen">
<code class="prompt">root# </code> crle

Configuration file [version 4]: /var/ld/ld.config
  Default Library Path (ELF):   /lib:/usr/lib:/usr/local/lib
  Trusted Directories (ELF):    /lib/secure:/usr/lib/secure  (system default)

Command line:
  crle -c /var/ld/ld.config -l /lib:/usr/lib:/usr/local/lib
</pre><p>
From this it is apparent that the <code class="filename">/usr/local/lib</code> directory is included
in the search dynamic link libraries in order to satisfy object module dependencies.
</p></div><div class="sect3" title="NSS Winbind on AIX"><div class="titlepage"><div><div><h4 class="title"><a name="id419308"></a>NSS Winbind on AIX</h4></div></div></div><p>(This section is only for those running AIX.)</p><p>
<a class="indexterm" name="id419320"></a>
<a class="indexterm" name="id419326"></a>
<a class="indexterm" name="id419333"></a>
<a class="indexterm" name="id419340"></a>
<a class="indexterm" name="id419347"></a>
<a class="indexterm" name="id419354"></a>
The Winbind AIX identification module gets built as <code class="filename">libnss_winbind.so</code> in the
nsswitch directory of the Samba source. This file can be copied to <code class="filename">/usr/lib/security</code>,
and the AIX naming convention would indicate that it should be named WINBIND. A stanza like the following:
</p><pre class="programlisting">
WINBIND:
        program = /usr/lib/security/WINBIND
        options = authonly
</pre><p>
can then be added to <code class="filename">/usr/lib/security/methods.cfg</code>. This module only supports
identification, but there have been reports of success using the standard Winbind PAM module for
authentication. Use caution configuring loadable authentication modules, since misconfiguration can make
it impossible to log on to the system.  Information regarding the AIX authentication module API can
be found in the <span class="quote">&#8220;<span class="quote">Kernel Extensions and Device Support Programming Concepts for AIX</span>&#8221;</span> document that
describes the <a class="ulink" href="http://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixprggd/kernextc/sec_load_mod.htm" target="_top">
Loadable Authentication Module Programming Interface</a> for AIX. Further information on administering the modules
can be found in the <a class="ulink" href="http://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixbman/baseadmn/iandaadmin.htm" target="_top">System
Management Guide: Operating System and Devices.</a>
</p></div><div class="sect3" title="Configure smb.conf"><div class="titlepage"><div><div><h4 class="title"><a name="id419410"></a>Configure smb.conf</h4></div></div></div><p>
<a class="indexterm" name="id419418"></a>
<a class="indexterm" name="id419425"></a>
<a class="indexterm" name="id419432"></a>
Several parameters are needed in the <code class="filename">smb.conf</code> file to control the behavior of <span class="application">winbindd</span>. These
are described in more detail in the <a class="citerefentry" href="winbindd.8.html"><span class="citerefentry"><span class="refentrytitle">winbindd</span>(8)</span></a> man page. My <code class="filename">smb.conf</code> file, as shown in <a class="link" href="winbind.html#winbindcfg" title="Example 24.1. smb.conf for Winbind Setup">the smb.conf for Winbind Setup</a>, was modified to include the necessary entries in the [global] section.
</p><div class="example"><a name="winbindcfg"></a><p class="title"><b>Example 24.1. smb.conf for Winbind Setup</b></p><div class="example-contents"><table border="0" summary="Simple list" class="simplelist"><tr><td> </td></tr><tr><td><em class="parameter"><code>[global]</code></em></td></tr><tr><td>#  separate domain and username with '\', like DOMAIN\username</td></tr><tr><td><a class="indexterm" name="id419503"></a><em class="parameter"><code>winbind separator = \</code></em></td></tr><tr><td>#  use uids from 10000 to 20000 for domain users</td></tr><tr><td><a class="indexterm" name="id419518"></a><em class="parameter"><code>idmap uid = 10000-20000</code></em></td></tr><tr><td>#  use gids from 10000 to 20000 for domain groups</td></tr><tr><td><a class="indexterm" name="id419533"></a><em class="parameter"><code>idmap gid = 10000-20000</code></em></td></tr><tr><td>#  allow enumeration of winbind users and groups</td></tr><tr><td><a class="indexterm" name="id419548"></a><em class="parameter"><code>winbind enum users = yes</code></em></td></tr><tr><td><a class="indexterm" name="id419560"></a><em class="parameter"><code>winbind enum groups = yes</code></em></td></tr><tr><td>#  give winbind users a real shell (only needed if they have telnet access)</td></tr><tr><td><a class="indexterm" name="id419576"></a><em class="parameter"><code>template homedir = /home/winnt/%D/%U</code></em></td></tr><tr><td><a class="indexterm" name="id419587"></a><em class="parameter"><code>template shell = /bin/bash</code></em></td></tr></table></div></div><br class="example-break"></div><div class="sect3" title="Join the Samba Server to the PDC Domain"><div class="titlepage"><div><div><h4 class="title"><a name="id419601"></a>Join the Samba Server to the PDC Domain</h4></div></div></div><p>
<a class="indexterm" name="id419609"></a>
<a class="indexterm" name="id419616"></a>
<a class="indexterm" name="id419622"></a>
All machines that will participate in domain security should be members of
the domain. This applies also to the PDC and all BDCs.
</p><p>
<a class="indexterm" name="id419633"></a>
<a class="indexterm" name="id419640"></a>
<a class="indexterm" name="id419647"></a>
<a class="indexterm" name="id419658"></a>
<a class="indexterm" name="id419665"></a>
<a class="indexterm" name="id419671"></a>
<a class="indexterm" name="id419678"></a>
<a class="indexterm" name="id419685"></a>
<a class="indexterm" name="id419692"></a>
The process of joining a domain requires the use of the <code class="literal">net rpc join</code>
command. This process communicates with the domain controller it will register with
(usually the PDC) via MS DCE RPC. This means, of course, that the <code class="literal">smbd</code>
process must be running on the target domain controller. It is therefore necessary to temporarily
start Samba on a PDC so that it can join its own domain.
</p><p>
<a class="indexterm" name="id419716"></a>
<a class="indexterm" name="id419723"></a>
<a class="indexterm" name="id419730"></a>
Enter the following command to make the Samba server join the domain, where <em class="replaceable"><code>PDC</code></em> is
the name of your PDC and <em class="replaceable"><code>Administrator</code></em> is a domain user who has administrative
privileges in the domain.
</p><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
<a class="indexterm" name="id419749"></a>
<a class="indexterm" name="id419756"></a>
<a class="indexterm" name="id419763"></a>
<a class="indexterm" name="id419769"></a>
Before attempting to join a machine to the domain, verify that Samba is running
on the target domain controller (usually PDC) and that it is capable of being reached via ports
137/udp, 135/tcp, 139/tcp, and 445/tcp (if Samba or Windows Server 2Kx).
</p></div><p>
<a class="indexterm" name="id419782"></a>
The use of the <code class="literal">net rpc join</code> facility is shown here:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>/usr/local/samba/bin/net rpc join -S PDC -U Administrator</code></strong>
</pre><p>
The proper response to the command should be <span class="quote">&#8220;<span class="quote">Joined the domain
<em class="replaceable"><code>DOMAIN</code></em></span>&#8221;</span> where <em class="replaceable"><code>DOMAIN</code></em>
is your domain name.
</p></div><div class="sect3" title="Starting and Testing the winbindd Daemon"><div class="titlepage"><div><div><h4 class="title"><a name="id419828"></a>Starting and Testing the <code class="literal">winbindd</code> Daemon</h4></div></div></div><p>
<a class="indexterm" name="id419842"></a>
<a class="indexterm" name="id419849"></a>
<a class="indexterm" name="id419855"></a>
Eventually, you will want to modify your Samba startup script to automatically invoke the winbindd daemon when
the other parts of Samba start, but it is possible to test out just the Winbind portion first. To start up
Winbind services, enter the following command as root:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>/usr/local/samba/sbin/winbindd</code></strong>
</pre><p>
Use the appropriate path to the location of the <code class="literal">winbindd</code> executable file.
</p><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
<a class="indexterm" name="id419891"></a>
<a class="indexterm" name="id419898"></a>
The command to start up Winbind services assumes that Samba has been installed in the
<code class="filename">/usr/local/samba</code> directory tree. You may need to search for the location of Samba files
if this is not the location of <code class="literal">winbindd</code> on your system.
</p></div><p>
<a class="indexterm" name="id419922"></a>
<a class="indexterm" name="id419928"></a>
I'm always paranoid and like to make sure the daemon is really running.
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>ps -ae | grep winbindd</code></strong>
</pre><p>
</p><p>
<a class="indexterm" name="id419955"></a>
This command should produce output like the following if the daemon is running.
</p><pre class="screen">
3025 ?        00:00:00 winbindd
</pre><p>
</p><p>
<a class="indexterm" name="id419972"></a>
<a class="indexterm" name="id419978"></a>
Now, for the real test, try to get some information about the users on your PDC:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>/usr/local/samba/bin/wbinfo -u</code></strong>
</pre><p>
This should echo back a list of users on your Windows users on your PDC. For example, I get the following
response:
</p><pre class="screen">
CEO\Administrator
CEO\burdell
CEO\Guest
CEO\jt-ad
CEO\krbtgt
CEO\TsInternetUser
</pre><p>
Obviously, I have named my domain <span class="quote">&#8220;<span class="quote">CEO</span>&#8221;</span> and my <a class="link" href="smb.conf.5.html#WINBINDSEPARATOR" target="_top">winbind separator</a> is
<span class="quote">&#8220;<span class="quote">\</span>&#8221;</span>.
</p><p>
<a class="indexterm" name="id420032"></a>
<a class="indexterm" name="id420039"></a>
You can do the same sort of thing to get group information from the PDC:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>/usr/local/samba/bin/wbinfo -g</code></strong>
CEO\Domain Admins
CEO\Domain Users
CEO\Domain Guests
CEO\Domain Computers
CEO\Domain Controllers
CEO\Cert Publishers
CEO\Schema Admins
CEO\Enterprise Admins
CEO\Group Policy Creator Owners
</pre><p>
<a class="indexterm" name="id420066"></a>
<a class="indexterm" name="id420072"></a>
<a class="indexterm" name="id420079"></a>
<a class="indexterm" name="id420086"></a>
<a class="indexterm" name="id420092"></a>
<a class="indexterm" name="id420099"></a>
<a class="indexterm" name="id420106"></a>
The function <code class="literal">getent</code> can now be used to get unified lists of both local and PDC users and
groups. Try the following command:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>getent passwd</code></strong>
</pre><p>
You should get a list that looks like your <code class="filename">/etc/passwd</code>
list followed by the domain users with their new UIDs, GIDs, home
directories, and default shells.
</p><p>
The same thing can be done for groups with the command:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>getent group</code></strong>
</pre><p>
</p></div><div class="sect3" title="Fix the init.d Startup Scripts"><div class="titlepage"><div><div><h4 class="title"><a name="id420164"></a>Fix the init.d Startup Scripts</h4></div></div></div><div class="sect4" title="Linux"><div class="titlepage"><div><div><h5 class="title"><a name="id420170"></a>Linux</h5></div></div></div><p>
<a class="indexterm" name="id420178"></a>
<a class="indexterm" name="id420185"></a>
<a class="indexterm" name="id420191"></a>
<a class="indexterm" name="id420198"></a>
<a class="indexterm" name="id420205"></a>
<a class="indexterm" name="id420212"></a>
The <span class="application">winbindd</span> daemon needs to start up after the <span class="application">smbd</span> and <span class="application">nmbd</span> daemons are running.  To accomplish this
task, you need to modify the startup scripts of your system.  They are located at
<code class="filename">/etc/init.d/smb</code> in Red Hat Linux and in <code class="filename">/etc/init.d/samba</code> in Debian
Linux. Edit your script to add commands to invoke this daemon in the proper sequence. My startup script starts
up <span class="application">smbd</span>, <span class="application">nmbd</span>, and <span class="application">winbindd</span> from the <code class="filename">/usr/local/samba/bin</code> directory directly. The
<code class="literal">start</code> function in the script looks like this:
</p><pre class="programlisting">
start() {
        KIND="SMB"
        echo -n $"Starting $KIND services: "
        daemon /usr/local/samba/bin/smbd $SMBDOPTIONS
        RETVAL=$?
        echo
        KIND="NMB"
        echo -n $"Starting $KIND services: "
        daemon /usr/local/samba/bin/nmbd $NMBDOPTIONS
        RETVAL2=$?
        echo
        KIND="Winbind"
        echo -n $"Starting $KIND services: "
        daemon /usr/local/samba/sbin/winbindd
        RETVAL3=$?
        echo
        [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] &amp;&amp; \
		touch /var/lock/subsys/smb || RETVAL=1
        return $RETVAL
}
</pre><p>If you would like to run winbindd in dual daemon mode, replace the line:
</p><pre class="programlisting">
        daemon /usr/local/samba/sbin/winbindd
</pre><p>

in the example above with:

</p><pre class="programlisting">
        daemon /usr/local/samba/sbin/winbindd -D
</pre><p>.
</p><p>
The <code class="literal">stop</code> function has a corresponding entry to shut down the services and looks like this:
</p><pre class="programlisting">
stop() {
        KIND="SMB"
        echo -n $"Shutting down $KIND services: "
        killproc smbd
        RETVAL=$?
        echo
        KIND="NMB"
        echo -n $"Shutting down $KIND services: "
        killproc nmbd
        RETVAL2=$?
        echo
        KIND="Winbind"
        echo -n $"Shutting down $KIND services: "
        killproc winbindd
        RETVAL3=$?
        [ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3 -eq 0 ] &amp;&amp; \
		 rm -f /var/lock/subsys/smb
        echo ""
        return $RETVAL
}
</pre></div><div class="sect4" title="Solaris"><div class="titlepage"><div><div><h5 class="title"><a name="id420337"></a>Solaris</h5></div></div></div><p>
Winbind does not work on Solaris 9; see <a class="link" href="Portability.html#winbind-solaris9" title="Winbind on Solaris 9">Winbind on Solaris 9 section</a>
for details.
</p><p>
<a class="indexterm" name="id420356"></a>
<a class="indexterm" name="id420363"></a>
<a class="indexterm" name="id420370"></a>
<a class="indexterm" name="id420377"></a>
<a class="indexterm" name="id420384"></a>
<a class="indexterm" name="id420390"></a>
On Solaris, you need to modify the <code class="filename">/etc/init.d/samba.server</code> startup script. It
usually only starts smbd and nmbd but should now start winbindd, too. If you have Samba installed in
<code class="filename">/usr/local/samba/bin</code>, the file could contains something like this:
</p><p>
	</p><pre class="programlisting">
	##
	## samba.server
	##

	if [ ! -d /usr/bin ]
	then                    # /usr not mounted
		exit
	fi

	killproc() {            # kill the named process(es)
		pid=`/usr/bin/ps -e |
		     /usr/bin/grep -w $1 |
		     /usr/bin/sed -e 's/^  *//' -e 's/ .*//'`
		[ "$pid" != "" ] &amp;&amp; kill $pid
	}

	# Start/stop processes required for Samba server

	case "$1" in

	'start')
	#
	# Edit these lines to suit your installation (paths, workgroup, host)
	#
	echo Starting SMBD
	   /usr/local/samba/bin/smbd -D -s \
		/usr/local/samba/smb.conf

	echo Starting NMBD
	   /usr/local/samba/bin/nmbd -D -l \
		/usr/local/samba/var/log -s /usr/local/samba/smb.conf

	echo Starting Winbind Daemon
	   /usr/local/samba/sbin/winbindd
	   ;;

	'stop')
	   killproc nmbd
	   killproc smbd
	   killproc winbindd
	   ;;

	*)
	   echo "Usage: /etc/init.d/samba.server { start | stop }"
	   ;;
	esac
</pre><p>
Again, if you would like to run winbindd in dual daemon mode, replace:
</p><pre class="programlisting">
/usr/local/samba/sbin/winbindd
</pre><p>
in the script above with:
</p><pre class="programlisting">
/usr/local/samba/sbin/winbindd -D
</pre><p>
</p></div><div class="sect4" title="Restarting"><div class="titlepage"><div><div><h5 class="title"><a name="id420456"></a>Restarting</h5></div></div></div><p>
<a class="indexterm" name="id420464"></a>
<a class="indexterm" name="id420471"></a>
If you restart the <span class="application">smbd</span>, <span class="application">nmbd</span>, and <span class="application">winbindd</span> daemons at this point, you
should be able to connect to the Samba server as a domain member just as
if you were a local user.
</p></div></div><div class="sect3" title="Configure Winbind and PAM"><div class="titlepage"><div><div><h4 class="title"><a name="id420500"></a>Configure Winbind and PAM</h4></div></div></div><p>
<a class="indexterm" name="id420508"></a>
<a class="indexterm" name="id420514"></a>
<a class="indexterm" name="id420521"></a>
<a class="indexterm" name="id420528"></a>
If you have made it this far, you know that <code class="literal">winbindd</code> and Samba are working together. If you
want to use Winbind to provide authentication for other services, keep reading. The PAM configuration files
need to be altered in this step. (Did you remember to make backups of your original
<code class="filename">/etc/pam.d</code> files? If not, do it now.)
</p><p>
<a class="indexterm" name="id420552"></a>
<a class="indexterm" name="id420559"></a>
<a class="indexterm" name="id420566"></a>
<a class="indexterm" name="id420572"></a>
<a class="indexterm" name="id420579"></a>
<a class="indexterm" name="id420586"></a>
You will need a PAM module to use winbindd with these other services. This module will be compiled in the
<code class="filename">../source/nsswitch</code> directory by invoking the command:
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>make nsswitch/pam_winbind.so</code></strong>
</pre><p>
from the <code class="filename">../source</code> directory. The <code class="filename">pam_winbind.so</code> file should be
copied to the location of your other PAM security modules. On my Red Hat system, this was the
<code class="filename">/lib/security</code> directory. On Solaris, the PAM security modules reside in
<code class="filename">/usr/lib/security</code>.
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>cp ../samba/source/nsswitch/pam_winbind.so /lib/security</code></strong>
</pre><p>
</p><div class="sect4" title="Linux/FreeBSD-Specific PAM Configuration"><div class="titlepage"><div><div><h5 class="title"><a name="id420659"></a>Linux/FreeBSD-Specific PAM Configuration</h5></div></div></div><p>
<a class="indexterm" name="id420667"></a>
The <code class="filename">/etc/pam.d/samba</code> file does not need to be changed. I just left this file as it was:
</p><pre class="programlisting">
auth    required  /lib/security/pam_stack.so service=system-auth
account required  /lib/security/pam_stack.so service=system-auth
</pre><p>
<a class="indexterm" name="id420689"></a>
<a class="indexterm" name="id420696"></a>
<a class="indexterm" name="id420702"></a>
<a class="indexterm" name="id420709"></a>
<a class="indexterm" name="id420716"></a>
<a class="indexterm" name="id420723"></a>
<a class="indexterm" name="id420730"></a>
<a class="indexterm" name="id420736"></a>
<a class="indexterm" name="id420743"></a>
The other services that I modified to allow the use of Winbind as an authentication service were the normal
login on the console (or a terminal session), telnet logins, and ftp service. In order to enable these
services, you may first need to change the entries in <code class="filename">/etc/xinetd.d</code> (or
<code class="filename">/etc/inetd.conf</code>).  Red Hat Linux 7.1 and later uses the new xinetd.d structure, in this
case you need to change the lines in <code class="filename">/etc/xinetd.d/telnet</code> and
<code class="filename">/etc/xinetd.d/wu-ftp</code> from:
</p><pre class="programlisting">
	enable = no
</pre><p>
to
</p><pre class="programlisting">
	enable = yes
</pre><p>
<a class="indexterm" name="id420791"></a>
<a class="indexterm" name="id420798"></a>
<a class="indexterm" name="id420805"></a>
For ftp services to work properly, you will also need to either have individual directories for the domain
users already present on the server or change the home directory template to a general directory for all
domain users. These can be easily set using the <code class="filename">smb.conf</code> global entry <a class="link" href="smb.conf.5.html#TEMPLATEHOMEDIR" target="_top">template homedir</a>.
</p><div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
<a class="indexterm" name="id420837"></a>
The directory in <a class="link" href="smb.conf.5.html#TEMPLATEHOMEDIR" target="_top">template homedir</a> is not created automatically! Use pam_mkhomedir or
pre-create the directories of users to make sure users can log in on UNIX with their own home directory.
</p></div><p>
<a class="indexterm" name="id420859"></a>
<a class="indexterm" name="id420865"></a>
<a class="indexterm" name="id420872"></a>
The <code class="filename">/etc/pam.d/ftp</code> file can be changed to allow Winbind ftp access in a manner similar to
the <code class="filename">/etc/pam.d/samba</code>Samba file. My <code class="filename">/etc/pam.d/ftp</code> file was changed to look like this:
</p><pre class="programlisting">
auth       required     /lib/security/pam_listfile.so item=user sense=deny \
	 file=/etc/ftpusers onerr=succeed
auth       sufficient   /lib/security/pam_winbind.so
auth       required     /lib/security/pam_stack.so service=system-auth
auth       required     /lib/security/pam_shells.so
account    sufficient   /lib/security/pam_winbind.so
account    required     /lib/security/pam_stack.so service=system-auth
session    required     /lib/security/pam_stack.so service=system-auth
</pre><p>
<a class="indexterm" name="id420909"></a>
The <code class="filename">/etc/pam.d/login</code> file can be changed in nearly the same way. It now looks like this:
</p><pre class="programlisting">
auth       required     /lib/security/pam_securetty.so
auth       sufficient   /lib/security/pam_winbind.so
auth       sufficient   /lib/security/pam_unix.so use_first_pass
auth       required     /lib/security/pam_stack.so service=system-auth
auth       required     /lib/security/pam_nologin.so
account    sufficient   /lib/security/pam_winbind.so
account    required     /lib/security/pam_stack.so service=system-auth
password   required     /lib/security/pam_stack.so service=system-auth
session    required     /lib/security/pam_stack.so service=system-auth
session    optional     /lib/security/pam_console.so
</pre><p>
<a class="indexterm" name="id420933"></a>
<a class="indexterm" name="id420940"></a>
<a class="indexterm" name="id420947"></a>
In this case, I added the </p><pre class="programlisting">auth sufficient /lib/security/pam_winbind.so</pre><p> lines
as before, but also added the </p><pre class="programlisting">required pam_securetty.so</pre><p> above it to disallow
root logins over the network. I also added a </p><pre class="programlisting">sufficient /lib/security/pam_unix.so
use_first_pass</pre><p> line after the <code class="literal">winbind.so</code> line to get rid of annoying
double prompts for passwords.
</p></div><div class="sect4" title="Solaris-Specific Configuration"><div class="titlepage"><div><div><h5 class="title"><a name="id420982"></a>Solaris-Specific Configuration</h5></div></div></div><p>
<a class="indexterm" name="id420990"></a>
<a class="indexterm" name="id420996"></a>
The <code class="filename">/etc/pam.conf</code> needs to be changed. I changed this file so my Domain
users can log on both locally as well as with telnet. The following are the changes
that I made. You can customize the <code class="filename">pam.conf</code> file as per your requirements, but
be sure of those changes because in the worst case it will leave your system
nearly impossible to boot.
</p><pre class="programlisting">
#
#ident "@(#)pam.conf 1.14 99/09/16 SMI"
#
# Copyright (c) 1996-1999, Sun Microsystems, Inc.
# All Rights Reserved.
#
# PAM configuration
#
# Authentication management
#
login   auth required   /usr/lib/security/pam_winbind.so
login auth required  /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass
login auth required  /usr/lib/security/$ISA/pam_dial_auth.so.1 try_first_pass
#
rlogin  auth sufficient /usr/lib/security/pam_winbind.so
rlogin  auth sufficient /usr/lib/security/$ISA/pam_rhosts_auth.so.1
rlogin auth required  /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass
#
dtlogin auth sufficient /usr/lib/security/pam_winbind.so
dtlogin auth required  /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass
#
rsh auth required /usr/lib/security/$ISA/pam_rhosts_auth.so.1
other   auth sufficient /usr/lib/security/pam_winbind.so
other auth required /usr/lib/security/$ISA/pam_unix.so.1 try_first_pass
#
# Account management
#
login   account sufficient      /usr/lib/security/pam_winbind.so
login account requisite /usr/lib/security/$ISA/pam_roles.so.1
login account required /usr/lib/security/$ISA/pam_unix.so.1
#
dtlogin account sufficient      /usr/lib/security/pam_winbind.so
dtlogin account requisite /usr/lib/security/$ISA/pam_roles.so.1
dtlogin account required /usr/lib/security/$ISA/pam_unix.so.1
#
other   account sufficient      /usr/lib/security/pam_winbind.so
other account requisite /usr/lib/security/$ISA/pam_roles.so.1
other account required /usr/lib/security/$ISA/pam_unix.so.1
#
# Session management
#
other session required /usr/lib/security/$ISA/pam_unix.so.1
#
# Password management
#
#other   password sufficient     /usr/lib/security/pam_winbind.so
other password required /usr/lib/security/$ISA/pam_unix.so.1
dtsession auth required /usr/lib/security/$ISA/pam_unix.so.1
#
# Support for Kerberos V5 authentication (uncomment to use Kerberos)
#
#rlogin auth optional /usr/lib/security/$ISA/pam_krb5.so.1 try_first_pass
#login auth optional /usr/lib/security/$ISA/pam_krb5.so.1 try_first_pass
#dtlogin auth optional /usr/lib/security/$ISA/pam_krb5.so.1 try_first_pass
#other auth optional /usr/lib/security/$ISA/pam_krb5.so.1 try_first_pass
#dtlogin account optional /usr/lib/security/$ISA/pam_krb5.so.1
#other account optional /usr/lib/security/$ISA/pam_krb5.so.1
#other session optional /usr/lib/security/$ISA/pam_krb5.so.1
#other password optional /usr/lib/security/$ISA/pam_krb5.so.1 try_first_pass
</pre><p>
<a class="indexterm" name="id421065"></a>
I also added a <em class="parameter"><code>try_first_pass</code></em> line after the <code class="filename">winbind.so</code>
line to get rid of annoying double prompts for passwords.
</p><p>
Now restart your Samba and try connecting through your application that you
configured in the pam.conf.
</p></div></div></div></div><div class="sect1" title="Conclusion"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id421094"></a>Conclusion</h2></div></div></div><p>
<a class="indexterm" name="id421102"></a>
<a class="indexterm" name="id421108"></a>
<a class="indexterm" name="id421115"></a>
<a class="indexterm" name="id421121"></a>
<a class="indexterm" name="id421128"></a>
The Winbind system, through the use of the NSS, PAMs, and appropriate Microsoft RPC calls, have allowed us to
provide seamless integration of Microsoft Windows NT domain users on a UNIX system. The result is a great
reduction in the administrative cost of running a mixed UNIX and NT network.
</p></div><div class="sect1" title="Common Errors"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id421140"></a>Common Errors</h2></div></div></div><p>
	Winbind has a number of limitations in its current released version that we hope to overcome in future releases:
	</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
		Winbind is currently only available for the Linux, Solaris, AIX, and IRIX operating systems, although
		ports to other operating systems are certainly possible. For such ports to be feasible, we require the C
		library of the target operating system to support the NSS and PAM systems. This is becoming more common as NSS
		and PAM gain support among UNIX vendors.
		</p></li><li class="listitem"><p>
		The mappings of Windows NT RIDs to UNIX IDs is not made algorithmically and depends on the order in
		which unmapped users or groups are seen by Winbind. It may be difficult to recover the mappings of RID to UNIX
		ID if the file containing this information is corrupted or destroyed.
		</p></li><li class="listitem"><p>
		Currently the Winbind PAM module does not take into account possible workstation and logon time
		restrictions that may be set for Windows NT users; this is instead up to the PDC to enforce.
		</p></li></ul></div><div class="sect2" title="NSCD Problem Warning"><div class="titlepage"><div><div><h3 class="title"><a name="id421173"></a>NSCD Problem Warning</h3></div></div></div><div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Warning</h3><p>
	Do not under any circumstances run <code class="literal">nscd</code> on any system
	on which <code class="literal">winbindd</code> is running.
	</p></div><p>
	If <code class="literal">nscd</code> is running on the UNIX/Linux system, then
	even though NSSWITCH is correctly configured, it will not be possible to resolve
	domain users and groups for file and directory controls.
	</p></div><div class="sect2" title="Winbind Is Not Resolving Users and Groups"><div class="titlepage"><div><div><h3 class="title"><a name="id421207"></a>Winbind Is Not Resolving Users and Groups</h3></div></div></div><p><span class="quote">&#8220;<span class="quote">
	My <code class="filename">smb.conf</code> file is correctly configured. I have specified <a class="link" href="smb.conf.5.html#IDMAPUID" target="_top">idmap uid = 12000</a>,
	and <a class="link" href="smb.conf.5.html#IDMAPGID" target="_top">idmap gid = 3000-3500</a> and <code class="literal">winbind</code> is running.
	When I do the following, it all works fine.
	</span>&#8221;</span></p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>wbinfo -u</code></strong>
MIDEARTH\maryo
MIDEARTH\jackb
MIDEARTH\ameds
...
MIDEARTH\root

<code class="prompt">root# </code><strong class="userinput"><code>wbinfo -g</code></strong>
MIDEARTH\Domain Users
MIDEARTH\Domain Admins
MIDEARTH\Domain Guests
...
MIDEARTH\Accounts

<code class="prompt">root# </code><strong class="userinput"><code>getent passwd</code></strong>
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/bin/bash
...
maryo:x:15000:15003:Mary Orville:/home/MIDEARTH/maryo:/bin/false
</pre><p><span class="quote">&#8220;<span class="quote">
But the following command just fails:
</span>&#8221;</span>
</p><pre class="screen">
<code class="prompt">root# </code><strong class="userinput"><code>chown maryo a_file</code></strong>
chown: `maryo': invalid user
</pre><p>
<span class="quote">&#8220;<span class="quote">
This is driving me nuts! What can be wrong?
</span>&#8221;</span></p><p>
Same problem as the one above.
Your system is likely running <code class="literal">nscd</code>, the name service
caching daemon. Shut it down, do not restart it! You will find your problem resolved.
Alternately, fix the operation of nscd to resolve the problem.
</p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="VFS.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="optional.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="AdvancedNetworkManagement.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 23. Stackable VFS modules </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 25. Advanced Network Management</td></tr></table></div></body></html>