1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
|
<html>
<body bgcolor="#ffffff">
<img src="samba2_xs.gif" border="0" alt=" " height="100" width="76"
hspace="10" align="left" />
<h2>Index</h2>
<A HREF="#Symbols">[ Symbols ]</A>,
<A HREF="#Numbers">[ Numbers ]</A>,
<A HREF="#A">[ A ]</A>,
<A HREF="#B">[ B ]</A>,
<A HREF="#C">[ C ]</A>,
<A HREF="#D">[ D ]</A>,
<A HREF="#E">[ E ]</A>,
<A HREF="#F">[ F ]</A>,
<A HREF="#G">[ G ]</A>,
<A HREF="#H">[ H ]</A>,
<A HREF="#I">[ I ]</A>,
<A HREF="#K">[ K ]</A>,
<A HREF="#L">[ L ]</A>,
<A HREF="#M">[ M ]</A>,
<A HREF="#N">[ N ]</A>,
<A HREF="#O">[ O ]</A>,
<A HREF="#P">[ P ]</A>,
<A HREF="#Q">[ Q ]</A>,
<A HREF="#R">[ R ]</A>,
<A HREF="#S">[ S ]</A>,
<A HREF="#T">[ T ]</A>,
<A HREF="#U">[ U ]</A>,
<A HREF="#V">[ V ]</A>,
<A HREF="#W">[ W ]</A>,
<A HREF="#X">[ X ]</A>
<P><A NAME="Symbols"><B>Symbols</B><A HREF="inx.html">[ Top ]</A>
<BR>_ _MSBROWSE _ _ resource entry, 16, 229
<BR>. (period)
<BR> NetBIOS names and, 14
<BR> (see also dot files)
<BR>%$ variable, 192
<P><A NAME="Numbers"><B>Numbers</B><A HREF="inx.html">[ Top ]</A>
<BR>127.0.0.1 (localhost), 73
<BR> bind interfaces only option, 208
<P><A NAME="A"><B>A</B><A HREF="inx.html">[ Top ]</A>
<BR>%a variable, 143, 192
<BR> variable substitution, 191
<BR>abort shutdown script option (smb.conf file), 401
<BR>Access Control Entries (ACEs), 31, 253
<BR>Access Control Lists (see ACLs)
<BR>access control options, 287-288
<BR>access, controlling (see ACLs; controlling access to shares)
<BR>accounts (see computer accounts, adding; users)
<BR>ACLs, 30
<BR> configuration options, 260-262
<BR> inheriting, 416
<BR> installing Samba with support for, 495
<BR> mapping to Unix permissions, 426
<BR> POSIX.1e, 259
<BR> support in Samba 2.2, 37
<BR> Unix, 259
<BR> versus Unix file permissions, 31
<BR> Windows NT/2000/XP, 165, 253-262
<BR>Active Directory
<BR> Samba 2.2, 34, 121
<BR> Samba 3.0, 34
<BR> server, specifying, 402
<BR> time synchronization and, 340
<BR>adapters, 69
<BR>add machine script option (smb.conf file), 402
<BR>add printer command option (smb.conf file), 401
<BR>add share command option (smb.conf file), 402
<BR>add user script option (smb.conf file), 159, 402
<BR>admin users option (smb.conf file), 285, 287, 402
<BR>admin users (see root accounts)
<BR>administrator (see domain administrator)
<BR>ads server option (smb.conf file), 402
<BR>AFS (Andrew Filesystem), installing Samba with support for, 495
<BR>Albitz, Paul, 383
<BR>algorithmic rid base option (smb.conf file), 402
<BR>allow hosts option (smb.conf file), 403
<BR>allow trusted domains option (smb.conf file), 403
<BR>analogX Atomic TimeSync, 340
<BR>announce as option (smb.conf file), 234, 403
<BR>announce version option (smb.conf file), 235, 403
<BR>anonymous
<BR> restricting access, 434
<BR> (see also guest access)
<BR>ANSI C compiler required by Samba source, 44
<BR>auth methods option (smb.conf file), 403
<BR>authentication
<BR> client, 290-296
<BR> setting method of, 436
<BR> defined, 30
<BR> enabling Samba as WINS server, configuration file example, 395
<BR> files, specifying where Samba keeps, 497
<BR> methods, specifying, 403
<BR> overview, 31
<BR> pass-through, 33
<BR> Samba security levels, 290
<BR> Samba's default user-level versus Windows, 74
<BR> Windows 95/98/Me, 28
<BR> with winbind, 307-319
<BR> (see also passwords)
<BR>auto services option (smb.conf file), 233, 235, 403
<BR>automounting shares, 495
<BR>available option (smb.conf file), 403
<P><A NAME="B"><B>B</B><A HREF="inx.html">[ Top ]</A>
<BR>backends (CUPS modules), 332
<BR>backup browsers, 27, 226
<BR>backup domain controllers (BDCs), 31
<BR> Samba 2.2's inability to work with, 122
<BR> (see also primary domain controllers)
<BR>backups, creating and restoring using smbclient, 172-174
<BR>.bak files, 251
<BR>.bat files, 138
<BR>bind interfaces only option (smb.conf file), 208, 403
<BR>bindings, 69
<BR> Windows 2000, 100
<BR> Windows 95/98/Me, 80
<BR> Windows NT, 93
<BR> Windows XP, 110
<BR>--bindir (configure script option), 48
<BR>bitmasks, 176
<BR> CIDR format, 208
<BR>block size option (smb.conf file), 404
<BR>blocking locks option (smb.conf file), 404
<BR>b-node (NetBios node type), 13
<BR>broadcast
<BR> name resolution, 71
<BR> versus NBNS name registration, 11
<BR>broadcast address, 389
<BR>broadcasting, 12
<BR>browsable option (smb.conf file), 233, 235, 284, 404
<BR>browse list option (smb.conf file), 235, 404
<BR>browse lists, 27, 224
<BR> invisible shares, 233
<BR> printer names, 419
<BR> specifying list of shares, 431
<BR> specifying shares in, 403, 404
<BR> specifying the directory where Samba keeps, 497
<BR> synchronizing with all domain master browsers, 411
<BR>browse master (see local master browser)
<BR>browse server (see local master browser)
<BR>browseable option (smb.conf file) (see browsable option (smb.conf file))
<BR>browser elections, 28, 226-229, 419
<BR>browsers
<BR> backup (see backup browsers)
<BR> domain master browser (see domain master browser)
<BR> local master (see local master browser)
<BR>browsing, 216, 224-239
<BR> a list of computers and shared resources, defined, 26
<BR> configuring Samba for, 229
<BR> cross-subnet, 231
<BR> in a Windows network, 224-229
<BR> invisible shares, 233
<BR> options, 233-239
<BR> overview, 26-28
<BR> server from the client, 382
<BR> shared resource of a specific computer, 26
<BR> troubleshooting problems, 377-383
<BR>Browsing and Windows 95 Networking and CIFS/E Browser Protocol, 229
<BR>BROWSING.txt and BROWSING-Config.txt, 229
<BR>BSD Unix
<BR> automatically starting Samba daemons, 61
<BR> printers, 330-331
<P><A NAME="C"><B>C</B><A HREF="inx.html">[ Top ]</A>
<BR>caching policy, client-side, 406
<BR>case sensitive option (smb.conf file), 265, 404
<BR>case sensitivity, 262-267
<BR> how Samba handles, 264
<BR> preserving case of filename, 431
<BR>casesignames option (smb.conf file), 404
<BR>change notification, 354
<BR>change notify timeout option (smb.conf file), 354, 405
<BR>change share command option (smb.conf file), 405
<BR>character set option (smb.conf file), 344, 405
<BR>character sets, translating, 405
<BR>checking (message from configure script), 48
<BR>CIDR format bitmask, 208
<BR>CIFS, 21
<BR> Unix extensions, 37, 442
<BR> (see also SMB)
<BR>CIFS Technical Reference, 20
<BR>client code page option (smb.conf file), 344, 405
<BR>clustered environment, Samba in, 437
<BR> (see also multihomed system; multiple subnets), 437
<BR>.cmd files, 138
<BR>code page directory option (smb.conf file), 405
<BR>code pages, 344
<BR>coding system option (smb.conf file), 345, 405
<BR>command-line options, parsing, 495
<BR>comment option (smb.conf file), 203, 406
<BR>Common Internet File System (see CIFS)
<BR>compiling Samba, 49-52
<BR>components, Windows, 69
<BR>comp.protocols.smb newsgroup, 392
<BR>computer accounts, adding, 126
<BR>computer names
<BR> name resolution (see name resolution)
<BR> Windows 2000, 103
<BR> Windows 95/98/Me, 81
<BR> Windows NT, 93
<BR> Windows XP, 113
<BR>computers, adding to domains, 402
<BR>Concurrent Versions System (CVS), 491
<BR>config file option (smb.conf file), 196, 406
<BR>config.log file, 49
<BR>config.pol file, 155
<BR>config.status file, 51
<BR>configuration file
<BR> Samba's main (see smb.conf file)
<BR> selecting new, 406
<BR> variables (see smb.conf file, variables)
<BR> (see also configuring Samba)
<BR>configuration management tool (see CVS)
<BR>configuration value types, 448-449
<BR>configure script, 46
<BR> options, 493-499
<BR> --bindir, 48
<BR> --datadir, 48
<BR> --eprefix, 48
<BR> --include dir, 48
<BR> --infodir, 48
<BR> --libdir, 48
<BR> --libexec dir, 48
<BR> --mandir, 48
<BR> --prefix, 48
<BR> --sbindir, 48
<BR> with feature, 47
<BR> --with-acl-support, 495
<BR> --with-afs, 495
<BR> --with-automount, 495
<BR> --with-codepagedir, 495
<BR> --with-configdir, 495
<BR> --with-dce-dfs, 495
<BR> --with-fhs, 495
<BR> --with-included-popt, 495
<BR> --with-krb4, 495
<BR> --with-krb5, 495
<BR> --with-ldapsam, 496
<BR> --with-libiconv, 496
<BR> --with-libsmbclient, 496
<BR> --with-lockdir, 496
<BR> --with-logfilebase, 496
<BR> --with-manpages-langs, 496
<BR> --with-msdfs, 47, 496
<BR> --with-nisplus-home, 496
<BR> --with-nisplussam, 496
<BR> without feature, 47
<BR> --with-pam, 497
<BR> --with-pam_smbpass, 497
<BR> --with-piddir, 497
<BR> --with-privatedir, 497
<BR> --with-profiling-data, 497
<BR> --with-quotas, 497
<BR> --with-readline, 497
<BR> --with-sendfile-support, 497
<BR> --with-smbmount, 47, 498
<BR> --with-smbwrapper, 47, 498
<BR> --with-spinlocks, 498
<BR> --with-ssl, 498
<BR> --with-sslinc, 498
<BR> --with-ssllib, 498
<BR> --with-swatdir, 498
<BR> --with-syslog, 498
<BR> --with-tdbsam, 498
<BR> --with-utmp, 498
<BR> --with-winbind, 499
<BR> sample execution, 48
<BR>configuring Samba, 46-49
<BR> configuration file (see smb.conf file)
<BR> for browsing, 229
<BR> for installation (see configure script)
<BR> for roaming profiles, 143-147
<BR> identifying options used in previous installations, 51
<BR> troubleshooting problems (see troubleshooting Samba, fault tree)
<BR>connection scripts, 274-277
<BR> monitoring directory contents, 275
<BR> options, 275-277
<BR>connections
<BR> denying, 409
<BR> specifying time limits for unused, 407
<BR>controlling access to shares, 285-288
<BR>copy option (smb.conf file), 197, 406
<BR>Core and Core Plus, 20
<BR>create mask option (smb.conf file), 248, 250, 406
<BR>create mode option (smb.conf file), 284, 406
<BR>creating (message from configure script), 48
<BR>creation masks, 247-250
<BR>csc policy option (smb.conf file), 406
<BR>CVS (Concurrent Versions System), 491
<P><A NAME="D"><B>D</B><A HREF="inx.html">[ Top ]</A>
<BR>%d variable, 192
<BR>daemons (see inetd daemon; nmbd daemon; smbd daemon; xinetd daemon)
<BR>Darwin, automatically starting Samba daemons, 64
<BR>.dat files
<BR> changing to .man files, 150
<BR> NTUSER.DAT, 141
<BR> USER.DAT, 141
<BR>--datadir (configure script option), 48
<BR>datagram primitives, 17
<BR>datagram services, defined, 10
<BR>datagram services (NBT)
<BR> defined, 16
<BR> tips, 18
<BR>deadtime option (smb.conf file), 349, 407
<BR>debug hires timestamp option (smb.conf file), 407
<BR>debug pid option (smb.conf file), 407
<BR>debug timestamp option (smb.conf file), 214, 407
<BR>debug uid option (smb.conf file), 407
<BR>debuglevel option (smb.conf file), 407
<BR>default case option (smb.conf file), 264, 265, 408
<BR>default device mode, setting, 408
<BR>default devmode option (smb.conf file), 408
<BR>default option (smb.conf file), 407
<BR>default service option (smb.conf file), 236, 408
<BR>defending the hostname, 12
<BR>delete printer command option (smb.conf file), 408
<BR>delete readonly option (smb.conf file), 250, 251, 408
<BR>delete share command option (smb.conf file), 408
<BR>delete user script option (smb.conf file), 159, 409
<BR>delete veto files option (smb.conf file), 241, 245, 409
<BR>deny hosts option (smb.conf file), 409
<BR>dfree command option (smb.conf file), 350, 409
<BR>Dfs (Microsoft's Distributed filesystem), 277-280
<BR> configuring Samba as Dfs server, 278-279
<BR> installing Samba with support for, 496
<BR> providing services, 415
<BR> support in Samba 2.2, 36
<BR> Windows clients, 278
<BR>DHCP and IP addresses, 70
<BR>DIAGNOSIS.txt, 359
<BR>dig command (Unix), 73
<BR>Digital Pathworks clients, 353
<BR>directories
<BR> caching for performance, 414
<BR> connecting to drive letter, 138
<BR> creating on the Samba server, 125
<BR> deleting when vetoed files are present, 241, 409
<BR> home, setting, 420
<BR> monitoring contents, 275
<BR> setting maximum allowable permissions, 409
<BR> setting paths, 409
<BR>directory mask option (smb.conf file), 249, 251, 409
<BR>directory mode option (smb.conf file), 284, 410
<BR>directory option (smb.conf file), 409
<BR>directory permissions, 416
<BR> options, 250-253
<BR>directory recursion, 171
<BR>directory security mask option (smb.conf file), 261, 262, 410
<BR>disable spools option (smb.conf file), 410
<BR>disk services, example of sharing, 4-7
<BR>disk share configuration, 201-203
<BR>disk-quota support, 497
<BR>Distributed Computing Environment Distributed Filesystem (DCE/DFS), 495
<BR>Distributed filesystem (see Dfs)
<BR>dmask option, 176
<BR>DNS, 70
<BR> configuration
<BR> Windows 2000, 101
<BR> Windows 95/98/Me, 79
<BR> Windows NT, 92
<BR> Windows XP, 111
<BR> NetBIOS names
<BR> translating between DNS names and, 182
<BR> versus hostnames versus, 14
<BR> overview, 73
<BR> servers, name resolution and, 217
<BR>DNS proxy, configuring on WINS server, 220
<BR>dns proxy option (smb.conf file), 220, 223, 410
<BR>documentation, Samba, 45, 391
<BR>domain admin group option (smb.conf file), 160, 410
<BR>domain administrator, 126, 410
<BR>Domain Admins group, 410
<BR>domain controllers, 30
<BR> backup (see backup domain controllers)
<BR> primary (see primary domain controllers)
<BR>Domain Guest group, 410
<BR>domain guest group option (smb.conf file), 410
<BR>domain logons
<BR> configuring Windows clients for, 128-137
<BR> Windows 2000, 133-135
<BR> Windows 95/98/Me, 128-131
<BR> Windows complains that you are already logged on, 129
<BR> Windows NT, 131-133
<BR> Windows XP Professional, 135-137
<BR>domain logons option (smb.conf file), 159, 410
<BR>domain master browser, 35, 226
<BR> configuring Samba as both local master browser and, 124
<BR> forcing Samba to be, 237, 411
<BR> problems with, 35
<BR> Samba as, 230
<BR> synchronizing browse lists with all, 411
<BR> verifying Samba as, 231
<BR>domain master option (smb.conf file), 159, 237, 411
<BR>domain member server, 34
<BR> Samba as, 156-157
<BR> smb.conf file example, 400
<BR>domain membership, 126
<BR>Domain Name System (see DNS)
<BR>domain-level security, 291, 296
<BR>domains
<BR> adding computers to, 402
<BR> advantages of, 120
<BR> more information on how to set up, 122
<BR> trust relationships, 33
<BR> trusted, 403
<BR> (see also Windows NT domain options)
<BR>dont descend option (smb.conf file), 241, 243, 411
<BR>dos filemode option (smb.conf file), 411
<BR>dos filetime resolution option (smb.conf file), 342, 411
<BR>dos filetimes option (smb.conf file), 341, 411
<BR>dos2unix command, 170
<BR>dot files, 240
<BR> hiding, 414
<BR> (see also hiding files)
<BR>drive letter, connecting a directory to, 6, 138
<P><A NAME="E"><B>E</B><A HREF="inx.html">[ Top ]</A>
<BR>emacs text editor, 139
<BR>encrypt passwords option (smb.conf file), 304, 411
<BR>encrypted passwords
<BR> disabling, 298
<BR> managing, 483
<BR> (see also smbpasswd program)
<BR> smb.conf file and, 55
<BR> (see also passwords)
<BR>enhanced browsing option (smb.conf file), 411
<BR>enumports command option (smb.conf file), 412
<BR>environment variables, forcing Samba to read list of, 437
<BR>--eprefix (configure script option), 48
<BR>error messages from configure script, 48
<BR>/etc/fstab file, warning about editing, 177
<BR>/etc/group, 283
<BR>/etc/hosts file, 70
<BR>/etc/nsswitch.conf file, 71
<BR>/etc/passwd file, creating entries manually, 127
<BR>/etc/printcap.local file, 330
<BR>/etc/resolv.conf file, 73, 220
<BR>Ethereal (SMB sniffer), 20, 361
<BR>exec option (smb.conf file), 412
<BR>executable file permission bit, 248
<BR>ext2/ext3 filesystem, 37
<P><A NAME="F"><B>F</B><A HREF="inx.html">[ Top ]</A>
<BR>fake directory create times option (smb.conf file), 342, 412
<BR>fake oplocks option (smb.conf file), 273, 412
<BR>FAQs, Samba, 391
<BR>fault tree, troubleshooting Samba, 362-391
<BR>file locking (see locks and oplocks)
<BR>file permissions
<BR> executable bit, 248
<BR> on MS-DOS and Unix, 245-253
<BR> options, 250-253
<BR> setting in Windows NT/2000/XP, 165
<BR> setting maximum allowable, 406
<BR> Unix permission bits summary, 247
<BR> Unix permissions versus ACLs, 31
<BR> versus ACLs, 31
<BR>file transfer using smbclient, 170
<BR>filenames
<BR> conventions, 262
<BR> (see also name mangling)
<BR> representing and resolving in Samba, 264
<BR>Filesystem Hierarchy Standard, 495
<BR>filesystem options, 243-245
<BR>findsmb program, 40, 455
<BR>firewall configuration, 60
<BR>fmask option (sbmount), 176
<BR>follow symlinks option (smb.conf file), 242, 243, 412
<BR>force create mode option (smb.conf file), 251, 412
<BR>force directory mode option (smb.conf file), 251, 413
<BR>force directory security mode option (smb.conf file), 262, 413
<BR>force group option (smb.conf file), 249, 251, 413
<BR>force security mode option (smb.conf file), 261, 413
<BR>force unknown acl user option (smb.conf file), 413
<BR>force user option (smb.conf file), 249, 251, 413
<BR>Frisch, Æleen, 325
<BR>fstab file, warning about editing, 177
<BR>fstype option (smb.conf file), 350, 413
<P><A NAME="G"><B>G</B><A HREF="inx.html">[ Top ]</A>
<BR>%G variable, 192
<BR>%g variable, 192
<BR>gcc binaries, 44
<BR>get command, 170
<BR>getwd cache option (smb.conf file), 243, 414
<BR>[global] section (smb.conf file), 193
<BR>GNU configure script (see configure script)
<BR>GNU Free Documentation License, 511-518
<BR>Google, 392
<BR>group ID (GID), 31
<BR>group option (smb.conf file), 414
<BR>grouppol.inf file, 153
<BR>groups
<BR> additional information, 16
<BR> overriding a user's normal group membership, 413
<BR> setting a group share in smb.conf file, 283
<BR> system group file, 283
<BR> (see also workgroups; SMB, groups)
<BR>guest access, 286
<BR>guest account option (smb.conf file), 286, 288, 414
<BR>guest ok option (smb.conf file), 286, 414
<BR>guest only option (smb.conf file), 288, 414
<P><A NAME="H"><B>H</B><A HREF="inx.html">[ Top ]</A>
<BR>%H variable, 192, 283
<BR>%h variable, 192
<BR>hide dot files option (smb.conf file), 240, 244, 414
<BR>hide files option (smb.conf file), 241, 244, 414
<BR>hide local users option (smb.conf file), 415
<BR>hide unreadable option (smb.conf file), 415
<BR>hiding files, 240-242
<BR>h-node (NetBios node type), 13
<BR>home directory, setting, 420
<BR>homedir map option (smb.conf file), 281, 415
<BR>[homes] share (smb.conf file), 125, 194, 233, 284
<BR> peculiarities with, 284
<BR>host msdfs option (smb.conf file), 280, 415
<BR>hostname, defending, 12
<BR>hosts allow option (smb.conf file), 204-207, 415
<BR>hosts deny option (smb.conf file), 204-207, 415
<BR>hosts equiv option (smb.conf file), 307, 415
<BR>HOSTS file, 70, 74
<BR>hosts.sam file, 74
<BR>Hunt, Craig, 87
<P><A NAME="I"><B>I</B><A HREF="inx.html">[ Top ]</A>
<BR>%I variable, 192
<BR>iconv( ) function, 496
<BR>ifconfig command, 390
<BR>Implementing Policies and Profiles for Windows NT 4.0, 141
<BR>--include dir (configure script option), 48
<BR>include option (smb.conf file), 193, 197, 416
<BR>inetd daemon, 53
<BR> starting smbd and nmbd daemons, 66
<BR>--infodir (configure script option), 48
<BR>inherit acls option (smb.conf file), 416
<BR>inherit permissions option (smb.conf file), 253, 416
<BR>.ini files, 187
<BR>installation directories for Samba, 50
<BR>installing Samba, 49-52
<BR> on a Unix system, 42-67
<BR> ANSI C compiler required by Samba source, 44
<BR> binary versus source, 43
<BR> bundled versions, 42-45
<BR> configuration (see configure script)
<BR> source, overview of steps, 44
<BR> troubleshooting problems (see troubleshooting Samba, fault tree)
<BR>interfaces list, 403
<BR>interfaces option (smb.conf file), 207, 416
<BR>internationalization, 343-346
<BR> features of Samba 2.2, 456
<BR> installing Samba with support for, 495
<BR>invalid users option (smb.conf file), 284, 285, 287, 416
<BR>invalid users, specifying list of, 285
<BR>IP addresses, 70
<BR> 127.0.0.1 (localhost), 73
<BR> bind interfaces only option, 208
<BR> translating between NetBIOS names and, 182
<BR> Windows 2000, 100
<BR> Windows 95/98/Me networks, 78
<BR> Windows NT, 90
<BR> Windows XP, 111
<BR>IPC$ password, 75
<BR>ipconfig /all command (Windows NT/2000/XP), 13
<BR>ipconfig command, 390
<P><A NAME="K"><B>K</B><A HREF="inx.html">[ Top ]</A>
<BR>keepalive option (smb.conf file), 351, 416
<BR>Kerberos authentication, 38
<BR> installing Samba with support for, 495
<BR> Samba 2.2 and, 121
<BR> time synchronization and, 340
<BR>kernel oplocks option (smb.conf file), 272, 417
<P><A NAME="L"><B>L</B><A HREF="inx.html">[ Top ]</A>
<BR>%L variable, 140, 144, 192
<BR>LAN Manager host announcements, 236
<BR>LAN Manager versions 1.0, 2.0, and 2.1, 20
<BR>lanman auth option (smb.conf file), 417
<BR>large readwrite option (smb.conf file), 417
<BR>LDAP, 34, 38
<BR> installing Samba with support for, 496
<BR> Samba 2.2 and, 121
<BR>ldap admin dn option (smb.conf file), 417
<BR>ldap filter option (smb.conf file), 417
<BR>ldap port option (smb.conf file), 417
<BR>ldap server option (smb.conf file), 418
<BR>ldap ssl option (smb.conf file), 418
<BR>ldap suffix option (smb.conf file), 418
<BR>level2 oplocks option (smb.conf file), 272, 418
<BR>--libdir (configure script option), 48
<BR>--libexec dir (configure script option), 48
<BR>libnss_winbind.so library, 309
<BR>Linux-PAM System Administrator's Guide, 314
<BR>Liu, Cricket, 383
<BR>lm announce option (smb.conf file), 236, 418
<BR>lm interval option (smb.conf file), 237, 418
<BR>LMHOSTS file, 72
<BR> name resolution and, 218
<BR> Windows 2000, 102
<BR> Windows 95/98/Me, 80
<BR> Windows NT, 92
<BR> Windows XP, 112
<BR>load balancing and Dfs, 277, 279
<BR>load printers option (smb.conf file), 336, 419
<BR>local master browser, 27, 224
<BR> configuring Samba as both domain master browser and, 124
<BR>local master option (smb.conf file), 230, 236, 419
<BR>local profiles, 141
<BR>localhost address (see 127.0.0.1 (localhost))
<BR>lock dir option (smb.conf file), 419
<BR>lock directory option (smb.conf file), 274, 419
<BR>lock spin count option (smb.conf file), 419
<BR>lock spin time option (smb.conf file), 419
<BR>locking files (see locks and oplocks)
<BR>locking option (smb.conf file), 271, 419
<BR>locks and oplocks, 268-274
<BR> advanced tuning parameter, 428
<BR> release an oplock, 427
<BR> configuration options, 270-274
<BR> oplock failure, 269
<BR> opportunistic locking process, 268
<BR> setting file locking, 419
<BR> specifying directory where Samba keeps lock files, 496
<BR> spin locks, 498
<BR> Unix and oplocks, 270
<BR>log file option (smb.conf file), 213, 356, 419
<BR>log files, 67
<BR> changing timestamps, 407
<BR> example, 210
<BR> levels of logging, 356-358
<BR> nmbd, 231
<BR> sample output of levels 2 and 3, 356
<BR> setting location of, 419
<BR> setting maximum size, 423
<BR> specifying the directory where Samba keeps, 496
<BR> troubleshooting with, 356-359
<BR> (see also logging)
<BR>log level option (smb.conf file), 213, 420
<BR>logging
<BR> activating and deactivating, 358
<BR> adding process ID, 407
<BR> configuration options, 210-215
<BR> debugging particular user, 407
<BR> (see also log files)
<BR>login parameters, setting, 24
<BR>logon drive option (smb.conf file), 151, 420
<BR>logon home line (smb.conf file), 144
<BR>logon home option (smb.conf file), 152, 420
<BR>logon path line (smb.conf file), 144
<BR>logon path option (smb.conf file), 151, 420
<BR>logon path, supporting roaming profiles for Windows NT/2000/XP clients, 124
<BR>logon script option (smb.conf file), 151, 420
<BR>logon scripts, 120, 137-140
<BR> checking the format, 139
<BR> creating, 138-140
<BR> more information regarding, 140
<BR> options, 150
<BR> using variables inside, 139
<BR>logon.bat, 138
<BR>log.smb file, 67
<BR>lpadmin command (Unix), 333
<BR>lppause command option (smb.conf file), 336, 420
<BR>lppause command (Unix), 323
<BR>lpq cache time option (smb.conf file), 335, 420
<BR>lpq command option (smb.conf file), 336, 421
<BR>lpq command (Unix), 323
<BR>lpr command (Unix), 322
<BR>lpresume command option (smb.conf file), 336, 421
<BR>lpresume command (Unix), 323
<BR>lprm command option (smb.conf file), 336, 421
<BR>lprm command (Unix), 323
<P><A NAME="M"><B>M</B><A HREF="inx.html">[ Top ]</A>
<BR>%M variable, 192
<BR>%m variable, 140, 143, 192
<BR>Mac OS X
<BR> automatically starting Samba daemons, 64
<BR> configuration details, 506-509
<BR> enabling SMB printer sharing, 325
<BR> monitoring services, 505
<BR> Password Server, 504
<BR> activating, 504
<BR> enabling, 505
<BR> smbutil and mount_smbfs, 184-186
<BR>Mac OS X Server
<BR> configuration settings, 508
<BR> configuring and activating services, 503
<BR> running Samba on, 500-510
<BR> sharing files, 501
<BR> sharing printers, 501
<BR>Mac OS X Server Administrator's Guide, 500
<BR>machine password timeout option (smb.conf file), 160, 421
<BR>magic output option (smb.conf file), 343, 421
<BR>magic script option (smb.conf file), 343, 421
<BR>magic scripts, 342
<BR>mailing lists, Samba, 392
<BR> archives, 45
<BR>make install command (Unix), 50
<BR> upgrading installations, 52
<BR>make revert command (Unix), 50
<BR>make utility (Unix), 49
<BR>makefile, generating for Samba configuration, 46
<BR>make_smbcodepage program, 40, 456
<BR>make_unicodemap program, 40, 456
<BR>.man files, changing from .dat files, 150
<BR>man pages (see manual pages)
<BR>managing connections to shares (see connection scripts)
<BR>mandatory profiles, 149
<BR> changing from roaming profiles, 150
<BR>--mandir (configure script option), 48
<BR>mangle case option (smb.conf file), 267, 421
<BR>mangled map option (smb.conf file), 267, 422
<BR>mangled names option (smb.conf file), 266, 422
<BR>mangled stack option (smb.conf file), 267, 422
<BR>mangling char option (smb.conf file), 267, 422
<BR>mangling method option (smb.conf file), 422
<BR>MANPATH environment variable, 52
<BR>manual pages, 52
<BR> in different languages, 496
<BR>map archive option (smb.conf file), 247, 252, 422
<BR>map hidden option (smb.conf file), 247, 252, 422
<BR>map system option (smb.conf file), 247, 252, 422
<BR>map to guest option (smb.conf file), 423
<BR>mapping a free-form client username to a Unix username, 289
<BR>mapping a network drive (see drive letter, connecting a directory to)
<BR>master browser (see local master browser)
<BR>max connections option (smb.conf file), 288, 423
<BR>max disk size option (smb.conf file), 351, 423
<BR>max log size option (smb.conf file), 213, 423
<BR>max mux option (smb.conf file), 351, 423
<BR>max open files option (smb.conf file), 423
<BR>max open files (smb.conf file), 351
<BR>max print jobs option (smb.conf file), 424
<BR>max protocol option (smb.conf file), 424
<BR>max smbd processes option (smb.conf file), 424
<BR>max ttl option (smb.conf file), 224, 424
<BR>max wins ttl option (smb.conf file), 224, 424
<BR>max xmit option (smb.conf file), 352, 424
<BR>message command option (smb.conf file), 348, 424
<BR>messenger service, 346-348
<BR>mget command, 170
<BR>Microsoft Distributed filesystem (see Dfs)
<BR>min passwd length option (smb.conf file), 425
<BR>min password length option (smb.conf file), 425
<BR>min print space option (smb.conf file), 338, 425
<BR>min protocol option (smb.conf file), 425
<BR>min wins ttl option (smb.conf file), 224, 425
<BR>m-node (NetBios node type), 13
<BR>mount_smbfs program, 161, 182
<BR> options, 183
<BR>mput command, 170
<BR>msdfs root option (smb.conf file), 280, 425
<BR>MS-DOS file permissions, 245-253
<BR>MSN Messenger, 346-348
<BR>multihomed system
<BR> running Samba on, 204
<BR> (see also clustered environment, Samba in; multiple subnets)
<BR>multiple subnets
<BR> cross-subnet browsing, 232
<BR> with Samba servers, 232
<BR> (see also clustered environment, Samba in; multihomed system)
<BR>My Network Places, 26
<BR> (see also Network Neighborhood)
<P><A NAME="N"><B>N</B><A HREF="inx.html">[ Top ]</A>
<BR>%N variable, 192
<BR>name mangling, 262-267
<BR> how Samba mangles a long filename into a 8.3 filename, 263
<BR> options, 265-267, 421
<BR>name registration, 11-13
<BR>name resolution, 11-13, 70, 216-224
<BR> broadcast method, 71
<BR> configuring in Samba, 219
<BR> methods, 217
<BR> using broadcast packets, 217
<BR>name resolve order option (smb.conf file), 219, 223, 425
<BR>name services
<BR> defined, 10
<BR> identifying what's in use, 383
<BR> switching, 71
<BR> troubleshooting, 383-388
<BR>name-resolution configuration options, 221-224
<BR>NBNS name registration
<BR> versus broadcast, 11
<BR>NBT, 10, 69
<BR> services, 16
<BR>NBT Standard, 10
<BR>nbtstat utility, 228
<BR> examples, 14, 15
<BR>net program, 40, 457-462
<BR>net time command, 138, 339
<BR>net use command, 138, 144
<BR> testing connections with, 374
<BR>net view program, 225
<BR> testing client browsing, 381
<BR>NetBEUI protocol, 10
<BR> running at same time as NetBIOS over TCP/IP, 69
<BR>NetBIOS
<BR> group resource types, 16
<BR> names
<BR> translating between IP address or DNS names and, 182
<BR> troubleshooting, 390
<BR> versus DNS hostnames, 14
<BR> node types, 13
<BR> overview, 9
<BR> resource names and types, 14
<BR> session, establishing, 22
<BR> unique resource types, 15
<BR> Windows 95/98/Me, 80
<BR>netbios aliases option (smb.conf file), 209, 426
<BR>netbios name option (smb.conf file), 200, 426
<BR>NetBIOS over TCP/IP (see NBT)
<BR>netbios scope option (smb.conf file), 426
<BR>[netlogon] share (smb.conf file), 125, 138, 233
<BR>netmask, using to troubleshoot, 388
<BR>network adapters, 69
<BR>network addresses
<BR> finding your specific address, 390
<BR> troubleshooting, 388-390
<BR>Network Information Service (see NIS)
<BR>Network Neighborhood, 27
<BR> (see also My Network Places)
<BR>Network Time Protocol (NTP), 340
<BR>network traffic, monitoring (see tcpdump program)
<BR>networking
<BR> components
<BR> Windows 2000, 99
<BR> Windows XP, 109
<BR> concepts, Windows (see Windows, networking concepts)
<BR> options, 204-208
<BR>new features
<BR> in Samba 2.2, 36
<BR> in Samba 3.0, 38
<BR>news, Samba, 45
<BR>newsgroups, Samba, 391
<BR>NFS, installing Samba with support for, 495
<BR>NIS+
<BR> installing Samba with support for, 496
<BR> server, installing Samba with support for locating, 496
<BR>nis homedir option (smb.conf file), 281, 426
<BR>NIS (Network Information Service), 71, 280
<BR> configuration options, 280
<BR> server, 30
<BR>nmake command, 412
<BR>nmap command (Unix), 73
<BR>nmbd daemon, 3, 39, 61, 453
<BR> starting automatically, 61-65
<BR> BSD Unix, 61
<BR> Darwin and Mac OS X, 64
<BR> System V Unix, 61
<BR> starting from inetd, 66
<BR> starting manually, 61
<BR> testing, 66
<BR> automatic startup, 65
<BR> time service, 442
<BR>nmbd log file, 231
<BR>nmblookup program, 40, 229, 231, 462
<BR> testing clients, 380
<BR> testing network, 381
<BR> testing servers, 379
<BR>nobody account, 286
<BR>node types, 13
<BR>non unix account range option (smb.conf file), 426
<BR>nslookup command (Unix), 73
<BR>nsmb.conf file, 181
<BR>.nsmbrc files, 181
<BR>nsswitch, configuring, 309
<BR>nsswitch.conf file, 71
<BR>nt acl support option (smb.conf file), 260, 426
<BR>NT LAN Manager 1.0, 21
<BR>nt pipe support option (smb.conf file), 352, 426
<BR>nt smb support option (smb.conf file), 352, 427
<BR>nt status support option (smb.conf file), 427
<BR>ntconfig.pol file, 155
<BR>NT-specific SMB IPC$ pipes, 352
<BR>NTUSER.DAT file, 141
<BR>null passwords option (smb.conf file), 306, 427
<BR>number of address ranges, 389
<P><A NAME="O"><B>O</B><A HREF="inx.html">[ Top ]</A>
<BR>obey pam restrictions option (smb.conf file), 427
<BR>od command, 139
<BR>.old files, 50
<BR>ole locking compatibility (smb.conf file), 352
<BR>only guest option (smb.conf file), 427
<BR>only user option (smb.conf file), 293, 427
<BR>Open Directory Password Server, 504
<BR>oplock break wait time option (smb.conf file), 427
<BR>oplock contention limit option (smb.conf file), 428
<BR>oplocks option (smb.conf file), 272, 428
<BR>opportunistic locking (see locks and oplocks)
<BR>os level option (smb.conf file), 230, 238, 428
<BR>os2 driver map option (smb.conf file), 428
<BR>overwriting files (see locks and oplocks)
<P><A NAME="P"><B>P</B><A HREF="inx.html">[ Top ]</A>
<BR>%P variable, 192
<BR>%p variable, 192
<BR>padc command, 359
<BR>pam password change option (smb.conf file), 428
<BR>PAM (Pluggable Authentication Modules), 38
<BR> configuring, 313-317
<BR>pam_stack.so module, 316
<BR>pam_winbind.so module, 316
<BR>panic action option (smb.conf file), 352, 428
<BR>par command, 359
<BR>passdb backend option (smb.conf file), 429
<BR>pass-through authentication, 33
<BR>passwd chat debug option (smb.conf file), 305, 429
<BR>passwd chat option (smb.conf file), 301, 305, 429
<BR>PASSWD environment variable, 167
<BR>passwd file, creating entries manually, 127
<BR>passwd program option (smb.conf file), 305, 429
<BR>password chat response characters, 302
<BR>password chat send characters, 302
<BR>password level option (smb.conf file), 305, 429
<BR>Password Server (Mac OS X), 504
<BR> activating, 504
<BR> enabling, 505
<BR>password server option (smb.conf file), 160, 295, 429
<BR>passwords, 74, 296-307
<BR> adding to smb.conf file, 75
<BR> configuration options, 303-307
<BR> disabling encrypted, 298
<BR> encrypted (see encrypted passwords)
<BR> IPC$, 75
<BR> limiting length of, 425
<BR> plain-text versus encrypted, 74
<BR> setting on Windows 95/98/Me, 83
<BR> setting servers that validate, 429
<BR> synchronization, 300-303
<BR> Windows versus Unix, 29
<BR> (see also authentication)
<BR>PATH environment variable, 52
<BR>path option (smb.conf file), 202, 430
<BR>pdbedit program, 40, 464
<BR>PDC emulator, 121
<BR>PDCs (see primary domain controllers)
<BR>Pearce, Eric, 16, 160
<BR>performance, caching directories, 414
<BR>period (.)
<BR> NetBIOS names and, 14
<BR> (see also dot files)
<BR>permissions
<BR> mapping to Windows NT ACLs, 426
<BR> (see also file permissions; directory permissions)
<BR>pid directory option (smb.conf file), 430
<BR>PIDs, adding to log lines, 407
<BR>ping, troubleshooting with, 363-367
<BR>Pluggable Authentication Modules (see PAM)
<BR>p-node (NetBios node type), 13
<BR>point-to-point communication, 12
<BR>policies, defined, 120
<BR>port names, customized, 412
<BR>POSIX ACL support, 416
<BR>posix locking option (smb.conf file), 272, 430
<BR>POSIX.1e ACLs, 259
<BR>postexec option (smb.conf file), 277, 430
<BR>postscript option (smb.conf file), 335, 430
<BR>preexec close option (smb.conf file), 277, 430
<BR>preexec option (smb.conf file), 274, 276, 430
<BR>preferred master option (smb.conf file), 237, 431
<BR>preferred master parameter (smb.conf file), 230
<BR>--prefix (configure script option), 48
<BR>preload option (smb.conf file), 235, 431
<BR>preserve case option (smb.conf file), 264, 266, 431
<BR>preventing file overwrites (see locks and oplocks)
<BR>primary domain controllers (PDCs), 31, 226
<BR> handling authentication (see winbind)
<BR> modifying smb.conf file, 122-125
<BR> Samba as, 121-126
<BR> smb.conf file example, 397-399
<BR>primary WINS server, 32
<BR> synchronization problems with Samba 2.2, 33
<BR>print command option (smb.conf file), 322, 336, 431
<BR>print commands, 321
<BR>print jobs
<BR> deleting, 421
<BR> limiting number of, 424
<BR> pausing, 420
<BR> resuming, 421
<BR> sending over Samba, 321
<BR>print ok option (smb.conf file), 433
<BR>printable option (smb.conf file), 323, 335, 431
<BR>printcap file, 419
<BR> example, 336
<BR>printcap name option (smb.conf file), 338, 431
<BR>printcap option (smb.conf file), 338
<BR>printcap.local file, 330
<BR>printer admin option (smb.conf file), 432
<BR>printer driver file option (smb.conf file), 432
<BR>printer driver location option (smb.conf file), 432
<BR>printer driver option (smb.conf file), 432
<BR>printer name option (smb.conf file), 335, 432
<BR>printer option (smb.conf file), 335, 432
<BR>printer status, setting command for, 421
<BR>printers
<BR> adding new to system, 401
<BR> BSD, 330-331
<BR> CUPS, 332
<BR> example of sharing, 8
<BR> names in browse lists, 419
<BR> removing from system, 408
<BR> sending files using smbclient, 325
<BR> setting default device mode, 408
<BR> setting up from Windows, 8
<BR> sharing, 320
<BR> on Mac OS X, 501
<BR> System V, 331
<BR> (see also printing)
<BR>[printers] share (smb.conf file), 195, 324
<BR> example for a Linux system, 324
<BR>printing, 320-338
<BR> adding a Unix printer, 330-333
<BR> common problem with Samba printer configuration, 325
<BR> CUPS-compatible, 486
<BR> debugging printers, 325
<BR> Mac OS X environment, 325
<BR> network, 320
<BR> options, 333-338
<BR> setting up and testing a Windows client, 326
<BR> shares
<BR> example, 322
<BR> important information about, 323
<BR> system types, 334
<BR> testing the configuration, 325
<BR> to Windows from Unix, 327-338
<BR> variables, 322
<BR> (see also printers)
<BR>printing option (smb.conf file), 334, 432
<BR>private directory option (smb.conf file), 433
<BR>process IDs, adding to log lines, 407
<BR>processes, viewing in Unix, 8
<BR>[profiles] share (smb.conf file), 125
<BR>prompt command, 171
<BR>protocol option (smb.conf file), 433
<BR>ps command (Unix), 8
<BR> looking for daemon processes with, 368
<BR>public option (smb.conf file), 433
<BR>put command, 170
<BR>.pwl files, 29
<P><A NAME="Q"><B>Q</B><A HREF="inx.html">[ Top ]</A>
<BR>queuepause command option (smb.conf file), 338, 433
<BR>queueresume command option (smb.conf file), 338, 433
<P><A NAME="R"><B>R</B><A HREF="inx.html">[ Top ]</A>
<BR>%R variable, 192
<BR>read bmpx option (smb.conf file), 433
<BR>read list option (smb.conf file), 286, 288, 433
<BR>read only option (smb.conf file), 203, 434
<BR>read raw option (smb.conf file), 434
<BR>read size option (smb.conf file), 434
<BR>readline( ) support, 497
<BR>read-only access, specifying users, 433
<BR>realm option (smb.conf file), 434
<BR>reconfiguring Samba, 52
<BR>recurse command, 171
<BR>registry files, 141
<BR> settings and passwords, 74
<BR>relative identifier (RID), 30
<BR>remote announce option (smb.conf file), 232, 238, 434
<BR>remote browse sync option (smb.conf file), 238, 434
<BR>remote logons (see roaming profiles)
<BR>resolv.conf file, 73, 220
<BR>resource names and types (NetBIOS), 14
<BR>restrict anonymous option (smb.conf file), 434
<BR>roaming profiles, 120, 140-152
<BR> changing to mandatory profiles, 150
<BR> configuring
<BR> Samba for, 143-147
<BR> Windows 95/98/Me for, 147
<BR> Windows NT/2000/XP for, 148
<BR> defining a logon path for Windows NT/2000/XP clients, 124
<BR> definitive documentation, 141
<BR> how they work, 141
<BR> options, 150
<BR> possible problems, 142
<BR> restricting users from editing their own, 149
<BR> setting path to directory (Windows NT/2000/XP), 420
<BR> smb.conf file, 138
<BR> Temporary Internet Files folder, 143
<BR> time synchronization, 339
<BR> users logged onto multiple clients, 142
<BR> warning, 141
<BR> (see also mandatory profiles)
<BR>root access, 285
<BR>root accounts
<BR> adding root user to Samba's password database, 126
<BR> (see also domain administrator)
<BR> specifying users with root permissions, 402
<BR>root dir option (smb.conf file), 435
<BR>root directory option (smb.conf file), 435
<BR>root option (smb.conf file), 435
<BR>root postexec option (smb.conf file), 277, 435
<BR>root preexec close option (smb.conf file), 276, 435
<BR>root preexec option (smb.conf file), 275, 276, 435
<BR>roving profiles (see roaming profiles)
<BR>rpcclient commands, 467-470
<BR>rpcclient program, 40, 465
<BR>rpm command (Unix), 43
<P><A NAME="S"><B>S</B><A HREF="inx.html">[ Top ]</A>
<BR>%S variable, 192
<BR>SAM (Security Account Manager), 30
<BR> database, 126
<BR>Samba
<BR> advantages of using, 3
<BR> allowing outside applications to access Samba features, 496
<BR> compiling (see compiling Samba)
<BR> configuration file (see smb.conf file)
<BR> configuring (see configuring Samba)
<BR> defined, 2
<BR> distribution, overview, 39
<BR> as domain member server, 34
<BR> downloading, 45
<BR> examples
<BR> sharing a printer, 8
<BR> sharing disk service, 4-7
<BR> simple network, 4
<BR> in a clustered environment, 437
<BR> (see also multihomed system; multiple subnets), 437
<BR> installing (see installing Samba)
<BR> manual pages, 52
<BR> in different languages, 496
<BR> obtaining, 41
<BR> overview, 1-41
<BR> running on a multihomed system, 204
<BR> troubleshooting (see troubleshooting Samba)
<BR> upgrading installations, 51
<BR> variables (see smb.conf file, variables)
<BR> web site, 41
<BR>Samba 2.2
<BR> in a domain hosted by native mode Windows 2000 server, 34
<BR> issues with Active Directory, 34, 121
<BR> new features, 36
<BR>Samba 3.0
<BR> new features, 38
<BR> obsolete options
<BR> blocksize, 404
<BR> character set, 405
<BR> client code page, 405
<BR> code page directory, 405
<BR> coding system, 405
<BR> domain guest group, 410
<BR> force unknown acl user, 413
<BR> ldap admin dn, 417
<BR> ldap filter, 417
<BR> ldap port, 417
<BR> ldap server, 418
<BR> ldap ssl, 418
<BR> ldap suffix, 418
<BR> nt smb support, 427
<BR> related to SSL, 438-440
<BR> status, 440
<BR> unix extensions, 442
<BR> userhosts, 443
<BR> valid chars, 444
<BR> roles, 38
<BR>Samba server
<BR> adding to workgroup, configuration file example, 396
<BR> connecting from
<BR> Windows 2000, 107
<BR> Windows 95/98/Me, 84
<BR> Windows NT, 96
<BR> Windows XP, 116
<BR> connection listings (see smbstatus program)
<BR> creating directories on, 125
<BR> restarting, 126
<BR> sending a print job, 321
<BR> services, 2
<BR>Samba Web Administration Tool (see SWAT)
<BR>Samba-BDC-HOWTO.html, 122
<BR>Samba-PDC-HOWTO.html, 122
<BR>Samba's NT LM 0.12, 21
<BR>SASL (Simple Authentication and Security Layer) standard, 504
<BR>--sbindir (configure script option), 48
<BR>scope ID (SMB packet), 16
<BR>search paths, setting, 52
<BR>secrets.tdb file, 156
<BR>security
<BR> Samba security levels
<BR> domain (see domain-level security)
<BR> server (see server-level security)
<BR> share (see share-level security)
<BR> user (see user-level security)
<BR> user-level for Windows 95/98/Me, 129
<BR> (see also authentication)
<BR>Security Access Token (SAT), 31
<BR>Security Account Manager (SAM), 30
<BR>security identifiers (SIDs), 30
<BR>security issues
<BR> creating entries for /etc/passwd and smbpasswd manually, 127
<BR> disabling oplocks in smb.conf file, 58
<BR>security mask option (smb.conf file), 261, 436
<BR>security models, Unix versus Windows, 253
<BR>security option (smb.conf file), 291, 436
<BR>sendfile( ) system call, 497
<BR>server announcements, 229
<BR>Server Message Block (SMB) protocol (see SMB)
<BR>server string option (smb.conf file), 200, 436
<BR>server-level security, 291, 295
<BR>session parameters, setting, 24
<BR>session primitives, 17
<BR>session service, defined, 10
<BR>session services (NBT)
<BR> defined, 16
<BR> tips, 18
<BR>set directory option (smb.conf file), 353, 436
<BR>share modes option (smb.conf file), 436
<BR>share-level security, 290
<BR> options, 293
<BR> versus user-level security, 162
<BR>shares
<BR> adding new, 402
<BR> allowing and denying, 415
<BR> copying configurations, 406
<BR> deleting, 408
<BR> denying access to, 403
<BR> invisible, 233
<BR> managing connections to (see connection scripts)
<BR> modifying, 405
<BR> printers, setting default device mode, 408
<BR> sections in smb.conf file, 125
<BR> setting maximum number, 423
<BR> specifying in browse lists, 403, 404, 431
<BR> specifying systems that may connect to, 403
<BR>sharing
<BR> disk services example, 4-7
<BR> files
<BR> Mac OS X, 501
<BR> Windows 95/98/Me, 162
<BR> Windows NT/2000/XP, 163, 165
<BR> printers (see printers, sharing)
<BR>Sharpe, Richard, 19
<BR>short preserve case option (smb.conf file), 264, 266, 436
<BR>show add printer wizard option (smb.conf file), 437
<BR>shutdown script option (smb.conf file), 437
<BR>SIDs (security identifiers), 30
<BR>SMB, 2
<BR> CIFS and, 21
<BR> clients, 21
<BR> command format, 19
<BR> connections, troubleshooting, 371-377
<BR> groups, 15
<BR> header fields, 19
<BR> header format, 19
<BR> message format, 19
<BR> network, overview, 9-18
<BR> online summary, 19
<BR> packets, 16
<BR> protocol
<BR> additional information, 20
<BR> negotiating a protocol variant, 22
<BR> overview, 18-26
<BR> versions, 20
<BR> servers, 21
<BR> simple connection, 22
<BR>smb passwd file option (smb.conf file), 306, 437
<BR>SMB sniffer (Ethereal), 20
<BR>smbcacls program, 40, 470
<BR>smbclient commands, 168
<BR>smbclient program, 40, 67, 161, 165-174, 472-478
<BR> authenticating with, 167
<BR> compared to smbfs and smbsh, 165
<BR> creating and restoring backups, 172-174
<BR> file transfer, 170
<BR> interactive session, 168-171
<BR> listing services, 165
<BR> programming with, 171
<BR> security and, 168
<BR> sending a file to the printer, 325
<BR> testing
<BR> browsing, 377
<BR> connections with, 373
<BR> locally with, 372
<BR>smb.conf file, 187-215
<BR> adding user passwords, 75
<BR> bracketed names, 188
<BR> (see also shares, sections in smb.conf file)
<BR> capitalization, 189
<BR> comments, 190
<BR> configuring winbind, 309
<BR> creating and modifying (see SWAT)
<BR> disabling oplocks, 58
<BR> encrypted passwords and, 55
<BR> examples, 187
<BR> configuring Samba to use another WINS server, 396
<BR> disk share, 201-203
<BR> enabling Samba as WINS server, 395
<BR> server configuration file, 198-201
<BR> setting Samba as domain member server, 400
<BR> setting Samba as PDC, 397-399
<BR> file structure, 188-191
<BR> getting started, 54-60
<BR> [global] section, 193
<BR> include option, 193
<BR> line continuation, 189
<BR> location from bundled installation, 42
<BR> logon scripts (see logon scripts)
<BR> Mac OS X, 509
<BR> making significant changes, 190
<BR> modifying Samba to be a PDC, 122-125
<BR> modifying Samba to be domain member server, 157
<BR> name resolution, 219
<BR> options, 188, 195-198
<BR> access control, 287-288
<BR> ACLs, 260-262
<BR> browsing, 233-239
<BR> connection scripts, 275-277
<BR> disk share, 202
<BR> dot files, 240
<BR> file and directory permissions, 250-253
<BR> filesystem, 243-245
<BR> internationalization, 343-346
<BR> locks and oplocks, 270-274
<BR> logging, 210-215
<BR> name mangling, 265-267
<BR> name resolution, 221-224
<BR> networking, 204-208
<BR> NIS, 280
<BR> password, 303-307
<BR> printing, 333-338
<BR> server, 199
<BR> time synchronization, 341-342
<BR> virtual servers, 209
<BR> winbind, 317-319
<BR> [printers] section, 195
<BR> roaming profiles, 138
<BR> runtime changes, 190
<BR> shares, 125, 194
<BR> smbmount program and, 174
<BR> smbsh and, 179
<BR> testing, 59
<BR> variables, 191-193
<BR> example of use, 193
<BR> table, 192
<BR> used at runtime, 140
<BR> WINS support, 71
<BR>smbcontrol program, 40, 478
<BR>smbd daemon, 3, 39, 61, 451
<BR> checking with telnet, 369
<BR> starting automatically, 61-65
<BR> BSD Unix, 61
<BR> Darwin and Mac OS X, 64
<BR> System V Unix, 61
<BR> starting from inetd, 66
<BR> starting manually, 61
<BR> testing, 66
<BR> automatic startup, 65
<BR>smbfs filesystem, 161, 174-178
<BR> compared to smbclient, 165
<BR> installing Samba with support for, 498
<BR> mounting automatically, 177
<BR>smbgroupedit program, 40, 479
<BR>smbmnt program, 40, 174, 480
<BR>smbmount program, 40, 175, 481
<BR> installing Samba with support for, 498
<BR> options, 178
<BR> smb.conf file, 174
<BR>SMBnegprot request, 23
<BR>smbpasswd file, 126, 299-300
<BR> creating entries manually, 127
<BR>smbpasswd program, 41, 55, 483
<BR>smbprint program, 330
<BR>smbprint.sysv, 330
<BR>SMBSesssetupX command, 24
<BR>smbsh program, 41, 161, 179, 485
<BR> compared to smbclient, 165
<BR> installing Samba with support for, 498
<BR> interactive session, 179
<BR> smb.conf file, 179
<BR>smbspool, 330
<BR>smbspool program, 41, 486
<BR>smbspool utility, 332
<BR>smbstatus program, 8, 41, 487
<BR>smbtar program, 41, 487
<BR>SMBtconX message, 25
<BR>smbumount program, 41, 488
<BR>smbutil program, 161, 181
<BR> options, 183
<BR> testing print configuration, 326
<BR>smbwrapper library, 179, 498
<BR>socket address option (smb.conf file), 437
<BR>socket options option (smb.conf file), 437
<BR>source environment option (smb.conf file), 437
<BR>source/config.status file, 51
<BR>spin locks, 498
<BR>SSL
<BR> installing Samba to support, 498
<BR> options, 438-440
<BR>ssl CA certDir option (smb.conf file), 438
<BR>ssl CA certFile option (smb.conf file), 438
<BR>ssl ciphers option (smb.conf file), 438
<BR>ssl client cert option (smb.conf file), 438
<BR>ssl client key option (smb.conf file), 438
<BR>ssl compatibility option (smb.conf file), 439
<BR>ssl hosts option (smb.conf file), 439
<BR>ssl hosts resign option (smb.conf file), 439
<BR>ssl option (smb.conf file), 438
<BR>ssl require clientcert option (smb.conf file), 439
<BR>ssl require servercert option (smb.conf file), 439
<BR>ssl server cert option (smb.conf file), 439
<BR>ssl server key option (smb.conf file), 440
<BR>ssl version option (smb.conf file), 440
<BR>stat cache option (smb.conf file), 354, 440
<BR>stat cache size option (smb.conf file), 354, 440
<BR>status option (smb.conf file), 440
<BR>status (smb.conf file), 353
<BR>Stern, Hal, 383
<BR>strace command, 359
<BR>strict allocate option (smb.conf file), 440
<BR>strict locking option (smb.conf file), 271, 441
<BR>strict sync option (smb.conf file), 353, 441
<BR>strip dot option (smb.conf file), 353, 441
<BR>subnets, workgroups spanning multiple, 34
<BR>superuser (root) access, 285
<BR>SWAT
<BR> enabling, 52
<BR> login, 56
<BR> specifying where to install files for, 498
<BR> using, 56-58
<BR>symbolic links, 242
<BR> creating before clients are added to network, 147
<BR> in file shares, 412
<BR>symlinks option (smb.conf file), 242
<BR>sync always option (smb.conf file), 353, 441
<BR>synchronization, password (see passwords, synchronization)
<BR>synchronization problems with WINS servers in Samba, 33, 71
<BR>syslog, 211
<BR> error logging, installing Samba to support, 498
<BR>syslog only option (smb.conf file), 215, 441
<BR>syslog option (smb.conf file), 214, 441
<BR>syslog.conf file, 212
<BR>system group file, 283
<BR>system policies, 152-156
<BR> Windows Me, 155
<BR>System Policy Editor, 152-156
<BR>System V Unix
<BR> automatically starting Samba daemons, 61
<BR> printers, 331
<P><A NAME="T"><B>T</B><A HREF="inx.html">[ Top ]</A>
<BR>%T variable, 192
<BR>TCP, troubleshooting, 367
<BR>tcpdump program, 360
<BR> download, 22
<BR> example, 22
<BR>TCP/IP
<BR> adding to Windows 95/98/Me network, 76
<BR> configuring for Windows 2000, 100
<BR> configuring for Windows 95/98/Me, 78
<BR> configuring for Windows NT, 89
<BR> configuring for Windows XP, 110
<BR> Windows NT, 88
<BR>telnet, checking smbd with, 369
<BR>template homedir option (smb.conf file), 314, 319, 441
<BR>template shell option (smb.conf file), 314, 319, 442
<BR>Temporary Internet Files folder, 143
<BR>test utilities, troubleshooting with, 359-362
<BR>testing Samba (see testparm program; troubleshooting Samba)
<BR>testparm program, 41, 59, 125, 489
<BR> testing daemons with, 370
<BR>testprns program, 41, 489
<BR>Thompson, Robert Bruce, 87
<BR>time offset option (smb.conf file), 341, 442
<BR>time server option (smb.conf file), 341, 442
<BR>time service, 340
<BR> configuring in Samba for network use, 124
<BR>time synchronization, 339-342
<BR>time to live (TTL), 424, 425
<BR>timestamp logs option (smb.conf file), 214, 442
<BR>timestamps
<BR> changing in logs, 407
<BR> importance of, 142
<BR>time-synchronization options, 341-342
<BR>total print jobs option (smb.conf file), 442
<BR>trace command, 359
<BR>translating between IP addresses or DNS names and NetBIOS names, 182
<BR>tree identifier (TID), defined, 22
<BR>Tridgell, Andrew, 2, 360
<BR>troubleshooting Samba, 355-393
<BR> browsing, 377-383
<BR> fault tree, 362-391
<BR> hostnames, 384
<BR> long and short, 386
<BR> localhost issues, 388
<BR> low-level IP, 362-367
<BR> name services, 383-388
<BR> NetBIOS names, 390
<BR> network addresses, 388-390
<BR> server daemons, 368-371
<BR> checking smbd with telnet, 369
<BR> looking for daemon processes with ps, 368
<BR> looking for daemons bound to ports, 369
<BR> testing daemons with testparm, 370
<BR> tracking daemon startup, 368
<BR> SMB connections, 371-377
<BR> TCP, 367
<BR> testing
<BR> browsing the server from the client, 382
<BR> browsing with smbclient, 377
<BR> client browsing with net view, 381
<BR> clients with nmblookup, 380
<BR> connections with net use, 374
<BR> connections with ping, 364
<BR> connections with smbclient, 373
<BR> connections with Windows Explorer, 376
<BR> locally with smbclient, 372
<BR> name services with ping, 363
<BR> network software with ping, 363
<BR> network with nmblookup, 381
<BR> networking hardware with ping, 364
<BR> servers with nmblookup, 379
<BR> tools, 355
<BR> log files, 356-359
<BR> ping, 363-367
<BR> test utilities, 359-362
<BR> unusual delays, 387
<BR>truss command, 359
<BR>trust relationships, 33
<BR>trusted domains, 403
<BR>tusc command, 359
<BR>tutorials, Samba, 45
<P><A NAME="U"><B>U</B><A HREF="inx.html">[ Top ]</A>
<BR>%U variable, 192, 283
<BR>%u variable, 140, 144, 192, 283
<BR>umasks, 247
<BR>UNC (Universal Naming Convention) defined, 6
<BR>Unicode, 456
<BR>uniform resource locators (see URLs)
<BR>Unix
<BR> ACLs, 259
<BR> CIFS extensions, 37
<BR> configuring clients to access shared resources, 161-186
<BR> file permissions, 245-253
<BR> versus ACLs, 31
<BR> permission bits summary, 247
<BR> viewing processes, 8
<BR>unix extensions option (smb.conf file), 442
<BR>unix password sync option (smb.conf file), 300, 304, 442
<BR>unix2dos program, 139, 170
<BR>update encrypted option (smb.conf file), 306, 443
<BR>upgrading Samba, 50, 51
<BR>URLs, defined, 6
<BR>use client driver option (smb.conf file), 443
<BR>use mmap option (smb.conf file), 443
<BR>use rhosts option (smb.conf file), 307, 443
<BR>use sendfile option (smb.conf file), 443
<BR>user accounting, 498
<BR>USER environment variable, 167
<BR>user ID (UID), 31
<BR>user option (smb.conf file), 443
<BR>USER.DAT file, 141
<BR>user-level security, 290, 294
<BR> for Windows 95/98/Me, 129
<BR> versus share-level security, 162
<BR>username level option (smb.conf file), 290, 444
<BR>username map option (smb.conf file), 289, 444
<BR>username option (smb.conf file), 293, 443
<BR>users
<BR> account files in Windows, 29
<BR> adding new, 402
<BR> adding to
<BR> Windows 2000, 104
<BR> Windows 95/98/Me, 83
<BR> Windows NT, 95
<BR> Windows XP, 115
<BR> debugging particular, 407
<BR> deleting account automatically, 409
<BR> group membership, overriding, 413
<BR> multiple, adding in Unix, 284-285
<BR> single, adding in Unix, 282-284
<BR> specifying read-only access, 433
<BR>users option (smb.conf file), 444
<BR>/usr/local/etc/nsmb.conf file, 181
<BR>utmp directory option (smb.conf file), 444
<BR>utmp file, 498
<BR>utmp option (smb.conf file), 444
<P><A NAME="V"><B>V</B><A HREF="inx.html">[ Top ]</A>
<BR>%v variable, 192
<BR>valid chars option (smb.conf file), 346, 444
<BR>valid users option (smb.conf file), 282, 287, 444
<BR>variables used at runtime in smb.conf file (see smb.conf file, variables)
<BR>veto files option (smb.conf file), 241, 244, 445
<BR>veto oplock files option (smb.conf file), 269, 270, 273, 445
<BR>vetoing files, 240-242
<BR>vfs object option (smb.conf file), 445
<BR>vfs options option (smb.conf file), 445
<BR>vi text editor, 139
<BR>vim text editor, 139
<BR>virtual servers, 208
<BR> configuration options, 209
<BR>volume option (smb.conf file), 203, 445
<BR>VPN (virtual private network), 498
<P><A NAME="W"><B>W</B><A HREF="inx.html">[ Top ]</A>
<BR>wbinfo program, 41, 489
<BR>wide links option (smb.conf file), 242, 244, 445
<BR>winbind, 37
<BR> authentication with, 307-319
<BR> configuration options, 317-319
<BR> configuring in smb.conf file, 309
<BR> installing, 308
<BR> installing Samba to support, 499
<BR> RID mapping file, 310
<BR> verifying it's working properly, 310-313
<BR>winbind cache time option (smb.conf file), 319, 445
<BR>winbind enum groups option (smb.conf file), 446
<BR>winbind enum users option (smb.conf file), 445
<BR>winbind gid option (smb.conf file), 318, 446
<BR>winbind separator option (smb.conf file), 317, 446
<BR>winbind uid option (smb.conf file), 318, 446
<BR>winbindd daemon, 39, 41, 454
<BR>Windows
<BR> components, 69
<BR> configuring clients to access shared resources, 68-119
<BR> domain with a local master and local backup browser (diagram), 33
<BR> .ini files, 187
<BR> networking concepts, 68-76
<BR> operating systems and password format defaults, 296
<BR> printers, setting up, 8
<BR> registry settings and passwords, 74
<BR> user account files, 29
<BR>Windows 2000
<BR> ACLs, 253-262
<BR> adding users, 104
<BR> bindings, 100
<BR> client connecting to Samba server, 107
<BR> computer names, 103
<BR> configuring for roaming profiles, 148
<BR> configuring TCP/IP, 100
<BR> DNS configuration, 101
<BR> domain logons, 133-135
<BR> identify node type, ipconfig /all command, 13
<BR> IP addresses, 100
<BR> LMHOSTS file, 102
<BR> networking components, 99
<BR> registry file, 141
<BR> security model (see ACLs)
<BR> servers
<BR> operating in native mode, 34
<BR> PDC emulation mode, 34
<BR> setting path to directory of roaming profiles, 420
<BR> setting up, 98-108
<BR> sharing files, 163
<BR> setting permissions, 165
<BR> WINS server, 101
<BR> workgroups, 103
<BR>Windows 95/98/Me
<BR> accessing Samba server, 84
<BR> adding TCP/IP, 76
<BR> authentication, 28
<BR> bindings, 80
<BR> configuring for roaming profiles, 147
<BR> configuring TCP/IP, 78
<BR> DNS configuration, 79
<BR> domain logons, 128-131
<BR> identify node type, 13
<BR> IP addresses, 78
<BR> LMHOSTS file, 80
<BR> NetBIOS, 80
<BR> registry file, 141
<BR> security model, 253
<BR> setting computer name, 81
<BR> setting up, 76-87
<BR> setting workgroup, 81
<BR> sharing files, 162
<BR> system policies, 155
<BR> user-level security for, 129
<BR> username and password, 83
<BR> WINS configuration, 78
<BR> (see also Windows)
<BR>Windows Explorer, testing connections with, 376
<BR>Windows Internet Name Service (see WINS)
<BR>Windows Internet Naming Service (WINS) Architecture and Capacity Planning, 218
<BR>Windows Messenger Service, 346-348
<BR>Windows NT
<BR> ACLs, 253-262
<BR> adding a user, 95
<BR> basic configuration, 87
<BR> bindings, 93
<BR> computer names, 93
<BR> configuring for roaming profiles, 148
<BR> configuring TCP/IP, 89
<BR> connecting to a Samba server, 96
<BR> DNS configuration, 92
<BR> domains, 120-160
<BR> logons, 131-133
<BR> overview, 29-34
<BR> identify node type, ipconfig /all command, 13
<BR> installing Workstation service, 89
<BR> IP addresses, 90
<BR> LMHOSTS file, 92
<BR> registry file, 141
<BR> security model, 30
<BR> security model (see ACLs)
<BR> setting path to directory of roaming profiles, 420
<BR> setting up, 87-98
<BR> sharing files, 163
<BR> setting permissions, 165
<BR> TCP/IP installing, 88
<BR> WINS server, 90
<BR> workgroups, 93
<BR>Windows NT domain options, 158
<BR>Windows Time Service, 340
<BR>Windows Workgroups (see workgroups)
<BR>Windows XP
<BR> ACLs, 253-262
<BR> adding users, 115
<BR> bindings, 110
<BR> computer names, 113
<BR> configuring for roaming profiles, 148
<BR> configuring TCP/IP, 110
<BR> connecting to Samba server, 116
<BR> DNS configuration, 111
<BR> domain logons, 135-137
<BR> Home version, problems in a domain environment, 135
<BR> identify node type, ipconfig /all command, 13
<BR> IP addresses, 111
<BR> LMHOSTS file, 112
<BR> networking components, 109
<BR> registry file, 141
<BR> security model (see ACLs)
<BR> setting path to directory of roaming profiles, 420
<BR> setting up, 109-119
<BR> sharing files, 163
<BR> setting permissions, 165
<BR> WINS server, 112
<BR> workgroups, 113
<BR>winipcfg command (Windows 95/98/Me), 13
<BR>WinPopup tool, 346
<BR>.win_profile directory, 144
<BR> example, 145
<BR>WINS, 32
<BR> client and a server interaction, 218
<BR> configuration, Windows 95/98/Me, 78
<BR> proxy, configuring, 221
<BR> replication, 38
<BR> support, smb.conf file, 71
<BR>wins hook option (smb.conf file), 223, 446
<BR>wins proxy option (smb.conf file), 221, 222, 446
<BR>wins server option (smb.conf file), 220, 222, 446
<BR>WINS servers
<BR> configuring a DNS proxy, 220
<BR> configuring Samba to use another, 220
<BR> configuration file example, 396
<BR> enabling Samba as, configuration file example, 395
<BR> multiple, 32
<BR> primary (see primary WINS server)
<BR> setting Samba as, 220
<BR> synchronization problems in Samba, 71
<BR> Windows 2000, 101
<BR> Windows NT, 90
<BR> Windows XP, 112
<BR>wins support option (smb.conf file), 222, 447
<BR>wins support parameter (smb.conf file), 220
<BR>with feature option, configuring Samba, 47
<BR>--with-acl-support (configure script option), 495
<BR>--with-afs (configure script option), 495
<BR>--with-automount (configure script option), 495
<BR>--with-codepagedir (configure script option), 495
<BR>--with-configdir (configure script option), 495
<BR>--with-dce-dfs (configure script option), 495
<BR>--with-fhs (configure script option), 495
<BR>--with-included-popt (configure script option), 495
<BR>--with-krb4 (configure script option), 495
<BR>--with-krb5 (configure script option), 495
<BR>--with-ldapsam (configure script option), 496
<BR>--with-libiconv (configure script option), 496
<BR>--with-libsmbclient (configure script option), 496
<BR>--with-lockdir (configure script option), 496
<BR>--with-logfilebase (configure script option), 496
<BR>--with-manpages-langs (configure script option), 496
<BR>--with-msdfs (configure script option), 47, 496
<BR>--with-nisplus-home (configure script option), 496
<BR>--with-nisplussam (configure script option), 496
<BR>without feature option, configuring Samba, 47
<BR>--with-pam (configure script option), 497
<BR>--with-pam_smbpass (configure script option), 497
<BR>--with-piddir (configure script option), 497
<BR>--with-privatedir (configure script option), 497
<BR>--with-profiling-data (configure script option), 497
<BR>--with-quotas (configure script option), 497
<BR>--with-readline (configure script option), 497
<BR>--with-sendfile-support (configure script option), 497
<BR>--with-smbmount (configure script option), 47, 498
<BR>--with-smbwrapper (configure script option), 47, 498
<BR>--with-spinlocks (configure script option), 498
<BR>--with-ssl (configure script option), 498
<BR>--with-sslinc (configure script option), 498
<BR>--with-ssllib (configure script option), 498
<BR>--with-swatdir (configure script option), 498
<BR>--with-syslog (configure script option), 498
<BR>--with-tdbsam (configure script option), 498
<BR>--with-utmp (configure script option), 498
<BR>--with-winbind (configure script option), 499
<BR>workgroup option (smb.conf file), 447
<BR>workgroup parameter (smb.conf file), 200
<BR>workgroups, 26-29
<BR> adding first Samba server to, 396
<BR> defined, 15
<BR> problems related to, 29
<BR> spanning multiple subnets, 34
<BR> Windows 2000, 103
<BR> Windows 95/98/Me, 81
<BR> Windows NT, 93
<BR> Windows XP, 113
<BR>Workstation service, installing on Windows NT, 89
<BR>writable option (smb.conf file), 203, 447
<BR>write cache size option (smb.conf file), 447
<BR>write list option (smb.conf file), 286, 288, 447
<BR>write ok option (smb.conf file), 203, 447
<BR>write raw option (smb.conf file), 448
<BR>writeable option (smb.conf file), 203, 447
<P><A NAME="X"><B>X</B><A HREF="inx.html">[ Top ]</A>
<BR>XFS filesystem, 37
<BR>xinetd daemon, 53
<hr/><h4 class="head4"><a href="toc.html">TOC</a></h4>
</body></html>
|