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 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943
|
\relax
\ifx\hyper@anchor\@undefined
\global \let \oldcontentsline\contentsline
\gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global \let \oldnewlabel\newlabel
\gdef \newlabel#1#2{\newlabelxx{#1}#2}
\gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\let \contentsline\oldcontentsline
\let \newlabel\oldnewlabel}
\else
\global \let \hyper@last\relax
\fi
\newlabel{Samba-HOWTO-Collection}{{}{i}}
\select@language{english}
\@writefile{toc}{\select@language{english}}
\@writefile{lof}{\select@language{english}}
\@writefile{lot}{\select@language{english}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {About the Cover Artwork}}{v}{section*.1}}
\newlabel{id2443444}{{}{v}{About the Cover Artwork\relax }{chapter*.2}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Attribution}}{vii}{chapter*.2}}
\newlabel{id2437208}{{}{vii}{Attribution\relax }{chapter*.3}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Examples}}{xliii}{chapter*.3}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Figures}}{xlix}{chapter*.4}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Tables}}{lii}{chapter*.5}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Foreword}}{lv}{chapter*.6}}
\newlabel{id2430300}{{}{lv}{Foreword\relax }{chapter*.7}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Preface}}{lvii}{chapter*.7}}
\newlabel{TOSHpreface}{{}{lvii}{Preface\relax }{chapter*.8}{}}
\newlabel{id2470775}{{}{lvii}{Preface\relax }{chapter*.8}{}}
\global \@namedef{@fn@label@id2470775}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 8\z@ \normalfont 1}}}}}}
\newlabel{id2470771}{{}{lvii}{Preface\relax }{chapter*.8}{}}
\global \@namedef{@fn@label@id2470771}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 8\z@ \normalfont 2}}}}}}
\newlabel{id2470763}{{}{lvii}{Preface\relax }{chapter*.8}{}}
\global \@namedef{@fn@label@id2470763}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 8\z@ \normalfont 3}}}}}}
\newlabel{id2503819}{{}{lvii}{Conventions Used\relax }{section*.9}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Introduction}}{lix}{section*.9}}
\newlabel{IntroSMB}{{}{lix}{Introduction\relax }{chapter*.10}{}}
\newlabel{id2481352}{{}{lix}{What Is Samba?\relax }{section*.11}{}}
\newlabel{id2478460}{{}{lx}{Why This Book?\relax }{section*.12}{}}
\newlabel{id2491593}{{}{lxi}{Why This Book?\relax }{section*.12}{}}
\global \@namedef{@fn@label@id2491593}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2471600}{{}{lxi}{Book Structure and Layout\relax }{section*.13}{}}
\@writefile{toc}{\contentsline {part}{Part I\hspace {1em}General Installation}{lxi}{part.1}}
\newlabel{introduction}{{I}{1}{General Installation\relax }{part.1}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Preparing Samba for Configuration}}{1}{section*.14}}
\newlabel{id2408663}{{I}{1}{Preparing Samba for Configuration\relax }{chapter*.15}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {1}\uppercase {How to Install and Test SAMBA}}{3}{chapter.1}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~1}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {1}How to Install and Test SAMBA}{}{3}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {1}How to Install and Test SAMBA}{}{3}}}
\newlabel{install}{{1}{3}{How to Install and Test SAMBA\relax }{chapter.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Obtaining and Installing Samba}{3}{section.1.1}}
\newlabel{id2488889}{{1.1}{3}{Obtaining and Installing Samba\relax }{section.1.1}{}}
\newlabel{id2488907}{{1.1}{3}{Obtaining and Installing Samba\relax }{section.1.1}{}}
\global \@namedef{@fn@label@id2488907}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Configuring Samba (smb.conf)}{3}{section.1.2}}
\newlabel{id2488935}{{1.2}{3}{Configuring Samba (smb.conf)\relax }{section.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}Configuration File Syntax}{3}{subsection.1.2.1}}
\newlabel{id2484494}{{1.2.1}{3}{Configuration File Syntax\relax }{subsection.1.2.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.1}{\ignorespaces A minimal smb.conf}}{4}{example.1.2.1}}
\newlabel{smbconfminimal}{{1.2.1}{4}{Configuration File Syntax\relax }{example.1.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.2}TDB Database File Information}{5}{subsection.1.2.2}}
\newlabel{tdbdocs}{{1.2.2}{5}{TDB Database File Information\relax }{subsection.1.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.3}Starting Samba}{5}{subsection.1.2.3}}
\newlabel{id2467474}{{1.2.3}{5}{Starting Samba\relax }{subsection.1.2.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {1.1}{\ignorespaces Persistent TDB File Descriptions}}{6}{table.1.1}}
\newlabel{tdbpermfiledesc}{{1.1}{6}{TDB Database File Information\relax }{table.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.4}Example Configuration}{7}{subsection.1.2.4}}
\newlabel{id2505446}{{1.2.4}{7}{Example Configuration\relax }{subsection.1.2.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.2}{\ignorespaces Another simple smb.conf File}}{7}{example.1.2.2}}
\newlabel{simple-example}{{1.2.2}{7}{Example Configuration\relax }{example.1.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.4.1}Test Your Config File with testparm}{8}{subsubsection.1.2.4.1}}
\newlabel{id2505676}{{1.2.4.1}{8}{Test Your Config File with testparm\relax }{subsubsection.1.2.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.5}SWAT}{9}{subsection.1.2.5}}
\newlabel{id2505861}{{1.2.5}{9}{SWAT\relax }{subsection.1.2.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}List Shares Available on the Server}{9}{section.1.3}}
\newlabel{id2505922}{{1.3}{9}{List Shares Available on the Server\relax }{section.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Connect with a UNIX Client}{10}{section.1.4}}
\newlabel{id2505980}{{1.4}{10}{Connect with a UNIX Client\relax }{section.1.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Connect from a Remote SMB Client}{10}{section.1.5}}
\newlabel{id2506081}{{1.5}{10}{Connect from a Remote SMB Client\relax }{section.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.1}What If Things Don't Work?}{11}{subsection.1.5.1}}
\newlabel{id2506170}{{1.5.1}{11}{What If Things Don't Work?\relax }{subsection.1.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.2}Still Stuck?}{11}{subsection.1.5.2}}
\newlabel{id2506214}{{1.5.2}{11}{Still Stuck?\relax }{subsection.1.5.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.6}Common Errors}{12}{section.1.6}}
\newlabel{id2506248}{{1.6}{12}{Common Errors\relax }{section.1.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6.1}Large Number of smbd Processes}{12}{subsection.1.6.1}}
\newlabel{id2506260}{{1.6.1}{12}{Large Number of smbd Processes\relax }{subsection.1.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6.2}Error Message: open\_oplock\_ipc}{12}{subsection.1.6.2}}
\newlabel{id2506357}{{1.6.2}{12}{Error Message: open\_oplock\_ipc\relax }{subsection.1.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6.3}{``}The network name cannot be found{''}}{12}{subsection.1.6.3}}
\newlabel{id2506392}{{1.6.3}{12}{{``}The network name cannot be found{''}\relax }{subsection.1.6.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {1.2}{\ignorespaces Temporary TDB File Descriptions}}{14}{table.1.2}}
\newlabel{tdbtempfiledesc}{{1.2}{14}{TDB Database File Information\relax }{table.1.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {2}\uppercase {Fast Start: Cure for Impatience}}{15}{chapter.2}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~2}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {2}Fast Start: Cure for Impatience}{}{15}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {2}Fast Start: Cure for Impatience}{}{15}}}
\newlabel{FastStart}{{2}{15}{Fast Start: Cure for Impatience\relax }{chapter.2}{}}
\newlabel{id2467568}{{2}{15}{Fast Start: Cure for Impatience\relax }{chapter.2}{}}
\global \@namedef{@fn@label@id2467568}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Features and Benefits}{16}{section.2.1}}
\newlabel{id2467576}{{2.1}{16}{Features and Benefits\relax }{section.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Description of Example Sites}{16}{section.2.2}}
\newlabel{id2467601}{{2.2}{16}{Description of Example Sites\relax }{section.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Worked Examples}{17}{section.2.3}}
\newlabel{id2467672}{{2.3}{17}{Worked Examples\relax }{section.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}Standalone Server}{17}{subsection.2.3.1}}
\newlabel{id2494081}{{2.3.1}{17}{Standalone Server\relax }{subsection.2.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1.1}Anonymous Read-Only Document Server}{17}{subsubsection.2.3.1.1}}
\newlabel{anon-ro}{{2.3.1.1}{17}{Anonymous Read-Only Document Server\relax }{subsubsection.2.3.1.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.1}{\ignorespaces Anonymous Read-Only Server Configuration}}{18}{example.2.3.1}}
\newlabel{anon-example}{{2.3.1}{18}{Anonymous Read-Only Document Server\relax }{example.2.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1.2}Anonymous Read-Write Document Server}{20}{subsubsection.2.3.1.2}}
\newlabel{id2496150}{{2.3.1.2}{20}{Anonymous Read-Write Document Server\relax }{subsubsection.2.3.1.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.2}{\ignorespaces Modified Anonymous Read-Write smb.conf}}{20}{example.2.3.2}}
\newlabel{anon-rw}{{2.3.2}{20}{Anonymous Read-Write Document Server\relax }{example.2.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1.3}Anonymous Print Server}{20}{subsubsection.2.3.1.3}}
\newlabel{id2505001}{{2.3.1.3}{20}{Anonymous Print Server\relax }{subsubsection.2.3.1.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.3}{\ignorespaces Anonymous Print Server smb.conf}}{21}{example.2.3.3}}
\newlabel{anon-print}{{2.3.3}{21}{Anonymous Print Server\relax }{example.2.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1.4}Secure Read-Write File and Print Server}{23}{subsubsection.2.3.1.4}}
\newlabel{id2406125}{{2.3.1.4}{23}{Secure Read-Write File and Print Server\relax }{subsubsection.2.3.1.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.4}{\ignorespaces Secure Office Server smb.conf}}{24}{example.2.3.4}}
\newlabel{OfficeServer}{{2.3.4}{24}{Secure Read-Write File and Print Server\relax }{example.2.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Domain Member Server}{27}{subsection.2.3.2}}
\newlabel{id2536160}{{2.3.2}{27}{Domain Member Server\relax }{subsection.2.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.2.1}Example Configuration}{28}{subsubsection.2.3.2.1}}
\newlabel{id2536233}{{2.3.2.1}{28}{Example Configuration\relax }{subsubsection.2.3.2.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.5}{\ignorespaces Member Server smb.conf (Globals)}}{28}{example.2.3.5}}
\newlabel{fast-member-server}{{2.3.5}{28}{Example Configuration\relax }{example.2.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.6}{\ignorespaces Member Server smb.conf (Shares and Services)}}{29}{example.2.3.6}}
\newlabel{fast-memberserver-shares}{{2.3.6}{29}{Example Configuration\relax }{example.2.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Domain Controller}{31}{subsection.2.3.3}}
\newlabel{id2536893}{{2.3.3}{31}{Domain Controller\relax }{subsection.2.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.3.1}Example: Engineering Office}{32}{subsubsection.2.3.3.1}}
\newlabel{id2536977}{{2.3.3.1}{32}{Example: Engineering Office\relax }{subsubsection.2.3.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.7}{\ignorespaces Engineering Office smb.conf (globals)}}{33}{example.2.3.7}}
\newlabel{fast-engoffice-global}{{2.3.7}{33}{Example: Engineering Office\relax }{example.2.3.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.3.2}A Big Organization}{34}{subsubsection.2.3.3.2}}
\newlabel{id2537553}{{2.3.3.2}{34}{A Big Organization\relax }{subsubsection.2.3.3.2}{}}
\newlabel{id2537569}{{2.3.3.2}{34}{The Primary Domain Controller\relax }{section*.16}{}}
\newlabel{id2537587}{{2.3.3.2}{34}{The Primary Domain Controller\relax }{section*.16}{}}
\global \@namedef{@fn@label@id2537587}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2507804}{{2.3.3.2}{37}{Backup Domain Controller\relax }{section*.17}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.8}{\ignorespaces Engineering Office smb.conf (shares and services)}}{38}{example.2.3.8}}
\newlabel{fast-engoffice-shares}{{2.3.8}{38}{Example: Engineering Office\relax }{example.2.3.8}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.9}{\ignorespaces LDAP backend smb.conf for PDC}}{39}{example.2.3.9}}
\newlabel{fast-ldap}{{2.3.9}{39}{The Primary Domain Controller\relax }{example.2.3.9}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.10}{\ignorespaces Remote LDAP BDC smb.conf}}{40}{example.2.3.10}}
\newlabel{fast-bdc}{{2.3.10}{40}{Backup Domain Controller\relax }{example.2.3.10}{}}
\@writefile{toc}{\contentsline {part}{Part II\hspace {1em}Server Configuration Basics}{39}{part.2}}
\newlabel{type}{{II}{41}{Server Configuration Basics\relax }{part.2}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {First Steps in Server Configuration}}{41}{section*.18}}
\newlabel{id2408703}{{II}{41}{First Steps in Server Configuration\relax }{chapter*.19}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {3}\uppercase {Server Types and Security Modes}}{43}{chapter.3}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~3}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {3}Server Types and Security Modes}{}{43}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {3}Server Types and Security Modes}{}{43}}}
\newlabel{ServerType}{{3}{43}{Server Types and Security Modes\relax }{chapter.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Features and Benefits}{43}{section.3.1}}
\newlabel{id2486607}{{3.1}{43}{Features and Benefits\relax }{section.3.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Server Types}{44}{section.3.2}}
\newlabel{id2486443}{{3.2}{44}{Server Types\relax }{section.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Samba Security Modes}{45}{section.3.3}}
\newlabel{id2475801}{{3.3}{45}{Samba Security Modes\relax }{section.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}User Level Security}{46}{subsection.3.3.1}}
\newlabel{id2494508}{{3.3.1}{46}{User Level Security\relax }{subsection.3.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.1.1}Example Configuration}{47}{subsubsection.3.3.1.1}}
\newlabel{id2474094}{{3.3.1.1}{47}{Example Configuration\relax }{subsubsection.3.3.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Share-Level Security}{47}{subsection.3.3.2}}
\newlabel{id2474128}{{3.3.2}{47}{Share-Level Security\relax }{subsection.3.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.2.1}Example Configuration}{48}{subsubsection.3.3.2.1}}
\newlabel{id2457603}{{3.3.2.1}{48}{Example Configuration\relax }{subsubsection.3.3.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Domain Security Mode (User-Level Security)}{48}{subsection.3.3.3}}
\newlabel{id2457632}{{3.3.3}{48}{Domain Security Mode (User-Level Security)\relax }{subsection.3.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.3.1}Example Configuration}{49}{subsubsection.3.3.3.1}}
\newlabel{id2479897}{{3.3.3.1}{49}{Example Configuration\relax }{subsubsection.3.3.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.4}ADS Security Mode (User-Level Security)}{51}{subsection.3.3.4}}
\newlabel{id2508066}{{3.3.4}{51}{ADS Security Mode (User-Level Security)\relax }{subsection.3.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.4.1}Example Configuration}{51}{subsubsection.3.3.4.1}}
\newlabel{id2508144}{{3.3.4.1}{51}{Example Configuration\relax }{subsubsection.3.3.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.5}Server Security (User Level Security)}{51}{subsection.3.3.5}}
\newlabel{id2508201}{{3.3.5}{51}{Server Security (User Level Security)\relax }{subsection.3.3.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.5.1}Example Configuration}{53}{subsubsection.3.3.5.1}}
\newlabel{id2508374}{{3.3.5.1}{53}{Example Configuration\relax }{subsubsection.3.3.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Password Checking}{54}{section.3.4}}
\newlabel{id2508461}{{3.4}{54}{Password Checking\relax }{section.3.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.5}Common Errors}{55}{section.3.5}}
\newlabel{id2508646}{{3.5}{55}{Common Errors\relax }{section.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.1}What Makes Samba a Server?}{56}{subsection.3.5.1}}
\newlabel{id2508671}{{3.5.1}{56}{What Makes Samba a Server?\relax }{subsection.3.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.2}What Makes Samba a Domain Controller?}{56}{subsection.3.5.2}}
\newlabel{id2508703}{{3.5.2}{56}{What Makes Samba a Domain Controller?\relax }{subsection.3.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.3}What Makes Samba a Domain Member?}{56}{subsection.3.5.3}}
\newlabel{id2508741}{{3.5.3}{56}{What Makes Samba a Domain Member?\relax }{subsection.3.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.4}Constantly Losing Connections to Password Server}{56}{subsection.3.5.4}}
\newlabel{id2508768}{{3.5.4}{56}{Constantly Losing Connections to Password Server\relax }{subsection.3.5.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.5}Stand-alone Server is converted to Domain Controller --- Now User accounts don't work}{57}{subsection.3.5.5}}
\newlabel{id2508811}{{3.5.5}{57}{Stand-alone Server is converted to Domain Controller --- Now User accounts don't work\relax }{subsection.3.5.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {4}\uppercase {Domain Control}}{59}{chapter.4}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~4}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {4}Domain Control}{}{59}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {4}Domain Control}{}{59}}}
\newlabel{samba-pdc}{{4}{59}{Domain Control\relax }{chapter.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces An Example Domain.}}{60}{figure.4.1}}
\newlabel{domain-example}{{4.1}{60}{Domain Control\relax }{figure.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Features and Benefits}{60}{section.4.1}}
\newlabel{id2488095}{{4.1}{60}{Features and Benefits\relax }{section.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Single Sign-On and Domain Security}{64}{section.4.2}}
\newlabel{id2476707}{{4.2}{64}{Single Sign-On and Domain Security\relax }{section.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Basics of Domain Control}{67}{section.4.3}}
\newlabel{id2512504}{{4.3}{67}{Basics of Domain Control\relax }{section.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.1}Domain Controller Types}{67}{subsection.4.3.1}}
\newlabel{id2512524}{{4.3.1}{67}{Domain Controller Types\relax }{subsection.4.3.1}{}}
\newlabel{id2512712}{{4.3.1}{68}{Domain Controller Types\relax }{subsection.4.3.1}{}}
\global \@namedef{@fn@label@id2512712}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2512896}{{4.3.1}{69}{Domain Controller Types\relax }{subsection.4.3.1}{}}
\global \@namedef{@fn@label@id2512896}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont {\itshape a}}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.2}Preparing for Domain Control}{70}{subsection.4.3.2}}
\newlabel{id2513043}{{4.3.2}{70}{Preparing for Domain Control\relax }{subsection.4.3.2}{}}
\newlabel{id2513223}{{4.3.2}{71}{Preparing for Domain Control\relax }{subsection.4.3.2}{}}
\global \@namedef{@fn@label@id2513223}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2513516}{{4.3.2}{73}{Preparing for Domain Control\relax }{subsection.4.3.2}{}}
\global \@namedef{@fn@label@id2513516}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Domain Control: Example Configuration}{73}{section.4.4}}
\newlabel{id2513538}{{4.4}{73}{Domain Control: Example Configuration\relax }{section.4.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.4.1}{\ignorespaces smb.conf for being a PDC}}{74}{example.4.4.1}}
\newlabel{pdc-example}{{4.4.1}{74}{Domain Control: Example Configuration\relax }{example.4.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.5}Samba ADS Domain Control}{75}{section.4.5}}
\newlabel{id2514151}{{4.5}{75}{Samba ADS Domain Control\relax }{section.4.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.6}Domain and Network Logon Configuration}{76}{section.4.6}}
\newlabel{id2514205}{{4.6}{76}{Domain and Network Logon Configuration\relax }{section.4.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6.1}Domain Network Logon Service}{76}{subsection.4.6.1}}
\newlabel{id2514226}{{4.6.1}{76}{Domain Network Logon Service\relax }{subsection.4.6.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.6.1.1}Example Configuration}{76}{subsubsection.4.6.1.1}}
\newlabel{id2514261}{{4.6.1.1}{76}{Example Configuration\relax }{subsubsection.4.6.1.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.6.1}{\ignorespaces smb.conf for being a PDC}}{76}{example.4.6.1}}
\newlabel{PDC-config}{{4.6.1}{76}{Example Configuration\relax }{example.4.6.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.6.1.2}The Special Case of MS Windows XP Home Edition}{76}{subsubsection.4.6.1.2}}
\newlabel{id2514327}{{4.6.1.2}{76}{The Special Case of MS Windows XP Home Edition\relax }{subsubsection.4.6.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.6.1.3}The Special Case of Windows 9x/Me}{77}{subsubsection.4.6.1.3}}
\newlabel{id2514367}{{4.6.1.3}{77}{The Special Case of Windows 9x/Me\relax }{subsubsection.4.6.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6.2}Security Mode and Master Browsers}{79}{subsection.4.6.2}}
\newlabel{id2514767}{{4.6.2}{79}{Security Mode and Master Browsers\relax }{subsection.4.6.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.7}Common Errors}{81}{section.4.7}}
\newlabel{id2514993}{{4.7}{81}{Common Errors\relax }{section.4.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.1}{``}\${''} Cannot Be Included in Machine Name}{81}{subsection.4.7.1}}
\newlabel{id2514999}{{4.7.1}{81}{{``}\${''} Cannot Be Included in Machine Name\relax }{subsection.4.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.2}Joining Domain Fails Because of Existing Machine Account}{81}{subsection.4.7.2}}
\newlabel{id2515105}{{4.7.2}{81}{Joining Domain Fails Because of Existing Machine Account\relax }{subsection.4.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.3}The System Cannot Log You On (C000019B)}{82}{subsection.4.7.3}}
\newlabel{id2515171}{{4.7.3}{82}{The System Cannot Log You On (C000019B)\relax }{subsection.4.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.4}The Machine Trust Account Is Not Accessible}{83}{subsection.4.7.4}}
\newlabel{id2515250}{{4.7.4}{83}{The Machine Trust Account Is Not Accessible\relax }{subsection.4.7.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.5}Account Disabled}{83}{subsection.4.7.5}}
\newlabel{id2515362}{{4.7.5}{83}{Account Disabled\relax }{subsection.4.7.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.6}Domain Controller Unavailable}{83}{subsection.4.7.6}}
\newlabel{id2515391}{{4.7.6}{83}{Domain Controller Unavailable\relax }{subsection.4.7.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.7}Cannot Log onto Domain Member Workstation After Joining Domain}{84}{subsection.4.7.7}}
\newlabel{id2515411}{{4.7.7}{84}{Cannot Log onto Domain Member Workstation After Joining Domain\relax }{subsection.4.7.7}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {5}\uppercase {Backup Domain Control}}{85}{chapter.5}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~5}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {5}Backup Domain Control}{}{85}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {5}Backup Domain Control}{}{85}}}
\newlabel{samba-bdc}{{5}{85}{Backup Domain Control\relax }{chapter.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Features and Benefits}{85}{section.5.1}}
\newlabel{id2511982}{{5.1}{85}{Features and Benefits\relax }{section.5.1}{}}
\newlabel{id2511997}{{5.1}{85}{Features and Benefits\relax }{section.5.1}{}}
\global \@namedef{@fn@label@id2511997}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Essential Background Information}{86}{section.5.2}}
\newlabel{id2472240}{{5.2}{86}{Essential Background Information\relax }{section.5.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.1}{\ignorespaces Domain Backend Account Distribution Options}}{87}{table.5.1}}
\newlabel{pdc-bdc-table}{{5.1}{87}{Features and Benefits\relax }{table.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.1}MS Windows NT4-style Domain Control}{87}{subsection.5.2.1}}
\newlabel{id2512133}{{5.2.1}{87}{MS Windows NT4-style Domain Control\relax }{subsection.5.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.1.1}Example PDC Configuration}{89}{subsubsection.5.2.1.1}}
\newlabel{id2476447}{{5.2.1.1}{89}{Example PDC Configuration\relax }{subsubsection.5.2.1.1}{}}
\newlabel{id2484930}{{5.2.1.1}{89}{Example PDC Configuration\relax }{example.5.2.1}{}}
\global \@namedef{@fn@label@id2484930}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {5.2.1}{\ignorespaces Minimal smb.conf for a PDC in Use with a BDC --- LDAP Server on PDC}}{90}{example.5.2.1}}
\newlabel{minimalPDC}{{5.2.1}{90}{Example PDC Configuration\relax }{example.5.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.2}LDAP Configuration Notes}{90}{subsection.5.2.2}}
\newlabel{id2484945}{{5.2.2}{90}{LDAP Configuration Notes\relax }{subsection.5.2.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.2.2}{\ignorespaces Multiple LDAP Servers in smb.\penalty \z@ {}conf}}{91}{example.5.2.2}}
\newlabel{mulitldapcfg}{{5.2.2}{91}{LDAP Configuration Notes\relax }{example.5.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.3}Active Directory Domain Control}{91}{subsection.5.2.3}}
\newlabel{id2515660}{{5.2.3}{91}{Active Directory Domain Control\relax }{subsection.5.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.4}What Qualifies a Domain Controller on the Network?}{92}{subsection.5.2.4}}
\newlabel{id2515721}{{5.2.4}{92}{What Qualifies a Domain Controller on the Network?\relax }{subsection.5.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.5}How Does a Workstation find its Domain Controller?}{92}{subsection.5.2.5}}
\newlabel{id2515810}{{5.2.5}{92}{How Does a Workstation find its Domain Controller?\relax }{subsection.5.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.5.1}NetBIOS Over TCP/IP Enabled}{92}{subsubsection.5.2.5.1}}
\newlabel{id2515866}{{5.2.5.1}{92}{NetBIOS Over TCP/IP Enabled\relax }{subsubsection.5.2.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.5.2}NetBIOS Over TCP/IP Disabled}{93}{subsubsection.5.2.5.2}}
\newlabel{id2515915}{{5.2.5.2}{93}{NetBIOS Over TCP/IP Disabled\relax }{subsubsection.5.2.5.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Backup Domain Controller Configuration}{93}{section.5.3}}
\newlabel{id2515974}{{5.3}{93}{Backup Domain Controller Configuration\relax }{section.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.1}Example Configuration}{94}{subsection.5.3.1}}
\newlabel{id2516473}{{5.3.1}{94}{Example Configuration\relax }{subsection.5.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.3.1}{\ignorespaces Minimal Setup for Being a BDC}}{95}{example.5.3.1}}
\newlabel{minim-bdc}{{5.3.1}{95}{Example Configuration\relax }{example.5.3.1}{}}
\newlabel{id2516600}{{5.3.1}{95}{Example Configuration\relax }{example.5.3.1}{}}
\global \@namedef{@fn@label@id2516600}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Common Errors}{96}{section.5.4}}
\newlabel{id2516841}{{5.4}{96}{Common Errors\relax }{section.5.4}{}}
\newlabel{id2516860}{{5.4}{96}{Common Errors\relax }{section.5.4}{}}
\global \@namedef{@fn@label@id2516860}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2516879}{{5.4}{96}{Common Errors\relax }{section.5.4}{}}
\global \@namedef{@fn@label@id2516879}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}Machine Accounts Keep Expiring}{96}{subsection.5.4.1}}
\newlabel{id2516886}{{5.4.1}{96}{Machine Accounts Keep Expiring\relax }{subsection.5.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}Can Samba Be a Backup Domain Controller to an NT4 PDC?}{97}{subsection.5.4.2}}
\newlabel{id2516943}{{5.4.2}{97}{Can Samba Be a Backup Domain Controller to an NT4 PDC?\relax }{subsection.5.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.3}How Do I Replicate the smbpasswd File?}{97}{subsection.5.4.3}}
\newlabel{id2517002}{{5.4.3}{97}{How Do I Replicate the smbpasswd File?\relax }{subsection.5.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.4}Can I Do This All with LDAP?}{98}{subsection.5.4.4}}
\newlabel{id2517112}{{5.4.4}{98}{Can I Do This All with LDAP?\relax }{subsection.5.4.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {6}\uppercase {Domain Membership}}{99}{chapter.6}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~6}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {6}Domain Membership}{}{99}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {6}Domain Membership}{}{99}}}
\newlabel{domain-member}{{6}{99}{Domain Membership\relax }{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Features and Benefits}{99}{section.6.1}}
\newlabel{id2488527}{{6.1}{99}{Features and Benefits\relax }{section.6.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}MS Windows Workstation/Server Machine Trust Accounts}{100}{section.6.2}}
\newlabel{machine-trust-accounts}{{6.2}{100}{MS Windows Workstation/Server Machine Trust Accounts\relax }{section.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}Manual Creation of Machine Trust Accounts}{102}{subsection.6.2.1}}
\newlabel{id2459945}{{6.2.1}{102}{Manual Creation of Machine Trust Accounts\relax }{subsection.6.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.2}Managing Domain Machine Accounts using NT4 Server Manager}{104}{subsection.6.2.2}}
\newlabel{id2520526}{{6.2.2}{104}{Managing Domain Machine Accounts using NT4 Server Manager\relax }{subsection.6.2.2}{}}
\newlabel{id2520661}{{6.2.2}{104}{Managing Domain Machine Accounts using NT4 Server Manager\relax }{subsection.6.2.2}{}}
\global \@namedef{@fn@label@id2520661}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2520668}{{6.2.2}{104}{Managing Domain Machine Accounts using NT4 Server Manager\relax }{subsection.6.2.2}{}}
\global \@namedef{@fn@label@id2520668}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.3}On-the-Fly Creation of Machine Trust Accounts}{105}{subsection.6.2.3}}
\newlabel{id2520802}{{6.2.3}{105}{On-the-Fly Creation of Machine Trust Accounts\relax }{subsection.6.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.4}Making an MS Windows Workstation or Server a Domain Member}{105}{subsection.6.2.4}}
\newlabel{id2520898}{{6.2.4}{105}{Making an MS Windows Workstation or Server a Domain Member\relax }{subsection.6.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.4.1}Windows 200x/XP Professional Client}{106}{subsubsection.6.2.4.1}}
\newlabel{id2520910}{{6.2.4.1}{106}{Windows 200x/XP Professional Client\relax }{subsubsection.6.2.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.4.2}Windows NT4 Client}{106}{subsubsection.6.2.4.2}}
\newlabel{id2521068}{{6.2.4.2}{106}{Windows NT4 Client\relax }{subsubsection.6.2.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.4.3}Samba Client}{106}{subsubsection.6.2.4.3}}
\newlabel{id2521153}{{6.2.4.3}{106}{Samba Client\relax }{subsubsection.6.2.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Domain Member Server}{107}{section.6.3}}
\newlabel{domain-member-server}{{6.3}{107}{Domain Member Server\relax }{section.6.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.1}Joining an NT4-type Domain with Samba-3}{107}{subsection.6.3.1}}
\newlabel{id2521361}{{6.3.1}{107}{Joining an NT4-type Domain with Samba-3\relax }{subsection.6.3.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.1}{\ignorespaces Assumptions}}{108}{table.6.1}}
\newlabel{assumptions}{{6.1}{108}{Joining an NT4-type Domain with Samba-3\relax }{table.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.2}Why Is This Better Than security = server?}{110}{subsection.6.3.2}}
\newlabel{id2522052}{{6.3.2}{110}{Why Is This Better Than security = server?\relax }{subsection.6.3.2}{}}
\newlabel{id2522258}{{6.3.2}{111}{Why Is This Better Than security = server?\relax }{subsection.6.3.2}{}}
\global \@namedef{@fn@label@id2522258}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont {\itshape a}}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Samba ADS Domain Membership}{111}{section.6.4}}
\newlabel{ads-member}{{6.4}{111}{Samba ADS Domain Membership\relax }{section.6.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.1}Configure smb.\penalty \z@ {}conf}{111}{subsection.6.4.1}}
\newlabel{id2522325}{{6.4.1}{111}{Configure smb.\dbz {}conf\relax }{subsection.6.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.2}Configure /\penalty \z@ {}etc/\penalty \z@ {}krb5.\penalty \z@ {}conf}{112}{subsection.6.4.2}}
\newlabel{id2522482}{{6.4.2}{112}{Configure /\dbz {}etc/\dbz {}krb5.\dbz {}conf\relax }{subsection.6.4.2}{}}
\newlabel{id2522633}{{6.4.2}{112}{Configure /\dbz {}etc/\dbz {}krb5.\dbz {}conf\relax }{subsection.6.4.2}{}}
\global \@namedef{@fn@label@id2522633}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2522643}{{6.4.2}{113}{Configure /\dbz {}etc/\dbz {}krb5.\dbz {}conf\relax }{subsection.6.4.2}{}}
\global \@namedef{@fn@label@id2522643}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.3}Create the Computer Account}{115}{subsection.6.4.3}}
\newlabel{ads-create-machine-account}{{6.4.3}{115}{Create the Computer Account\relax }{subsection.6.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.4.3.1}Possible Errors}{116}{subsubsection.6.4.3.1}}
\newlabel{id2523298}{{6.4.3.1}{116}{Possible Errors\relax }{subsubsection.6.4.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.4}Testing Server Setup}{116}{subsection.6.4.4}}
\newlabel{ads-test-server}{{6.4.4}{116}{Testing Server Setup\relax }{subsection.6.4.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.5}Testing with smbclient}{117}{subsection.6.4.5}}
\newlabel{ads-test-smbclient}{{6.4.5}{117}{Testing with smbclient\relax }{subsection.6.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.6}Notes}{117}{subsection.6.4.6}}
\newlabel{id2523598}{{6.4.6}{117}{Notes\relax }{subsection.6.4.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.5}Sharing User ID Mappings between Samba Domain Members}{117}{section.6.5}}
\newlabel{id2523673}{{6.5}{117}{Sharing User ID Mappings between Samba Domain Members\relax }{section.6.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.6}Common Errors}{118}{section.6.6}}
\newlabel{id2523863}{{6.6}{118}{Common Errors\relax }{section.6.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6.1}Cannot Add Machine Back to Domain}{118}{subsection.6.6.1}}
\newlabel{id2523904}{{6.6.1}{118}{Cannot Add Machine Back to Domain\relax }{subsection.6.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6.2}Adding Machine to Domain Fails}{118}{subsection.6.6.2}}
\newlabel{id2523983}{{6.6.2}{118}{Adding Machine to Domain Fails\relax }{subsection.6.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6.3}I Can't Join a Windows 2003 PDC}{119}{subsection.6.6.3}}
\newlabel{id2524205}{{6.6.3}{119}{I Can't Join a Windows 2003 PDC\relax }{subsection.6.6.3}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {7}\uppercase {Standalone Servers}}{121}{chapter.7}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~7}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {7}Standalone Servers}{}{121}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {7}Standalone Servers}{}{121}}}
\newlabel{StandAloneServer}{{7}{121}{Standalone Servers\relax }{chapter.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Features and Benefits}{121}{section.7.1}}
\newlabel{id2460698}{{7.1}{121}{Features and Benefits\relax }{section.7.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Background}{122}{section.7.2}}
\newlabel{id2504647}{{7.2}{122}{Background\relax }{section.7.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Example Configuration}{122}{section.7.3}}
\newlabel{id2518688}{{7.3}{122}{Example Configuration\relax }{section.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.1}Reference Documentation Server}{122}{subsection.7.3.1}}
\newlabel{RefDocServer}{{7.3.1}{122}{Reference Documentation Server\relax }{subsection.7.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.1}{\ignorespaces smb.conf for Reference Documentation Server}}{123}{example.7.3.1}}
\newlabel{simplynice}{{7.3.1}{123}{Reference Documentation Server\relax }{example.7.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.2}Central Print Serving}{123}{subsection.7.3.2}}
\newlabel{SimplePrintServer}{{7.3.2}{123}{Central Print Serving\relax }{subsection.7.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.2}{\ignorespaces smb.\penalty \z@ {}conf for Anonymous Printing}}{125}{example.7.3.2}}
\newlabel{AnonPtrSvr}{{7.3.2}{125}{Central Print Serving\relax }{example.7.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.4}Common Errors}{126}{section.7.4}}
\newlabel{id2460918}{{7.4}{126}{Common Errors\relax }{section.7.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {8}\uppercase {MS Windows Network Configuration Guide}}{127}{chapter.8}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~8}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {8}MS Windows Network Configuration Guide}{}{127}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {8}MS Windows Network Configuration Guide}{}{127}}}
\newlabel{ClientConfig}{{8}{127}{MS Windows Network Configuration Guide\relax }{chapter.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}Features and Benefits}{127}{section.8.1}}
\newlabel{id2484251}{{8.1}{127}{Features and Benefits\relax }{section.8.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Technical Details}{127}{section.8.2}}
\newlabel{id2503081}{{8.2}{127}{Technical Details\relax }{section.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.1}TCP/IP Configuration}{128}{subsection.8.2.1}}
\newlabel{id2503124}{{8.2.1}{128}{TCP/IP Configuration\relax }{subsection.8.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.1.1}MS Windows XP Professional}{128}{subsubsection.8.2.1.1}}
\newlabel{id2503200}{{8.2.1.1}{128}{MS Windows XP Professional\relax }{subsubsection.8.2.1.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.1}{\ignorespaces Network Bridge Configuration.}}{129}{figure.8.1}}
\newlabel{WXPP002}{{8.1}{129}{MS Windows XP Professional\relax }{figure.8.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.2}{\ignorespaces Internet Protocol (TCP/IP) Properties.}}{130}{figure.8.2}}
\newlabel{WXPP003}{{8.2}{130}{MS Windows XP Professional\relax }{figure.8.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.1.2}MS Windows 2000}{130}{subsubsection.8.2.1.2}}
\newlabel{id2479640}{{8.2.1.2}{130}{MS Windows 2000\relax }{subsubsection.8.2.1.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.3}{\ignorespaces Advanced Network Settings}}{131}{figure.8.3}}
\newlabel{WXPP005}{{8.3}{131}{MS Windows XP Professional\relax }{figure.8.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.4}{\ignorespaces DNS Configuration.}}{132}{figure.8.4}}
\newlabel{WXPP014}{{8.4}{132}{MS Windows XP Professional\relax }{figure.8.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.2.1.3}MS Windows Me}{132}{subsubsection.8.2.1.3}}
\newlabel{id2461036}{{8.2.1.3}{132}{MS Windows Me\relax }{subsubsection.8.2.1.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.5}{\ignorespaces WINS Configuration}}{133}{figure.8.5}}
\newlabel{WXPP009}{{8.5}{133}{MS Windows XP Professional\relax }{figure.8.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.6}{\ignorespaces Local Area Connection Properties.}}{134}{figure.8.6}}
\newlabel{w2kp001}{{8.6}{134}{MS Windows 2000\relax }{figure.8.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.2}Joining a Domain: Windows 2000/XP Professional}{134}{subsection.8.2.2}}
\newlabel{id2524668}{{8.2.2}{134}{Joining a Domain: Windows 2000/XP Professional\relax }{subsection.8.2.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.7}{\ignorespaces Internet Protocol (TCP/IP) Properties.}}{135}{figure.8.7}}
\newlabel{w2kp002}{{8.7}{135}{MS Windows 2000\relax }{figure.8.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.8}{\ignorespaces Advanced Network Settings.}}{136}{figure.8.8}}
\newlabel{w2kp003}{{8.8}{136}{MS Windows 2000\relax }{figure.8.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.3}Domain Logon Configuration: Windows 9x/Me}{136}{subsection.8.2.3}}
\newlabel{id2525067}{{8.2.3}{136}{Domain Logon Configuration: Windows 9x/Me\relax }{subsection.8.2.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.9}{\ignorespaces DNS Configuration.}}{137}{figure.8.9}}
\newlabel{w2kp004}{{8.9}{137}{MS Windows 2000\relax }{figure.8.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.10}{\ignorespaces WINS Configuration.}}{138}{figure.8.10}}
\newlabel{w2kp005}{{8.10}{138}{MS Windows 2000\relax }{figure.8.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Common Errors}{138}{section.8.3}}
\newlabel{id2525408}{{8.3}{138}{Common Errors\relax }{section.8.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.11}{\ignorespaces The Windows Me Network Configuration Panel.}}{139}{figure.8.11}}
\newlabel{WME001}{{8.11}{139}{MS Windows Me\relax }{figure.8.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.12}{\ignorespaces IP Address.}}{140}{figure.8.12}}
\newlabel{WME002}{{8.12}{140}{MS Windows Me\relax }{figure.8.12}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.13}{\ignorespaces DNS Configuration.}}{140}{figure.8.13}}
\newlabel{WME005}{{8.13}{140}{MS Windows Me\relax }{figure.8.13}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.14}{\ignorespaces WINS Configuration.}}{141}{figure.8.14}}
\newlabel{WME003}{{8.14}{141}{MS Windows Me\relax }{figure.8.14}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.15}{\ignorespaces The General Panel.}}{141}{figure.8.15}}
\newlabel{wxpp001}{{8.15}{141}{Joining a Domain: Windows 2000/XP Professional\relax }{figure.8.15}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.16}{\ignorespaces The Computer Name Panel.}}{142}{figure.8.16}}
\newlabel{wxpp004}{{8.16}{142}{Joining a Domain: Windows 2000/XP Professional\relax }{figure.8.16}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.17}{\ignorespaces The Computer Name Changes Panel.}}{142}{figure.8.17}}
\newlabel{wxpp006}{{8.17}{142}{Joining a Domain: Windows 2000/XP Professional\relax }{figure.8.17}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.18}{\ignorespaces The Computer Name Changes Panel --- Domain MIDEARTH.}}{143}{figure.8.18}}
\newlabel{wxpp007}{{8.18}{143}{Joining a Domain: Windows 2000/XP Professional\relax }{figure.8.18}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.19}{\ignorespaces Computer Name Changes --- Username and Password Panel.}}{143}{figure.8.19}}
\newlabel{wxpp008}{{8.19}{143}{Joining a Domain: Windows 2000/XP Professional\relax }{figure.8.19}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.20}{\ignorespaces The Network Panel.}}{144}{figure.8.20}}
\newlabel{WME009}{{8.20}{144}{Domain Logon Configuration: Windows 9x/Me\relax }{figure.8.20}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.21}{\ignorespaces Client for Microsoft Networks Properties Panel.}}{144}{figure.8.21}}
\newlabel{WME010}{{8.21}{144}{Domain Logon Configuration: Windows 9x/Me\relax }{figure.8.21}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.22}{\ignorespaces Identification Panel.}}{145}{figure.8.22}}
\newlabel{WME013}{{8.22}{145}{Domain Logon Configuration: Windows 9x/Me\relax }{figure.8.22}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.23}{\ignorespaces Access Control Panel.}}{145}{figure.8.23}}
\newlabel{WME014}{{8.23}{145}{Domain Logon Configuration: Windows 9x/Me\relax }{figure.8.23}{}}
\@writefile{toc}{\contentsline {part}{Part III\hspace {1em}Advanced Configuration}{145}{part.3}}
\newlabel{optional}{{III}{147}{Advanced Configuration\relax }{part.3}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Valuable Nuts and Bolts Information}}{147}{section*.20}}
\newlabel{id2408773}{{III}{147}{Valuable Nuts and Bolts Information\relax }{chapter*.21}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {9}\uppercase {Important and Critical Change Notes for the Samba 3.x Series}}{149}{chapter.9}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~9}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {9}Important and Critical Change Notes for the Samba 3.x Series}{}{149}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {9}Important and Critical Change Notes for the Samba 3.x Series}{}{149}}}
\newlabel{ChangeNotes}{{9}{149}{Important and Critical Change Notes for the Samba 3.x Series\relax }{chapter.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.1}Important Samba-3.2.x Change Notes}{149}{section.9.1}}
\newlabel{id2493926}{{9.1}{149}{Important Samba-3.2.x Change Notes\relax }{section.9.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.2}Important Samba-3.0.x Change Notes}{149}{section.9.2}}
\newlabel{id2517405}{{9.2}{149}{Important Samba-3.0.x Change Notes\relax }{section.9.2}{}}
\newlabel{id2490206}{{9.2}{150}{Important Samba-3.0.x Change Notes\relax }{section.9.2}{}}
\global \@namedef{@fn@label@id2490206}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.1}User and Group Changes}{150}{subsection.9.2.1}}
\newlabel{id2490232}{{9.2.1}{150}{User and Group Changes\relax }{subsection.9.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.2}Essential Group Mappings}{151}{subsection.9.2.2}}
\newlabel{id2503859}{{9.2.2}{151}{Essential Group Mappings\relax }{subsection.9.2.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {9.1}{\ignorespaces Essential Domain Group Mappings}}{152}{table.9.1}}
\newlabel{TOSH-domgroups}{{9.1}{152}{Essential Group Mappings\relax }{table.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.3}Passdb Changes}{152}{subsection.9.2.3}}
\newlabel{id2503981}{{9.2.3}{152}{Passdb Changes\relax }{subsection.9.2.3}{}}
\newlabel{id2504027}{{9.2.3}{152}{Passdb Changes\relax }{subsection.9.2.3}{}}
\global \@namedef{@fn@label@id2504027}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.4}Group Mapping Changes in Samba-3.0.23}{152}{subsection.9.2.4}}
\newlabel{id2504035}{{9.2.4}{152}{Group Mapping Changes in Samba-3.0.23\relax }{subsection.9.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.5}LDAP Changes in Samba-3.0.23}{152}{subsection.9.2.5}}
\newlabel{id2504347}{{9.2.5}{152}{LDAP Changes in Samba-3.0.23\relax }{subsection.9.2.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {10}\uppercase {Network Browsing}}{153}{chapter.10}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~10}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {10}Network Browsing}{}{153}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {10}Network Browsing}{}{153}}}
\newlabel{NetworkBrowsing}{{10}{153}{Network Browsing\relax }{chapter.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.1}Features and Benefits}{154}{section.10.1}}
\newlabel{id2503598}{{10.1}{154}{Features and Benefits\relax }{section.10.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.2}What Is Browsing?}{155}{section.10.2}}
\newlabel{id2517298}{{10.2}{155}{What Is Browsing?\relax }{section.10.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.3}Discussion}{156}{section.10.3}}
\newlabel{netdiscuss}{{10.3}{156}{Discussion\relax }{section.10.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.1}NetBIOS over TCP/IP}{157}{subsection.10.3.1}}
\newlabel{id2519020}{{10.3.1}{157}{NetBIOS over TCP/IP\relax }{subsection.10.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.2}TCP/IP without NetBIOS}{159}{subsection.10.3.2}}
\newlabel{id2532174}{{10.3.2}{159}{TCP/IP without NetBIOS\relax }{subsection.10.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.3}DNS and Active Directory}{160}{subsection.10.3.3}}
\newlabel{adsdnstech}{{10.3.3}{160}{DNS and Active Directory\relax }{subsection.10.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.4}How Browsing Functions}{162}{section.10.4}}
\newlabel{id2500005}{{10.4}{162}{How Browsing Functions\relax }{section.10.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.1}Configuring Workgroup Browsing}{164}{subsection.10.4.1}}
\newlabel{DMB}{{10.4.1}{164}{Configuring Workgroup Browsing\relax }{subsection.10.4.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.4.1}{\ignorespaces Domain Master Browser smb.conf}}{164}{example.10.4.1}}
\newlabel{dmbexample}{{10.4.1}{164}{Configuring Workgroup Browsing\relax }{example.10.4.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.4.2}{\ignorespaces Local master browser smb.conf}}{165}{example.10.4.2}}
\newlabel{lmbexample}{{10.4.2}{165}{Configuring Workgroup Browsing\relax }{example.10.4.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.4.3}{\ignorespaces smb.conf for Not Being a Master Browser}}{165}{example.10.4.3}}
\newlabel{nombexample}{{10.4.3}{165}{Configuring Workgroup Browsing\relax }{example.10.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.2}Domain Browsing Configuration}{165}{subsection.10.4.2}}
\newlabel{id2533488}{{10.4.2}{165}{Domain Browsing Configuration\relax }{subsection.10.4.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.4.4}{\ignorespaces Local Master Browser smb.conf}}{166}{example.10.4.4}}
\newlabel{remsmb}{{10.4.4}{166}{Domain Browsing Configuration\relax }{example.10.4.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.4.5}{\ignorespaces smb.\penalty \z@ {}conf for Not Being a master browser}}{166}{example.10.4.5}}
\newlabel{xremmb}{{10.4.5}{166}{Domain Browsing Configuration\relax }{example.10.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.3}Forcing Samba to Be the Master}{166}{subsection.10.4.3}}
\newlabel{browse-force-master}{{10.4.3}{166}{Forcing Samba to Be the Master\relax }{subsection.10.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.4}Making Samba the Domain Master}{167}{subsection.10.4.4}}
\newlabel{id2534004}{{10.4.4}{167}{Making Samba the Domain Master\relax }{subsection.10.4.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.5}Note about Broadcast Addresses}{168}{subsection.10.4.5}}
\newlabel{id2538015}{{10.4.5}{168}{Note about Broadcast Addresses\relax }{subsection.10.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.6}Multiple Interfaces}{168}{subsection.10.4.6}}
\newlabel{id2538036}{{10.4.6}{168}{Multiple Interfaces\relax }{subsection.10.4.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.7}Use of the Remote Announce Parameter}{169}{subsection.10.4.7}}
\newlabel{id2538180}{{10.4.7}{169}{Use of the Remote Announce Parameter\relax }{subsection.10.4.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4.8}Use of the Remote Browse Sync Parameter}{170}{subsection.10.4.8}}
\newlabel{id2538285}{{10.4.8}{170}{Use of the Remote Browse Sync Parameter\relax }{subsection.10.4.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.5}WINS: The Windows Internetworking Name Server}{170}{section.10.5}}
\newlabel{id2538356}{{10.5}{170}{WINS: The Windows Internetworking Name Server\relax }{section.10.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.5.1}WINS Server Configuration}{171}{subsection.10.5.1}}
\newlabel{id2538588}{{10.5.1}{171}{WINS Server Configuration\relax }{subsection.10.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.5.2}WINS Replication}{173}{subsection.10.5.2}}
\newlabel{id2538838}{{10.5.2}{173}{WINS Replication\relax }{subsection.10.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.5.3}Static WINS Entries}{173}{subsection.10.5.3}}
\newlabel{id2538888}{{10.5.3}{173}{Static WINS Entries\relax }{subsection.10.5.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.6}Helpful Hints}{174}{section.10.6}}
\newlabel{id2539101}{{10.6}{174}{Helpful Hints\relax }{section.10.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.6.1}Windows Networking Protocols}{174}{subsection.10.6.1}}
\newlabel{id2539112}{{10.6.1}{174}{Windows Networking Protocols\relax }{subsection.10.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.6.2}Name Resolution Order}{175}{subsection.10.6.2}}
\newlabel{id2539245}{{10.6.2}{175}{Name Resolution Order\relax }{subsection.10.6.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.7}Technical Overview of Browsing}{176}{section.10.7}}
\newlabel{id2539409}{{10.7}{176}{Technical Overview of Browsing\relax }{section.10.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.7.1}Browsing Support in Samba}{177}{subsection.10.7.1}}
\newlabel{id2539485}{{10.7.1}{177}{Browsing Support in Samba\relax }{subsection.10.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.7.2}Problem Resolution}{178}{subsection.10.7.2}}
\newlabel{id2539657}{{10.7.2}{178}{Problem Resolution\relax }{subsection.10.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.7.3}Cross-Subnet Browsing}{179}{subsection.10.7.3}}
\newlabel{id2539870}{{10.7.3}{179}{Cross-Subnet Browsing\relax }{subsection.10.7.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {10.7.3.1}Behavior of Cross-Subnet Browsing}{179}{subsubsection.10.7.3.1}}
\newlabel{id2540030}{{10.7.3.1}{179}{Behavior of Cross-Subnet Browsing\relax }{subsubsection.10.7.3.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1}{\ignorespaces Cross-Subnet Browsing Example.}}{180}{figure.10.1}}
\newlabel{browsing1}{{10.1}{180}{Behavior of Cross-Subnet Browsing\relax }{figure.10.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.1}{\ignorespaces Browse Subnet Example 1}}{181}{table.10.1}}
\newlabel{browsubnet}{{10.1}{181}{Behavior of Cross-Subnet Browsing\relax }{table.10.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.2}{\ignorespaces Browse Subnet Example 2}}{182}{table.10.2}}
\newlabel{brsbex}{{10.2}{182}{Behavior of Cross-Subnet Browsing\relax }{table.10.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.3}{\ignorespaces Browse Subnet Example 3}}{182}{table.10.3}}
\newlabel{brsex2}{{10.3}{182}{Behavior of Cross-Subnet Browsing\relax }{table.10.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {10.4}{\ignorespaces Browse Subnet Example 4}}{183}{table.10.4}}
\newlabel{brsex3}{{10.4}{183}{Behavior of Cross-Subnet Browsing\relax }{table.10.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.8}Common Errors}{183}{section.10.8}}
\newlabel{id2540786}{{10.8}{183}{Common Errors\relax }{section.10.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8.1}Flushing the Samba NetBIOS Name Cache}{183}{subsection.10.8.1}}
\newlabel{id2540811}{{10.8.1}{183}{Flushing the Samba NetBIOS Name Cache\relax }{subsection.10.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8.2}Server Resources Cannot Be Listed}{184}{subsection.10.8.2}}
\newlabel{id2540880}{{10.8.2}{184}{Server Resources Cannot Be Listed\relax }{subsection.10.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8.3}I Get an "Unable to browse the network" Error}{184}{subsection.10.8.3}}
\newlabel{id2540918}{{10.8.3}{184}{I Get an "Unable to browse the network" Error\relax }{subsection.10.8.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8.4}Browsing of Shares and Directories is Very Slow}{184}{subsection.10.8.4}}
\newlabel{id2540963}{{10.8.4}{184}{Browsing of Shares and Directories is Very Slow\relax }{subsection.10.8.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8.5}Invalid Cached Share References Affects Network Browsing}{186}{subsection.10.8.5}}
\newlabel{id2541151}{{10.8.5}{186}{Invalid Cached Share References Affects Network Browsing\relax }{subsection.10.8.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {11}\uppercase {Account Information Databases}}{189}{chapter.11}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~11}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {11}Account Information Databases}{}{189}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {11}Account Information Databases}{}{189}}}
\newlabel{passdb}{{11}{189}{Account Information Databases\relax }{chapter.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.1}Features and Benefits}{190}{section.11.1}}
\newlabel{id2544712}{{11.1}{190}{Features and Benefits\relax }{section.11.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.1}Backward Compatibility Account Storage Systems}{190}{subsection.11.1.1}}
\newlabel{id2501295}{{11.1.1}{190}{Backward Compatibility Account Storage Systems\relax }{subsection.11.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.2}New Account Storage Systems}{191}{subsection.11.1.2}}
\newlabel{id2528649}{{11.1.2}{191}{New Account Storage Systems\relax }{subsection.11.1.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.2}Technical Information}{192}{section.11.2}}
\newlabel{passdbtech}{{11.2}{192}{Technical Information\relax }{section.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.1}Important Notes About Security}{192}{subsection.11.2.1}}
\newlabel{id2531457}{{11.2.1}{192}{Important Notes About Security\relax }{subsection.11.2.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1}{\ignorespaces IDMAP: Resolution of SIDs to UIDs.}}{193}{figure.11.1}}
\newlabel{idmap-sid2uid}{{11.1}{193}{Technical Information\relax }{figure.11.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2}{\ignorespaces IDMAP: Resolution of UIDs to SIDs.}}{194}{figure.11.2}}
\newlabel{idmap-uid2sid}{{11.2}{194}{Technical Information\relax }{figure.11.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.1.1}Advantages of Encrypted Passwords}{195}{subsubsection.11.2.1.1}}
\newlabel{id2460013}{{11.2.1.1}{195}{Advantages of Encrypted Passwords\relax }{subsubsection.11.2.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.1.2}Advantages of Non-Encrypted Passwords}{195}{subsubsection.11.2.1.2}}
\newlabel{id2544849}{{11.2.1.2}{195}{Advantages of Non-Encrypted Passwords\relax }{subsubsection.11.2.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.2}Mapping User Identifiers between MS Windows and UNIX}{196}{subsection.11.2.2}}
\newlabel{id2544910}{{11.2.2}{196}{Mapping User Identifiers between MS Windows and UNIX\relax }{subsection.11.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.3}Mapping Common UIDs/GIDs on Distributed Machines}{196}{subsection.11.2.3}}
\newlabel{idmapbackend}{{11.2.3}{196}{Mapping Common UIDs/GIDs on Distributed Machines\relax }{subsection.11.2.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {11.2.1}{\ignorespaces Example Configuration with the LDAP idmap Backend}}{197}{example.11.2.1}}
\newlabel{idmapbackendexample}{{11.2.1}{197}{Mapping Common UIDs/GIDs on Distributed Machines\relax }{example.11.2.1}{}}
\newlabel{id2545385}{{11.2.3}{197}{Mapping Common UIDs/GIDs on Distributed Machines\relax }{example.11.2.1}{}}
\global \@namedef{@fn@label@id2545385}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.4}Comments Regarding LDAP}{197}{subsection.11.2.4}}
\newlabel{id2545395}{{11.2.4}{197}{Comments Regarding LDAP\relax }{subsection.11.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.4.1}Caution Regarding LDAP and Samba}{198}{subsubsection.11.2.4.1}}
\newlabel{id2545651}{{11.2.4.1}{198}{Caution Regarding LDAP and Samba\relax }{subsubsection.11.2.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.5}LDAP Directories and Windows Computer Accounts}{199}{subsection.11.2.5}}
\newlabel{id2545779}{{11.2.5}{199}{LDAP Directories and Windows Computer Accounts\relax }{subsection.11.2.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.3}Account Management Tools}{200}{section.11.3}}
\newlabel{acctmgmttools}{{11.3}{200}{Account Management Tools\relax }{section.11.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.1}The smbpasswd Tool}{200}{subsection.11.3.1}}
\newlabel{id2546188}{{11.3.1}{200}{The smbpasswd Tool\relax }{subsection.11.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.2}The pdbedit Tool}{202}{subsection.11.3.2}}
\newlabel{pdbeditthing}{{11.3.2}{202}{The pdbedit Tool\relax }{subsection.11.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.2.1}User Account Management}{203}{subsubsection.11.3.2.1}}
\newlabel{id2547179}{{11.3.2.1}{203}{User Account Management\relax }{subsubsection.11.3.2.1}{}}
\newlabel{id2547285}{{11.3.2.1}{203}{Listing User and Machine Accounts\relax }{section*.22}{}}
\@writefile{lot}{\contentsline {table}{\numberline {11.1}{\ignorespaces NT4 Domain v's Samba Policy Controls}}{204}{table.11.1}}
\newlabel{policycontrols}{{11.1}{204}{The pdbedit Tool\relax }{table.11.1}{}}
\newlabel{id2547505}{{11.3.2.1}{206}{Adding User Accounts\relax }{section*.23}{}}
\newlabel{id2547587}{{11.3.2.1}{207}{Deleting Accounts\relax }{section*.24}{}}
\newlabel{id2547668}{{11.3.2.1}{207}{Changing User Accounts\relax }{section*.25}{}}
\newlabel{TOSHARG-acctflags}{{11.3.2.1}{209}{Account Flags Management\relax }{section*.26}{}}
\@writefile{lot}{\contentsline {table}{\numberline {11.2}{\ignorespaces Samba SAM Account Control Block Flags}}{210}{table.11.2}}
\newlabel{accountflags}{{11.2}{210}{Account Flags Management\relax }{table.11.2}{}}
\newlabel{id2548342}{{11.3.2.1}{211}{Domain Account Policy Managment\relax }{section*.27}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.2.2}Account Import/Export}{213}{subsubsection.11.3.2.2}}
\newlabel{id2548509}{{11.3.2.2}{213}{Account Import/Export\relax }{subsubsection.11.3.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.4}Password Backends}{213}{section.11.4}}
\newlabel{id2548639}{{11.4}{213}{Password Backends\relax }{section.11.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.1}Plaintext}{214}{subsection.11.4.1}}
\newlabel{id2548695}{{11.4.1}{214}{Plaintext\relax }{subsection.11.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.2}smbpasswd: Encrypted Password Database}{214}{subsection.11.4.2}}
\newlabel{id2548774}{{11.4.2}{214}{smbpasswd: Encrypted Password Database\relax }{subsection.11.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.3}tdbsam}{215}{subsection.11.4.3}}
\newlabel{id2549044}{{11.4.3}{215}{tdbsam\relax }{subsection.11.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4.4}ldapsam}{215}{subsection.11.4.4}}
\newlabel{id2549209}{{11.4.4}{215}{ldapsam\relax }{subsection.11.4.4}{}}
\newlabel{id2549292}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549292}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2549300}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549300}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2549349}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549349}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2549357}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549357}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2549367}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549367}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2549376}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549376}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2549385}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549385}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\newlabel{id2549394}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549394}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\newlabel{id2549420}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549420}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 10}}}}}}
\newlabel{id2549455}{{11.4.4}{216}{ldapsam\relax }{subsection.11.4.4}{}}
\global \@namedef{@fn@label@id2549455}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 11}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.1}Supported LDAP Servers}{217}{subsubsection.11.4.4.1}}
\newlabel{id2549467}{{11.4.4.1}{217}{Supported LDAP Servers\relax }{subsubsection.11.4.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.2}Schema and Relationship to the RFC 2307 posixAccount}{217}{subsubsection.11.4.4.2}}
\newlabel{id2549523}{{11.4.4.2}{217}{Schema and Relationship to the RFC 2307 posixAccount\relax }{subsubsection.11.4.4.2}{}}
\newlabel{id2549592}{{11.4.4.2}{217}{Schema and Relationship to the RFC 2307 posixAccount\relax }{subsubsection.11.4.4.2}{}}
\global \@namedef{@fn@label@id2549592}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 12}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.3}OpenLDAP Configuration}{218}{subsubsection.11.4.4.3}}
\newlabel{id2549757}{{11.4.4.3}{218}{OpenLDAP Configuration\relax }{subsubsection.11.4.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.4}Initialize the LDAP Database}{220}{subsubsection.11.4.4.4}}
\newlabel{id2550040}{{11.4.4.4}{220}{Initialize the LDAP Database\relax }{subsubsection.11.4.4.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.5}Configuring Samba}{222}{subsubsection.11.4.4.5}}
\newlabel{id2550232}{{11.4.4.5}{222}{Configuring Samba\relax }{subsubsection.11.4.4.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.6}Accounts and Groups Management}{223}{subsubsection.11.4.4.6}}
\newlabel{id2550552}{{11.4.4.6}{223}{Accounts and Groups Management\relax }{subsubsection.11.4.4.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.7}Security and sambaSamAccount}{223}{subsubsection.11.4.4.7}}
\newlabel{id2550670}{{11.4.4.7}{223}{Security and sambaSamAccount\relax }{subsubsection.11.4.4.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {11.4.1}{\ignorespaces Configuration with LDAP}}{224}{example.11.4.1}}
\newlabel{confldapex}{{11.4.1}{224}{Configuring Samba\relax }{example.11.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.8}LDAP Special Attributes for sambaSamAccounts}{225}{subsubsection.11.4.4.8}}
\newlabel{id2550894}{{11.4.4.8}{225}{LDAP Special Attributes for sambaSamAccounts\relax }{subsubsection.11.4.4.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.9}Example LDIF Entries for a sambaSamAccount}{226}{subsubsection.11.4.4.9}}
\newlabel{id2551387}{{11.4.4.9}{226}{Example LDIF Entries for a sambaSamAccount\relax }{subsubsection.11.4.4.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.10}Password Synchronization}{227}{subsubsection.11.4.4.10}}
\newlabel{id2551437}{{11.4.4.10}{227}{Password Synchronization\relax }{subsubsection.11.4.4.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.4.4.11}Using OpenLDAP Overlay for Password Syncronization}{227}{subsubsection.11.4.4.11}}
\newlabel{id2551587}{{11.4.4.11}{227}{Using OpenLDAP Overlay for Password Syncronization\relax }{subsubsection.11.4.4.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.5}Common Errors}{228}{section.11.5}}
\newlabel{id2551640}{{11.5}{228}{Common Errors\relax }{section.11.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.5.1}Users Cannot Logon}{228}{subsection.11.5.1}}
\newlabel{id2551646}{{11.5.1}{228}{Users Cannot Logon\relax }{subsection.11.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.5.2}Configuration of auth methods}{228}{subsection.11.5.2}}
\newlabel{id2551676}{{11.5.2}{228}{Configuration of auth methods\relax }{subsection.11.5.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {11.3}{\ignorespaces Attributes in the sambaSamAccount ObjectClass (LDAP), Part A}}{229}{table.11.3}}
\newlabel{attribobjclPartA}{{11.3}{229}{LDAP Special Attributes for sambaSamAccounts\relax }{table.11.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {11.4}{\ignorespaces Attributes in the sambaSamAccount ObjectClass (LDAP), Part B}}{230}{table.11.4}}
\newlabel{attribobjclPartB}{{11.4}{230}{LDAP Special Attributes for sambaSamAccounts\relax }{table.11.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {11.5}{\ignorespaces Possible ldap passwd sync Values}}{230}{table.11.5}}
\newlabel{ldappwsync}{{11.5}{230}{Password Synchronization\relax }{table.11.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {12}\uppercase {Group Mapping: MS Windows and UNIX}}{231}{chapter.12}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~12}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {12}Group Mapping: MS Windows and UNIX}{}{231}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {12}Group Mapping: MS Windows and UNIX}{}{231}}}
\newlabel{groupmapping}{{12}{231}{Group Mapping: MS Windows and UNIX\relax }{chapter.12}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.1}Features and Benefits}{232}{section.12.1}}
\newlabel{id2510586}{{12.1}{232}{Features and Benefits\relax }{section.12.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {12.1}{\ignorespaces IDMAP: Group SID-to-GID Resolution.}}{232}{figure.12.1}}
\newlabel{idmap-sid2gid}{{12.1}{232}{Features and Benefits\relax }{figure.12.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {12.2}{\ignorespaces IDMAP: GID Resolution to Matching SID.}}{233}{figure.12.2}}
\newlabel{idmap-gid2sid}{{12.2}{233}{Features and Benefits\relax }{figure.12.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {12.3}{\ignorespaces IDMAP Storing Group Mappings.}}{233}{figure.12.3}}
\newlabel{idmap-store-gid2sid}{{12.3}{233}{Features and Benefits\relax }{figure.12.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.2}Discussion}{234}{section.12.2}}
\newlabel{id2529854}{{12.2}{234}{Discussion\relax }{section.12.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.1}Warning: User Private Group Problems}{235}{subsection.12.2.1}}
\newlabel{id2528544}{{12.2.1}{235}{Warning: User Private Group Problems\relax }{subsection.12.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.2}Nested Groups: Adding Windows Domain Groups to Windows Local Groups}{236}{subsection.12.2.2}}
\newlabel{id2528604}{{12.2.2}{236}{Nested Groups: Adding Windows Domain Groups to Windows Local Groups\relax }{subsection.12.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.3}Important Administrative Information}{238}{subsection.12.2.3}}
\newlabel{id2526881}{{12.2.3}{238}{Important Administrative Information\relax }{subsection.12.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {12.2.3.1}Applicable Only to Versions Earlier than 3.0.11}{238}{subsubsection.12.2.3.1}}
\newlabel{id2527001}{{12.2.3.1}{238}{Applicable Only to Versions Earlier than 3.0.11\relax }{subsubsection.12.2.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.4}Default Users, Groups, and Relative Identifiers}{239}{subsection.12.2.4}}
\newlabel{id2527126}{{12.2.4}{239}{Default Users, Groups, and Relative Identifiers\relax }{subsection.12.2.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {12.1}{\ignorespaces Well-Known User Default RIDs}}{240}{table.12.1}}
\newlabel{WKURIDS}{{12.1}{240}{Default Users, Groups, and Relative Identifiers\relax }{table.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.5}Example Configuration}{240}{subsection.12.2.5}}
\newlabel{id2541315}{{12.2.5}{240}{Example Configuration\relax }{subsection.12.2.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.3}Configuration Scripts}{241}{section.12.3}}
\newlabel{id2541391}{{12.3}{241}{Configuration Scripts\relax }{section.12.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.1}Sample smb.\penalty \z@ {}conf Add Group Script}{241}{subsection.12.3.1}}
\newlabel{id2541403}{{12.3.1}{241}{Sample smb.\dbz {}conf Add Group Script\relax }{subsection.12.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.1}{\ignorespaces smbgrpadd.sh}}{241}{example.12.3.1}}
\newlabel{smbgrpadd.sh}{{12.3.1}{241}{Sample smb.\dbz {}conf Add Group Script\relax }{example.12.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.2}{\ignorespaces Configuration of smb.\penalty \z@ {}conf for the add group Script}}{242}{example.12.3.2}}
\newlabel{smbgrpadd}{{12.3.2}{242}{Sample smb.\dbz {}conf Add Group Script\relax }{example.12.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.2}Script to Configure Group Mapping}{242}{subsection.12.3.2}}
\newlabel{id2541555}{{12.3.2}{242}{Script to Configure Group Mapping\relax }{subsection.12.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.3}{\ignorespaces Script to Set Group Mapping}}{242}{example.12.3.3}}
\newlabel{set-group-map}{{12.3.3}{242}{Script to Configure Group Mapping\relax }{example.12.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.4}Common Errors}{243}{section.12.4}}
\newlabel{id2541682}{{12.4}{243}{Common Errors\relax }{section.12.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.4.1}Adding Groups Fails}{243}{subsection.12.4.1}}
\newlabel{id2541696}{{12.4.1}{243}{Adding Groups Fails\relax }{subsection.12.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.4.2}Adding Domain Users to the Workstation Power Users Group}{243}{subsection.12.4.2}}
\newlabel{id2541777}{{12.4.2}{243}{Adding Domain Users to the Workstation Power Users Group\relax }{subsection.12.4.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {13}\uppercase {Remote and Local Management: The Net Command}}{245}{chapter.13}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~13}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {13}Remote and Local Management: The Net Command}{}{245}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {13}Remote and Local Management: The Net Command}{}{245}}}
\newlabel{NetCommand}{{13}{245}{Remote and Local Management: The Net Command\relax }{chapter.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.1}Overview}{246}{section.13.1}}
\newlabel{id2544152}{{13.1}{246}{Overview\relax }{section.13.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.2}Administrative Tasks and Methods}{246}{section.13.2}}
\newlabel{id2463010}{{13.2}{246}{Administrative Tasks and Methods\relax }{section.13.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.3}UNIX and Windows Group Management}{247}{section.13.3}}
\newlabel{id2463093}{{13.3}{247}{UNIX and Windows Group Management\relax }{section.13.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.1}Adding, Renaming, or Deletion of Group Accounts}{247}{subsection.13.3.1}}
\newlabel{id2530469}{{13.3.1}{247}{Adding, Renaming, or Deletion of Group Accounts\relax }{subsection.13.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.1}Adding or Creating a New Group}{248}{subsubsection.13.3.1.1}}
\newlabel{id2530513}{{13.3.1.1}{248}{Adding or Creating a New Group\relax }{subsubsection.13.3.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.2}Mapping Windows Groups to UNIX Groups}{250}{subsubsection.13.3.1.2}}
\newlabel{id2500162}{{13.3.1.2}{250}{Mapping Windows Groups to UNIX Groups\relax }{subsubsection.13.3.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.3}Deleting a Group Account}{252}{subsubsection.13.3.1.3}}
\newlabel{id2553463}{{13.3.1.3}{252}{Deleting a Group Account\relax }{subsubsection.13.3.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.4}Rename Group Accounts}{252}{subsubsection.13.3.1.4}}
\newlabel{id2553501}{{13.3.1.4}{252}{Rename Group Accounts\relax }{subsubsection.13.3.1.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.2}Manipulating Group Memberships}{253}{subsection.13.3.2}}
\newlabel{grpmemshipchg}{{13.3.2}{253}{Manipulating Group Memberships\relax }{subsection.13.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.3}Nested Group Support}{256}{subsection.13.3.3}}
\newlabel{nestedgrpmgmgt}{{13.3.3}{256}{Nested Group Support\relax }{subsection.13.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.3.1}Managing Nest Groups on Workstations from the Samba Server}{257}{subsubsection.13.3.3.1}}
\newlabel{id2553936}{{13.3.3.1}{257}{Managing Nest Groups on Workstations from the Samba Server\relax }{subsubsection.13.3.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {13.3.1}{\ignorespaces Script to Auto-add Domain Users to Workstation Power Users Group}}{257}{example.13.3.1}}
\newlabel{autopoweruserscript}{{13.3.1}{257}{Managing Nest Groups on Workstations from the Samba Server\relax }{example.13.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {13.3.2}{\ignorespaces A Magic Netlogon Share}}{258}{example.13.3.2}}
\newlabel{magicnetlogon}{{13.3.2}{258}{Managing Nest Groups on Workstations from the Samba Server\relax }{example.13.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.4}UNIX and Windows User Management}{258}{section.13.4}}
\newlabel{id2554169}{{13.4}{258}{UNIX and Windows User Management\relax }{section.13.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.4.1}Adding User Accounts}{259}{subsection.13.4.1}}
\newlabel{sbeuseraddn}{{13.4.1}{259}{Adding User Accounts\relax }{subsection.13.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.4.2}Deletion of User Accounts}{259}{subsection.13.4.2}}
\newlabel{id2554358}{{13.4.2}{259}{Deletion of User Accounts\relax }{subsection.13.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.4.3}Managing User Accounts}{260}{subsection.13.4.3}}
\newlabel{id2554402}{{13.4.3}{260}{Managing User Accounts\relax }{subsection.13.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.4.4}User Mapping}{260}{subsection.13.4.4}}
\newlabel{id2554466}{{13.4.4}{260}{User Mapping\relax }{subsection.13.4.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.5}Administering User Rights and Privileges}{261}{section.13.5}}
\newlabel{id2554543}{{13.5}{261}{Administering User Rights and Privileges\relax }{section.13.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.6}Managing Trust Relationships}{264}{section.13.6}}
\newlabel{id2554865}{{13.6}{264}{Managing Trust Relationships\relax }{section.13.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.6.1}Machine Trust Accounts}{265}{subsection.13.6.1}}
\newlabel{id2554880}{{13.6.1}{265}{Machine Trust Accounts\relax }{subsection.13.6.1}{}}
\newlabel{id2555218}{{13.6.1}{267}{Machine Trust Accounts\relax }{subsection.13.6.1}{}}
\global \@namedef{@fn@label@id2555218}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.6.2}Interdomain Trusts}{267}{subsection.13.6.2}}
\newlabel{id2555227}{{13.6.2}{267}{Interdomain Trusts\relax }{subsection.13.6.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.7}Managing Security Identifiers (SIDS)}{270}{section.13.7}}
\newlabel{id2555448}{{13.7}{270}{Managing Security Identifiers (SIDS)\relax }{section.13.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.8}Share Management}{271}{section.13.8}}
\newlabel{id2555658}{{13.8}{271}{Share Management\relax }{section.13.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.8.1}Creating, Editing, and Removing Shares}{272}{subsection.13.8.1}}
\newlabel{id2555703}{{13.8.1}{272}{Creating, Editing, and Removing Shares\relax }{subsection.13.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.8.2}Creating and Changing Share ACLs}{273}{subsection.13.8.2}}
\newlabel{id2555855}{{13.8.2}{273}{Creating and Changing Share ACLs\relax }{subsection.13.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.8.3}Share, Directory, and File Migration}{273}{subsection.13.8.3}}
\newlabel{id2555883}{{13.8.3}{273}{Share, Directory, and File Migration\relax }{subsection.13.8.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.8.3.1}Share Migration}{274}{subsubsection.13.8.3.1}}
\newlabel{id2555991}{{13.8.3.1}{274}{Share Migration\relax }{subsubsection.13.8.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.8.3.2}File and Directory Migration}{276}{subsubsection.13.8.3.2}}
\newlabel{id2556166}{{13.8.3.2}{276}{File and Directory Migration\relax }{subsubsection.13.8.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.8.3.3}Share-ACL Migration}{278}{subsubsection.13.8.3.3}}
\newlabel{id2556358}{{13.8.3.3}{278}{Share-ACL Migration\relax }{subsubsection.13.8.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.8.3.4}Simultaneous Share and File Migration}{278}{subsubsection.13.8.3.4}}
\newlabel{id2556399}{{13.8.3.4}{278}{Simultaneous Share and File Migration\relax }{subsubsection.13.8.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.8.4}Printer Migration}{278}{subsection.13.8.4}}
\newlabel{id2556453}{{13.8.4}{278}{Printer Migration\relax }{subsection.13.8.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.9}Controlling Open Files}{281}{section.13.9}}
\newlabel{id2556688}{{13.9}{281}{Controlling Open Files\relax }{section.13.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.10}Session and Connection Management}{281}{section.13.10}}
\newlabel{id2556706}{{13.10}{281}{Session and Connection Management\relax }{section.13.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.11}Printers and ADS}{281}{section.13.11}}
\newlabel{id2556769}{{13.11}{281}{Printers and ADS\relax }{section.13.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.12}Manipulating the Samba Cache}{282}{section.13.12}}
\newlabel{id2556875}{{13.12}{282}{Manipulating the Samba Cache\relax }{section.13.12}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.13}Managing IDMAP UID/SID Mappings}{282}{section.13.13}}
\newlabel{id2556891}{{13.13}{282}{Managing IDMAP UID/SID Mappings\relax }{section.13.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.13.1}Creating an IDMAP Database Dump File}{283}{subsection.13.13.1}}
\newlabel{id2556933}{{13.13.1}{283}{Creating an IDMAP Database Dump File\relax }{subsection.13.13.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.13.2}Restoring the IDMAP Database Dump File}{283}{subsection.13.13.2}}
\newlabel{id2556965}{{13.13.2}{283}{Restoring the IDMAP Database Dump File\relax }{subsection.13.13.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.14}Other Miscellaneous Operations}{283}{section.13.14}}
\newlabel{netmisc1}{{13.14}{283}{Other Miscellaneous Operations\relax }{section.13.14}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {14}\uppercase {Identity Mapping (IDMAP)}}{285}{chapter.14}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~14}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {14}Identity Mapping (IDMAP)}{}{285}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {14}Identity Mapping (IDMAP)}{}{285}}}
\newlabel{idmapper}{{14}{285}{Identity Mapping (IDMAP)\relax }{chapter.14}{}}
\newlabel{id2472517}{{14}{286}{Identity Mapping (IDMAP)\relax }{chapter.14}{}}
\global \@namedef{@fn@label@id2472517}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {14.1}Samba Server Deployment Types and IDMAP}{286}{section.14.1}}
\newlabel{id2529296}{{14.1}{286}{Samba Server Deployment Types and IDMAP\relax }{section.14.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.1.1}Standalone Samba Server}{286}{subsection.14.1.1}}
\newlabel{id2529320}{{14.1.1}{286}{Standalone Samba Server\relax }{subsection.14.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.1.2}Domain Member Server or Domain Member Client}{286}{subsection.14.1.2}}
\newlabel{id2529385}{{14.1.2}{286}{Domain Member Server or Domain Member Client\relax }{subsection.14.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.1.3}Primary Domain Controller}{290}{subsection.14.1.3}}
\newlabel{id2557391}{{14.1.3}{290}{Primary Domain Controller\relax }{subsection.14.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.1.4}Backup Domain Controller}{290}{subsection.14.1.4}}
\newlabel{id2557608}{{14.1.4}{290}{Backup Domain Controller\relax }{subsection.14.1.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {14.2}Examples of IDMAP Backend Usage}{291}{section.14.2}}
\newlabel{id2557675}{{14.2}{291}{Examples of IDMAP Backend Usage\relax }{section.14.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.2.1}Default Winbind TDB}{291}{subsection.14.2.1}}
\newlabel{id2557733}{{14.2.1}{291}{Default Winbind TDB\relax }{subsection.14.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {14.2.1.1}NT4-Style Domains (Includes Samba Domains)}{291}{subsubsection.14.2.1.1}}
\newlabel{id2557757}{{14.2.1.1}{291}{NT4-Style Domains (Includes Samba Domains)\relax }{subsubsection.14.2.1.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {14.2.1}{\ignorespaces NT4 Domain Member Server smb.conf}}{291}{example.14.2.1}}
\newlabel{idmapnt4dms}{{14.2.1}{291}{NT4-Style Domains (Includes Samba Domains)\relax }{example.14.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {14.2.1.2}ADS Domains}{293}{subsubsection.14.2.1.2}}
\newlabel{id2557978}{{14.2.1.2}{293}{ADS Domains\relax }{subsubsection.14.2.1.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {14.2.2}{\ignorespaces ADS Domain Member Server smb.conf}}{293}{example.14.2.2}}
\newlabel{idmapadsdms}{{14.2.2}{293}{ADS Domains\relax }{example.14.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.2.2}IDMAP\_RID with Winbind}{294}{subsection.14.2.2}}
\newlabel{id2558290}{{14.2.2}{294}{IDMAP\_RID with Winbind\relax }{subsection.14.2.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {14.2.3}{\ignorespaces ADS Domain Member smb.conf using idmap\_rid}}{295}{example.14.2.3}}
\newlabel{idmapadsridDMS}{{14.2.3}{295}{IDMAP\_RID with Winbind\relax }{example.14.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.2.3}IDMAP Storage in LDAP Using Winbind}{296}{subsection.14.2.3}}
\newlabel{id2558740}{{14.2.3}{296}{IDMAP Storage in LDAP Using Winbind\relax }{subsection.14.2.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {14.2.4}{\ignorespaces ADS Domain Member Server using LDAP}}{297}{example.14.2.4}}
\newlabel{idmapldapDMS}{{14.2.4}{297}{IDMAP Storage in LDAP Using Winbind\relax }{example.14.2.4}{}}
\newlabel{id2559007}{{14.2.3}{299}{IDMAP Storage in LDAP Using Winbind\relax }{example.14.2.4}{}}
\global \@namedef{@fn@label@id2559007}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.2.4}IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension}{301}{subsection.14.2.4}}
\newlabel{id2559192}{{14.2.4}{301}{IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension\relax }{subsection.14.2.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {14.2.5}{\ignorespaces ADS Domain Member Server using RFC2307bis Schema Extension Date via NSS}}{301}{example.14.2.5}}
\newlabel{idmaprfc2307}{{14.2.5}{301}{IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension\relax }{example.14.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {14.2.4.1}IDMAP, Active Directory, and MS Services for UNIX 3.5}{302}{subsubsection.14.2.4.1}}
\newlabel{id2559376}{{14.2.4.1}{302}{IDMAP, Active Directory, and MS Services for UNIX 3.5\relax }{subsubsection.14.2.4.1}{}}
\newlabel{id2559392}{{14.2.4.1}{302}{IDMAP, Active Directory, and MS Services for UNIX 3.5\relax }{subsubsection.14.2.4.1}{}}
\global \@namedef{@fn@label@id2559392}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {14.2.4.2}IDMAP, Active Directory and AD4UNIX}{302}{subsubsection.14.2.4.2}}
\newlabel{id2559403}{{14.2.4.2}{302}{IDMAP, Active Directory and AD4UNIX\relax }{subsubsection.14.2.4.2}{}}
\newlabel{id2559412}{{14.2.4.2}{302}{IDMAP, Active Directory and AD4UNIX\relax }{subsubsection.14.2.4.2}{}}
\global \@namedef{@fn@label@id2559412}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {15}\uppercase {User Rights and Privileges}}{303}{chapter.15}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~15}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {15}User Rights and Privileges}{}{303}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {15}User Rights and Privileges}{}{303}}}
\newlabel{rights}{{15}{303}{User Rights and Privileges\relax }{chapter.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.1}Rights Management Capabilities}{304}{section.15.1}}
\newlabel{id2553271}{{15.1}{304}{Rights Management Capabilities\relax }{section.15.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {15.1}{\ignorespaces Current Privilege Capabilities}}{305}{table.15.1}}
\newlabel{rp-privs}{{15.1}{305}{Rights Management Capabilities\relax }{table.15.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.1}Using the {``}net rpc rights{''} Utility}{305}{subsection.15.1.1}}
\newlabel{id2543509}{{15.1.1}{305}{Using the {``}net rpc rights{''} Utility\relax }{subsection.15.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.2}Description of Privileges}{307}{subsection.15.1.2}}
\newlabel{id2543074}{{15.1.2}{307}{Description of Privileges\relax }{subsection.15.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.3}Privileges Suppored by Windows 2000 Domain Controllers}{308}{subsection.15.1.3}}
\newlabel{id2551900}{{15.1.3}{308}{Privileges Suppored by Windows 2000 Domain Controllers\relax }{subsection.15.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.2}The Administrator Domain SID}{309}{section.15.2}}
\newlabel{id2552358}{{15.2}{309}{The Administrator Domain SID\relax }{section.15.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.3}Common Errors}{310}{section.15.3}}
\newlabel{id2560262}{{15.3}{310}{Common Errors\relax }{section.15.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.3.1}What Rights and Privileges Will Permit Windows Client Administration?}{310}{subsection.15.3.1}}
\newlabel{id2560268}{{15.3.1}{310}{What Rights and Privileges Will Permit Windows Client Administration?\relax }{subsection.15.3.1}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {16}\uppercase {File, Directory, and Share Access Controls}}{313}{chapter.16}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~16}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {16}File, Directory, and Share Access Controls}{}{313}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {16}File, Directory, and Share Access Controls}{}{313}}}
\newlabel{AccessControls}{{16}{313}{File, Directory, and Share Access Controls\relax }{chapter.16}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.1}Features and Benefits}{314}{section.16.1}}
\newlabel{id2526487}{{16.1}{314}{Features and Benefits\relax }{section.16.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.2}File System Access Controls}{315}{section.16.2}}
\newlabel{id2561320}{{16.2}{315}{File System Access Controls\relax }{section.16.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.1}MS Windows NTFS Comparison with UNIX File Systems}{315}{subsection.16.2.1}}
\newlabel{id2561335}{{16.2.1}{315}{MS Windows NTFS Comparison with UNIX File Systems\relax }{subsection.16.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.2}Managing Directories}{317}{subsection.16.2.2}}
\newlabel{id2462567}{{16.2.2}{317}{Managing Directories\relax }{subsection.16.2.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.1}{\ignorespaces Managing Directories with UNIX and Windows}}{318}{table.16.1}}
\newlabel{TOSH-Accesstbl}{{16.1}{318}{Managing Directories\relax }{table.16.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.3}File and Directory Access Control}{318}{subsection.16.2.3}}
\newlabel{id2462693}{{16.2.3}{318}{File and Directory Access Control\relax }{subsection.16.2.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.1}{\ignorespaces Overview of UNIX permissions field.}}{319}{figure.16.1}}
\newlabel{access1}{{16.1}{319}{File and Directory Access Control\relax }{figure.16.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {16.2.1}{\ignorespaces Example File}}{319}{example.16.2.1}}
\newlabel{access2}{{16.2.1}{319}{File and Directory Access Control\relax }{example.16.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.2.3.1}Protecting Directories and Files from Deletion}{320}{subsubsection.16.2.3.1}}
\newlabel{id2564284}{{16.2.3.1}{320}{Protecting Directories and Files from Deletion\relax }{subsubsection.16.2.3.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.3}Share Definition Access Controls}{322}{section.16.3}}
\newlabel{id2564520}{{16.3}{322}{Share Definition Access Controls\relax }{section.16.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.1}User- and Group-Based Controls}{322}{subsection.16.3.1}}
\newlabel{id2564550}{{16.3.1}{322}{User- and Group-Based Controls\relax }{subsection.16.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.2}File and Directory Permissions-Based Controls}{322}{subsection.16.3.2}}
\newlabel{id2564803}{{16.3.2}{322}{File and Directory Permissions-Based Controls\relax }{subsection.16.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.3}Miscellaneous Controls}{322}{subsection.16.3.3}}
\newlabel{id2565042}{{16.3.3}{322}{Miscellaneous Controls\relax }{subsection.16.3.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.2}{\ignorespaces User- and Group-Based Controls}}{323}{table.16.2}}
\newlabel{ugbc}{{16.2}{323}{User- and Group-Based Controls\relax }{table.16.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.4}Access Controls on Shares}{323}{section.16.4}}
\newlabel{id2565270}{{16.4}{323}{Access Controls on Shares\relax }{section.16.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.3}{\ignorespaces File and Directory Permission-Based Controls}}{324}{table.16.3}}
\newlabel{fdpbc}{{16.3}{324}{File and Directory Permissions-Based Controls\relax }{table.16.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.4.1}Share Permissions Management}{325}{subsection.16.4.1}}
\newlabel{id2565406}{{16.4.1}{325}{Share Permissions Management\relax }{subsection.16.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.4.1.1}Windows NT4 Workstation/Server}{325}{subsubsection.16.4.1.1}}
\newlabel{id2565418}{{16.4.1.1}{325}{Windows NT4 Workstation/Server\relax }{subsubsection.16.4.1.1}{}}
\newlabel{id2565457}{{16.4.1.1}{325}{Windows NT4 Workstation/Server\relax }{subsubsection.16.4.1.1}{}}
\global \@namedef{@fn@label@id2565457}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.4.1.2}Windows 200x/XP}{325}{subsubsection.16.4.1.2}}
\newlabel{id2565514}{{16.4.1.2}{325}{Windows 200x/XP\relax }{subsubsection.16.4.1.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.5}MS Windows Access Control Lists and UNIX Interoperability}{327}{section.16.5}}
\newlabel{id2565724}{{16.5}{327}{MS Windows Access Control Lists and UNIX Interoperability\relax }{section.16.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.1}Managing UNIX Permissions Using NT Security Dialogs}{327}{subsection.16.5.1}}
\newlabel{id2565730}{{16.5.1}{327}{Managing UNIX Permissions Using NT Security Dialogs\relax }{subsection.16.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.2}Viewing File Security on a Samba Share}{327}{subsection.16.5.2}}
\newlabel{id2565776}{{16.5.2}{327}{Viewing File Security on a Samba Share\relax }{subsection.16.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.3}Viewing File Ownership}{328}{subsection.16.5.3}}
\newlabel{id2565843}{{16.5.3}{328}{Viewing File Ownership\relax }{subsection.16.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.4}Viewing File or Directory Permissions}{328}{subsection.16.5.4}}
\newlabel{id2565969}{{16.5.4}{328}{Viewing File or Directory Permissions\relax }{subsection.16.5.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.4.1}File Permissions}{329}{subsubsection.16.5.4.1}}
\newlabel{id2566039}{{16.5.4.1}{329}{File Permissions\relax }{subsubsection.16.5.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.4.2}Directory Permissions}{329}{subsubsection.16.5.4.2}}
\newlabel{id2566126}{{16.5.4.2}{329}{Directory Permissions\relax }{subsubsection.16.5.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.5}Modifying File or Directory Permissions}{330}{subsection.16.5.5}}
\newlabel{id2566163}{{16.5.5}{330}{Modifying File or Directory Permissions\relax }{subsection.16.5.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.6}Interaction with the Standard Samba {``}create mask{''} Parameters}{332}{subsection.16.5.6}}
\newlabel{id2566306}{{16.5.6}{332}{Interaction with the Standard Samba {``}create mask{''} Parameters\relax }{subsection.16.5.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.7}Interaction with the Standard Samba File Attribute Mapping}{334}{subsection.16.5.7}}
\newlabel{id2566549}{{16.5.7}{334}{Interaction with the Standard Samba File Attribute Mapping\relax }{subsection.16.5.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.8}Windows NT/200X ACLs and POSIX ACLs Limitations}{334}{subsection.16.5.8}}
\newlabel{id2566620}{{16.5.8}{334}{Windows NT/200X ACLs and POSIX ACLs Limitations\relax }{subsection.16.5.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.8.1}UNIX POSIX ACL Overview}{335}{subsubsection.16.5.8.1}}
\newlabel{id2566677}{{16.5.8.1}{335}{UNIX POSIX ACL Overview\relax }{subsubsection.16.5.8.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.8.2}Mapping of Windows File ACLs to UNIX POSIX ACLs}{336}{subsubsection.16.5.8.2}}
\newlabel{id2566721}{{16.5.8.2}{336}{Mapping of Windows File ACLs to UNIX POSIX ACLs\relax }{subsubsection.16.5.8.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.8.3}Mapping of Windows Directory ACLs to UNIX POSIX ACLs}{337}{subsubsection.16.5.8.3}}
\newlabel{id2566978}{{16.5.8.3}{337}{Mapping of Windows Directory ACLs to UNIX POSIX ACLs\relax }{subsubsection.16.5.8.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.6}Common Errors}{337}{section.16.6}}
\newlabel{id2567002}{{16.6}{337}{Common Errors\relax }{section.16.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.6.1}Users Cannot Write to a Public Share}{337}{subsection.16.6.1}}
\newlabel{id2567013}{{16.6.1}{337}{Users Cannot Write to a Public Share\relax }{subsection.16.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.6.2}File Operations Done as {\em {root}} with {\em {force user}} Set}{339}{subsection.16.6.2}}
\newlabel{id2567307}{{16.6.2}{339}{File Operations Done as {\em {root}} with {\em {force user}} Set\relax }{subsection.16.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.6.3}MS Word with Samba Changes Owner of File}{339}{subsection.16.6.3}}
\newlabel{id2567335}{{16.6.3}{339}{MS Word with Samba Changes Owner of File\relax }{subsection.16.6.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.4}{\ignorespaces Other Controls}}{341}{table.16.4}}
\newlabel{mcoc}{{16.4}{341}{Miscellaneous Controls\relax }{table.16.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.5}{\ignorespaces How Windows File ACLs Map to UNIX POSIX File ACLs}}{342}{table.16.5}}
\newlabel{fdsacls}{{16.5}{342}{Mapping of Windows File ACLs to UNIX POSIX ACLs\relax }{table.16.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {17}\uppercase {File and Record Locking}}{343}{chapter.17}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~17}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {17}File and Record Locking}{}{343}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {17}File and Record Locking}{}{343}}}
\newlabel{locking}{{17}{343}{File and Record Locking\relax }{chapter.17}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.1}Features and Benefits}{343}{section.17.1}}
\newlabel{id2544437}{{17.1}{343}{Features and Benefits\relax }{section.17.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.2}Discussion}{344}{section.17.2}}
\newlabel{id2544522}{{17.2}{344}{Discussion\relax }{section.17.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.2.1}Opportunistic Locking Overview}{345}{subsection.17.2.1}}
\newlabel{id2526164}{{17.2.1}{345}{Opportunistic Locking Overview\relax }{subsection.17.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.1}Exclusively Accessed Shares}{348}{subsubsection.17.2.1.1}}
\newlabel{id2559891}{{17.2.1.1}{348}{Exclusively Accessed Shares\relax }{subsubsection.17.2.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.2}Multiple-Accessed Shares or Files}{348}{subsubsection.17.2.1.2}}
\newlabel{id2559912}{{17.2.1.2}{348}{Multiple-Accessed Shares or Files\relax }{subsubsection.17.2.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.3}UNIX or NFS Client-Accessed Files}{348}{subsubsection.17.2.1.3}}
\newlabel{id2559937}{{17.2.1.3}{348}{UNIX or NFS Client-Accessed Files\relax }{subsubsection.17.2.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.4}Slow and/or Unreliable Networks}{349}{subsubsection.17.2.1.4}}
\newlabel{id2559973}{{17.2.1.4}{349}{Slow and/or Unreliable Networks\relax }{subsubsection.17.2.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.5}Multiuser Databases}{349}{subsubsection.17.2.1.5}}
\newlabel{id2560022}{{17.2.1.5}{349}{Multiuser Databases\relax }{subsubsection.17.2.1.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.6}PDM Data Shares}{349}{subsubsection.17.2.1.6}}
\newlabel{id2560064}{{17.2.1.6}{349}{PDM Data Shares\relax }{subsubsection.17.2.1.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.7}Beware of Force User}{350}{subsubsection.17.2.1.7}}
\newlabel{id2560123}{{17.2.1.7}{350}{Beware of Force User\relax }{subsubsection.17.2.1.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.8}Advanced Samba Oplocks Parameters}{350}{subsubsection.17.2.1.8}}
\newlabel{id2563199}{{17.2.1.8}{350}{Advanced Samba Oplocks Parameters\relax }{subsubsection.17.2.1.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.2.1.9}Mission-Critical, High-Availability}{350}{subsubsection.17.2.1.9}}
\newlabel{id2563263}{{17.2.1.9}{350}{Mission-Critical, High-Availability\relax }{subsubsection.17.2.1.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.3}Samba Oplocks Control}{351}{section.17.3}}
\newlabel{id2563321}{{17.3}{351}{Samba Oplocks Control\relax }{section.17.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.3.1}Example Configuration}{352}{subsection.17.3.1}}
\newlabel{id2563419}{{17.3.1}{352}{Example Configuration\relax }{subsection.17.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.3.1.1}Disabling Oplocks}{352}{subsubsection.17.3.1.1}}
\newlabel{id2563430}{{17.3.1.1}{352}{Disabling Oplocks\relax }{subsubsection.17.3.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.3.1.2}Disabling Kernel Oplocks}{353}{subsubsection.17.3.1.2}}
\newlabel{id2563502}{{17.3.1.2}{353}{Disabling Kernel Oplocks\relax }{subsubsection.17.3.1.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {17.3.1}{\ignorespaces Share with Some Files Oplocked}}{354}{example.17.3.1}}
\newlabel{far1}{{17.3.1}{354}{Disabling Kernel Oplocks\relax }{example.17.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {17.3.2}{\ignorespaces Configuration with Oplock Break Contention Limit}}{354}{example.17.3.2}}
\newlabel{far3}{{17.3.2}{354}{Disabling Kernel Oplocks\relax }{example.17.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.4}MS Windows Oplocks and Caching Controls}{354}{section.17.4}}
\newlabel{id2567525}{{17.4}{354}{MS Windows Oplocks and Caching Controls\relax }{section.17.4}{}}
\newlabel{id2567557}{{17.4}{355}{MS Windows Oplocks and Caching Controls\relax }{section.17.4}{}}
\global \@namedef{@fn@label@id2567557}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.4.1}Workstation Service Entries}{357}{subsection.17.4.1}}
\newlabel{id2567711}{{17.4.1}{357}{Workstation Service Entries\relax }{subsection.17.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.4.2}Server Service Entries}{358}{subsection.17.4.2}}
\newlabel{id2567732}{{17.4.2}{358}{Server Service Entries\relax }{subsection.17.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.5}Persistent Data Corruption}{359}{section.17.5}}
\newlabel{id2567796}{{17.5}{359}{Persistent Data Corruption\relax }{section.17.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17.6}Common Errors}{359}{section.17.6}}
\newlabel{id2567821}{{17.6}{359}{Common Errors\relax }{section.17.6}{}}
\newlabel{id2567876}{{17.6}{360}{Common Errors\relax }{section.17.6}{}}
\global \@namedef{@fn@label@id2567876}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.6.1}locking.tdb Error Messages}{360}{subsection.17.6.1}}
\newlabel{id2567887}{{17.6.1}{360}{locking.tdb Error Messages\relax }{subsection.17.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.6.2}Problems Saving Files in MS Office on Windows XP}{360}{subsection.17.6.2}}
\newlabel{id2567916}{{17.6.2}{360}{Problems Saving Files in MS Office on Windows XP\relax }{subsection.17.6.2}{}}
\newlabel{id2567932}{{17.6.2}{360}{Problems Saving Files in MS Office on Windows XP\relax }{subsection.17.6.2}{}}
\global \@namedef{@fn@label@id2567932}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.6.3}Long Delays Deleting Files over Network with XP SP1}{360}{subsection.17.6.3}}
\newlabel{id2567940}{{17.6.3}{360}{Long Delays Deleting Files over Network with XP SP1\relax }{subsection.17.6.3}{}}
\newlabel{id2567962}{{17.6.3}{360}{Long Delays Deleting Files over Network with XP SP1\relax }{subsection.17.6.3}{}}
\global \@namedef{@fn@label@id2567962}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {17.7}Additional Reading}{361}{section.17.7}}
\newlabel{id2567971}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\newlabel{id2567980}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\global \@namedef{@fn@label@id2567980}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2567992}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\global \@namedef{@fn@label@id2567992}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2568016}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\global \@namedef{@fn@label@id2568016}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2568038}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\global \@namedef{@fn@label@id2568038}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\newlabel{id2568061}{{17.7}{361}{Additional Reading\relax }{section.17.7}{}}
\global \@namedef{@fn@label@id2568061}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {18}\uppercase {Securing Samba}}{363}{chapter.18}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~18}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {18}Securing Samba}{}{363}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {18}Securing Samba}{}{363}}}
\newlabel{securing-samba}{{18}{363}{Securing Samba\relax }{chapter.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18.1}Introduction}{363}{section.18.1}}
\newlabel{id2475218}{{18.1}{363}{Introduction\relax }{section.18.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18.2}Features and Benefits}{363}{section.18.2}}
\newlabel{id2528937}{{18.2}{363}{Features and Benefits\relax }{section.18.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18.3}Technical Discussion of Protective Measures and Issues}{364}{section.18.3}}
\newlabel{id2526280}{{18.3}{364}{Technical Discussion of Protective Measures and Issues\relax }{section.18.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.1}Using Host-Based Protection}{364}{subsection.18.3.1}}
\newlabel{id2526297}{{18.3.1}{364}{Using Host-Based Protection\relax }{subsection.18.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.2}User-Based Protection}{365}{subsection.18.3.2}}
\newlabel{id2562533}{{18.3.2}{365}{User-Based Protection\relax }{subsection.18.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.3}Using Interface Protection}{365}{subsection.18.3.3}}
\newlabel{id2562585}{{18.3.3}{365}{Using Interface Protection\relax }{subsection.18.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.4}Using a Firewall}{366}{subsection.18.3.4}}
\newlabel{firewallports}{{18.3.4}{366}{Using a Firewall\relax }{subsection.18.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.5}Using IPC\$ Share-Based Denials}{366}{subsection.18.3.5}}
\newlabel{id2564122}{{18.3.5}{366}{Using IPC\$ Share-Based Denials\relax }{subsection.18.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3.6}NTLMv2 Security}{367}{subsection.18.3.6}}
\newlabel{id2525615}{{18.3.6}{367}{NTLMv2 Security\relax }{subsection.18.3.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18.4}Upgrading Samba}{368}{section.18.4}}
\newlabel{id2525674}{{18.4}{368}{Upgrading Samba\relax }{section.18.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18.5}Common Errors}{368}{section.18.5}}
\newlabel{id2525717}{{18.5}{368}{Common Errors\relax }{section.18.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.5.1}Smbclient Works on Localhost, but the Network Is Dead}{368}{subsection.18.5.1}}
\newlabel{id2525733}{{18.5.1}{368}{Smbclient Works on Localhost, but the Network Is Dead\relax }{subsection.18.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.5.2}Why Can Users Access Other Users' Home Directories?}{368}{subsection.18.5.2}}
\newlabel{id2525760}{{18.5.2}{368}{Why Can Users Access Other Users' Home Directories?\relax }{subsection.18.5.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {19}\uppercase {Interdomain Trust Relationships}}{371}{chapter.19}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~19}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {19}Interdomain Trust Relationships}{}{371}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {19}Interdomain Trust Relationships}{}{371}}}
\newlabel{InterdomainTrusts}{{19}{371}{Interdomain Trust Relationships\relax }{chapter.19}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.1}Features and Benefits}{372}{section.19.1}}
\newlabel{id2569791}{{19.1}{372}{Features and Benefits\relax }{section.19.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.2}Trust Relationship Background}{372}{section.19.2}}
\newlabel{id2569865}{{19.2}{372}{Trust Relationship Background\relax }{section.19.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.3}Native MS Windows NT4 Trusts Configuration}{373}{section.19.3}}
\newlabel{id2562955}{{19.3}{373}{Native MS Windows NT4 Trusts Configuration\relax }{section.19.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.3.1}Creating an NT4 Domain Trust}{373}{subsection.19.3.1}}
\newlabel{id2562988}{{19.3.1}{373}{Creating an NT4 Domain Trust\relax }{subsection.19.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.3.2}Completing an NT4 Domain Trust}{374}{subsection.19.3.2}}
\newlabel{id2562119}{{19.3.2}{374}{Completing an NT4 Domain Trust\relax }{subsection.19.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.3.3}Interdomain Trust Facilities}{374}{subsection.19.3.3}}
\newlabel{id2562206}{{19.3.3}{374}{Interdomain Trust Facilities\relax }{subsection.19.3.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {19.1}{\ignorespaces Trusts overview.}}{374}{figure.19.1}}
\newlabel{trusts1}{{19.1}{374}{Interdomain Trust Facilities\relax }{figure.19.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.4}Configuring Samba NT-Style Domain Trusts}{375}{section.19.4}}
\newlabel{id2562398}{{19.4}{375}{Configuring Samba NT-Style Domain Trusts\relax }{section.19.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.4.1}Samba as the Trusted Domain}{376}{subsection.19.4.1}}
\newlabel{samba-trusted-domain}{{19.4.1}{376}{Samba as the Trusted Domain\relax }{subsection.19.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.4.2}Samba as the Trusting Domain}{377}{subsection.19.4.2}}
\newlabel{id2560930}{{19.4.2}{377}{Samba as the Trusting Domain\relax }{subsection.19.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.5}NT4-Style Domain Trusts with Windows 2000}{378}{section.19.5}}
\newlabel{id2561131}{{19.5}{378}{NT4-Style Domain Trusts with Windows 2000\relax }{section.19.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19.6}Common Errors}{378}{section.19.6}}
\newlabel{id2570887}{{19.6}{378}{Common Errors\relax }{section.19.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.6.1}Browsing of Trusted Domain Fails}{378}{subsection.19.6.1}}
\newlabel{id2570899}{{19.6.1}{378}{Browsing of Trusted Domain Fails\relax }{subsection.19.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.6.2}Problems with LDAP ldapsam and Older Versions of smbldap-tools}{379}{subsection.19.6.2}}
\newlabel{id2510142}{{19.6.2}{379}{Problems with LDAP ldapsam and Older Versions of smbldap-tools\relax }{subsection.19.6.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {20}\uppercase {Hosting a Microsoft Distributed File System Tree}}{381}{chapter.20}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~20}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {20}Hosting a Microsoft Distributed File System Tree}{}{381}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {20}Hosting a Microsoft Distributed File System Tree}{}{381}}}
\newlabel{msdfs}{{20}{381}{Hosting a Microsoft Distributed File System Tree\relax }{chapter.20}{}}
\@writefile{toc}{\contentsline {section}{\numberline {20.1}Features and Benefits}{381}{section.20.1}}
\newlabel{id2542788}{{20.1}{381}{Features and Benefits\relax }{section.20.1}{}}
\newlabel{id2530877}{{20.1}{381}{Features and Benefits\relax }{section.20.1}{}}
\global \@namedef{@fn@label@id2530877}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {20.1.1}{\ignorespaces smb.conf with DFS Configured}}{382}{example.20.1.1}}
\newlabel{dfscfg}{{20.1.1}{382}{Features and Benefits\relax }{example.20.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {20.2}Common Errors}{382}{section.20.2}}
\newlabel{id2542584}{{20.2}{382}{Common Errors\relax }{section.20.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.2.1}MSDFS UNIX Path Is Case-Critical}{383}{subsection.20.2.1}}
\newlabel{id2542619}{{20.2.1}{383}{MSDFS UNIX Path Is Case-Critical\relax }{subsection.20.2.1}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {21}\uppercase {Classical Printing Support}}{385}{chapter.21}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~21}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {21}Classical Printing Support}{}{385}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {21}Classical Printing Support}{}{385}}}
\newlabel{classicalprinting}{{21}{385}{Classical Printing Support\relax }{chapter.21}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.1}Features and Benefits}{385}{section.21.1}}
\newlabel{id2569051}{{21.1}{385}{Features and Benefits\relax }{section.21.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.2}Technical Introduction}{386}{section.21.2}}
\newlabel{id2569252}{{21.2}{386}{Technical Introduction\relax }{section.21.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.2.1}Client to Samba Print Job Processing}{387}{subsection.21.2.1}}
\newlabel{id2561703}{{21.2.1}{387}{Client to Samba Print Job Processing\relax }{subsection.21.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.2.2}Printing-Related Configuration Parameters}{387}{subsection.21.2.2}}
\newlabel{id2561762}{{21.2.2}{387}{Printing-Related Configuration Parameters\relax }{subsection.21.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.3}Simple Print Configuration}{388}{section.21.3}}
\newlabel{id2561862}{{21.3}{388}{Simple Print Configuration\relax }{section.21.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {21.3.1}{\ignorespaces Simple Configuration with BSD Printing}}{388}{example.21.3.1}}
\newlabel{simpleprc}{{21.3.1}{388}{Simple Print Configuration\relax }{example.21.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.3.1}Verifying Configuration with testparm}{389}{subsection.21.3.1}}
\newlabel{id2541988}{{21.3.1}{389}{Verifying Configuration with testparm\relax }{subsection.21.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.3.2}Rapid Configuration Validation}{390}{subsection.21.3.2}}
\newlabel{id2542191}{{21.3.2}{390}{Rapid Configuration Validation\relax }{subsection.21.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.4}Extended Printing Configuration}{393}{section.21.4}}
\newlabel{id2580894}{{21.4}{393}{Extended Printing Configuration\relax }{section.21.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.4.1}Detailed Explanation Settings}{393}{subsection.21.4.1}}
\newlabel{id2581155}{{21.4.1}{393}{Detailed Explanation Settings\relax }{subsection.21.4.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {21.4.1}{\ignorespaces Extended BSD Printing Configuration}}{394}{example.21.4.1}}
\newlabel{extbsdpr}{{21.4.1}{394}{Extended Printing Configuration\relax }{example.21.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.1}The [global] Section}{394}{subsubsection.21.4.1.1}}
\newlabel{id2581175}{{21.4.1.1}{394}{The [global] Section\relax }{subsubsection.21.4.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.2}The [printers] Section}{396}{subsubsection.21.4.1.2}}
\newlabel{ptrsect}{{21.4.1.2}{396}{The [printers] Section\relax }{subsubsection.21.4.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.3}Any [my\_printer\_name] Section}{398}{subsubsection.21.4.1.3}}
\newlabel{id2582031}{{21.4.1.3}{398}{Any [my\_printer\_name] Section\relax }{subsubsection.21.4.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.4}Print Commands}{399}{subsubsection.21.4.1.4}}
\newlabel{id2582244}{{21.4.1.4}{399}{Print Commands\relax }{subsubsection.21.4.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.5}Default UNIX System Printing Commands}{400}{subsubsection.21.4.1.5}}
\newlabel{id2582308}{{21.4.1.5}{400}{Default UNIX System Printing Commands\relax }{subsubsection.21.4.1.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.4.1.6}Custom Print Commands}{400}{subsubsection.21.4.1.6}}
\newlabel{id2582715}{{21.4.1.6}{400}{Custom Print Commands\relax }{subsubsection.21.4.1.6}{}}
\@writefile{lot}{\contentsline {table}{\numberline {21.1}{\ignorespaces Default Printing Settings}}{401}{table.21.1}}
\newlabel{printOptions}{{21.1}{401}{Default UNIX System Printing Commands\relax }{table.21.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.5}Printing Developments Since Samba-2.2}{402}{section.21.5}}
\newlabel{cups-msrpc}{{21.5}{402}{Printing Developments Since Samba-2.2\relax }{section.21.5}{}}
\newlabel{id2583126}{{21.5}{403}{Printing Developments Since Samba-2.2\relax }{section.21.5}{}}
\global \@namedef{@fn@label@id2583126}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2583170}{{21.5}{403}{Printing Developments Since Samba-2.2\relax }{section.21.5}{}}
\global \@namedef{@fn@label@id2583170}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.5.1}Point'n'Print Client Drivers on Samba Servers}{404}{subsection.21.5.1}}
\newlabel{id2583294}{{21.5.1}{404}{Point'n'Print Client Drivers on Samba Servers\relax }{subsection.21.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.5.2}The Obsoleted [printer\$] Section}{404}{subsection.21.5.2}}
\newlabel{id2583450}{{21.5.2}{404}{The Obsoleted [printer\$] Section\relax }{subsection.21.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.5.3}Creating the [print\$] Share}{405}{subsection.21.5.3}}
\newlabel{id2583558}{{21.5.3}{405}{Creating the [print\$] Share\relax }{subsection.21.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.5.4}[print\$] Stanza Parameters}{405}{subsection.21.5.4}}
\newlabel{id2583691}{{21.5.4}{405}{[print\$] Stanza Parameters\relax }{subsection.21.5.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {21.5.1}{\ignorespaces [print\$] Example}}{406}{example.21.5.1}}
\newlabel{prtdollar}{{21.5.1}{406}{Creating the [print\$] Share\relax }{example.21.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.5.5}The [print\$] Share Directory}{408}{subsection.21.5.5}}
\newlabel{id2583958}{{21.5.5}{408}{The [print\$] Share Directory\relax }{subsection.21.5.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.6}Installing Drivers into [print\$]}{409}{section.21.6}}
\newlabel{id2584093}{{21.6}{409}{Installing Drivers into [print\$]\relax }{section.21.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.6.1}Add Printer Wizard Driver Installation}{409}{subsection.21.6.1}}
\newlabel{id2584186}{{21.6.1}{409}{Add Printer Wizard Driver Installation\relax }{subsection.21.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.6.2}Installing Print Drivers Using rpcclient}{410}{subsection.21.6.2}}
\newlabel{inst-rpc}{{21.6.2}{410}{Installing Print Drivers Using rpcclient\relax }{subsection.21.6.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.1}Identifying Driver Files}{411}{subsubsection.21.6.2.1}}
\newlabel{id2584451}{{21.6.2.1}{411}{Identifying Driver Files\relax }{subsubsection.21.6.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.2}Obtaining Driver Files from Windows Client [print\$] Shares}{413}{subsubsection.21.6.2.2}}
\newlabel{id2584866}{{21.6.2.2}{413}{Obtaining Driver Files from Windows Client [print\$] Shares\relax }{subsubsection.21.6.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.3}Installing Driver Files into [print\$]}{414}{subsubsection.21.6.2.3}}
\newlabel{id2585012}{{21.6.2.3}{414}{Installing Driver Files into [print\$]\relax }{subsubsection.21.6.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.4}smbclient to Confirm Driver Installation}{415}{subsubsection.21.6.2.4}}
\newlabel{id2585231}{{21.6.2.4}{415}{smbclient to Confirm Driver Installation\relax }{subsubsection.21.6.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.5}Running rpcclient with adddriver}{417}{subsubsection.21.6.2.5}}
\newlabel{id2585371}{{21.6.2.5}{417}{Running rpcclient with adddriver\relax }{subsubsection.21.6.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.6}Checking adddriver Completion}{418}{subsubsection.21.6.2.6}}
\newlabel{id2585497}{{21.6.2.6}{418}{Checking adddriver Completion\relax }{subsubsection.21.6.2.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.7}Check Samba for Driver Recognition}{419}{subsubsection.21.6.2.7}}
\newlabel{id2585603}{{21.6.2.7}{419}{Check Samba for Driver Recognition\relax }{subsubsection.21.6.2.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.8}Specific Driver Name Flexibility}{420}{subsubsection.21.6.2.8}}
\newlabel{id2585835}{{21.6.2.8}{420}{Specific Driver Name Flexibility\relax }{subsubsection.21.6.2.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {21.6.2.9}Running rpcclient with setdriver}{421}{subsubsection.21.6.2.9}}
\newlabel{id2585951}{{21.6.2.9}{421}{Running rpcclient with setdriver\relax }{subsubsection.21.6.2.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.7}Client Driver Installation Procedure}{422}{section.21.7}}
\newlabel{id2586096}{{21.7}{422}{Client Driver Installation Procedure\relax }{section.21.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.7.1}First Client Driver Installation}{422}{subsection.21.7.1}}
\newlabel{id2586114}{{21.7.1}{422}{First Client Driver Installation\relax }{subsection.21.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.7.2}Setting Device Modes on New Printers}{423}{subsection.21.7.2}}
\newlabel{prt-modeset}{{21.7.2}{423}{Setting Device Modes on New Printers\relax }{subsection.21.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.7.3}Additional Client Driver Installation}{425}{subsection.21.7.3}}
\newlabel{id2586672}{{21.7.3}{425}{Additional Client Driver Installation\relax }{subsection.21.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.7.4}Always Make First Client Connection as root or {``}printer admin{''}}{426}{subsection.21.7.4}}
\newlabel{id2586794}{{21.7.4}{426}{Always Make First Client Connection as root or {``}printer admin{''}\relax }{subsection.21.7.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.8}Other Gotchas}{427}{section.21.8}}
\newlabel{id2586955}{{21.8}{427}{Other Gotchas\relax }{section.21.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.1}Setting Default Print Options for Client Drivers}{427}{subsection.21.8.1}}
\newlabel{id2586977}{{21.8.1}{427}{Setting Default Print Options for Client Drivers\relax }{subsection.21.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.2}Supporting Large Numbers of Printers}{429}{subsection.21.8.2}}
\newlabel{id2587349}{{21.8.2}{429}{Supporting Large Numbers of Printers\relax }{subsection.21.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.3}Adding New Printers with the Windows NT APW}{431}{subsection.21.8.3}}
\newlabel{id2587610}{{21.8.3}{431}{Adding New Printers with the Windows NT APW\relax }{subsection.21.8.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.4}Error Message: {``}Cannot connect under a different Name{''}}{433}{subsection.21.8.4}}
\newlabel{id2587821}{{21.8.4}{433}{Error Message: {``}Cannot connect under a different Name{''}\relax }{subsection.21.8.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.5}Take Care When Assembling Driver Files}{434}{subsection.21.8.5}}
\newlabel{id2587939}{{21.8.5}{434}{Take Care When Assembling Driver Files\relax }{subsection.21.8.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.6}Samba and Printer Ports}{437}{subsection.21.8.6}}
\newlabel{id2588192}{{21.8.6}{437}{Samba and Printer Ports\relax }{subsection.21.8.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.8.7}Avoiding Common Client Driver Misconfiguration}{438}{subsection.21.8.7}}
\newlabel{id2588296}{{21.8.7}{438}{Avoiding Common Client Driver Misconfiguration\relax }{subsection.21.8.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.9}The Imprints Toolset}{438}{section.21.9}}
\newlabel{id2588332}{{21.9}{438}{The Imprints Toolset\relax }{section.21.9}{}}
\newlabel{id2588349}{{21.9}{438}{The Imprints Toolset\relax }{section.21.9}{}}
\global \@namedef{@fn@label@id2588349}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2588372}{{21.9}{438}{The Imprints Toolset\relax }{section.21.9}{}}
\global \@namedef{@fn@label@id2588372}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.9.1}What Is Imprints?}{438}{subsection.21.9.1}}
\newlabel{id2588380}{{21.9.1}{438}{What Is Imprints?\relax }{subsection.21.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.9.2}Creating Printer Driver Packages}{439}{subsection.21.9.2}}
\newlabel{id2588416}{{21.9.2}{439}{Creating Printer Driver Packages\relax }{subsection.21.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.9.3}The Imprints Server}{439}{subsection.21.9.3}}
\newlabel{id2588433}{{21.9.3}{439}{The Imprints Server\relax }{subsection.21.9.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.9.4}The Installation Client}{439}{subsection.21.9.4}}
\newlabel{id2588452}{{21.9.4}{439}{The Installation Client\relax }{subsection.21.9.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.10}Adding Network Printers without User Interaction}{440}{section.21.10}}
\newlabel{id2588592}{{21.10}{440}{Adding Network Printers without User Interaction\relax }{section.21.10}{}}
\newlabel{id2588608}{{21.10}{440}{Adding Network Printers without User Interaction\relax }{section.21.10}{}}
\global \@namedef{@fn@label@id2588608}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {21.11}The addprinter Command}{442}{section.21.11}}
\newlabel{id2588877}{{21.11}{442}{The addprinter Command\relax }{section.21.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21.12}Migration of Classical Printing to Samba}{443}{section.21.12}}
\newlabel{id2588917}{{21.12}{443}{Migration of Classical Printing to Samba\relax }{section.21.12}{}}
\newlabel{id2589044}{{21.12}{444}{Migration of Classical Printing to Samba\relax }{section.21.12}{}}
\global \@namedef{@fn@label@id2589044}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {21.13}Publishing Printer Information in Active Directory or LDAP}{444}{section.21.13}}
\newlabel{id2589064}{{21.13}{444}{Publishing Printer Information in Active Directory or LDAP\relax }{section.21.13}{}}
\newlabel{id2589085}{{21.13}{444}{Publishing Printer Information in Active Directory or LDAP\relax }{section.21.13}{}}
\global \@namedef{@fn@label@id2589085}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {21.14}Common Errors}{444}{section.21.14}}
\newlabel{id2589094}{{21.14}{444}{Common Errors\relax }{section.21.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.14.1}I Give My Root Password but I Do Not Get Access}{444}{subsection.21.14.1}}
\newlabel{id2589100}{{21.14.1}{444}{I Give My Root Password but I Do Not Get Access\relax }{subsection.21.14.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.14.2}My Print Jobs Get Spooled into the Spooling Directory, but Then Get Lost}{444}{subsection.21.14.2}}
\newlabel{id2589143}{{21.14.2}{444}{My Print Jobs Get Spooled into the Spooling Directory, but Then Get Lost\relax }{subsection.21.14.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {22}\uppercase {CUPS Printing Support}}{447}{chapter.22}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~22}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {22}CUPS Printing Support}{}{447}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {22}CUPS Printing Support}{}{447}}}
\newlabel{CUPS-printing}{{22}{447}{CUPS Printing Support\relax }{chapter.22}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.1}Introduction}{447}{section.22.1}}
\newlabel{id2577656}{{22.1}{447}{Introduction\relax }{section.22.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.1.1}Features and Benefits}{447}{subsection.22.1.1}}
\newlabel{id2577662}{{22.1.1}{447}{Features and Benefits\relax }{subsection.22.1.1}{}}
\newlabel{id2577677}{{22.1.1}{447}{Features and Benefits\relax }{subsection.22.1.1}{}}
\global \@namedef{@fn@label@id2577677}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.1.2}Overview}{447}{subsection.22.1.2}}
\newlabel{id2577721}{{22.1.2}{447}{Overview\relax }{subsection.22.1.2}{}}
\newlabel{id2430554}{{22.1.2}{448}{Overview\relax }{subsection.22.1.2}{}}
\global \@namedef{@fn@label@id2430554}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {22.2}Basic CUPS Support Configuration}{448}{section.22.2}}
\newlabel{id2489248}{{22.2}{448}{Basic CUPS Support Configuration\relax }{section.22.2}{}}
\newlabel{id2570350}{{22.2}{448}{Basic CUPS Support Configuration\relax }{section.22.2}{}}
\global \@namedef{@fn@label@id2570350}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.2.1}Linking smbd with libcups.so}{448}{subsection.22.2.1}}
\newlabel{id2570359}{{22.2.1}{448}{Linking smbd with libcups.so\relax }{subsection.22.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.2.2}Simple smb.\penalty \z@ {}conf Settings for CUPS}{449}{subsection.22.2.2}}
\newlabel{id2569332}{{22.2.2}{449}{Simple smb.\dbz {}conf Settings for CUPS\relax }{subsection.22.2.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {22.2.1}{\ignorespaces Simplest Printing-Related smb.conf}}{450}{example.22.2.1}}
\newlabel{cups-exam-simple}{{22.2.1}{450}{Simple smb.\dbz {}conf Settings for CUPS\relax }{example.22.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.2.3}More Complex CUPS smb.\penalty \z@ {}conf Settings}{450}{subsection.22.2.3}}
\newlabel{id2569498}{{22.2.3}{450}{More Complex CUPS smb.\dbz {}conf Settings\relax }{subsection.22.2.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {22.2.2}{\ignorespaces Overriding Global CUPS Settings for One Printer}}{451}{example.22.2.2}}
\newlabel{overridesettings}{{22.2.2}{451}{More Complex CUPS smb.\dbz {}conf Settings\relax }{example.22.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.3}Advanced Configuration}{451}{section.22.3}}
\newlabel{id2579563}{{22.3}{451}{Advanced Configuration\relax }{section.22.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.3.1}Central Spooling vs. {``}Peer-to-Peer{''} Printing}{452}{subsection.22.3.1}}
\newlabel{id2579581}{{22.3.1}{452}{Central Spooling vs. {``}Peer-to-Peer{''} Printing\relax }{subsection.22.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.3.2}Raw Print Serving: Vendor Drivers on Windows Clients}{452}{subsection.22.3.2}}
\newlabel{id2579633}{{22.3.2}{452}{Raw Print Serving: Vendor Drivers on Windows Clients\relax }{subsection.22.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.3.3}Installation of Windows Client Drivers}{453}{subsection.22.3.3}}
\newlabel{id2579854}{{22.3.3}{453}{Installation of Windows Client Drivers\relax }{subsection.22.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.3.4}Explicitly Enable {``}raw{''} Printing for {\em {application/octet-stream}}}{454}{subsection.22.3.4}}
\newlabel{cups-raw}{{22.3.4}{454}{Explicitly Enable {``}raw{''} Printing for {\em {application/octet-stream}}\relax }{subsection.22.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.3.5}Driver Upload Methods}{455}{subsection.22.3.5}}
\newlabel{id2597475}{{22.3.5}{455}{Driver Upload Methods\relax }{subsection.22.3.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.4}Advanced Intelligent Printing with PostScript Driver Download}{456}{section.22.4}}
\newlabel{id2597584}{{22.4}{456}{Advanced Intelligent Printing with PostScript Driver Download\relax }{section.22.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.1}GDI on Windows, PostScript on UNIX}{456}{subsection.22.4.1}}
\newlabel{gdipost}{{22.4.1}{456}{GDI on Windows, PostScript on UNIX\relax }{subsection.22.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.2}Windows Drivers, GDI, and EMF}{457}{subsection.22.4.2}}
\newlabel{id2597766}{{22.4.2}{457}{Windows Drivers, GDI, and EMF\relax }{subsection.22.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.3}UNIX Printfile Conversion and GUI Basics}{457}{subsection.22.4.3}}
\newlabel{id2597905}{{22.4.3}{457}{UNIX Printfile Conversion and GUI Basics\relax }{subsection.22.4.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.1}{\ignorespaces Windows Printing to a Local Printer.}}{458}{figure.22.1}}
\newlabel{1small}{{22.1}{458}{Windows Drivers, GDI, and EMF\relax }{figure.22.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.4}PostScript and Ghostscript}{459}{subsection.22.4.4}}
\newlabel{post-and-ghost}{{22.4.4}{459}{PostScript and Ghostscript\relax }{subsection.22.4.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.2}{\ignorespaces Printing to a PostScript Printer.}}{460}{figure.22.2}}
\newlabel{2small}{{22.2}{460}{PostScript and Ghostscript\relax }{figure.22.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.5}Ghostscript: The Software RIP for Non-PostScript Printers}{460}{subsection.22.4.5}}
\newlabel{id2598214}{{22.4.5}{460}{Ghostscript: The Software RIP for Non-PostScript Printers\relax }{subsection.22.4.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.3}{\ignorespaces Ghostscript as a RIP for Non-PostScript Printers.}}{460}{figure.22.3}}
\newlabel{3small}{{22.3}{460}{Ghostscript: The Software RIP for Non-PostScript Printers\relax }{figure.22.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.6}PostScript Printer Description (PPD) Specification}{461}{subsection.22.4.6}}
\newlabel{id2598334}{{22.4.6}{461}{PostScript Printer Description (PPD) Specification\relax }{subsection.22.4.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.7}Using Windows-Formatted Vendor PPDs}{462}{subsection.22.4.7}}
\newlabel{id2598415}{{22.4.7}{462}{Using Windows-Formatted Vendor PPDs\relax }{subsection.22.4.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.4.8}CUPS Also Uses PPDs for Non-PostScript Printers}{463}{subsection.22.4.8}}
\newlabel{id2598529}{{22.4.8}{463}{CUPS Also Uses PPDs for Non-PostScript Printers\relax }{subsection.22.4.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.5}The CUPS Filtering Architecture}{464}{section.22.5}}
\newlabel{id2598567}{{22.5}{464}{The CUPS Filtering Architecture\relax }{section.22.5}{}}
\newlabel{id2598718}{{22.5}{464}{The CUPS Filtering Architecture\relax }{section.22.5}{}}
\global \@namedef{@fn@label@id2598718}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2598759}{{22.5}{465}{The CUPS Filtering Architecture\relax }{section.22.5}{}}
\global \@namedef{@fn@label@id2598759}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.1}MIME Types and CUPS Filters}{465}{subsection.22.5.1}}
\newlabel{id2598787}{{22.5.1}{465}{MIME Types and CUPS Filters\relax }{subsection.22.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.2}MIME Type Conversion Rules}{466}{subsection.22.5.2}}
\newlabel{id2599180}{{22.5.2}{466}{MIME Type Conversion Rules\relax }{subsection.22.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.3}Filtering Overview}{467}{subsection.22.5.3}}
\newlabel{id2599367}{{22.5.3}{467}{Filtering Overview\relax }{subsection.22.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.5.3.1}Filter Requirements}{467}{subsubsection.22.5.3.1}}
\newlabel{id2599405}{{22.5.3.1}{467}{Filter Requirements\relax }{subsubsection.22.5.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.4}Prefilters}{468}{subsection.22.5.4}}
\newlabel{id2599516}{{22.5.4}{468}{Prefilters\relax }{subsection.22.5.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.5}pstops}{468}{subsection.22.5.5}}
\newlabel{id2599667}{{22.5.5}{468}{pstops\relax }{subsection.22.5.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.4}{\ignorespaces Prefiltering in CUPS to Form PostScript.}}{469}{figure.22.4}}
\newlabel{4small}{{22.4}{469}{Prefilters\relax }{figure.22.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.5}{\ignorespaces Adding Device-Specific Print Options.}}{469}{figure.22.5}}
\newlabel{5small}{{22.5}{469}{pstops\relax }{figure.22.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.6}pstoraster}{469}{subsection.22.5.6}}
\newlabel{id2599800}{{22.5.6}{469}{pstoraster\relax }{subsection.22.5.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.6}{\ignorespaces PostScript to Intermediate Raster Format.}}{470}{figure.22.6}}
\newlabel{cups-raster}{{22.6}{470}{pstoraster\relax }{figure.22.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.7}{\ignorespaces CUPS-Raster Production Using Ghostscript.}}{471}{figure.22.7}}
\newlabel{cups-raster2}{{22.7}{471}{pstoraster\relax }{figure.22.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.7}imagetops and imagetoraster}{471}{subsection.22.5.7}}
\newlabel{id2600001}{{22.5.7}{471}{imagetops and imagetoraster\relax }{subsection.22.5.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.8}rasterto [printers specific]}{471}{subsection.22.5.8}}
\newlabel{id2600055}{{22.5.8}{471}{rasterto [printers specific]\relax }{subsection.22.5.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.8}{\ignorespaces Image Format to CUPS-Raster Format Conversion.}}{472}{figure.22.8}}
\newlabel{small8}{{22.8}{472}{imagetops and imagetoraster\relax }{figure.22.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.9}CUPS Backends}{472}{subsection.22.5.9}}
\newlabel{id2600229}{{22.5.9}{472}{CUPS Backends\relax }{subsection.22.5.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.9}{\ignorespaces Raster to Printer-Specific Formats.}}{473}{figure.22.9}}
\newlabel{small9}{{22.9}{473}{rasterto [printers specific]\relax }{figure.22.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.10}The Role of cupsomatic/foomatic}{475}{subsection.22.5.10}}
\newlabel{id2600566}{{22.5.10}{475}{The Role of cupsomatic/foomatic\relax }{subsection.22.5.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.11}The Complete Picture}{476}{subsection.22.5.11}}
\newlabel{id2600807}{{22.5.11}{476}{The Complete Picture\relax }{subsection.22.5.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.12}mime.\penalty \z@ {}convs}{476}{subsection.22.5.12}}
\newlabel{id2600821}{{22.5.12}{476}{mime.\dbz {}convs\relax }{subsection.22.5.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.13}{``}Raw{''} Printing}{477}{subsection.22.5.13}}
\newlabel{id2600891}{{22.5.13}{477}{{``}Raw{''} Printing\relax }{subsection.22.5.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.14}application/octet-stream Printing}{477}{subsection.22.5.14}}
\newlabel{id2601004}{{22.5.14}{477}{application/octet-stream Printing\relax }{subsection.22.5.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.15}PostScript Printer Descriptions for Non-PostScript Printers}{479}{subsection.22.5.15}}
\newlabel{id2601291}{{22.5.15}{479}{PostScript Printer Descriptions for Non-PostScript Printers\relax }{subsection.22.5.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.16}{\em {cupsomatic/foomatic-rip}} Versus {\em {Native CUPS}} Printing}{479}{subsection.22.5.16}}
\newlabel{id2601588}{{22.5.16}{479}{{\em {cupsomatic/foomatic-rip}} Versus {\em {Native CUPS}} Printing\relax }{subsection.22.5.16}{}}
\@writefile{lot}{\contentsline {table}{\numberline {22.1}{\ignorespaces PPDs Shipped with CUPS}}{480}{table.22.1}}
\newlabel{cups-ppds}{{22.1}{480}{PostScript Printer Descriptions for Non-PostScript Printers\relax }{table.22.1}{}}
\newlabel{id2601717}{{22.5.16}{480}{{\em {cupsomatic/foomatic-rip}} Versus {\em {Native CUPS}} Printing\relax }{figure.22.10}{}}
\global \@namedef{@fn@label@id2601717}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.10}{\ignorespaces cupsomatic/foomatic Processing Versus Native CUPS.}}{481}{figure.22.10}}
\newlabel{cupsomatic-dia}{{22.10}{481}{{\em {cupsomatic/foomatic-rip}} Versus {\em {Native CUPS}} Printing\relax }{figure.22.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.17}Examples for Filtering Chains}{482}{subsection.22.5.17}}
\newlabel{id2601906}{{22.5.17}{482}{Examples for Filtering Chains\relax }{subsection.22.5.17}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.11}{\ignorespaces PDF to Socket Chain.}}{482}{figure.22.11}}
\newlabel{pdftosocket}{{22.11}{482}{Examples for Filtering Chains\relax }{figure.22.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.12}{\ignorespaces PDF to USB Chain.}}{483}{figure.22.12}}
\newlabel{pdftoepsonusb}{{22.12}{483}{Examples for Filtering Chains\relax }{figure.22.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.18}Sources of CUPS Drivers/PPDs}{483}{subsection.22.5.18}}
\newlabel{id2602293}{{22.5.18}{483}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\newlabel{id2602331}{{22.5.18}{483}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602331}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2602352}{{22.5.18}{484}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602352}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\newlabel{id2602366}{{22.5.18}{484}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602366}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\newlabel{id2602379}{{22.5.18}{484}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602379}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 10}}}}}}
\newlabel{id2602394}{{22.5.18}{484}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602394}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 11}}}}}}
\newlabel{id2602408}{{22.5.18}{484}{Sources of CUPS Drivers/PPDs\relax }{subsection.22.5.18}{}}
\global \@namedef{@fn@label@id2602408}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 12}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.5.19}Printing with Interface Scripts}{484}{subsection.22.5.19}}
\newlabel{id2602421}{{22.5.19}{484}{Printing with Interface Scripts\relax }{subsection.22.5.19}{}}
\newlabel{id2602494}{{22.5.19}{485}{Printing with Interface Scripts\relax }{subsection.22.5.19}{}}
\global \@namedef{@fn@label@id2602494}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 13}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {22.6}Network Printing (Purely Windows)}{485}{section.22.6}}
\newlabel{id2602508}{{22.6}{485}{Network Printing (Purely Windows)\relax }{section.22.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.6.1}From Windows Clients to an NT Print Server}{485}{subsection.22.6.1}}
\newlabel{id2602525}{{22.6.1}{485}{From Windows Clients to an NT Print Server\relax }{subsection.22.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.6.2}Driver Execution on the Client}{485}{subsection.22.6.2}}
\newlabel{id2602587}{{22.6.2}{485}{Driver Execution on the Client\relax }{subsection.22.6.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.13}{\ignorespaces Print Driver Execution on the Client.}}{486}{figure.22.13}}
\newlabel{small11}{{22.13}{486}{Driver Execution on the Client\relax }{figure.22.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.6.3}Driver Execution on the Server}{486}{subsection.22.6.3}}
\newlabel{id2602635}{{22.6.3}{486}{Driver Execution on the Server\relax }{subsection.22.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.14}{\ignorespaces Print Driver Execution on the Server.}}{486}{figure.22.14}}
\newlabel{small12}{{22.14}{486}{Driver Execution on the Server\relax }{figure.22.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.7}Network Printing (Windows Clients and UNIX/Samba Print Servers)}{487}{section.22.7}}
\newlabel{id2602720}{{22.7}{487}{Network Printing (Windows Clients and UNIX/Samba Print Servers)\relax }{section.22.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.7.1}From Windows Clients to a CUPS/Samba Print Server}{487}{subsection.22.7.1}}
\newlabel{id2602738}{{22.7.1}{487}{From Windows Clients to a CUPS/Samba Print Server\relax }{subsection.22.7.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.15}{\ignorespaces Printing via CUPS/Samba Server.}}{488}{figure.22.15}}
\newlabel{13small}{{22.15}{488}{From Windows Clients to a CUPS/Samba Print Server\relax }{figure.22.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.7.2}Samba Receiving Job-Files and Passing Them to CUPS}{488}{subsection.22.7.2}}
\newlabel{id2602870}{{22.7.2}{488}{Samba Receiving Job-Files and Passing Them to CUPS\relax }{subsection.22.7.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.8}Network PostScript RIP}{489}{section.22.8}}
\newlabel{id2602944}{{22.8}{489}{Network PostScript RIP\relax }{section.22.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.8.1}PPDs for Non-PS Printers on UNIX}{489}{subsection.22.8.1}}
\newlabel{id2603036}{{22.8.1}{489}{PPDs for Non-PS Printers on UNIX\relax }{subsection.22.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.8.2}PPDs for Non-PS Printers on Windows}{490}{subsection.22.8.2}}
\newlabel{id2603083}{{22.8.2}{490}{PPDs for Non-PS Printers on Windows\relax }{subsection.22.8.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.9}Windows Terminal Servers (WTS) as CUPS Clients}{490}{section.22.9}}
\newlabel{id2603155}{{22.9}{490}{Windows Terminal Servers (WTS) as CUPS Clients\relax }{section.22.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.9.1}Printer Drivers Running in {``}Kernel Mode{''} Cause Many Problems}{490}{subsection.22.9.1}}
\newlabel{id2603170}{{22.9.1}{490}{Printer Drivers Running in {``}Kernel Mode{''} Cause Many Problems\relax }{subsection.22.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.9.2}Workarounds Impose Heavy Limitations}{491}{subsection.22.9.2}}
\newlabel{id2603210}{{22.9.2}{491}{Workarounds Impose Heavy Limitations\relax }{subsection.22.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.9.3}CUPS: A {``}Magical Stone{''}?}{491}{subsection.22.9.3}}
\newlabel{id2603228}{{22.9.3}{491}{CUPS: A {``}Magical Stone{''}?\relax }{subsection.22.9.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.9.4}PostScript Drivers with No Major Problems, Even in Kernel Mode}{491}{subsection.22.9.4}}
\newlabel{id2603274}{{22.9.4}{491}{PostScript Drivers with No Major Problems, Even in Kernel Mode\relax }{subsection.22.9.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.10}Configuring CUPS for Driver Download}{492}{section.22.10}}
\newlabel{id2603364}{{22.10}{492}{Configuring CUPS for Driver Download\relax }{section.22.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.1}{\em {cupsaddsmb}}: The Unknown Utility}{492}{subsection.22.10.1}}
\newlabel{id2603386}{{22.10.1}{492}{{\em {cupsaddsmb}}: The Unknown Utility\relax }{subsection.22.10.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.2}Prepare Your smb.\penalty \z@ {}conf for cupsaddsmb}{493}{subsection.22.10.2}}
\newlabel{id2603486}{{22.10.2}{493}{Prepare Your smb.\dbz {}conf for cupsaddsmb\relax }{subsection.22.10.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {22.10.1}{\ignorespaces smb.conf for cupsaddsmb Usage}}{493}{example.22.10.1}}
\newlabel{cupsadd-ex}{{22.10.1}{493}{Prepare Your smb.\dbz {}conf for cupsaddsmb\relax }{example.22.10.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.3}CUPS {``}PostScript Driver for Windows NT/200x/XP{''}}{493}{subsection.22.10.3}}
\newlabel{id2603663}{{22.10.3}{493}{CUPS {``}PostScript Driver for Windows NT/200x/XP{''}\relax }{subsection.22.10.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.4}Recognizing Different Driver Files}{495}{subsection.22.10.4}}
\newlabel{id2603908}{{22.10.4}{495}{Recognizing Different Driver Files\relax }{subsection.22.10.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.5}Acquiring the Adobe Driver Files}{496}{subsection.22.10.5}}
\newlabel{id2604033}{{22.10.5}{496}{Acquiring the Adobe Driver Files\relax }{subsection.22.10.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.6}ESP Print Pro PostScript Driver for Windows NT/200x/XP}{496}{subsection.22.10.6}}
\newlabel{id2604059}{{22.10.6}{496}{ESP Print Pro PostScript Driver for Windows NT/200x/XP\relax }{subsection.22.10.6}{}}
\newlabel{id2604082}{{22.10.6}{497}{ESP Print Pro PostScript Driver for Windows NT/200x/XP\relax }{subsection.22.10.6}{}}
\global \@namedef{@fn@label@id2604082}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 14}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.7}Caveats to Be Considered}{497}{subsection.22.10.7}}
\newlabel{id2604122}{{22.10.7}{497}{Caveats to Be Considered\relax }{subsection.22.10.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.8}Windows CUPS PostScript Driver Versus Adobe Driver}{500}{subsection.22.10.8}}
\newlabel{id2604424}{{22.10.8}{500}{Windows CUPS PostScript Driver Versus Adobe Driver\relax }{subsection.22.10.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.9}Run cupsaddsmb (Quiet Mode)}{501}{subsection.22.10.9}}
\newlabel{id2604646}{{22.10.9}{501}{Run cupsaddsmb (Quiet Mode)\relax }{subsection.22.10.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.10}Run cupsaddsmb with Verbose Output}{501}{subsection.22.10.10}}
\newlabel{id2604783}{{22.10.10}{501}{Run cupsaddsmb with Verbose Output\relax }{subsection.22.10.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.11}Understanding cupsaddsmb}{503}{subsection.22.10.11}}
\newlabel{id2604922}{{22.10.11}{503}{Understanding cupsaddsmb\relax }{subsection.22.10.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.12}How to Recognize If cupsaddsmb Completed Successfully}{504}{subsection.22.10.12}}
\newlabel{id2605071}{{22.10.12}{504}{How to Recognize If cupsaddsmb Completed Successfully\relax }{subsection.22.10.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.13}cupsaddsmb with a Samba PDC}{505}{subsection.22.10.13}}
\newlabel{id2605192}{{22.10.13}{505}{cupsaddsmb with a Samba PDC\relax }{subsection.22.10.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.14}cupsaddsmb Flowchart}{506}{subsection.22.10.14}}
\newlabel{id2605276}{{22.10.14}{506}{cupsaddsmb Flowchart\relax }{subsection.22.10.14}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.16}{\ignorespaces cupsaddsmb Flowchart.}}{506}{figure.22.16}}
\newlabel{small14}{{22.16}{506}{cupsaddsmb Flowchart\relax }{figure.22.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.15}Installing the PostScript Driver on a Client}{507}{subsection.22.10.15}}
\newlabel{id2605333}{{22.10.15}{507}{Installing the PostScript Driver on a Client\relax }{subsection.22.10.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.10.16}Avoiding Critical PostScript Driver Settings on the Client}{507}{subsection.22.10.16}}
\newlabel{cups-avoidps1}{{22.10.16}{507}{Avoiding Critical PostScript Driver Settings on the Client\relax }{subsection.22.10.16}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.11}Installing PostScript Driver Files Manually Using rpcclient}{508}{section.22.11}}
\newlabel{id2605577}{{22.11}{508}{Installing PostScript Driver Files Manually Using rpcclient\relax }{section.22.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.1}A Check of the rpcclient man Page}{509}{subsection.22.11.1}}
\newlabel{id2605755}{{22.11.1}{509}{A Check of the rpcclient man Page\relax }{subsection.22.11.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.2}Understanding the rpcclient man Page}{510}{subsection.22.11.2}}
\newlabel{id2605931}{{22.11.2}{510}{Understanding the rpcclient man Page\relax }{subsection.22.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.3}Producing an Example by Querying a Windows Box}{510}{subsection.22.11.3}}
\newlabel{id2606039}{{22.11.3}{510}{Producing an Example by Querying a Windows Box\relax }{subsection.22.11.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.4}Requirements for adddriver and setdriver to Succeed}{511}{subsection.22.11.4}}
\newlabel{id2606175}{{22.11.4}{511}{Requirements for adddriver and setdriver to Succeed\relax }{subsection.22.11.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.5}Manual Driver Installation in 15 Steps}{512}{subsection.22.11.5}}
\newlabel{id2606395}{{22.11.5}{512}{Manual Driver Installation in 15 Steps\relax }{subsection.22.11.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.11.6}Troubleshooting Revisited}{519}{subsection.22.11.6}}
\newlabel{id2607384}{{22.11.6}{519}{Troubleshooting Revisited\relax }{subsection.22.11.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.12}The Printing *.\penalty \z@ {}tdb Files}{520}{section.22.12}}
\newlabel{id2607531}{{22.12}{520}{The Printing *.\dbz {}tdb Files\relax }{section.22.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.12.1}Trivial Database Files}{520}{subsection.22.12.1}}
\newlabel{id2607744}{{22.12.1}{520}{Trivial Database Files\relax }{subsection.22.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.12.2}Binary Format}{520}{subsection.22.12.2}}
\newlabel{id2607813}{{22.12.2}{520}{Binary Format\relax }{subsection.22.12.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.12.3}Losing *.\penalty \z@ {}tdb Files}{521}{subsection.22.12.3}}
\newlabel{id2607881}{{22.12.3}{521}{Losing *.\dbz {}tdb Files\relax }{subsection.22.12.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.12.4}Using tdbbackup}{521}{subsection.22.12.4}}
\newlabel{id2607933}{{22.12.4}{521}{Using tdbbackup\relax }{subsection.22.12.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.13}CUPS Print Drivers from Linuxprinting.org}{522}{section.22.13}}
\newlabel{id2608053}{{22.13}{522}{CUPS Print Drivers from Linuxprinting.org\relax }{section.22.13}{}}
\newlabel{id2608138}{{22.13}{522}{CUPS Print Drivers from Linuxprinting.org\relax }{section.22.13}{}}
\global \@namedef{@fn@label@id2608138}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 15}}}}}}
\newlabel{id2608204}{{22.13}{523}{CUPS Print Drivers from Linuxprinting.org\relax }{section.22.13}{}}
\global \@namedef{@fn@label@id2608204}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont {\itshape a}}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.13.1}foomatic-rip and Foomatic Explained}{523}{subsection.22.13.1}}
\newlabel{id2608232}{{22.13.1}{523}{foomatic-rip and Foomatic Explained\relax }{subsection.22.13.1}{}}
\newlabel{id2608256}{{22.13.1}{523}{foomatic-rip and Foomatic Explained\relax }{subsection.22.13.1}{}}
\global \@namedef{@fn@label@id2608256}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 16}}}}}}
\newlabel{id2608274}{{22.13.1}{523}{foomatic-rip and Foomatic Explained\relax }{subsection.22.13.1}{}}
\global \@namedef{@fn@label@id2608274}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 17}}}}}}
\newlabel{id2608284}{{22.13.1}{523}{foomatic-rip and Foomatic Explained\relax }{subsection.22.13.1}{}}
\global \@namedef{@fn@label@id2608284}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 18}}}}}}
\newlabel{id2608290}{{22.13.1}{523}{foomatic-rip and Foomatic Explained\relax }{subsection.22.13.1}{}}
\global \@namedef{@fn@label@id2608290}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 19}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.1}690 {``}Perfect{''} Printers}{524}{subsubsection.22.13.1.1}}
\newlabel{id2608303}{{22.13.1.1}{524}{690 {``}Perfect{''} Printers\relax }{subsubsection.22.13.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.2}How the Printing HOWTO Started It All}{524}{subsubsection.22.13.1.2}}
\newlabel{id2608345}{{22.13.1.2}{524}{How the Printing HOWTO Started It All\relax }{subsubsection.22.13.1.2}{}}
\newlabel{id2608354}{{22.13.1.2}{524}{How the Printing HOWTO Started It All\relax }{subsubsection.22.13.1.2}{}}
\global \@namedef{@fn@label@id2608354}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 20}}}}}}
\newlabel{id2608362}{{22.13.1.2}{524}{How the Printing HOWTO Started It All\relax }{subsubsection.22.13.1.2}{}}
\global \@namedef{@fn@label@id2608362}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 21}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.3}Foomatic's Strange Name}{524}{subsubsection.22.13.1.3}}
\newlabel{id2608384}{{22.13.1.3}{524}{Foomatic's Strange Name\relax }{subsubsection.22.13.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.4}cupsomatic, pdqomatic, lpdomatic, directomatic}{525}{subsubsection.22.13.1.4}}
\newlabel{id2608462}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\newlabel{id2608498}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608498}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 22}}}}}}
\newlabel{id2608516}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608516}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 23}}}}}}
\newlabel{id2608523}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608523}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 24}}}}}}
\newlabel{id2608540}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608540}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 25}}}}}}
\newlabel{id2608548}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608548}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 26}}}}}}
\newlabel{id2608556}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608556}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 27}}}}}}
\newlabel{id2608562}{{22.13.1.4}{525}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608562}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 28}}}}}}
\newlabel{id2608571}{{22.13.1.4}{526}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608571}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 29}}}}}}
\newlabel{id2608577}{{22.13.1.4}{526}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608577}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 30}}}}}}
\newlabel{id2608584}{{22.13.1.4}{526}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608584}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 31}}}}}}
\newlabel{id2608591}{{22.13.1.4}{526}{cupsomatic, pdqomatic, lpdomatic, directomatic\relax }{subsubsection.22.13.1.4}{}}
\global \@namedef{@fn@label@id2608591}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 32}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.5}The {\em {Grand Unification}} Achieved}{526}{subsubsection.22.13.1.5}}
\newlabel{id2608621}{{22.13.1.5}{526}{The {\em {Grand Unification}} Achieved\relax }{subsubsection.22.13.1.5}{}}
\newlabel{id2608646}{{22.13.1.5}{526}{The {\em {Grand Unification}} Achieved\relax }{subsubsection.22.13.1.5}{}}
\global \@namedef{@fn@label@id2608646}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 33}}}}}}
\newlabel{id2608695}{{22.13.1.5}{526}{The {\em {Grand Unification}} Achieved\relax }{subsubsection.22.13.1.5}{}}
\global \@namedef{@fn@label@id2608695}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 34}}}}}}
\newlabel{id2608703}{{22.13.1.5}{526}{The {\em {Grand Unification}} Achieved\relax }{subsubsection.22.13.1.5}{}}
\global \@namedef{@fn@label@id2608703}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 35}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.6}Driver Development Outside}{527}{subsubsection.22.13.1.6}}
\newlabel{id2608752}{{22.13.1.6}{527}{Driver Development Outside\relax }{subsubsection.22.13.1.6}{}}
\newlabel{id2608794}{{22.13.1.6}{527}{Driver Development Outside\relax }{subsubsection.22.13.1.6}{}}
\global \@namedef{@fn@label@id2608794}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 36}}}}}}
\newlabel{id2608819}{{22.13.1.6}{527}{Driver Development Outside\relax }{subsubsection.22.13.1.6}{}}
\global \@namedef{@fn@label@id2608819}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 37}}}}}}
\newlabel{id2608843}{{22.13.1.6}{527}{Driver Development Outside\relax }{subsubsection.22.13.1.6}{}}
\global \@namedef{@fn@label@id2608843}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 38}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.7}Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)}{528}{subsubsection.22.13.1.7}}
\newlabel{id2608861}{{22.13.1.7}{528}{Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)\relax }{subsubsection.22.13.1.7}{}}
\newlabel{id2608873}{{22.13.1.7}{528}{Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)\relax }{subsubsection.22.13.1.7}{}}
\global \@namedef{@fn@label@id2608873}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 39}}}}}}
\newlabel{id2608880}{{22.13.1.7}{528}{Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)\relax }{subsubsection.22.13.1.7}{}}
\global \@namedef{@fn@label@id2608880}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 40}}}}}}
\newlabel{id2608888}{{22.13.1.7}{528}{Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)\relax }{subsubsection.22.13.1.7}{}}
\global \@namedef{@fn@label@id2608888}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 41}}}}}}
\newlabel{id2608895}{{22.13.1.7}{528}{Forums, Downloads, Tutorials, Howtos (Also for Mac OS X and Commercial UNIX)\relax }{subsubsection.22.13.1.7}{}}
\global \@namedef{@fn@label@id2608895}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 42}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.13.1.8}Foomatic Database-Generated PPDs}{528}{subsubsection.22.13.1.8}}
\newlabel{id2608947}{{22.13.1.8}{528}{Foomatic Database-Generated PPDs\relax }{subsubsection.22.13.1.8}{}}
\newlabel{id2609048}{{22.13.1.8}{529}{Foomatic Database-Generated PPDs\relax }{subsubsection.22.13.1.8}{}}
\global \@namedef{@fn@label@id2609048}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 43}}}}}}
\newlabel{id2609055}{{22.13.1.8}{529}{Foomatic Database-Generated PPDs\relax }{subsubsection.22.13.1.8}{}}
\global \@namedef{@fn@label@id2609055}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 44}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.13.2}foomatic-rip and Foomatic PPD Download and Installation}{529}{subsection.22.13.2}}
\newlabel{id2609068}{{22.13.2}{529}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\newlabel{id2609096}{{22.13.2}{529}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609096}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 45}}}}}}
\newlabel{id2609108}{{22.13.2}{529}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609108}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 46}}}}}}
\newlabel{id2609137}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609137}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 47}}}}}}
\newlabel{id2609162}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609162}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 48}}}}}}
\newlabel{id2609183}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609183}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 49}}}}}}
\newlabel{id2609192}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609192}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 50}}}}}}
\newlabel{id2609198}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609198}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 51}}}}}}
\newlabel{id2609205}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609205}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 52}}}}}}
\newlabel{id2609215}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609215}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 53}}}}}}
\newlabel{id2609244}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609244}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 54}}}}}}
\newlabel{id2609266}{{22.13.2}{530}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609266}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 55}}}}}}
\newlabel{id2609406}{{22.13.2}{531}{foomatic-rip and Foomatic PPD Download and Installation\relax }{subsection.22.13.2}{}}
\global \@namedef{@fn@label@id2609406}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 56}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {22.14}Page Accounting with CUPS}{532}{section.22.14}}
\newlabel{id2609556}{{22.14}{532}{Page Accounting with CUPS\relax }{section.22.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.1}Setting Up Quotas}{533}{subsection.22.14.1}}
\newlabel{id2609593}{{22.14.1}{533}{Setting Up Quotas\relax }{subsection.22.14.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.2}Correct and Incorrect Accounting}{533}{subsection.22.14.2}}
\newlabel{id2609650}{{22.14.2}{533}{Correct and Incorrect Accounting\relax }{subsection.22.14.2}{}}
\newlabel{id2609683}{{22.14.2}{533}{Correct and Incorrect Accounting\relax }{subsection.22.14.2}{}}
\global \@namedef{@fn@label@id2609683}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 57}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.3}Adobe and CUPS PostScript Drivers for Windows Clients}{534}{subsection.22.14.3}}
\newlabel{id2609692}{{22.14.3}{534}{Adobe and CUPS PostScript Drivers for Windows Clients\relax }{subsection.22.14.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.4}The page\_log File Syntax}{534}{subsection.22.14.4}}
\newlabel{id2609838}{{22.14.4}{534}{The page\_log File Syntax\relax }{subsection.22.14.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.5}Possible Shortcomings}{535}{subsection.22.14.5}}
\newlabel{id2609988}{{22.14.5}{535}{Possible Shortcomings\relax }{subsection.22.14.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.6}Future Developments}{536}{subsection.22.14.6}}
\newlabel{id2610058}{{22.14.6}{536}{Future Developments\relax }{subsection.22.14.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.14.7}Other Accounting Tools}{536}{subsection.22.14.7}}
\newlabel{id2610100}{{22.14.7}{536}{Other Accounting Tools\relax }{subsection.22.14.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.15}Additional Material}{536}{section.22.15}}
\newlabel{id2610116}{{22.15}{536}{Additional Material\relax }{section.22.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.16}Autodeletion or Preservation of CUPS Spool Files}{538}{section.22.16}}
\newlabel{id2610337}{{22.16}{538}{Autodeletion or Preservation of CUPS Spool Files\relax }{section.22.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.16.1}CUPS Configuration Settings Explained}{538}{subsection.22.16.1}}
\newlabel{id2610408}{{22.16.1}{538}{CUPS Configuration Settings Explained\relax }{subsection.22.16.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.16.2}Preconditions}{539}{subsection.22.16.2}}
\newlabel{id2610497}{{22.16.2}{539}{Preconditions\relax }{subsection.22.16.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.16.3}Manual Configuration}{539}{subsection.22.16.3}}
\newlabel{id2610596}{{22.16.3}{539}{Manual Configuration\relax }{subsection.22.16.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.17}Printing from CUPS to Windows-Attached Printers}{540}{section.22.17}}
\newlabel{id2610629}{{22.17}{540}{Printing from CUPS to Windows-Attached Printers\relax }{section.22.17}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.18}More CUPS Filtering Chains}{542}{section.22.18}}
\newlabel{id2610921}{{22.18}{542}{More CUPS Filtering Chains\relax }{section.22.18}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.17}{\ignorespaces Filtering Chain 1.}}{542}{figure.22.17}}
\newlabel{cups1}{{22.17}{542}{More CUPS Filtering Chains\relax }{figure.22.17}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.19}Common Errors}{542}{section.22.19}}
\newlabel{id2610984}{{22.19}{542}{Common Errors\relax }{section.22.19}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.1}Windows 9x/Me Client Can't Install Driver}{542}{subsection.22.19.1}}
\newlabel{id2610991}{{22.19.1}{542}{Windows 9x/Me Client Can't Install Driver\relax }{subsection.22.19.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.2}{``}cupsaddsmb{''} Keeps Asking for Root Password in Never-ending Loop}{543}{subsection.22.19.2}}
\newlabel{root-ask-loop}{{22.19.2}{543}{{``}cupsaddsmb{''} Keeps Asking for Root Password in Never-ending Loop\relax }{subsection.22.19.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.3}{``}cupsaddsmb{''} or {``}rpcclient addriver{''} Emit Error}{543}{subsection.22.19.3}}
\newlabel{id2611065}{{22.19.3}{543}{{``}cupsaddsmb{''} or {``}rpcclient addriver{''} Emit Error\relax }{subsection.22.19.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.4}{``}cupsaddsmb{''} Errors}{543}{subsection.22.19.4}}
\newlabel{id2611101}{{22.19.4}{543}{{``}cupsaddsmb{''} Errors\relax }{subsection.22.19.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.5}Client Can't Connect to Samba Printer}{543}{subsection.22.19.5}}
\newlabel{id2611178}{{22.19.5}{543}{Client Can't Connect to Samba Printer\relax }{subsection.22.19.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.6}New Account Reconnection from Windows 200x/XP Troubles}{544}{subsection.22.19.6}}
\newlabel{id2611202}{{22.19.6}{544}{New Account Reconnection from Windows 200x/XP Troubles\relax }{subsection.22.19.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.7}Avoid Being Connected to the Samba Server as the Wrong User}{544}{subsection.22.19.7}}
\newlabel{id2611289}{{22.19.7}{544}{Avoid Being Connected to the Samba Server as the Wrong User\relax }{subsection.22.19.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.8}Upgrading to CUPS Drivers from Adobe Drivers}{544}{subsection.22.19.8}}
\newlabel{id2611329}{{22.19.8}{544}{Upgrading to CUPS Drivers from Adobe Drivers\relax }{subsection.22.19.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.9}Can't Use {``}cupsaddsmb{''} on Samba Server, Which Is a PDC}{545}{subsection.22.19.9}}
\newlabel{id2611369}{{22.19.9}{545}{Can't Use {``}cupsaddsmb{''} on Samba Server, Which Is a PDC\relax }{subsection.22.19.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.10}Deleted Windows 200x Printer Driver Is Still Shown}{545}{subsection.22.19.10}}
\newlabel{id2611405}{{22.19.10}{545}{Deleted Windows 200x Printer Driver Is Still Shown\relax }{subsection.22.19.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.11}Windows 200x/XP Local Security Policies}{545}{subsection.22.19.11}}
\newlabel{id2611441}{{22.19.11}{545}{Windows 200x/XP Local Security Policies\relax }{subsection.22.19.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.12}Administrator Cannot Install Printers for All Local Users}{545}{subsection.22.19.12}}
\newlabel{id2611476}{{22.19.12}{545}{Administrator Cannot Install Printers for All Local Users\relax }{subsection.22.19.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.13}Print Change, Notify Functions on NT Clients}{545}{subsection.22.19.13}}
\newlabel{id2611518}{{22.19.13}{545}{Print Change, Notify Functions on NT Clients\relax }{subsection.22.19.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.14}Windows XP SP1}{546}{subsection.22.19.14}}
\newlabel{id2611544}{{22.19.14}{546}{Windows XP SP1\relax }{subsection.22.19.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.15}Print Options for All Users Can't Be Set on Windows 200x/XP}{546}{subsection.22.19.15}}
\newlabel{id2611591}{{22.19.15}{546}{Print Options for All Users Can't Be Set on Windows 200x/XP\relax }{subsection.22.19.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.16}Most Common Blunders in Driver Settings on Windows Clients}{547}{subsection.22.19.16}}
\newlabel{id2611875}{{22.19.16}{547}{Most Common Blunders in Driver Settings on Windows Clients\relax }{subsection.22.19.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.17}cupsaddsmb Does Not Work with Newly Installed Printer}{547}{subsection.22.19.17}}
\newlabel{id2611932}{{22.19.17}{547}{cupsaddsmb Does Not Work with Newly Installed Printer\relax }{subsection.22.19.17}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.18}Permissions on /\penalty \z@ {}var/\penalty \z@ {}spool/\penalty \z@ {}samba/\penalty \z@ {} Get Reset After Each Reboot}{548}{subsection.22.19.18}}
\newlabel{id2611982}{{22.19.18}{548}{Permissions on /\dbz {}var/\dbz {}spool/\dbz {}samba/\dbz {} Get Reset After Each Reboot\relax }{subsection.22.19.18}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.19}Print Queue Called {``}lp{''} Mishandles Print Jobs}{548}{subsection.22.19.19}}
\newlabel{id2612067}{{22.19.19}{548}{Print Queue Called {``}lp{''} Mishandles Print Jobs\relax }{subsection.22.19.19}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.19.20}Location of Adobe PostScript Driver Files for {``}cupsaddsmb{''}}{548}{subsection.22.19.20}}
\newlabel{id2612140}{{22.19.20}{548}{Location of Adobe PostScript Driver Files for {``}cupsaddsmb{''}\relax }{subsection.22.19.20}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22.20}Overview of the CUPS Printing Processes}{548}{section.22.20}}
\newlabel{id2612195}{{22.20}{548}{Overview of the CUPS Printing Processes\relax }{section.22.20}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.18}{\ignorespaces Filtering Chain with cupsomatic}}{549}{figure.22.18}}
\newlabel{cups2}{{22.18}{549}{More CUPS Filtering Chains\relax }{figure.22.18}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {22.19}{\ignorespaces CUPS Printing Overview.}}{550}{figure.22.19}}
\newlabel{a_small}{{22.19}{550}{Overview of the CUPS Printing Processes\relax }{figure.22.19}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {23}\uppercase {Stackable VFS modules}}{551}{chapter.23}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~23}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {23}Stackable VFS modules}{}{551}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {23}Stackable VFS modules}{}{551}}}
\newlabel{VFS}{{23}{551}{Stackable VFS modules\relax }{chapter.23}{}}
\@writefile{toc}{\contentsline {section}{\numberline {23.1}Features and Benefits}{551}{section.23.1}}
\newlabel{id2579250}{{23.1}{551}{Features and Benefits\relax }{section.23.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {23.2}Discussion}{551}{section.23.2}}
\newlabel{id2579288}{{23.2}{551}{Discussion\relax }{section.23.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {23.2.1}{\ignorespaces smb.conf with VFS modules}}{552}{example.23.2.1}}
\newlabel{vfsrecyc}{{23.2.1}{552}{Discussion\relax }{example.23.2.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {23.2.2}{\ignorespaces smb.conf with multiple VFS modules}}{552}{example.23.2.2}}
\newlabel{multimodule}{{23.2.2}{552}{Discussion\relax }{example.23.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {23.3}Included Modules}{552}{section.23.3}}
\newlabel{id2571161}{{23.3}{552}{Included Modules\relax }{section.23.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.1}audit}{552}{subsection.23.3.1}}
\newlabel{id2571167}{{23.3.1}{552}{audit\relax }{subsection.23.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.2}default\_quota}{553}{subsection.23.3.2}}
\newlabel{id2593693}{{23.3.2}{553}{default\_quota\relax }{subsection.23.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.3}extd\_audit}{555}{subsection.23.3.3}}
\newlabel{id2593917}{{23.3.3}{555}{extd\_audit\relax }{subsection.23.3.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {23.1}{\ignorespaces Extended Auditing Log Information}}{555}{table.23.1}}
\newlabel{xtdaudit}{{23.1}{555}{extd\_audit\relax }{table.23.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {23.3.3.1}Configuration of Auditing}{555}{subsubsection.23.3.3.1}}
\newlabel{id2570090}{{23.3.3.1}{555}{Configuration of Auditing\relax }{subsubsection.23.3.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.4}fake\_perms}{556}{subsection.23.3.4}}
\newlabel{fakeperms}{{23.3.4}{556}{fake\_perms\relax }{subsection.23.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.5}recycle}{556}{subsection.23.3.5}}
\newlabel{id2596905}{{23.3.5}{556}{recycle\relax }{subsection.23.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.6}netatalk}{558}{subsection.23.3.6}}
\newlabel{id2578478}{{23.3.6}{558}{netatalk\relax }{subsection.23.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.3.7}shadow\_copy}{558}{subsection.23.3.7}}
\newlabel{id2578531}{{23.3.7}{558}{shadow\_copy\relax }{subsection.23.3.7}{}}
\newlabel{id2578577}{{23.3.7}{558}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2578577}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2578590}{{23.3.7}{558}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2578590}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2593334}{{23.3.7}{559}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2593334}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2593347}{{23.3.7}{559}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2593347}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2593358}{{23.3.7}{559}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2593358}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2593370}{{23.3.7}{559}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2593370}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2593376}{{23.3.7}{559}{shadow\_copy\relax }{subsection.23.3.7}{}}
\global \@namedef{@fn@label@id2593376}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {23.3.7.1}Shadow Copy Setup}{559}{subsubsection.23.3.7.1}}
\newlabel{id2593389}{{23.3.7.1}{559}{Shadow Copy Setup\relax }{subsubsection.23.3.7.1}{}}
\newlabel{id2475608}{{1}{559}{Shadow Copy Setup\relax }{Item.274}{}}
\global \@namedef{@fn@label@id2475608}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {23.3.1}{\ignorespaces Share With shadow\_copy VFS}}{562}{example.23.3.1}}
\newlabel{vfsshadow}{{23.3.1}{562}{Shadow Copy Setup\relax }{example.23.3.1}{}}
\newlabel{id2578238}{{6}{562}{Shadow Copy Setup\relax }{Item.285}{}}
\global \@namedef{@fn@label@id2578238}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {23.4}VFS Modules Available Elsewhere}{563}{section.23.4}}
\newlabel{id2578259}{{23.4}{563}{VFS Modules Available Elsewhere\relax }{section.23.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.4.1}DatabaseFS}{563}{subsection.23.4.1}}
\newlabel{id2578285}{{23.4.1}{563}{DatabaseFS\relax }{subsection.23.4.1}{}}
\newlabel{id2578301}{{23.4.1}{563}{DatabaseFS\relax }{subsection.23.4.1}{}}
\global \@namedef{@fn@label@id2578301}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 10}}}}}}
\newlabel{id2578313}{{23.4.1}{563}{DatabaseFS\relax }{subsection.23.4.1}{}}
\global \@namedef{@fn@label@id2578313}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 11}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.4.2}vscan}{563}{subsection.23.4.2}}
\newlabel{id2595575}{{23.4.2}{563}{vscan\relax }{subsection.23.4.2}{}}
\newlabel{id2595590}{{23.4.2}{563}{vscan\relax }{subsection.23.4.2}{}}
\global \@namedef{@fn@label@id2595590}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 12}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.4.3}vscan-clamav}{564}{subsection.23.4.3}}
\newlabel{id2595616}{{23.4.3}{564}{vscan-clamav\relax }{subsection.23.4.3}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {24}\uppercase {Winbind: Use of Domain Accounts}}{567}{chapter.24}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~24}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {24}Winbind: Use of Domain Accounts}{}{567}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {24}Winbind: Use of Domain Accounts}{}{567}}}
\newlabel{winbind}{{24}{567}{Winbind: Use of Domain Accounts\relax }{chapter.24}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.1}Features and Benefits}{567}{section.24.1}}
\newlabel{id2594021}{{24.1}{567}{Features and Benefits\relax }{section.24.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {24.1}{\ignorespaces Winbind Idmap}}{568}{figure.24.1}}
\newlabel{winbind_idmap}{{24.1}{568}{Features and Benefits\relax }{figure.24.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.2}Introduction}{569}{section.24.2}}
\newlabel{id2575026}{{24.2}{569}{Introduction\relax }{section.24.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.3}What Winbind Provides}{569}{section.24.3}}
\newlabel{id2571569}{{24.3}{569}{What Winbind Provides\relax }{section.24.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.3.1}Target Uses}{570}{subsection.24.3.1}}
\newlabel{id2571727}{{24.3.1}{570}{Target Uses\relax }{subsection.24.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.3.2}Handling of Foreign SIDs}{570}{subsection.24.3.2}}
\newlabel{id2571775}{{24.3.2}{570}{Handling of Foreign SIDs\relax }{subsection.24.3.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.4}How Winbind Works}{571}{section.24.4}}
\newlabel{id2468604}{{24.4}{571}{How Winbind Works\relax }{section.24.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.1}Microsoft Remote Procedure Calls}{571}{subsection.24.4.1}}
\newlabel{id2571344}{{24.4.1}{571}{Microsoft Remote Procedure Calls\relax }{subsection.24.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.2}Microsoft Active Directory Services}{572}{subsection.24.4.2}}
\newlabel{id2571431}{{24.4.2}{572}{Microsoft Active Directory Services\relax }{subsection.24.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.3}Name Service Switch}{572}{subsection.24.4.3}}
\newlabel{id2571479}{{24.4.3}{572}{Name Service Switch\relax }{subsection.24.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.4}Pluggable Authentication Modules}{573}{subsection.24.4.4}}
\newlabel{id2572429}{{24.4.4}{573}{Pluggable Authentication Modules\relax }{subsection.24.4.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.5}User and Group ID Allocation}{574}{subsection.24.4.5}}
\newlabel{id2575225}{{24.4.5}{574}{User and Group ID Allocation\relax }{subsection.24.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.4.6}Result Caching}{574}{subsection.24.4.6}}
\newlabel{id2575305}{{24.4.6}{574}{Result Caching\relax }{subsection.24.4.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.5}Installation and Configuration}{575}{section.24.5}}
\newlabel{id2575365}{{24.5}{575}{Installation and Configuration\relax }{section.24.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.5.1}Introduction}{575}{subsection.24.5.1}}
\newlabel{id2575371}{{24.5.1}{575}{Introduction\relax }{subsection.24.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.5.2}Requirements}{575}{subsection.24.5.2}}
\newlabel{id2575491}{{24.5.2}{575}{Requirements\relax }{subsection.24.5.2}{}}
\newlabel{id2575594}{{24.5.2}{575}{Requirements\relax }{subsection.24.5.2}{}}
\global \@namedef{@fn@label@id2575594}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.5.3}Testing Things Out}{576}{subsection.24.5.3}}
\newlabel{id2575647}{{24.5.3}{576}{Testing Things Out\relax }{subsection.24.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.1}Configure nsswitch.\penalty \z@ {}conf and the Winbind Libraries on Linux and Solaris}{576}{subsubsection.24.5.3.1}}
\newlabel{id2575737}{{24.5.3.1}{576}{Configure nsswitch.\dbz {}conf and the Winbind Libraries on Linux and Solaris\relax }{subsubsection.24.5.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.2}NSS Winbind on AIX}{578}{subsubsection.24.5.3.2}}
\newlabel{id2596277}{{24.5.3.2}{578}{NSS Winbind on AIX\relax }{subsubsection.24.5.3.2}{}}
\newlabel{id2596370}{{24.5.3.2}{578}{NSS Winbind on AIX\relax }{subsubsection.24.5.3.2}{}}
\global \@namedef{@fn@label@id2596370}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2596380}{{24.5.3.2}{578}{NSS Winbind on AIX\relax }{subsubsection.24.5.3.2}{}}
\global \@namedef{@fn@label@id2596380}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.3}Configure smb.conf}{579}{subsubsection.24.5.3.3}}
\newlabel{id2596390}{{24.5.3.3}{579}{Configure smb.conf\relax }{subsubsection.24.5.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {24.5.1}{\ignorespaces smb.conf for Winbind Setup}}{579}{example.24.5.1}}
\newlabel{winbindcfg}{{24.5.1}{579}{Configure smb.conf\relax }{example.24.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.4}Join the Samba Server to the PDC Domain}{579}{subsubsection.24.5.3.4}}
\newlabel{id2596541}{{24.5.3.4}{579}{Join the Samba Server to the PDC Domain\relax }{subsubsection.24.5.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.5}Starting and Testing the winbindd Daemon}{580}{subsubsection.24.5.3.5}}
\newlabel{id2596788}{{24.5.3.5}{580}{Starting and Testing the winbindd Daemon\relax }{subsubsection.24.5.3.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.6}Fix the init.d Startup Scripts}{582}{subsubsection.24.5.3.6}}
\newlabel{id2590769}{{24.5.3.6}{582}{Fix the init.d Startup Scripts\relax }{subsubsection.24.5.3.6}{}}
\newlabel{id2590775}{{24.5.3.6}{582}{Linux\relax }{section*.28}{}}
\newlabel{id2590970}{{24.5.3.6}{584}{Solaris\relax }{section*.29}{}}
\newlabel{id2591087}{{24.5.3.6}{586}{Restarting\relax }{section*.30}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {24.5.3.7}Configure Winbind and PAM}{586}{subsubsection.24.5.3.7}}
\newlabel{id2591133}{{24.5.3.7}{586}{Configure Winbind and PAM\relax }{subsubsection.24.5.3.7}{}}
\newlabel{id2591304}{{24.5.3.7}{586}{Linux/FreeBSD-Specific PAM Configuration\relax }{section*.31}{}}
\newlabel{id2594442}{{24.5.3.7}{588}{Solaris-Specific Configuration\relax }{section*.32}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.6}Conclusion}{590}{section.24.6}}
\newlabel{id2594562}{{24.6}{590}{Conclusion\relax }{section.24.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24.7}Common Errors}{591}{section.24.7}}
\newlabel{id2594613}{{24.7}{591}{Common Errors\relax }{section.24.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.7.1}NSCD Problem Warning}{591}{subsection.24.7.1}}
\newlabel{id2594657}{{24.7.1}{591}{NSCD Problem Warning\relax }{subsection.24.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {24.7.2}Winbind Is Not Resolving Users and Groups}{591}{subsection.24.7.2}}
\newlabel{id2594694}{{24.7.2}{591}{Winbind Is Not Resolving Users and Groups\relax }{subsection.24.7.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {25}\uppercase {Advanced Network Management}}{593}{chapter.25}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~25}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {25}Advanced Network Management}{}{593}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {25}Advanced Network Management}{}{593}}}
\newlabel{AdvancedNetworkManagement}{{25}{593}{Advanced Network Management\relax }{chapter.25}{}}
\@writefile{toc}{\contentsline {section}{\numberline {25.1}Features and Benefits}{593}{section.25.1}}
\newlabel{id2463628}{{25.1}{593}{Features and Benefits\relax }{section.25.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {25.2}Remote Server Administration}{593}{section.25.2}}
\newlabel{id2579402}{{25.2}{593}{Remote Server Administration\relax }{section.25.2}{}}
\newlabel{id2594178}{{25.2}{594}{Remote Server Administration\relax }{section.25.2}{}}
\global \@namedef{@fn@label@id2594178}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2594218}{{25.2}{594}{Remote Server Administration\relax }{section.25.2}{}}
\global \@namedef{@fn@label@id2594218}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {25.3}Remote Desktop Management}{594}{section.25.3}}
\newlabel{id2594227}{{25.3}{594}{Remote Desktop Management\relax }{section.25.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {25.3.1}Remote Management from NoMachine.Com}{594}{subsection.25.3.1}}
\newlabel{id2530009}{{25.3.1}{594}{Remote Management from NoMachine.Com\relax }{subsection.25.3.1}{}}
\newlabel{id2530088}{{25.3.1}{595}{Remote Management from NoMachine.Com\relax }{subsection.25.3.1}{}}
\global \@namedef{@fn@label@id2530088}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2579194}{{25.3.1}{595}{Remote Management from NoMachine.Com\relax }{subsection.25.3.1}{}}
\global \@namedef{@fn@label@id2579194}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {25.3.2}Remote Management with ThinLinc}{596}{subsection.25.3.2}}
\newlabel{id2578818}{{25.3.2}{596}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\newlabel{id2578948}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2578948}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2568855}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2568855}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2568867}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2568867}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2568875}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2568875}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\newlabel{id2568883}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2568883}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\newlabel{id2568891}{{25.3.2}{597}{Remote Management with ThinLinc\relax }{subsection.25.3.2}{}}
\global \@namedef{@fn@label@id2568891}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 10}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {25.4}Network Logon Script Magic}{597}{section.25.4}}
\newlabel{id2568903}{{25.4}{597}{Network Logon Script Magic\relax }{section.25.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {25.4.1}Adding Printers without User Intervention}{599}{subsection.25.4.1}}
\newlabel{id2519765}{{25.4.1}{599}{Adding Printers without User Intervention\relax }{subsection.25.4.1}{}}
\newlabel{id2570594}{{25.4.1}{600}{Adding Printers without User Intervention\relax }{subsection.25.4.1}{}}
\global \@namedef{@fn@label@id2570594}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 11}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {25.4.2}Limiting Logon Connections}{600}{subsection.25.4.2}}
\newlabel{id2570604}{{25.4.2}{600}{Limiting Logon Connections\relax }{subsection.25.4.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {25.4.1}{\ignorespaces Script to Enforce Single Resource Logon}}{601}{example.25.4.1}}
\newlabel{Tpees}{{25.4.1}{601}{Limiting Logon Connections\relax }{example.25.4.1}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {26}\uppercase {System and Account Policies}}{603}{chapter.26}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~26}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {26}System and Account Policies}{}{603}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {26}System and Account Policies}{}{603}}}
\newlabel{PolicyMgmt}{{26}{603}{System and Account Policies\relax }{chapter.26}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26.1}Features and Benefits}{603}{section.26.1}}
\newlabel{id2463504}{{26.1}{603}{Features and Benefits\relax }{section.26.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26.2}Creating and Managing System Policies}{604}{section.26.2}}
\newlabel{id2468060}{{26.2}{604}{Creating and Managing System Policies\relax }{section.26.2}{}}
\newlabel{id2568366}{{26.2}{604}{Creating and Managing System Policies\relax }{section.26.2}{}}
\global \@namedef{@fn@label@id2568366}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.2.1}Windows 9x/ME Policies}{605}{subsection.26.2.1}}
\newlabel{id2568388}{{26.2.1}{605}{Windows 9x/ME Policies\relax }{subsection.26.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.2.2}Windows NT4-Style Policy Files}{605}{subsection.26.2.2}}
\newlabel{id2568524}{{26.2.2}{605}{Windows NT4-Style Policy Files\relax }{subsection.26.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {26.2.2.1}Registry Spoiling}{606}{subsubsection.26.2.2.1}}
\newlabel{id2574559}{{26.2.2.1}{606}{Registry Spoiling\relax }{subsubsection.26.2.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.2.3}MS Windows 200x/XP Professional Policies}{606}{subsection.26.2.3}}
\newlabel{id2574599}{{26.2.3}{606}{MS Windows 200x/XP Professional Policies\relax }{subsection.26.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {26.2.3.1}Administration of Windows 200x/XP Policies}{607}{subsubsection.26.2.3.1}}
\newlabel{id2574803}{{26.2.3.1}{607}{Administration of Windows 200x/XP Policies\relax }{subsubsection.26.2.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {26.2.3.2}Custom System Policy Templates}{608}{subsubsection.26.2.3.2}}
\newlabel{id2571889}{{26.2.3.2}{608}{Custom System Policy Templates\relax }{subsubsection.26.2.3.2}{}}
\newlabel{id2571918}{{26.2.3.2}{609}{Custom System Policy Templates\relax }{subsubsection.26.2.3.2}{}}
\global \@namedef{@fn@label@id2571918}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {26.3}Managing Account/User Policies}{609}{section.26.3}}
\newlabel{id2571931}{{26.3}{609}{Managing Account/User Policies\relax }{section.26.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26.4}Management Tools}{610}{section.26.4}}
\newlabel{id2572159}{{26.4}{610}{Management Tools\relax }{section.26.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.4.1}Samba Editreg Toolset}{610}{subsection.26.4.1}}
\newlabel{id2572172}{{26.4.1}{610}{Samba Editreg Toolset\relax }{subsection.26.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.4.2}Windows NT4/200x}{611}{subsection.26.4.2}}
\newlabel{id2573028}{{26.4.2}{611}{Windows NT4/200x\relax }{subsection.26.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.4.3}Samba PDC}{611}{subsection.26.4.3}}
\newlabel{id2573070}{{26.4.3}{611}{Samba PDC\relax }{subsection.26.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26.5}System Startup and Logon Processing Overview}{611}{section.26.5}}
\newlabel{id2573138}{{26.5}{611}{System Startup and Logon Processing Overview\relax }{section.26.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26.6}Common Errors}{612}{section.26.6}}
\newlabel{id2573304}{{26.6}{612}{Common Errors\relax }{section.26.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {26.6.1}Policy Does Not Work}{612}{subsection.26.6.1}}
\newlabel{id2573316}{{26.6.1}{612}{Policy Does Not Work\relax }{subsection.26.6.1}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {27}\uppercase {Desktop Profile Management}}{613}{chapter.27}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~27}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {27}Desktop Profile Management}{}{613}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {27}Desktop Profile Management}{}{613}}}
\newlabel{ProfileMgmt}{{27}{613}{Desktop Profile Management\relax }{chapter.27}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.1}Features and Benefits}{613}{section.27.1}}
\newlabel{id2531302}{{27.1}{613}{Features and Benefits\relax }{section.27.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.2}Roaming Profiles}{613}{section.27.2}}
\newlabel{id2574381}{{27.2}{613}{Roaming Profiles\relax }{section.27.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.2.1}Samba Configuration for Profile Handling}{614}{subsection.27.2.1}}
\newlabel{id2574438}{{27.2.1}{614}{Samba Configuration for Profile Handling\relax }{subsection.27.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.1.1}NT4/200x User Profiles}{614}{subsubsection.27.2.1.1}}
\newlabel{id2574449}{{27.2.1.1}{614}{NT4/200x User Profiles\relax }{subsubsection.27.2.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.1.2}Windows 9x/Me User Profiles}{615}{subsubsection.27.2.1.2}}
\newlabel{id2573415}{{27.2.1.2}{615}{Windows 9x/Me User Profiles\relax }{subsubsection.27.2.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.1.3}Mixed Windows Windows 9x/Me and NT4/200x User Profiles}{615}{subsubsection.27.2.1.3}}
\newlabel{id2590047}{{27.2.1.3}{615}{Mixed Windows Windows 9x/Me and NT4/200x User Profiles\relax }{subsubsection.27.2.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.1.4}Disabling Roaming Profile Support}{616}{subsubsection.27.2.1.4}}
\newlabel{id2590100}{{27.2.1.4}{616}{Disabling Roaming Profile Support\relax }{subsubsection.27.2.1.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.2.2}Windows Client Profile Configuration Information}{617}{subsection.27.2.2}}
\newlabel{id2594864}{{27.2.2}{617}{Windows Client Profile Configuration Information\relax }{subsection.27.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.2.1}Windows 9x/Me Profile Setup}{617}{subsubsection.27.2.2.1}}
\newlabel{id2594870}{{27.2.2.1}{617}{Windows 9x/Me Profile Setup\relax }{subsubsection.27.2.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.2.2}Windows NT4 Workstation}{620}{subsubsection.27.2.2.2}}
\newlabel{id2612606}{{27.2.2.2}{620}{Windows NT4 Workstation\relax }{subsubsection.27.2.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.2.3}Windows 2000/XP Professional}{620}{subsubsection.27.2.2.3}}
\newlabel{id2612763}{{27.2.2.3}{620}{Windows 2000/XP Professional\relax }{subsubsection.27.2.2.3}{}}
\newlabel{id2612929}{{27.2.2.3}{621}{Windows XP Service Pack 1\relax }{section*.33}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.2.3}User Profile Hive Cleanup Service}{623}{subsection.27.2.3}}
\newlabel{id2613175}{{27.2.3}{623}{User Profile Hive Cleanup Service\relax }{subsection.27.2.3}{}}
\newlabel{id2613199}{{27.2.3}{623}{User Profile Hive Cleanup Service\relax }{subsection.27.2.3}{}}
\global \@namedef{@fn@label@id2613199}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.2.4}Sharing Profiles between Windows 9x/Me and NT4/200x/XP Workstations}{623}{subsection.27.2.4}}
\newlabel{id2613206}{{27.2.4}{623}{Sharing Profiles between Windows 9x/Me and NT4/200x/XP Workstations\relax }{subsection.27.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.2.5}Profile Migration from Windows NT4/200x Server to Samba}{623}{subsection.27.2.5}}
\newlabel{id2613252}{{27.2.5}{623}{Profile Migration from Windows NT4/200x Server to Samba\relax }{subsection.27.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.5.1}Windows NT4 Profile Management Tools}{624}{subsubsection.27.2.5.1}}
\newlabel{profilemigrn}{{27.2.5.1}{624}{Windows NT4 Profile Management Tools\relax }{subsubsection.27.2.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.5.2}Side Bar Notes}{624}{subsubsection.27.2.5.2}}
\newlabel{id2613427}{{27.2.5.2}{624}{Side Bar Notes\relax }{subsubsection.27.2.5.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.5.3}moveuser.exe}{625}{subsubsection.27.2.5.3}}
\newlabel{id2613471}{{27.2.5.3}{625}{moveuser.exe\relax }{subsubsection.27.2.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.2.5.4}Get SID}{625}{subsubsection.27.2.5.4}}
\newlabel{id2613509}{{27.2.5.4}{625}{Get SID\relax }{subsubsection.27.2.5.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.3}Mandatory Profiles}{625}{section.27.3}}
\newlabel{id2613571}{{27.3}{625}{Mandatory Profiles\relax }{section.27.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.4}Creating and Managing Group Profiles}{626}{section.27.4}}
\newlabel{id2613697}{{27.4}{626}{Creating and Managing Group Profiles\relax }{section.27.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.5}Default Profile for Windows Users}{627}{section.27.5}}
\newlabel{id2613764}{{27.5}{627}{Default Profile for Windows Users\relax }{section.27.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.5.1}MS Windows 9x/Me}{627}{subsection.27.5.1}}
\newlabel{id2613793}{{27.5.1}{627}{MS Windows 9x/Me\relax }{subsection.27.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {27.5.1.1}User Profile Handling with Windows 9x/Me}{627}{subsubsection.27.5.1.1}}
\newlabel{id2613891}{{27.5.1.1}{627}{User Profile Handling with Windows 9x/Me\relax }{subsubsection.27.5.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.5.2}MS Windows NT4 Workstation}{628}{subsection.27.5.2}}
\newlabel{id2613933}{{27.5.2}{628}{MS Windows NT4 Workstation\relax }{subsection.27.5.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {27.1}{\ignorespaces User Shell Folder Registry Keys Default Values}}{630}{table.27.1}}
\newlabel{ProfileLocs}{{27.1}{630}{MS Windows NT4 Workstation\relax }{table.27.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {27.2}{\ignorespaces Defaults of Profile Settings Registry Keys}}{630}{table.27.2}}
\newlabel{regkeys}{{27.2}{630}{MS Windows NT4 Workstation\relax }{table.27.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.5.3}MS Windows 200x/XP}{631}{subsection.27.5.3}}
\newlabel{id2614450}{{27.5.3}{631}{MS Windows 200x/XP\relax }{subsection.27.5.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {27.3}{\ignorespaces Defaults of Default User Profile Paths Registry Keys}}{633}{table.27.3}}
\newlabel{defregpthkeys}{{27.3}{633}{MS Windows 200x/XP\relax }{table.27.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27.6}Common Errors}{634}{section.27.6}}
\newlabel{id2614921}{{27.6}{634}{Common Errors\relax }{section.27.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.6.1}Configuring Roaming Profiles for a Few Users or Groups}{634}{subsection.27.6.1}}
\newlabel{id2614932}{{27.6.1}{634}{Configuring Roaming Profiles for a Few Users or Groups\relax }{subsection.27.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.6.2}Cannot Use Roaming Profiles}{634}{subsection.27.6.2}}
\newlabel{id2614992}{{27.6.2}{634}{Cannot Use Roaming Profiles\relax }{subsection.27.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.6.3}Changing the Default Profile}{636}{subsection.27.6.3}}
\newlabel{id2615159}{{27.6.3}{636}{Changing the Default Profile\relax }{subsection.27.6.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {27.6.4}Debugging Roaming Profiles and NT4-style Domain Policies}{637}{subsection.27.6.4}}
\newlabel{id2615278}{{27.6.4}{637}{Debugging Roaming Profiles and NT4-style Domain Policies\relax }{subsection.27.6.4}{}}
\newlabel{id2615294}{{27.6.4}{637}{Debugging Roaming Profiles and NT4-style Domain Policies\relax }{subsection.27.6.4}{}}
\global \@namedef{@fn@label@id2615294}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2615300}{{27.6.4}{637}{Debugging Roaming Profiles and NT4-style Domain Policies\relax }{subsection.27.6.4}{}}
\global \@namedef{@fn@label@id2615300}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {28}\uppercase {PAM-Based Distributed Authentication}}{639}{chapter.28}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~28}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {28}PAM-Based Distributed Authentication}{}{639}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {28}PAM-Based Distributed Authentication}{}{639}}}
\newlabel{pam}{{28}{639}{PAM-Based Distributed Authentication\relax }{chapter.28}{}}
\@writefile{toc}{\contentsline {section}{\numberline {28.1}Features and Benefits}{639}{section.28.1}}
\newlabel{id2615705}{{28.1}{639}{Features and Benefits\relax }{section.28.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {28.2}Technical Discussion}{641}{section.28.2}}
\newlabel{id2592952}{{28.2}{641}{Technical Discussion\relax }{section.28.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2.1}PAM Configuration Syntax}{641}{subsection.28.2.1}}
\newlabel{id2593007}{{28.2.1}{641}{PAM Configuration Syntax\relax }{subsection.28.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.1.1}Anatomy of /\penalty \z@ {}etc/\penalty \z@ {}pam.\penalty \z@ {}d Entries}{642}{subsubsection.28.2.1.1}}
\newlabel{id2593088}{{28.2.1.1}{642}{Anatomy of /\dbz {}etc/\dbz {}pam.\dbz {}d Entries\relax }{subsubsection.28.2.1.1}{}}
\newlabel{id2593104}{{28.2.1.1}{642}{Anatomy of /\dbz {}etc/\dbz {}pam.\dbz {}d Entries\relax }{subsubsection.28.2.1.1}{}}
\global \@namedef{@fn@label@id2593104}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2.2}Example System Configurations}{647}{subsection.28.2.2}}
\newlabel{id2616194}{{28.2.2}{647}{Example System Configurations\relax }{subsection.28.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.2.1}PAM: Original Login Config}{648}{subsubsection.28.2.2.1}}
\newlabel{id2616218}{{28.2.2.1}{648}{PAM: Original Login Config\relax }{subsubsection.28.2.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.2.2}PAM: Login Using pam\_\penalty \z@ {}smbpass}{648}{subsubsection.28.2.2.2}}
\newlabel{id2616244}{{28.2.2.2}{648}{PAM: Login Using pam\_\dbz {}smbpass\relax }{subsubsection.28.2.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2.3}smb.\penalty \z@ {}conf PAM Configuration}{650}{subsection.28.2.3}}
\newlabel{id2616477}{{28.2.3}{650}{smb.\dbz {}conf PAM Configuration\relax }{subsection.28.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2.4}Remote CIFS Authentication Using winbindd.\penalty \z@ {}so}{651}{subsection.28.2.4}}
\newlabel{id2616532}{{28.2.4}{651}{Remote CIFS Authentication Using winbindd.\dbz {}so\relax }{subsection.28.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2.5}Password Synchronization Using pam\_\penalty \z@ {}smbpass.\penalty \z@ {}so}{652}{subsection.28.2.5}}
\newlabel{id2616624}{{28.2.5}{652}{Password Synchronization Using pam\_\dbz {}smbpass.\dbz {}so\relax }{subsection.28.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.5.1}Password Synchronization Configuration}{652}{subsubsection.28.2.5.1}}
\newlabel{id2616824}{{28.2.5.1}{652}{Password Synchronization Configuration\relax }{subsubsection.28.2.5.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {28.1}{\ignorespaces Options recognized by pam\_smbpass}}{653}{table.28.1}}
\newlabel{smbpassoptions}{{28.1}{653}{Password Synchronization Using pam\_\dbz {}smbpass.\dbz {}so\relax }{table.28.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.5.2}Password Migration Configuration}{653}{subsubsection.28.2.5.2}}
\newlabel{id2616867}{{28.2.5.2}{653}{Password Migration Configuration\relax }{subsubsection.28.2.5.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.5.3}Mature Password Configuration}{654}{subsubsection.28.2.5.3}}
\newlabel{id2616912}{{28.2.5.3}{654}{Mature Password Configuration\relax }{subsubsection.28.2.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.2.5.4}Kerberos Password Integration Configuration}{654}{subsubsection.28.2.5.4}}
\newlabel{id2616948}{{28.2.5.4}{654}{Kerberos Password Integration Configuration\relax }{subsubsection.28.2.5.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {28.3}Common Errors}{655}{section.28.3}}
\newlabel{id2616988}{{28.3}{655}{Common Errors\relax }{section.28.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.3.1}pam\_winbind Problem}{655}{subsection.28.3.1}}
\newlabel{id2616998}{{28.3.1}{655}{pam\_winbind Problem\relax }{subsection.28.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.3.2}Winbind Is Not Resolving Users and Groups}{656}{subsection.28.3.2}}
\newlabel{id2617088}{{28.3.2}{656}{Winbind Is Not Resolving Users and Groups\relax }{subsection.28.3.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {29}\uppercase {Integrating MS Windows Networks with Samba}}{659}{chapter.29}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~29}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {29}Integrating MS Windows Networks with Samba}{}{659}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {29}Integrating MS Windows Networks with Samba}{}{659}}}
\newlabel{integrate-ms-networks}{{29}{659}{Integrating MS Windows Networks with Samba\relax }{chapter.29}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29.1}Features and Benefits}{659}{section.29.1}}
\newlabel{id2517515}{{29.1}{659}{Features and Benefits\relax }{section.29.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29.2}Background Information}{660}{section.29.2}}
\newlabel{id2589947}{{29.2}{660}{Background Information\relax }{section.29.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29.3}Name Resolution in a Pure UNIX/Linux World}{660}{section.29.3}}
\newlabel{id2593254}{{29.3}{660}{Name Resolution in a Pure UNIX/Linux World\relax }{section.29.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.3.1}/\penalty \z@ {}etc/\penalty \z@ {}hosts}{661}{subsection.29.3.1}}
\newlabel{id2589775}{{29.3.1}{661}{/\dbz {}etc/\dbz {}hosts\relax }{subsection.29.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.3.2}/\penalty \z@ {}etc/\penalty \z@ {}resolv.\penalty \z@ {}conf}{662}{subsection.29.3.2}}
\newlabel{id2589902}{{29.3.2}{662}{/\dbz {}etc/\dbz {}resolv.\dbz {}conf\relax }{subsection.29.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.3.3}/\penalty \z@ {}etc/\penalty \z@ {}host.\penalty \z@ {}conf}{662}{subsection.29.3.3}}
\newlabel{id2589646}{{29.3.3}{662}{/\dbz {}etc/\dbz {}host.\dbz {}conf\relax }{subsection.29.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.3.4}/\penalty \z@ {}etc/\penalty \z@ {}nsswitch.\penalty \z@ {}conf}{663}{subsection.29.3.4}}
\newlabel{id2589696}{{29.3.4}{663}{/\dbz {}etc/\dbz {}nsswitch.\dbz {}conf\relax }{subsection.29.3.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29.4}Name Resolution as Used within MS Windows Networking}{664}{section.29.4}}
\newlabel{id2612284}{{29.4}{664}{Name Resolution as Used within MS Windows Networking\relax }{section.29.4}{}}
\@writefile{lot}{\contentsline {table}{\numberline {29.1}{\ignorespaces Unique NetBIOS Names}}{664}{table.29.1}}
\newlabel{uniqnetbiosnames}{{29.1}{664}{Name Resolution as Used within MS Windows Networking\relax }{table.29.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {29.2}{\ignorespaces Group Names}}{664}{table.29.2}}
\newlabel{netbiosnamesgrp}{{29.2}{664}{Name Resolution as Used within MS Windows Networking\relax }{table.29.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4.1}The NetBIOS Name Cache}{666}{subsection.29.4.1}}
\newlabel{id2615364}{{29.4.1}{666}{The NetBIOS Name Cache\relax }{subsection.29.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4.2}The LMHOSTS File}{666}{subsection.29.4.2}}
\newlabel{id2615453}{{29.4.2}{666}{The LMHOSTS File\relax }{subsection.29.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4.3}HOSTS File}{668}{subsection.29.4.3}}
\newlabel{id2615556}{{29.4.3}{668}{HOSTS File\relax }{subsection.29.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4.4}DNS Lookup}{668}{subsection.29.4.4}}
\newlabel{id2577155}{{29.4.4}{668}{DNS Lookup\relax }{subsection.29.4.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4.5}WINS Lookup}{669}{subsection.29.4.5}}
\newlabel{id2577184}{{29.4.5}{669}{WINS Lookup\relax }{subsection.29.4.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29.5}Common Errors}{669}{section.29.5}}
\newlabel{id2577300}{{29.5}{669}{Common Errors\relax }{section.29.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.5.1}Pinging Works Only One Way}{670}{subsection.29.5.1}}
\newlabel{id2577313}{{29.5.1}{670}{Pinging Works Only One Way\relax }{subsection.29.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.5.2}Very Slow Network Connections}{670}{subsection.29.5.2}}
\newlabel{id2577346}{{29.5.2}{670}{Very Slow Network Connections\relax }{subsection.29.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.5.3}Samba Server Name-Change Problem}{670}{subsection.29.5.3}}
\newlabel{id2577390}{{29.5.3}{670}{Samba Server Name-Change Problem\relax }{subsection.29.5.3}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {30}\uppercase {Unicode/Charsets}}{673}{chapter.30}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~30}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {30}Unicode/Charsets}{}{673}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {30}Unicode/Charsets}{}{673}}}
\newlabel{unicode}{{30}{673}{Unicode/Charsets\relax }{chapter.30}{}}
\@writefile{toc}{\contentsline {section}{\numberline {30.1}Features and Benefits}{673}{section.30.1}}
\newlabel{id2579924}{{30.1}{673}{Features and Benefits\relax }{section.30.1}{}}
\newlabel{id2579949}{{30.1}{673}{Features and Benefits\relax }{section.30.1}{}}
\global \@namedef{@fn@label@id2579949}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {30.2}What Are Charsets and Unicode?}{673}{section.30.2}}
\newlabel{id2579974}{{30.2}{673}{What Are Charsets and Unicode?\relax }{section.30.2}{}}
\newlabel{id2589415}{{30.2}{674}{What Are Charsets and Unicode?\relax }{section.30.2}{}}
\global \@namedef{@fn@label@id2589415}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {30.3}Samba and Charsets}{674}{section.30.3}}
\newlabel{id2589461}{{30.3}{674}{Samba and Charsets\relax }{section.30.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {30.4}Conversion from Old Names}{675}{section.30.4}}
\newlabel{id2580321}{{30.4}{675}{Conversion from Old Names\relax }{section.30.4}{}}
\newlabel{id2580343}{{30.4}{675}{Conversion from Old Names\relax }{section.30.4}{}}
\global \@namedef{@fn@label@id2580343}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {30.5}Japanese Charsets}{675}{section.30.5}}
\newlabel{id2580353}{{30.5}{675}{Japanese Charsets\relax }{section.30.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.5.1}Basic Parameter Setting}{676}{subsection.30.5.1}}
\newlabel{id2580468}{{30.5.1}{676}{Basic Parameter Setting\relax }{subsection.30.5.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {30.5.1}{\ignorespaces VFS CAP}}{679}{example.30.5.1}}
\newlabel{vfscap-intl}{{30.5.1}{679}{Basic Parameter Setting\relax }{example.30.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.5.2}Individual Implementations}{679}{subsection.30.5.2}}
\newlabel{id2617350}{{30.5.2}{679}{Individual Implementations\relax }{subsection.30.5.2}{}}
\newlabel{id2617371}{{30.5.2}{680}{Individual Implementations\relax }{subsection.30.5.2}{}}
\global \@namedef{@fn@label@id2617371}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2617409}{{30.5.2}{680}{Individual Implementations\relax }{subsection.30.5.2}{}}
\global \@namedef{@fn@label@id2617409}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.5.3}Migration from Samba-2.2 Series}{680}{subsection.30.5.3}}
\newlabel{id2617456}{{30.5.3}{680}{Migration from Samba-2.2 Series\relax }{subsection.30.5.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {30.1}{\ignorespaces Japanese Character Sets in Samba-2.2 and Samba-3}}{681}{table.30.1}}
\newlabel{japancharsets}{{30.1}{681}{Migration from Samba-2.2 Series\relax }{table.30.1}{}}
\newlabel{id2591498}{{30.5.3}{681}{Migration from Samba-2.2 Series\relax }{table.30.1}{}}
\global \@namedef{@fn@label@id2591498}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 8\z@ \normalfont {\itshape a}}}}}}}
\newlabel{id2591531}{{30.5.3}{681}{Migration from Samba-2.2 Series\relax }{table.30.1}{}}
\global \@namedef{@fn@label@id2591531}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 8\z@ \normalfont {\itshape b}}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {30.6}Common Errors}{681}{section.30.6}}
\newlabel{id2591553}{{30.6}{681}{Common Errors\relax }{section.30.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.6.1}CP850.so Can't Be Found}{681}{subsection.30.6.1}}
\newlabel{id2591559}{{30.6.1}{681}{CP850.so Can't Be Found\relax }{subsection.30.6.1}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {31}\uppercase {Backup Techniques}}{683}{chapter.31}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~31}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {31}Backup Techniques}{}{683}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {31}Backup Techniques}{}{683}}}
\newlabel{Backup}{{31}{683}{Backup Techniques\relax }{chapter.31}{}}
\@writefile{toc}{\contentsline {section}{\numberline {31.1}Features and Benefits}{683}{section.31.1}}
\newlabel{id2519630}{{31.1}{683}{Features and Benefits\relax }{section.31.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {31.2}Discussion of Backup Solutions}{683}{section.31.2}}
\newlabel{id2430540}{{31.2}{683}{Discussion of Backup Solutions\relax }{section.31.2}{}}
\newlabel{id2563092}{{31.2}{684}{Discussion of Backup Solutions\relax }{section.31.2}{}}
\global \@namedef{@fn@label@id2563092}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {31.2.1}BackupPC}{684}{subsection.31.2.1}}
\newlabel{id2563107}{{31.2.1}{684}{BackupPC\relax }{subsection.31.2.1}{}}
\newlabel{id2563138}{{31.2.1}{684}{BackupPC\relax }{subsection.31.2.1}{}}
\global \@namedef{@fn@label@id2563138}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {31.2.2}Rsync}{684}{subsection.31.2.2}}
\newlabel{id2577603}{{31.2.2}{684}{Rsync\relax }{subsection.31.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {31.2.3}Amanda}{685}{subsection.31.2.3}}
\newlabel{id2589214}{{31.2.3}{685}{Amanda\relax }{subsection.31.2.3}{}}
\newlabel{id2589256}{{31.2.3}{685}{Amanda\relax }{subsection.31.2.3}{}}
\global \@namedef{@fn@label@id2589256}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {31.2.4}BOBS: Browseable Online Backup System}{685}{subsection.31.2.4}}
\newlabel{id2589264}{{31.2.4}{685}{BOBS: Browseable Online Backup System\relax }{subsection.31.2.4}{}}
\newlabel{id2589287}{{31.2.4}{685}{BOBS: Browseable Online Backup System\relax }{subsection.31.2.4}{}}
\global \@namedef{@fn@label@id2589287}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {32}\uppercase {High Availability}}{687}{chapter.32}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~32}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {32}High Availability}{}{687}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {32}High Availability}{}{687}}}
\newlabel{SambaHA}{{32}{687}{High Availability\relax }{chapter.32}{}}
\@writefile{toc}{\contentsline {section}{\numberline {32.1}Features and Benefits}{687}{section.32.1}}
\newlabel{id2509887}{{32.1}{687}{Features and Benefits\relax }{section.32.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {32.2}Technical Discussion}{688}{section.32.2}}
\newlabel{id2482172}{{32.2}{688}{Technical Discussion\relax }{section.32.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.1}The Ultimate Goal}{688}{subsection.32.2.1}}
\newlabel{id2621045}{{32.2.1}{688}{The Ultimate Goal\relax }{subsection.32.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.2}Why Is This So Hard?}{688}{subsection.32.2.2}}
\newlabel{id2621175}{{32.2.2}{688}{Why Is This So Hard?\relax }{subsection.32.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.1}The Front-End Challenge}{689}{subsubsection.32.2.2.1}}
\newlabel{id2576015}{{32.2.2.1}{689}{The Front-End Challenge\relax }{subsubsection.32.2.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.2}Demultiplexing SMB Requests}{689}{subsubsection.32.2.2.2}}
\newlabel{id2576112}{{32.2.2.2}{689}{Demultiplexing SMB Requests\relax }{subsubsection.32.2.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.3}The Distributed File System Challenge}{690}{subsubsection.32.2.2.3}}
\newlabel{id2576221}{{32.2.2.3}{690}{The Distributed File System Challenge\relax }{subsubsection.32.2.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.4}Restrictive Constraints on Distributed File Systems}{690}{subsubsection.32.2.2.4}}
\newlabel{id2591703}{{32.2.2.4}{690}{Restrictive Constraints on Distributed File Systems\relax }{subsubsection.32.2.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.5}Server Pool Communications}{691}{subsubsection.32.2.2.5}}
\newlabel{id2591776}{{32.2.2.5}{691}{Server Pool Communications\relax }{subsubsection.32.2.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.6}Server Pool Communications Demands}{691}{subsubsection.32.2.2.6}}
\newlabel{id2591864}{{32.2.2.6}{691}{Server Pool Communications Demands\relax }{subsubsection.32.2.2.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {32.2.2.7}Required Modifications to Samba}{691}{subsubsection.32.2.2.7}}
\newlabel{id2591921}{{32.2.2.7}{691}{Required Modifications to Samba\relax }{subsubsection.32.2.2.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.3}A Simple Solution}{692}{subsection.32.2.3}}
\newlabel{id2591981}{{32.2.3}{692}{A Simple Solution\relax }{subsection.32.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.4}High-Availability Server Products}{692}{subsection.32.2.4}}
\newlabel{id2592062}{{32.2.4}{692}{High-Availability Server Products\relax }{subsection.32.2.4}{}}
\newlabel{id2592153}{{32.2.4}{692}{High-Availability Server Products\relax }{subsection.32.2.4}{}}
\global \@namedef{@fn@label@id2592153}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2592174}{{32.2.4}{692}{High-Availability Server Products\relax }{subsection.32.2.4}{}}
\global \@namedef{@fn@label@id2592174}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.5}MS-DFS: The Poor Man's Cluster}{693}{subsection.32.2.5}}
\newlabel{id2618256}{{32.2.5}{693}{MS-DFS: The Poor Man's Cluster\relax }{subsection.32.2.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {32.2.6}Conclusions}{693}{subsection.32.2.6}}
\newlabel{id2618294}{{32.2.6}{693}{Conclusions\relax }{subsection.32.2.6}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {33}\uppercase {Handling Large Directories}}{695}{chapter.33}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~33}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {33}Handling Large Directories}{}{695}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {33}Handling Large Directories}{}{695}}}
\newlabel{largefile}{{33}{695}{Handling Large Directories\relax }{chapter.33}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {34}\uppercase {Advanced Configuration Techniques}}{697}{chapter.34}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~34}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {34}Advanced Configuration Techniques}{}{697}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {34}Advanced Configuration Techniques}{}{697}}}
\newlabel{cfgsmarts}{{34}{697}{Advanced Configuration Techniques\relax }{chapter.34}{}}
\@writefile{toc}{\contentsline {section}{\numberline {34.1}Implementation}{698}{section.34.1}}
\newlabel{id2620690}{{34.1}{698}{Implementation\relax }{section.34.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {34.1.1}Multiple Server Hosting}{698}{subsection.34.1.1}}
\newlabel{id2620700}{{34.1.1}{698}{Multiple Server Hosting\relax }{subsection.34.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {34.1.2}Multiple Virtual Server Personalities}{699}{subsection.34.1.2}}
\newlabel{id2482588}{{34.1.2}{699}{Multiple Virtual Server Personalities\relax }{subsection.34.1.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {34.1.1}{\ignorespaces Elastic smb.conf File}}{700}{example.34.1.1}}
\newlabel{elastic}{{34.1.1}{700}{Multiple Virtual Server Personalities\relax }{example.34.1.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {34.1.2}{\ignorespaces CDROM Server smb-cdserver.conf file}}{701}{example.34.1.2}}
\newlabel{cdserver}{{34.1.2}{701}{Multiple Virtual Server Personalities\relax }{example.34.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {34.1.3}Multiple Virtual Server Hosting}{701}{subsection.34.1.3}}
\newlabel{id2621658}{{34.1.3}{701}{Multiple Virtual Server Hosting\relax }{subsection.34.1.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {34.1.3}{\ignorespaces Master smb.conf File Global Section}}{702}{example.34.1.3}}
\newlabel{mastersmbc}{{34.1.3}{702}{Multiple Virtual Server Hosting\relax }{example.34.1.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {34.1.4}{\ignorespaces MERLIN smb-merlin.conf File Share Section}}{703}{example.34.1.4}}
\newlabel{merlinsmbc}{{34.1.4}{703}{Multiple Virtual Server Hosting\relax }{example.34.1.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {34.1.5}{\ignorespaces SAURON smb-sauron.conf File Share Section}}{703}{example.34.1.5}}
\newlabel{sauronsmbc}{{34.1.5}{703}{Multiple Virtual Server Hosting\relax }{example.34.1.5}{}}
\@writefile{toc}{\contentsline {part}{Part IV\hspace {1em}Migration and Updating}{703}{part.4}}
\newlabel{migration}{{IV}{705}{Migration and Updating\relax }{part.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {35}\uppercase {Updating and Upgrading Samba}}{705}{chapter.35}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~35}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {35}Updating and Upgrading Samba}{}{705}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {35}Updating and Upgrading Samba}{}{705}}}
\newlabel{upgrading-to-3.0}{{35}{705}{Updating and Upgrading Samba\relax }{chapter.35}{}}
\@writefile{toc}{\contentsline {section}{\numberline {35.1}Key Update Requirements}{705}{section.35.1}}
\newlabel{id2624384}{{35.1}{705}{Key Update Requirements\relax }{section.35.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.1.1}Upgrading from Samba-3.0.x to Samba-3.2.0}{706}{subsection.35.1.1}}
\newlabel{id2535202}{{35.1.1}{706}{Upgrading from Samba-3.0.x to Samba-3.2.0\relax }{subsection.35.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.1.2}Upgrading from Samba-2.x to Samba-3.0.25}{706}{subsection.35.1.2}}
\newlabel{oldupdatenotes}{{35.1.2}{706}{Upgrading from Samba-2.x to Samba-3.0.25\relax }{subsection.35.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.1.3}Quick Migration Guide}{706}{subsection.35.1.3}}
\newlabel{id2624418}{{35.1.3}{706}{Quick Migration Guide\relax }{subsection.35.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {35.2}New Featuers in Samba-3.x Series}{706}{section.35.2}}
\newlabel{id2624547}{{35.2}{706}{New Featuers in Samba-3.x Series\relax }{section.35.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.2.1}New Features in Samba-3.2.x Series}{706}{subsection.35.2.1}}
\newlabel{id2624556}{{35.2.1}{706}{New Features in Samba-3.2.x Series\relax }{subsection.35.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.2.2}New Features in Samba-3.0.x}{706}{subsection.35.2.2}}
\newlabel{id2624567}{{35.2.2}{706}{New Features in Samba-3.0.x\relax }{subsection.35.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.2.1}Configuration Parameter Changes}{708}{subsubsection.35.2.2.1}}
\newlabel{id2621907}{{35.2.2.1}{708}{Configuration Parameter Changes\relax }{subsubsection.35.2.2.1}{}}
\newlabel{id2621939}{{35.2.2.1}{708}{Configuration Parameter Changes\relax }{subsubsection.35.2.2.1}{}}
\global \@namedef{@fn@label@id2621939}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.2.2}Removed Parameters}{708}{subsubsection.35.2.2.2}}
\newlabel{id2619728}{{35.2.2.2}{708}{Removed Parameters\relax }{subsubsection.35.2.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.2.3}New Parameters}{709}{subsubsection.35.2.2.3}}
\newlabel{id2619905}{{35.2.2.3}{709}{New Parameters\relax }{subsubsection.35.2.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.2.4}Modified Parameters (Changes in Behavior)}{714}{subsubsection.35.2.2.4}}
\newlabel{id2626131}{{35.2.2.4}{714}{Modified Parameters (Changes in Behavior)\relax }{subsubsection.35.2.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {35.2.3}New Functionality}{715}{subsection.35.2.3}}
\newlabel{id2626256}{{35.2.3}{715}{New Functionality\relax }{subsection.35.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.3.1}TDB Data Files}{715}{subsubsection.35.2.3.1}}
\newlabel{id2626281}{{35.2.3.1}{715}{TDB Data Files\relax }{subsubsection.35.2.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.3.2}Changes in Behavior}{715}{subsubsection.35.2.3.2}}
\newlabel{id2626611}{{35.2.3.2}{715}{Changes in Behavior\relax }{subsubsection.35.2.3.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {35.1}{\ignorespaces Samba-2.2.x TDB File Descriptions}}{716}{table.35.1}}
\newlabel{oldtdbfiledesc}{{35.1}{716}{TDB Data Files\relax }{table.35.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.3.3}Passdb Backends and Authentication}{716}{subsubsection.35.2.3.3}}
\newlabel{id2626699}{{35.2.3.3}{716}{Passdb Backends and Authentication\relax }{subsubsection.35.2.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {35.2.3.4}LDAP}{717}{subsubsection.35.2.3.4}}
\newlabel{id2626849}{{35.2.3.4}{717}{LDAP\relax }{subsubsection.35.2.3.4}{}}
\newlabel{id2626859}{{35.2.3.4}{717}{New Schema\relax }{section*.34}{}}
\newlabel{id2627215}{{35.2.3.4}{718}{New Suffix for Searching\relax }{section*.35}{}}
\newlabel{id2627362}{{35.2.3.4}{719}{IdMap LDAP Support\relax }{section*.36}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {36}\uppercase {Migration from NT4 PDC to Samba-3 PDC}}{721}{chapter.36}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~36}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {36}Migration from NT4 PDC to Samba-3 PDC}{}{721}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {36}Migration from NT4 PDC to Samba-3 PDC}{}{721}}}
\newlabel{NT4Migration}{{36}{721}{Migration from NT4 PDC to Samba-3 PDC\relax }{chapter.36}{}}
\@writefile{toc}{\contentsline {section}{\numberline {36.1}Planning and Getting Started}{721}{section.36.1}}
\newlabel{id2460638}{{36.1}{721}{Planning and Getting Started\relax }{section.36.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {36.1.1}Objectives}{721}{subsection.36.1.1}}
\newlabel{id2625666}{{36.1.1}{721}{Objectives\relax }{subsection.36.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {36.1.1.1}Domain Layout}{723}{subsubsection.36.1.1.1}}
\newlabel{id2624168}{{36.1.1.1}{723}{Domain Layout\relax }{subsubsection.36.1.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {36.1.1.2}Server Share and Directory Layout}{724}{subsubsection.36.1.1.2}}
\newlabel{id2530653}{{36.1.1.2}{724}{Server Share and Directory Layout\relax }{subsubsection.36.1.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {36.1.1.3}Logon Scripts}{724}{subsubsection.36.1.1.3}}
\newlabel{id2618838}{{36.1.1.3}{724}{Logon Scripts\relax }{subsubsection.36.1.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {36.1.1.4}Profile Migration/Creation}{725}{subsubsection.36.1.1.4}}
\newlabel{id2618899}{{36.1.1.4}{725}{Profile Migration/Creation\relax }{subsubsection.36.1.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {36.1.1.5}User and Group Accounts}{725}{subsubsection.36.1.1.5}}
\newlabel{id2624629}{{36.1.1.5}{725}{User and Group Accounts\relax }{subsubsection.36.1.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {36.1.2}Steps in Migration Process}{725}{subsection.36.1.2}}
\newlabel{id2624679}{{36.1.2}{725}{Steps in Migration Process\relax }{subsection.36.1.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {36.2}Migration Options}{726}{section.36.2}}
\newlabel{id2624922}{{36.2}{726}{Migration Options\relax }{section.36.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {36.1}{\ignorespaces The Three Major Site Types}}{727}{table.36.1}}
\newlabel{majtypes}{{36.1}{727}{Migration Options\relax }{table.36.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {36.2.1}Planning for Success}{727}{subsection.36.2.1}}
\newlabel{id2628297}{{36.2.1}{727}{Planning for Success\relax }{subsection.36.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {36.2.2}Samba-3 Implementation Choices}{727}{subsection.36.2.2}}
\newlabel{id2628516}{{36.2.2}{727}{Samba-3 Implementation Choices\relax }{subsection.36.2.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {36.2}{\ignorespaces Nature of the Conversion Choices}}{728}{table.36.2}}
\newlabel{natconchoices}{{36.2}{728}{Planning for Success\relax }{table.36.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {37}\uppercase {SWAT: The Samba Web Administration Tool}}{731}{chapter.37}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~37}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {37}SWAT: The Samba Web Administration Tool}{}{731}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {37}SWAT: The Samba Web Administration Tool}{}{731}}}
\newlabel{SWAT}{{37}{731}{SWAT: The Samba Web Administration Tool\relax }{chapter.37}{}}
\@writefile{toc}{\contentsline {section}{\numberline {37.1}Features and Benefits}{731}{section.37.1}}
\newlabel{id2518353}{{37.1}{731}{Features and Benefits\relax }{section.37.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {37.2}Guidelines and Technical Tips}{732}{section.37.2}}
\newlabel{id2625461}{{37.2}{732}{Guidelines and Technical Tips\relax }{section.37.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.2.1}Validate SWAT Installation}{732}{subsection.37.2.1}}
\newlabel{id2625480}{{37.2.1}{732}{Validate SWAT Installation\relax }{subsection.37.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {37.2.1.1}Locating the SWAT File}{733}{subsubsection.37.2.1.1}}
\newlabel{id2625551}{{37.2.1.1}{733}{Locating the SWAT File\relax }{subsubsection.37.2.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {37.2.1.2}Locating the SWAT Support Files}{733}{subsubsection.37.2.1.2}}
\newlabel{id2468140}{{37.2.1.2}{733}{Locating the SWAT Support Files\relax }{subsubsection.37.2.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.2.2}Enabling SWAT for Use}{735}{subsection.37.2.2}}
\newlabel{xinetd}{{37.2.2}{735}{Enabling SWAT for Use\relax }{subsection.37.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.2.3}Securing SWAT through SSL}{737}{subsection.37.2.3}}
\newlabel{id2619001}{{37.2.3}{737}{Securing SWAT through SSL\relax }{subsection.37.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.2.4}Enabling SWAT Internationalization Support}{737}{subsection.37.2.4}}
\newlabel{id2619158}{{37.2.4}{737}{Enabling SWAT Internationalization Support\relax }{subsection.37.2.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {37.3}Overview and Quick Tour}{738}{section.37.3}}
\newlabel{id2625097}{{37.3}{738}{Overview and Quick Tour\relax }{section.37.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.1}The SWAT Home Page}{738}{subsection.37.3.1}}
\newlabel{id2625111}{{37.3.1}{738}{The SWAT Home Page\relax }{subsection.37.3.1}{}}
\newlabel{id2625135}{{37.3.1}{739}{The SWAT Home Page\relax }{subsection.37.3.1}{}}
\global \@namedef{@fn@label@id2625135}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.2}Global Settings}{739}{subsection.37.3.2}}
\newlabel{id2625173}{{37.3.2}{739}{Global Settings\relax }{subsection.37.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.3}Share Settings}{740}{subsection.37.3.3}}
\newlabel{id2625278}{{37.3.3}{740}{Share Settings\relax }{subsection.37.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.4}Printers Settings}{740}{subsection.37.3.4}}
\newlabel{id2622331}{{37.3.4}{740}{Printers Settings\relax }{subsection.37.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.5}The SWAT Wizard}{740}{subsection.37.3.5}}
\newlabel{id2622388}{{37.3.5}{740}{The SWAT Wizard\relax }{subsection.37.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.6}The Status Page}{741}{subsection.37.3.6}}
\newlabel{id2622453}{{37.3.6}{741}{The Status Page\relax }{subsection.37.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.7}The View Page}{741}{subsection.37.3.7}}
\newlabel{id2622499}{{37.3.7}{741}{The View Page\relax }{subsection.37.3.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {37.3.8}The Password Change Page}{741}{subsection.37.3.8}}
\newlabel{id2622520}{{37.3.8}{741}{The Password Change Page\relax }{subsection.37.3.8}{}}
\@writefile{toc}{\contentsline {part}{Part V\hspace {1em}Troubleshooting}{741}{part.5}}
\newlabel{troubleshooting}{{V}{743}{Troubleshooting\relax }{part.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {38}\uppercase {The Samba Checklist}}{743}{chapter.38}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~38}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {38}The Samba Checklist}{}{743}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {38}The Samba Checklist}{}{743}}}
\newlabel{diagnosis}{{38}{743}{The Samba Checklist\relax }{chapter.38}{}}
\@writefile{toc}{\contentsline {section}{\numberline {38.1}Introduction}{743}{section.38.1}}
\newlabel{id2627440}{{38.1}{743}{Introduction\relax }{section.38.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {38.2}Assumptions}{743}{section.38.2}}
\newlabel{id2627480}{{38.2}{743}{Assumptions\relax }{section.38.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {38.2.1}{\ignorespaces smb.conf with [tmp] Share}}{744}{example.38.2.1}}
\newlabel{tmpshare}{{38.2.1}{744}{Assumptions\relax }{example.38.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {38.3}The Tests}{744}{section.38.3}}
\newlabel{id2629055}{{38.3}{744}{The Tests\relax }{section.38.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {38.3.1}{\ignorespaces Configuration for Allowing Connections Only from a Certain Subnet}}{747}{example.38.3.1}}
\newlabel{modif1}{{38.3.1}{747}{The Tests\relax }{example.38.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {38.3.2}{\ignorespaces Configuration for Allowing Connections from a Certain Subnet and localhost}}{748}{example.38.3.2}}
\newlabel{modif2}{{38.3.2}{748}{The Tests\relax }{example.38.3.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {39}\uppercase {Analyzing and Solving Samba Problems}}{753}{chapter.39}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~39}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {39}Analyzing and Solving Samba Problems}{}{753}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {39}Analyzing and Solving Samba Problems}{}{753}}}
\newlabel{problems}{{39}{753}{Analyzing and Solving Samba Problems\relax }{chapter.39}{}}
\@writefile{toc}{\contentsline {section}{\numberline {39.1}Diagnostics Tools}{753}{section.39.1}}
\newlabel{id2633405}{{39.1}{753}{Diagnostics Tools\relax }{section.39.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {39.1.1}Debugging with Samba Itself}{753}{subsection.39.1.1}}
\newlabel{id2633458}{{39.1.1}{753}{Debugging with Samba Itself\relax }{subsection.39.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {39.1.2}Tcpdump}{754}{subsection.39.1.2}}
\newlabel{id2629339}{{39.1.2}{754}{Tcpdump\relax }{subsection.39.1.2}{}}
\newlabel{id2629369}{{39.1.2}{754}{Tcpdump\relax }{subsection.39.1.2}{}}
\global \@namedef{@fn@label@id2629369}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {39.1.3}Ethereal}{754}{subsection.39.1.3}}
\newlabel{id2629391}{{39.1.3}{754}{Ethereal\relax }{subsection.39.1.3}{}}
\newlabel{id2629407}{{39.1.3}{754}{Ethereal\relax }{subsection.39.1.3}{}}
\global \@namedef{@fn@label@id2629407}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {39.1.4}The Windows Network Monitor}{754}{subsection.39.1.4}}
\newlabel{id2629481}{{39.1.4}{754}{The Windows Network Monitor\relax }{subsection.39.1.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {39.1}{\ignorespaces Starting a Capture.}}{755}{figure.39.1}}
\newlabel{ethereal1}{{39.1}{755}{Ethereal\relax }{figure.39.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {39.1.4.1}Installing Network Monitor on an NT Workstation}{755}{subsubsection.39.1.4.1}}
\newlabel{id2465299}{{39.1.4.1}{755}{Installing Network Monitor on an NT Workstation\relax }{subsubsection.39.1.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {39.2}{\ignorespaces Main Ethereal Data Window.}}{756}{figure.39.2}}
\newlabel{ethereal2}{{39.2}{756}{Ethereal\relax }{figure.39.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {39.1.4.2}Installing Network Monitor on Windows 9x/Me}{757}{subsubsection.39.1.4.2}}
\newlabel{id2622650}{{39.1.4.2}{757}{Installing Network Monitor on Windows 9x/Me\relax }{subsubsection.39.1.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {39.2}Useful URLs}{757}{section.39.2}}
\newlabel{id2622672}{{39.2}{757}{Useful URLs\relax }{section.39.2}{}}
\newlabel{id2622685}{{39.2}{757}{Useful URLs\relax }{section.39.2}{}}
\global \@namedef{@fn@label@id2622685}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2622700}{{39.2}{757}{Useful URLs\relax }{section.39.2}{}}
\global \@namedef{@fn@label@id2622700}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {39.3}Getting Mailing List Help}{757}{section.39.3}}
\newlabel{id2622712}{{39.3}{757}{Getting Mailing List Help\relax }{section.39.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {39.4}How to Get Off the Mailing Lists}{759}{section.39.4}}
\newlabel{id2622881}{{39.4}{759}{How to Get Off the Mailing Lists\relax }{section.39.4}{}}
\newlabel{id2622891}{{39.4}{759}{How to Get Off the Mailing Lists\relax }{section.39.4}{}}
\global \@namedef{@fn@label@id2622891}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {40}\uppercase {Reporting Bugs}}{761}{chapter.40}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~40}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {40}Reporting Bugs}{}{761}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {40}Reporting Bugs}{}{761}}}
\newlabel{bugreport}{{40}{761}{Reporting Bugs\relax }{chapter.40}{}}
\@writefile{toc}{\contentsline {section}{\numberline {40.1}Introduction}{761}{section.40.1}}
\newlabel{id2631617}{{40.1}{761}{Introduction\relax }{section.40.1}{}}
\newlabel{id2622923}{{40.1}{761}{Introduction\relax }{section.40.1}{}}
\global \@namedef{@fn@label@id2622923}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {40.2}General Information}{761}{section.40.2}}
\newlabel{id2622989}{{40.2}{761}{General Information\relax }{section.40.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {40.3}Debug Levels}{762}{section.40.3}}
\newlabel{dbglvl}{{40.3}{762}{Debug Levels\relax }{section.40.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {40.3.1}Debugging-Specific Operations}{763}{subsection.40.3.1}}
\newlabel{id2631770}{{40.3.1}{763}{Debugging-Specific Operations\relax }{subsection.40.3.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {40.1}{\ignorespaces Debuggable Functions}}{763}{table.40.1}}
\newlabel{dbgclass}{{40.1}{763}{Debugging-Specific Operations\relax }{table.40.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {40.4}Internal Errors}{763}{section.40.4}}
\newlabel{id2631955}{{40.4}{763}{Internal Errors\relax }{section.40.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {40.5}Attaching to a Running Process}{764}{section.40.5}}
\newlabel{id2632092}{{40.5}{764}{Attaching to a Running Process\relax }{section.40.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {40.6}Patches}{765}{section.40.6}}
\newlabel{id2632214}{{40.6}{765}{Patches\relax }{section.40.6}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {41}\uppercase {Managing TDB Files}}{767}{chapter.41}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~41}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {41}Managing TDB Files}{}{767}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {41}Managing TDB Files}{}{767}}}
\newlabel{tdb}{{41}{767}{Managing TDB Files\relax }{chapter.41}{}}
\@writefile{toc}{\contentsline {section}{\numberline {41.1}Features and Benefits}{767}{section.41.1}}
\newlabel{id2456616}{{41.1}{767}{Features and Benefits\relax }{section.41.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {41.2}Managing TDB Files}{767}{section.41.2}}
\newlabel{id2632384}{{41.2}{767}{Managing TDB Files\relax }{section.41.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {41.1}{\ignorespaces Samba's Trivial Database Files}}{769}{table.41.1}}
\newlabel{TOSH-TDB}{{41.1}{769}{Features and Benefits\relax }{table.41.1}{}}
\@writefile{toc}{\contentsline {part}{Part VI\hspace {1em}Reference Section}{769}{part.6}}
\newlabel{Appendix}{{VI}{771}{Reference Section\relax }{part.6}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {42}\uppercase {How to Compile Samba}}{771}{chapter.42}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~42}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {42}How to Compile Samba}{}{771}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {42}How to Compile Samba}{}{771}}}
\newlabel{compiling}{{42}{771}{How to Compile Samba\relax }{chapter.42}{}}
\newlabel{id2634871}{{42}{771}{How to Compile Samba\relax }{chapter.42}{}}
\global \@namedef{@fn@label@id2634871}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {42.1}Access Samba Source Code via Subversion}{771}{section.42.1}}
\newlabel{id2634885}{{42.1}{771}{Access Samba Source Code via Subversion\relax }{section.42.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {42.1.1}Introduction}{771}{subsection.42.1.1}}
\newlabel{id2634890}{{42.1.1}{771}{Introduction\relax }{subsection.42.1.1}{}}
\newlabel{id2634922}{{42.1.1}{771}{Introduction\relax }{subsection.42.1.1}{}}
\global \@namedef{@fn@label@id2634922}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {42.1.2}Subversion Access to samba.org}{771}{subsection.42.1.2}}
\newlabel{id2634933}{{42.1.2}{771}{Subversion Access to samba.org\relax }{subsection.42.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.1.2.1}Access via ViewCVS}{772}{subsubsection.42.1.2.1}}
\newlabel{id2634946}{{42.1.2.1}{772}{Access via ViewCVS\relax }{subsubsection.42.1.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.1.2.2}Access via Subversion}{772}{subsubsection.42.1.2.2}}
\newlabel{id2634984}{{42.1.2.2}{772}{Access via Subversion\relax }{subsubsection.42.1.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {42.2}Accessing the Samba Sources via rsync and ftp}{773}{section.42.2}}
\newlabel{id2629996}{{42.2}{773}{Accessing the Samba Sources via rsync and ftp\relax }{section.42.2}{}}
\newlabel{id2630027}{{42.2}{773}{Accessing the Samba Sources via rsync and ftp\relax }{section.42.2}{}}
\global \@namedef{@fn@label@id2630027}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2630036}{{42.2}{773}{Accessing the Samba Sources via rsync and ftp\relax }{section.42.2}{}}
\global \@namedef{@fn@label@id2630036}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2630048}{{42.2}{773}{Accessing the Samba Sources via rsync and ftp\relax }{section.42.2}{}}
\global \@namedef{@fn@label@id2630048}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {42.3}Verifying Samba's PGP Signature}{773}{section.42.3}}
\newlabel{id2630071}{{42.3}{773}{Verifying Samba's PGP Signature\relax }{section.42.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {42.4}Building the Binaries}{774}{section.42.4}}
\newlabel{id2630213}{{42.4}{774}{Building the Binaries\relax }{section.42.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {42.4.1}Compiling Samba with Active Directory Support}{776}{subsection.42.4.1}}
\newlabel{id2632676}{{42.4.1}{776}{Compiling Samba with Active Directory Support\relax }{subsection.42.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.4.1.1}Installing the Required Packages for Debian}{776}{subsubsection.42.4.1.1}}
\newlabel{id2632743}{{42.4.1.1}{776}{Installing the Required Packages for Debian\relax }{subsubsection.42.4.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.4.1.2}Installing the Required Packages for Red Hat Linux}{776}{subsubsection.42.4.1.2}}
\newlabel{id2632773}{{42.4.1.2}{776}{Installing the Required Packages for Red Hat Linux\relax }{subsubsection.42.4.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.4.1.3}SuSE Linux Package Requirements}{777}{subsubsection.42.4.1.3}}
\newlabel{id2632820}{{42.4.1.3}{777}{SuSE Linux Package Requirements\relax }{subsubsection.42.4.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {42.5}Starting the smbd nmbd and winbindd}{777}{section.42.5}}
\newlabel{startingSamba}{{42.5}{777}{Starting the smbd nmbd and winbindd\relax }{section.42.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {42.5.1}Starting from inetd.conf}{777}{subsection.42.5.1}}
\newlabel{id2632953}{{42.5.1}{777}{Starting from inetd.conf\relax }{subsection.42.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {42.5.2}Alternative: Starting smbd as a Daemon}{779}{subsection.42.5.2}}
\newlabel{id2630827}{{42.5.2}{779}{Alternative: Starting smbd as a Daemon\relax }{subsection.42.5.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.5.2.1}Starting Samba for Red Hat Linux}{780}{subsubsection.42.5.2.1}}
\newlabel{id2630927}{{42.5.2.1}{780}{Starting Samba for Red Hat Linux\relax }{subsubsection.42.5.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {42.5.2.2}Starting Samba for Novell SUSE Linux}{781}{subsubsection.42.5.2.2}}
\newlabel{id2631050}{{42.5.2.2}{781}{Starting Samba for Novell SUSE Linux\relax }{subsubsection.42.5.2.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {43}\uppercase {Portability}}{783}{chapter.43}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~43}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {43}Portability}{}{783}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {43}Portability}{}{783}}}
\newlabel{Portability}{{43}{783}{Portability\relax }{chapter.43}{}}
\@writefile{toc}{\contentsline {section}{\numberline {43.1}HPUX}{783}{section.43.1}}
\newlabel{id2630309}{{43.1}{783}{HPUX\relax }{section.43.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {43.2}SCO UNIX}{784}{section.43.2}}
\newlabel{id2630414}{{43.2}{784}{SCO UNIX\relax }{section.43.2}{}}
\newlabel{id2630430}{{43.2}{784}{SCO UNIX\relax }{section.43.2}{}}
\global \@namedef{@fn@label@id2630430}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {43.3}DNIX}{784}{section.43.3}}
\newlabel{id2482563}{{43.3}{784}{DNIX\relax }{section.43.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {43.4}Red Hat Linux}{786}{section.43.4}}
\newlabel{id2633866}{{43.4}{786}{Red Hat Linux\relax }{section.43.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {43.5}AIX: Sequential Read Ahead}{786}{section.43.5}}
\newlabel{id2637759}{{43.5}{786}{AIX: Sequential Read Ahead\relax }{section.43.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {43.6}Solaris}{787}{section.43.6}}
\newlabel{id2637820}{{43.6}{787}{Solaris\relax }{section.43.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {43.6.1}Locking Improvements}{787}{subsection.43.6.1}}
\newlabel{id2637826}{{43.6.1}{787}{Locking Improvements\relax }{subsection.43.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {43.6.2}Winbind on Solaris 9}{787}{subsection.43.6.2}}
\newlabel{winbind-solaris9}{{43.6.2}{787}{Winbind on Solaris 9\relax }{subsection.43.6.2}{}}
\newlabel{id2637865}{{43.6.2}{787}{Winbind on Solaris 9\relax }{subsection.43.6.2}{}}
\global \@namedef{@fn@label@id2637865}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {44}\uppercase {Samba and Other CIFS Clients}}{789}{chapter.44}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~44}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {44}Samba and Other CIFS Clients}{}{789}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {44}Samba and Other CIFS Clients}{}{789}}}
\newlabel{Other-Clients}{{44}{789}{Samba and Other CIFS Clients\relax }{chapter.44}{}}
\@writefile{toc}{\contentsline {section}{\numberline {44.1}Macintosh Clients}{789}{section.44.1}}
\newlabel{id2635144}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\newlabel{id2635160}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\global \@namedef{@fn@label@id2635160}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2635165}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\global \@namedef{@fn@label@id2635165}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2635198}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\global \@namedef{@fn@label@id2635198}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2635203}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\global \@namedef{@fn@label@id2635203}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2635212}{{44.1}{789}{Macintosh Clients\relax }{section.44.1}{}}
\global \@namedef{@fn@label@id2635212}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {44.2}OS2 Client}{790}{section.44.2}}
\newlabel{id2635226}{{44.2}{790}{OS2 Client\relax }{section.44.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.2.1}Configuring OS/2 Warp Connect or OS/2 Warp 4}{790}{subsection.44.2.1}}
\newlabel{id2635233}{{44.2.1}{790}{Configuring OS/2 Warp Connect or OS/2 Warp 4\relax }{subsection.44.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.2.2}Configuring Other Versions of OS/2}{790}{subsection.44.2.2}}
\newlabel{id2637169}{{44.2.2}{790}{Configuring Other Versions of OS/2\relax }{subsection.44.2.2}{}}
\newlabel{id2637184}{{44.2.2}{790}{Configuring Other Versions of OS/2\relax }{subsection.44.2.2}{}}
\global \@namedef{@fn@label@id2637184}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2637214}{{44.2.2}{791}{Configuring Other Versions of OS/2\relax }{subsection.44.2.2}{}}
\global \@namedef{@fn@label@id2637214}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.2.3}Printer Driver Download for OS/2 Clients}{791}{subsection.44.2.3}}
\newlabel{id2637226}{{44.2.3}{791}{Printer Driver Download for OS/2 Clients\relax }{subsection.44.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {44.3}Windows for Workgroups}{791}{section.44.3}}
\newlabel{id2637313}{{44.3}{791}{Windows for Workgroups\relax }{section.44.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.1}Latest TCP/IP Stack from Microsoft}{791}{subsection.44.3.1}}
\newlabel{id2637319}{{44.3.1}{791}{Latest TCP/IP Stack from Microsoft\relax }{subsection.44.3.1}{}}
\newlabel{id2630491}{{44.3.1}{792}{Latest TCP/IP Stack from Microsoft\relax }{subsection.44.3.1}{}}
\global \@namedef{@fn@label@id2630491}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.2}Delete .pwl Files After Password Change}{792}{subsection.44.3.2}}
\newlabel{id2630500}{{44.3.2}{792}{Delete .pwl Files After Password Change\relax }{subsection.44.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.3}Configuring Windows for Workgroups Password Handling}{792}{subsection.44.3.3}}
\newlabel{id2630527}{{44.3.3}{792}{Configuring Windows for Workgroups Password Handling\relax }{subsection.44.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.4}Password Case Sensitivity}{792}{subsection.44.3.4}}
\newlabel{id2630579}{{44.3.4}{792}{Password Case Sensitivity\relax }{subsection.44.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.5}Use TCP/IP as Default Protocol}{793}{subsection.44.3.5}}
\newlabel{id2630603}{{44.3.5}{793}{Use TCP/IP as Default Protocol\relax }{subsection.44.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.3.6}Speed Improvement}{793}{subsection.44.3.6}}
\newlabel{speedimpr}{{44.3.6}{793}{Speed Improvement\relax }{subsection.44.3.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {44.4}Windows 95/98}{793}{section.44.4}}
\newlabel{id2630660}{{44.4}{793}{Windows 95/98\relax }{section.44.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {44.4.1}Speed Improvement}{794}{subsection.44.4.1}}
\newlabel{id2631138}{{44.4.1}{794}{Speed Improvement\relax }{subsection.44.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {44.5}Windows 2000 Service Pack 2}{794}{section.44.5}}
\newlabel{id2631159}{{44.5}{794}{Windows 2000 Service Pack 2\relax }{section.44.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {44.5.1}{\ignorespaces Minimal Profile Share}}{794}{example.44.5.1}}
\newlabel{minimalprofile}{{44.5.1}{794}{Windows 2000 Service Pack 2\relax }{example.44.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {44.6}Windows NT 3.1}{795}{section.44.6}}
\newlabel{id2631301}{{44.6}{795}{Windows NT 3.1\relax }{section.44.6}{}}
\newlabel{id2631311}{{44.6}{795}{Windows NT 3.1\relax }{section.44.6}{}}
\global \@namedef{@fn@label@id2631311}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {45}\uppercase {Samba Performance Tuning}}{797}{chapter.45}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~45}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {45}Samba Performance Tuning}{}{797}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {45}Samba Performance Tuning}{}{797}}}
\newlabel{speed}{{45}{797}{Samba Performance Tuning\relax }{chapter.45}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.1}Comparisons}{797}{section.45.1}}
\newlabel{id2510653}{{45.1}{797}{Comparisons\relax }{section.45.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.2}Socket Options}{797}{section.45.2}}
\newlabel{id2631329}{{45.2}{797}{Socket Options\relax }{section.45.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.3}Read Size}{798}{section.45.3}}
\newlabel{id2631407}{{45.3}{798}{Read Size\relax }{section.45.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.4}Max Xmit}{799}{section.45.4}}
\newlabel{id2631441}{{45.4}{799}{Max Xmit\relax }{section.45.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.5}Log Level}{799}{section.45.5}}
\newlabel{id2631482}{{45.5}{799}{Log Level\relax }{section.45.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.6}Read Raw}{799}{section.45.6}}
\newlabel{id2631500}{{45.6}{799}{Read Raw\relax }{section.45.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.7}Write Raw}{799}{section.45.7}}
\newlabel{id2631540}{{45.7}{799}{Write Raw\relax }{section.45.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.8}Slow Logins}{800}{section.45.8}}
\newlabel{id2631570}{{45.8}{800}{Slow Logins\relax }{section.45.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.9}Client Tuning}{800}{section.45.9}}
\newlabel{id2631587}{{45.9}{800}{Client Tuning\relax }{section.45.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.10}Samba Performance Problem Due to Changing Linux Kernel}{800}{section.45.10}}
\newlabel{id2637356}{{45.10}{800}{Samba Performance Problem Due to Changing Linux Kernel\relax }{section.45.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.11}Corrupt tdb Files}{801}{section.45.11}}
\newlabel{id2637449}{{45.11}{801}{Corrupt tdb Files\relax }{section.45.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {45.12}Samba Performance is Very Slow}{801}{section.45.12}}
\newlabel{id2637547}{{45.12}{801}{Samba Performance is Very Slow\relax }{section.45.12}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {46}\uppercase {LDAP and Transport Layer Security}}{803}{chapter.46}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~46}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {46}LDAP and Transport Layer Security}{}{803}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {46}LDAP and Transport Layer Security}{}{803}}}
\newlabel{ch-ldap-tls}{{46}{803}{LDAP and Transport Layer Security\relax }{chapter.46}{}}
\@writefile{toc}{\contentsline {section}{\numberline {46.1}Introduction}{803}{section.46.1}}
\newlabel{s1-intro-ldap-tls}{{46.1}{803}{Introduction\relax }{section.46.1}{}}
\newlabel{id2639668}{{46.1}{803}{Introduction\relax }{section.46.1}{}}
\global \@namedef{@fn@label@id2639668}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2639726}{{46.1}{804}{Introduction\relax }{section.46.1}{}}
\global \@namedef{@fn@label@id2639726}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont {\itshape a}}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {46.2}Configuring}{804}{section.46.2}}
\newlabel{s1-config-ldap-tls}{{46.2}{804}{Configuring\relax }{section.46.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {46.2.1}Generating the Certificate Authority}{804}{subsection.46.2.1}}
\newlabel{s1-config-ldap-tls-certs}{{46.2.1}{804}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\newlabel{id2639781}{{46.2.1}{804}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\global \@namedef{@fn@label@id2639781}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2639816}{{46.2.1}{804}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\global \@namedef{@fn@label@id2639816}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2639822}{{46.2.1}{804}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\global \@namedef{@fn@label@id2639822}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2639840}{{46.2.1}{804}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\global \@namedef{@fn@label@id2639840}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2635408}{{46.2.1}{805}{Generating the Certificate Authority\relax }{subsection.46.2.1}{}}
\global \@namedef{@fn@label@id2635408}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {46.2.2}Generating the Server Certificate}{806}{subsection.46.2.2}}
\newlabel{s1-config-ldap-tls-server}{{46.2.2}{806}{Generating the Server Certificate\relax }{subsection.46.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {46.2.3}Installing the Certificates}{808}{subsection.46.2.3}}
\newlabel{s1-config-ldap-tls-install}{{46.2.3}{808}{Installing the Certificates\relax }{subsection.46.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {46.3}Testing}{809}{section.46.3}}
\newlabel{s1-test-ldap-tls}{{46.3}{809}{Testing\relax }{section.46.3}{}}
\newlabel{id2633988}{{46.3}{810}{Testing\relax }{section.46.3}{}}
\global \@namedef{@fn@label@id2633988}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {46.4}Troubleshooting}{811}{section.46.4}}
\newlabel{s1-int-ldap-tls}{{46.4}{811}{Troubleshooting\relax }{section.46.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {47}\uppercase {Samba Support}}{813}{chapter.47}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~47}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {47}Samba Support}{}{813}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {47}Samba Support}{}{813}}}
\newlabel{id2469957}{{47}{813}{Samba Support\relax }{chapter.47}{}}
\@writefile{toc}{\contentsline {section}{\numberline {47.1}Free Support}{814}{section.47.1}}
\newlabel{id2639527}{{47.1}{814}{Free Support\relax }{section.47.1}{}}
\newlabel{id2640769}{{47.1}{814}{Free Support\relax }{section.47.1}{}}
\global \@namedef{@fn@label@id2640769}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2640789}{{47.1}{814}{Free Support\relax }{section.47.1}{}}
\global \@namedef{@fn@label@id2640789}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2617997}{{47.1}{814}{Free Support\relax }{section.47.1}{}}
\global \@namedef{@fn@label@id2617997}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {47.2}Commercial Support}{815}{section.47.2}}
\newlabel{id2640860}{{47.2}{815}{Commercial Support\relax }{section.47.2}{}}
\newlabel{id2640922}{{47.2}{815}{Commercial Support\relax }{section.47.2}{}}
\global \@namedef{@fn@label@id2640922}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {48}\uppercase {DNS and DHCP Configuration Guide}}{817}{chapter.48}}
\@writefile{loe}{\addvspace {14pt}}
\@writefile{loe}{\noindent {\bfseries Chapter~48}\par }
\@writefile{loe}{\addvspace {10pt}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {48}DNS and DHCP Configuration Guide}{}{817}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {48}DNS and DHCP Configuration Guide}{}{817}}}
\newlabel{DNSDHCP}{{48}{817}{DNS and DHCP Configuration Guide\relax }{chapter.48}{}}
\@writefile{toc}{\contentsline {section}{\numberline {48.1}Features and Benefits}{817}{section.48.1}}
\newlabel{id2475712}{{48.1}{817}{Features and Benefits\relax }{section.48.1}{}}
\newlabel{id2635837}{{48.1}{818}{Features and Benefits\relax }{section.48.1}{}}
\global \@namedef{@fn@label@id2635837}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2635847}{{48.1}{818}{Features and Benefits\relax }{section.48.1}{}}
\global \@namedef{@fn@label@id2635847}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2635853}{{48.1}{818}{Features and Benefits\relax }{section.48.1}{}}
\global \@namedef{@fn@label@id2635853}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {48.2}Example Configuration}{818}{section.48.2}}
\newlabel{id2635887}{{48.2}{818}{Example Configuration\relax }{section.48.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {48.2.1}Dynamic DNS}{819}{subsection.48.2.1}}
\newlabel{id2635980}{{48.2.1}{819}{Dynamic DNS\relax }{subsection.48.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {48.2.2}DHCP Server}{823}{subsection.48.2.2}}
\newlabel{DHCP}{{48.2.2}{823}{DHCP Server\relax }{subsection.48.2.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {A}\uppercase {GNU General Public License version 3}}{825}{appendix.A}}
\@writefile{lof}{\addvspace {10pt}}
\@writefile{lot}{\addvspace {10pt}}
\@writefile{lof}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {A}GNU General Public License version 3}{}{825}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {A}GNU General Public License version 3}{}{825}}}
\newlabel{id2475986}{{A}{825}{GNU General Public License version 3\relax }{appendix.A}{}}
\newlabel{id2506652}{{A}{825}{Preamble\relax }{section*.37}{}}
\newlabel{id2642815}{{A}{826}{TERMS AND CONDITIONS\relax }{section*.38}{}}
\newlabel{id2458799}{{A}{827}{0. Definitions}{section*.39}{}}
\newlabel{id2642514}{{A}{827}{1. Source Code}{section*.40}{}}
\newlabel{id2573672}{{A}{828}{2. Basic Permissions}{section*.41}{}}
\newlabel{id2465368}{{A}{829}{3. Protecting Users’ Legal Rights From Anti-Circumvention Law}{section*.42}{}}
\newlabel{id2573806}{{A}{829}{4. Conveying Verbatim Copies}{section*.43}{}}
\newlabel{id2493767}{{A}{830}{5. Conveying Modified Source Versions}{section*.44}{}}
\newlabel{id2468100}{{A}{831}{6. Conveying Non-Source Forms}{section*.45}{}}
\newlabel{id2642923}{{A}{833}{7. Additional Terms}{section*.46}{}}
\newlabel{id2494270}{{A}{834}{8. Termination}{section*.47}{}}
\newlabel{id2644864}{{A}{835}{9. Acceptance Not Required for Having Copies}{section*.48}{}}
\newlabel{id2471274}{{A}{835}{10. Automatic Licensing of Downstream Recipients}{section*.49}{}}
\newlabel{id2500727}{{A}{836}{11. Patents}{section*.50}{}}
\newlabel{id2571497}{{A}{837}{12. No Surrender of Others’ Freedom}{section*.51}{}}
\newlabel{id2642655}{{A}{838}{13. Use with the GNU Affero General Public License}{section*.52}{}}
\newlabel{id2456609}{{A}{838}{14. Revised Versions of this License}{section*.53}{}}
\newlabel{id2502983}{{A}{839}{15. Disclaimer of Warranty}{section*.54}{}}
\newlabel{id2466637}{{A}{839}{16. Limitation of Liability}{section*.55}{}}
\newlabel{id2646203}{{A}{839}{17. Interpretation of Sections 15 and 16}{section*.56}{}}
\newlabel{id2646219}{{A}{839}{END OF TERMS AND CONDITIONS\relax }{section*.57}{}}
\newlabel{id2646222}{{A}{840}{How to Apply These Terms to Your New Programs\relax }{section*.58}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Glossary}}{843}{section*.58}}
\newlabel{id2460612}{{A}{843}{Glossary\relax }{appendix*.59}{}}
\@writefile{toc}{\contentsline {chapter}{SUBJECT INDEX}{849}{appendix*.59}}
|