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
|
\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{S3bE}{{}{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}}{vii}{section*.1}}
\newlabel{id2429008}{{}{vii}{About the Cover Artwork\relax }{chapter*.2}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Acknowledgments}}{viii}{chapter*.2}}
\newlabel{id2444099}{{}{viii}{Acknowledgments\relax }{chapter*.3}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Examples}}{xix}{chapter*.3}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Figures}}{xxv}{chapter*.4}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {List of Tables}}{xxvii}{chapter*.5}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Foreword}}{xxix}{chapter*.6}}
\newlabel{id2404480}{{}{xxix}{Foreword\relax }{chapter*.7}{}}
\newlabel{id2468094}{{}{xxix}{By John M. Weathersby, Executive Director, OSSI\relax }{section*.8}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Preface}}{xxxii}{section*.8}}
\newlabel{preface}{{}{xxxii}{Preface\relax }{chapter*.9}{}}
\newlabel{id2502097}{{}{xxxiii}{Why Is This Book Necessary?\relax }{section*.10}{}}
\newlabel{id2502078}{{}{xxxiii}{Samba 3.0.20 Update Edition\relax }{section*.11}{}}
\newlabel{id2501413}{{}{xxxiv}{Prerequisites\relax }{section*.12}{}}
\newlabel{id2501446}{{}{xxxiv}{Approach\relax }{section*.13}{}}
\newlabel{id2501454}{{}{xxxv}{Summary of Topics\relax }{section*.14}{}}
\newlabel{id2530567}{{}{xxxviii}{Summary of Topics\relax }{section*.14}{}}
\global \@namedef{@fn@label@id2530567}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2521129}{{}{xli}{Conventions Used\relax }{section*.15}{}}
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Samba Changes --- 3.0.2 to 3.0.20}}{xlii}{table.0.1}}
\newlabel{pref-new}{{1}{xlii}{Samba 3.0.20 Update Edition\relax }{table.0.1}{}}
\@writefile{toc}{\contentsline {part}{Part I\hspace {1em}Example Network Configurations}{xli}{part.1}}
\newlabel{ExNetworks}{{I}{1}{Example Network Configurations\relax }{part.1}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Example Network Configurations}}{1}{section*.16}}
\newlabel{id2408312}{{I}{1}{Example Network Configurations\relax }{chapter*.17}{}}
\newlabel{id2408366}{{I}{1}{Example Network Configurations\relax }{chapter*.17}{}}
\global \@namedef{@fn@label@id2408366}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {1}\uppercase {No-Frills Samba Servers}}{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}No-Frills Samba Servers}{}{3}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {1}No-Frills Samba Servers}{}{3}}}
\newlabel{simple}{{1}{3}{No-Frills Samba Servers\relax }{chapter.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Introduction}{3}{section.1.1}}
\newlabel{id2456206}{{1.1}{3}{Introduction\relax }{section.1.1}{}}
\newlabel{id2483390}{{1.1}{3}{Introduction\relax }{section.1.1}{}}
\global \@namedef{@fn@label@id2483390}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Assignment Tasks}{4}{section.1.2}}
\newlabel{id2479870}{{1.2}{4}{Assignment Tasks\relax }{section.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}Drafting Office}{4}{subsection.1.2.1}}
\newlabel{id2499820}{{1.2.1}{4}{Drafting Office\relax }{subsection.1.2.1}{}}
\newlabel{id2474511}{{1.2.1}{5}{Drafting Office\relax }{subsection.1.2.1}{}}
\global \@namedef{@fn@label@id2474511}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.1.1}Dissection and Discussion}{5}{subsubsection.1.2.1.1}}
\newlabel{id2461929}{{1.2.1.1}{5}{Dissection and Discussion\relax }{subsubsection.1.2.1.1}{}}
\newlabel{id2499891}{{1.2.1.1}{5}{Dissection and Discussion\relax }{subsubsection.1.2.1.1}{}}
\global \@namedef{@fn@label@id2499891}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.1.2}Implementation}{6}{subsubsection.1.2.1.2}}
\newlabel{id2480135}{{1.2.1.2}{6}{Implementation\relax }{subsubsection.1.2.1.2}{}}
\newlabel{id2461120}{{1}{6}{Implementation\relax }{Item.1}{}}
\global \@namedef{@fn@label@id2461120}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.1}{\ignorespaces Drafting Office smb.\penalty \z@ {}conf File}}{7}{example.1.2.1}}
\newlabel{draft-smbconf}{{1.2.1}{7}{Implementation\relax }{example.1.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.1.3}Validation}{7}{subsubsection.1.2.1.3}}
\newlabel{validate1}{{1.2.1.3}{7}{Validation\relax }{subsubsection.1.2.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.2}Charity Administration Office}{9}{subsection.1.2.2}}
\newlabel{id2501893}{{1.2.2}{9}{Charity Administration Office\relax }{subsection.1.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.2.1}Dissection and Discussion}{10}{subsubsection.1.2.2.1}}
\newlabel{id2502001}{{1.2.2.1}{10}{Dissection and Discussion\relax }{subsubsection.1.2.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.2.2}Implementation}{11}{subsubsection.1.2.2.2}}
\newlabel{id2475500}{{1.2.2.2}{11}{Implementation\relax }{subsubsection.1.2.2.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces Charity Administration Office Network}}{12}{figure.1.1}}
\newlabel{charitynet}{{1.1}{12}{Implementation\relax }{figure.1.1}{}}
\newlabel{id2494363}{{6}{13}{Implementation\relax }{Item.27}{}}
\global \@namedef{@fn@label@id2494363}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.2}{\ignorespaces Charity Administration Office smb.\penalty \z@ {}conf New-style File}}{15}{example.1.2.2}}
\newlabel{charity-smbconfnew}{{1.2.2}{15}{Implementation\relax }{example.1.2.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.3}{\ignorespaces Charity Administration Office smb.\penalty \z@ {}conf Old-style File}}{16}{example.1.2.3}}
\newlabel{charity-smbconf}{{1.2.3}{16}{Implementation\relax }{example.1.2.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.4}{\ignorespaces Windows Me --- Registry Edit File: Disable Password Caching}}{17}{example.1.2.4}}
\newlabel{MEreg}{{1.2.4}{17}{Implementation\relax }{example.1.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.2.3}Validation}{19}{subsubsection.1.2.2.3}}
\newlabel{id2495666}{{1.2.2.3}{19}{Validation\relax }{subsubsection.1.2.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.3}Accounting Office}{19}{subsection.1.2.3}}
\newlabel{AccountingOffice}{{1.2.3}{19}{Accounting Office\relax }{subsection.1.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.3.1}Dissection and Discussion}{20}{subsubsection.1.2.3.1}}
\newlabel{id2495759}{{1.2.3.1}{20}{Dissection and Discussion\relax }{subsubsection.1.2.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.3.2}Implementation}{20}{subsubsection.1.2.3.2}}
\newlabel{AcctgNet}{{1.2.3.2}{20}{Implementation\relax }{subsubsection.1.2.3.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces Accounting Office Network Topology}}{21}{figure.1.2}}
\newlabel{acctingnet2}{{1.2}{21}{Implementation\relax }{figure.1.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {1.1}{\ignorespaces Accounting Office Network Information}}{21}{table.1.1}}
\newlabel{acctingnet}{{1.1}{21}{Implementation\relax }{table.1.1}{}}
\newlabel{id2496272}{{5}{21}{Implementation\relax }{Item.65}{}}
\global \@namedef{@fn@label@id2496272}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {1.2.5}{\ignorespaces Accounting Office Network smb.\penalty \z@ {}conf Old Style Configuration File}}{24}{example.1.2.5}}
\newlabel{acctconf}{{1.2.5}{24}{Implementation\relax }{example.1.2.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Questions and Answers}{25}{section.1.3}}
\newlabel{id2513063}{{1.3}{25}{Questions and Answers\relax }{section.1.3}{}}
\newlabel{id2513076}{{1.3}{25}{F.A.Q}{section*.18}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {2}\uppercase {Small Office Networking}}{29}{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}Small Office Networking}{}{29}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {2}Small Office Networking}{}{29}}}
\newlabel{small}{{2}{29}{Small Office Networking\relax }{chapter.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Introduction}{30}{section.2.1}}
\newlabel{id2472592}{{2.1}{30}{Introduction\relax }{section.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.1}Assignment Tasks}{30}{subsection.2.1.1}}
\newlabel{id2466266}{{2.1.1}{30}{Assignment Tasks\relax }{subsection.2.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Dissection and Discussion}{31}{section.2.2}}
\newlabel{id2478800}{{2.2}{31}{Dissection and Discussion\relax }{section.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2.1}Technical Issues}{31}{subsection.2.2.1}}
\newlabel{id2473224}{{2.2.1}{31}{Technical Issues\relax }{subsection.2.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2.2}Political Issues}{33}{subsection.2.2.2}}
\newlabel{id2487531}{{2.2.2}{33}{Political Issues\relax }{subsection.2.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Implementation}{33}{section.2.3}}
\newlabel{id2487554}{{2.3}{33}{Implementation\relax }{section.2.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces Abmas Accounting --- 52-User Network Topology}}{34}{figure.2.1}}
\newlabel{acct2net}{{2.1}{34}{Implementation\relax }{figure.2.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.1}{\ignorespaces Script to Map Windows NT Groups to UNIX Groups}}{37}{example.2.3.1}}
\newlabel{initGrps}{{2.3.1}{37}{Implementation\relax }{example.2.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}Validation}{39}{subsection.2.3.1}}
\newlabel{id2514180}{{2.3.1}{39}{Validation\relax }{subsection.2.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Notebook Computers: A Special Case}{44}{subsection.2.3.2}}
\newlabel{id2514861}{{2.3.2}{44}{Notebook Computers: A Special Case\relax }{subsection.2.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Key Points Learned}{44}{subsection.2.3.3}}
\newlabel{id2514888}{{2.3.3}{44}{Key Points Learned\relax }{subsection.2.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Questions and Answers}{45}{section.2.4}}
\newlabel{id2514968}{{2.4}{45}{Questions and Answers\relax }{section.2.4}{}}
\newlabel{id2514980}{{2.4}{45}{F.A.Q}{section*.19}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.2}{\ignorespaces Abmas Accounting DHCP Server Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}dhcpd.\penalty \z@ {}conf}}{49}{example.2.3.2}}
\newlabel{dhcp01}{{2.3.2}{49}{Implementation\relax }{example.2.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.3}{\ignorespaces Accounting Office Network smb.\penalty \z@ {}conf File --- [globals] Section}}{50}{example.2.3.3}}
\newlabel{acct2conf}{{2.3.3}{50}{Implementation\relax }{example.2.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {2.3.4}{\ignorespaces Accounting Office Network smb.\penalty \z@ {}conf File --- Services and Shares Section}}{51}{example.2.3.4}}
\newlabel{acct3conf}{{2.3.4}{51}{Implementation\relax }{example.2.3.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {3}\uppercase {Secure Office Networking}}{53}{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}Secure Office Networking}{}{53}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {3}Secure Office Networking}{}{53}}}
\newlabel{secure}{{3}{53}{Secure Office Networking\relax }{chapter.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Introduction}{53}{section.3.1}}
\newlabel{id2478985}{{3.1}{53}{Introduction\relax }{section.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Assignment Tasks}{54}{subsection.3.1.1}}
\newlabel{id2482216}{{3.1.1}{54}{Assignment Tasks\relax }{subsection.3.1.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {3.1}{\ignorespaces Abmas.US ISP Information}}{55}{table.3.1}}
\newlabel{chap4netid}{{3.1}{55}{Assignment Tasks\relax }{table.3.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Abmas Network Topology --- 130 Users}}{56}{figure.3.1}}
\newlabel{ch04net}{{3.1}{56}{Assignment Tasks\relax }{figure.3.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Dissection and Discussion}{56}{section.3.2}}
\newlabel{id2456405}{{3.2}{56}{Dissection and Discussion\relax }{section.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}Technical Issues}{56}{subsection.3.2.1}}
\newlabel{id2456421}{{3.2.1}{56}{Technical Issues\relax }{subsection.3.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.2.1.1}Hardware Requirements}{59}{subsubsection.3.2.1.1}}
\newlabel{id2477141}{{3.2.1.1}{59}{Hardware Requirements\relax }{subsubsection.3.2.1.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.2.1}{\ignorespaces Estimation of Memory Requirements}}{59}{example.3.2.1}}
\newlabel{ch4memoryest}{{3.2.1}{59}{Hardware Requirements\relax }{example.3.2.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.2.2}{\ignorespaces Estimation of Disk Storage Requirements}}{60}{example.3.2.2}}
\newlabel{ch4diskest}{{3.2.2}{60}{Hardware Requirements\relax }{example.3.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.2}Political Issues}{61}{subsection.3.2.2}}
\newlabel{id2457862}{{3.2.2}{61}{Political Issues\relax }{subsection.3.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Implementation}{61}{section.3.3}}
\newlabel{id2457905}{{3.3}{61}{Implementation\relax }{section.3.3}{}}
\newlabel{id2482872}{{3.3}{62}{Implementation\relax }{section.3.3}{}}
\global \@namedef{@fn@label@id2482872}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2482903}{{3.3}{62}{Implementation\relax }{section.3.3}{}}
\global \@namedef{@fn@label@id2482903}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}Basic System Configuration}{63}{subsection.3.3.1}}
\newlabel{ch4bsc}{{3.3.1}{63}{Basic System Configuration\relax }{subsection.3.3.1}{}}
\newlabel{id2523109}{{3}{65}{Basic System Configuration\relax }{Item.129}{}}
\global \@namedef{@fn@label@id2523109}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Samba Configuration}{66}{subsection.3.3.2}}
\newlabel{id2523278}{{3.3.2}{66}{Samba Configuration\relax }{subsection.3.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Configuration of DHCP and DNS Servers}{71}{subsection.3.3.3}}
\newlabel{ch4dhcpdns}{{3.3.3}{71}{Configuration of DHCP and DNS Servers\relax }{subsection.3.3.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {3.2}{\ignorespaces DNS (named) Resource Files}}{71}{table.3.2}}
\newlabel{namedrscfiles}{{3.2}{71}{Configuration of DHCP and DNS Servers\relax }{table.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.4}Printer Configuration}{72}{subsection.3.3.4}}
\newlabel{ch4ptrcfg}{{3.3.4}{72}{Printer Configuration\relax }{subsection.3.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.5}Process Startup Configuration}{74}{subsection.3.3.5}}
\newlabel{procstart}{{3.3.5}{74}{Process Startup Configuration\relax }{subsection.3.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.6}Validation}{75}{subsection.3.3.6}}
\newlabel{ch4valid}{{3.3.6}{75}{Validation\relax }{subsection.3.3.6}{}}
\newlabel{id2526354}{{7}{80}{Validation\relax }{Item.246}{}}
\global \@namedef{@fn@label@id2526354}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2526598}{{11}{82}{Validation\relax }{Item.250}{}}
\global \@namedef{@fn@label@id2526598}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.7}Application Share Configuration}{84}{subsection.3.3.7}}
\newlabel{ch4appscfg}{{3.3.7}{84}{Application Share Configuration\relax }{subsection.3.3.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.3.7.1}Comments Regarding Software Terms of Use}{85}{subsubsection.3.3.7.1}}
\newlabel{id2526850}{{3.3.7.1}{85}{Comments Regarding Software Terms of Use\relax }{subsubsection.3.3.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.8}Windows Client Configuration}{86}{subsection.3.3.8}}
\newlabel{ch4wincfg}{{3.3.8}{86}{Windows Client Configuration\relax }{subsection.3.3.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.9}Key Points Learned}{88}{subsection.3.3.9}}
\newlabel{id2527410}{{3.3.9}{88}{Key Points Learned\relax }{subsection.3.3.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Questions and Answers}{89}{section.3.4}}
\newlabel{id2527475}{{3.4}{89}{Questions and Answers\relax }{section.3.4}{}}
\newlabel{id2527484}{{3.4}{89}{F.A.Q}{section*.20}{}}
\newlabel{id2527551}{{3.4}{90}{F.A.Q}{section*.20}{}}
\global \@namedef{@fn@label@id2527551}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2527809}{{3.4}{92}{F.A.Q}{section*.20}{}}
\global \@namedef{@fn@label@id2527809}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2527844}{{3.4}{92}{F.A.Q}{section*.20}{}}
\global \@namedef{@fn@label@id2527844}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.1}{\ignorespaces NAT Firewall Configuration Script}}{93}{example.3.3.1}}
\newlabel{ch4natfw}{{3.3.1}{93}{Basic System Configuration\relax }{example.3.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.2}{\ignorespaces 130 User Network with {\em {tdbsam}} --- [globals] Section}}{94}{example.3.3.2}}
\newlabel{promisnet}{{3.3.2}{94}{Samba Configuration\relax }{example.3.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.3}{\ignorespaces 130 User Network with {\em {tdbsam}} --- Services Section Part A}}{95}{example.3.3.3}}
\newlabel{promisnetsvca}{{3.3.3}{95}{Samba Configuration\relax }{example.3.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.4}{\ignorespaces 130 User Network with {\em {tdbsam}} --- Services Section Part B}}{96}{example.3.3.4}}
\newlabel{promisnetsvcb}{{3.3.4}{96}{Samba Configuration\relax }{example.3.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.5}{\ignorespaces Script to Map Windows NT Groups to UNIX Groups}}{96}{example.3.3.5}}
\newlabel{ch4initGrps}{{3.3.5}{96}{Samba Configuration\relax }{example.3.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.6}{\ignorespaces DHCP Server Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}dhcpd.\penalty \z@ {}conf}}{97}{example.3.3.6}}
\newlabel{prom-dhcp}{{3.3.6}{97}{Configuration of DHCP and DNS Servers\relax }{example.3.3.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.7}{\ignorespaces DNS Master Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}named.\penalty \z@ {}conf Master Section}}{98}{example.3.3.7}}
\newlabel{ch4namedcfg}{{3.3.7}{98}{Configuration of DHCP and DNS Servers\relax }{example.3.3.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.8}{\ignorespaces DNS Master Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}named.\penalty \z@ {}conf Forward Lookup Definition Section}}{99}{example.3.3.8}}
\newlabel{ch4namedvarfwd}{{3.3.8}{99}{Configuration of DHCP and DNS Servers\relax }{example.3.3.8}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.9}{\ignorespaces DNS Master Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}named.\penalty \z@ {}conf Reverse Lookup Definition Section}}{100}{example.3.3.9}}
\newlabel{ch4namedvarrev}{{3.3.9}{100}{Configuration of DHCP and DNS Servers\relax }{example.3.3.9}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.10}{\ignorespaces DNS 192.168.1 Reverse Zone File}}{101}{example.3.3.10}}
\newlabel{eth1zone}{{3.3.10}{101}{Configuration of DHCP and DNS Servers\relax }{example.3.3.10}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.11}{\ignorespaces DNS 192.168.2 Reverse Zone File}}{101}{example.3.3.11}}
\newlabel{eth2zone}{{3.3.11}{101}{Configuration of DHCP and DNS Servers\relax }{example.3.3.11}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.12}{\ignorespaces DNS Abmas.biz Forward Zone File}}{102}{example.3.3.12}}
\newlabel{abmasbiz}{{3.3.12}{102}{Configuration of DHCP and DNS Servers\relax }{example.3.3.12}{}}
\@writefile{loe}{\contentsline {example}{\numberline {3.3.13}{\ignorespaces DNS Abmas.us Forward Zone File}}{103}{example.3.3.13}}
\newlabel{abmasus}{{3.3.13}{103}{Configuration of DHCP and DNS Servers\relax }{example.3.3.13}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {4}\uppercase {The 500-User Office}}{105}{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}The 500-User Office}{}{105}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {4}The 500-User Office}{}{105}}}
\newlabel{Big500users}{{4}{105}{The 500-User Office\relax }{chapter.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Introduction}{106}{section.4.1}}
\newlabel{id2500806}{{4.1}{106}{Introduction\relax }{section.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.1}Assignment Tasks}{107}{subsection.4.1.1}}
\newlabel{id2482092}{{4.1.1}{107}{Assignment Tasks\relax }{subsection.4.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Dissection and Discussion}{108}{section.4.2}}
\newlabel{id2456240}{{4.2}{108}{Dissection and Discussion\relax }{section.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.1}Technical Issues}{108}{subsection.4.2.1}}
\newlabel{id2479263}{{4.2.1}{108}{Technical Issues\relax }{subsection.4.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.2}Political Issues}{110}{subsection.4.2.2}}
\newlabel{id2489871}{{4.2.2}{110}{Political Issues\relax }{subsection.4.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Implementation}{110}{section.4.3}}
\newlabel{id2489894}{{4.3}{110}{Implementation\relax }{section.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.1}Installation of DHCP, DNS, and Samba Control Files}{110}{subsection.4.3.1}}
\newlabel{ch5-dnshcp-setup}{{4.3.1}{110}{Installation of DHCP, DNS, and Samba Control Files\relax }{subsection.4.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.2}Server Preparation: All Servers}{110}{subsection.4.3.2}}
\newlabel{id2488695}{{4.3.2}{110}{Server Preparation: All Servers\relax }{subsection.4.3.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces Network Topology --- 500 User Network Using tdbsam passdb backend.}}{111}{figure.4.1}}
\newlabel{chap05net}{{4.1}{111}{Implementation\relax }{figure.4.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {4.1}{\ignorespaces Domain: MEGANET, File Locations for Servers}}{112}{table.4.1}}
\newlabel{ch5-filelocations}{{4.1}{112}{Installation of DHCP, DNS, and Samba Control Files\relax }{table.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.3}Server-Specific Preparation}{115}{subsection.4.3.3}}
\newlabel{id2528294}{{4.3.3}{115}{Server-Specific Preparation\relax }{subsection.4.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.3.1}Configuration for Server: MASSIVE}{116}{subsubsection.4.3.3.1}}
\newlabel{id2528308}{{4.3.3.1}{116}{Configuration for Server: MASSIVE\relax }{subsubsection.4.3.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.3.2}Configuration Specific to Domain Member Servers: BLDG1, BLDG2}{120}{subsubsection.4.3.3.2}}
\newlabel{ch5-domsvrspec}{{4.3.3.2}{120}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{subsubsection.4.3.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.1}{\ignorespaces Server: MASSIVE (PDC), File: /\penalty \z@ {}etc/\penalty \z@ {}samba/\penalty \z@ {}smb.\penalty \z@ {}conf}}{121}{example.4.3.1}}
\newlabel{ch5-massivesmb}{{4.3.1}{121}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.4}Process Startup Configuration}{121}{subsection.4.3.4}}
\newlabel{ch5-procstart}{{4.3.4}{121}{Process Startup Configuration\relax }{subsection.4.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.2}{\ignorespaces Server: MASSIVE (PDC), File: /\penalty \z@ {}etc/\penalty \z@ {}samba/\penalty \z@ {}dc-\penalty \z@ {}common.\penalty \z@ {}conf}}{122}{example.4.3.2}}
\newlabel{ch5-dc-common}{{4.3.2}{122}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.3}{\ignorespaces Common Samba Configuration File: /\penalty \z@ {}etc/\penalty \z@ {}samba/\penalty \z@ {}common.\penalty \z@ {}conf}}{123}{example.4.3.3}}
\newlabel{ch5-commonsmb}{{4.3.3}{123}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.4}{\ignorespaces Server: BLDG1 (Member), File: smb.conf}}{124}{example.4.3.4}}
\newlabel{ch5-bldg1-smb}{{4.3.4}{124}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.5}{\ignorespaces Server: BLDG2 (Member), File: smb.conf}}{124}{example.4.3.5}}
\newlabel{ch5-bldg2-smb}{{4.3.5}{124}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.6}{\ignorespaces Common Domain Member Include File: dom-mem.conf}}{124}{example.4.3.6}}
\newlabel{ch5-dommem-smb}{{4.3.6}{124}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.5}Windows Client Configuration}{125}{subsection.4.3.5}}
\newlabel{ch5wincfg}{{4.3.5}{125}{Windows Client Configuration\relax }{subsection.4.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.6}Key Points Learned}{127}{subsection.4.3.6}}
\newlabel{id2503047}{{4.3.6}{127}{Key Points Learned\relax }{subsection.4.3.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Questions and Answers}{128}{section.4.4}}
\newlabel{id2503108}{{4.4}{128}{Questions and Answers\relax }{section.4.4}{}}
\newlabel{id2503117}{{4.4}{128}{F.A.Q}{section*.21}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.7}{\ignorespaces Server: MASSIVE, File: dhcpd.conf}}{131}{example.4.3.7}}
\newlabel{massive-dhcp}{{4.3.7}{131}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.8}{\ignorespaces Server: BLDG1, File: dhcpd.conf}}{132}{example.4.3.8}}
\newlabel{bldg1dhcp}{{4.3.8}{132}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.8}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.9}{\ignorespaces Server: BLDG2, File: dhcpd.conf}}{133}{example.4.3.9}}
\newlabel{bldg2dhcp}{{4.3.9}{133}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.9}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.10}{\ignorespaces Server: MASSIVE, File: named.conf, Part: A}}{134}{example.4.3.10}}
\newlabel{massive-nameda}{{4.3.10}{134}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.10}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.11}{\ignorespaces Server: MASSIVE, File: named.conf, Part: B}}{135}{example.4.3.11}}
\newlabel{massive-namedb}{{4.3.11}{135}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.11}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.12}{\ignorespaces Server: MASSIVE, File: named.conf, Part: C}}{136}{example.4.3.12}}
\newlabel{massive-namedc}{{4.3.12}{136}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.12}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.13}{\ignorespaces Forward Zone File: abmas.biz.hosts}}{137}{example.4.3.13}}
\newlabel{abmasbizdns}{{4.3.13}{137}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.13}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.14}{\ignorespaces Forward Zone File: abmas.biz.hosts}}{138}{example.4.3.14}}
\newlabel{abmasusdns}{{4.3.14}{138}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.14}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.15}{\ignorespaces Servers: BLDG1/BLDG2, File: named.conf, Part: A}}{139}{example.4.3.15}}
\newlabel{bldg12nameda}{{4.3.15}{139}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.15}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.16}{\ignorespaces Servers: BLDG1/BLDG2, File: named.conf, Part: B}}{140}{example.4.3.16}}
\newlabel{bldg12namedb}{{4.3.16}{140}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.16}{}}
\@writefile{loe}{\contentsline {example}{\numberline {4.3.17}{\ignorespaces Initialize Groups Script, File: /etc/samba/initGrps.sh}}{141}{example.4.3.17}}
\newlabel{ch5-initgrps}{{4.3.17}{141}{Configuration Specific to Domain Member Servers: BLDG1, BLDG2\relax }{example.4.3.17}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {5}\uppercase {Making Happy Users}}{143}{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}Making Happy Users}{}{143}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {5}Making Happy Users}{}{143}}}
\newlabel{happy}{{5}{143}{Making Happy Users\relax }{chapter.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Regarding LDAP Directories and Windows Computer Accounts}{147}{section.5.1}}
\newlabel{id2515552}{{5.1}{147}{Regarding LDAP Directories and Windows Computer Accounts\relax }{section.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Introduction}{147}{section.5.2}}
\newlabel{id2515701}{{5.2}{147}{Introduction\relax }{section.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.1}Assignment Tasks}{149}{subsection.5.2.1}}
\newlabel{id2497659}{{5.2.1}{149}{Assignment Tasks\relax }{subsection.5.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Dissection and Discussion}{149}{section.5.3}}
\newlabel{id2497802}{{5.3}{149}{Dissection and Discussion\relax }{section.5.3}{}}
\newlabel{id2497849}{{5.3}{149}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2497849}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2497869}{{5.3}{150}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2497869}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2497895}{{5.3}{150}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2497895}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\newlabel{id2491718}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491718}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2491770}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491770}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2491776}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491776}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2491781}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491781}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2491793}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491793}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\newlabel{id2491799}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491799}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\newlabel{id2491805}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491805}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 10}}}}}}
\newlabel{id2491810}{{5.3}{151}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491810}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 11}}}}}}
\newlabel{id2491833}{{5.3}{152}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491833}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 12}}}}}}
\newlabel{id2491839}{{5.3}{152}{Dissection and Discussion\relax }{section.5.3}{}}
\global \@namedef{@fn@label@id2491839}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 13}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.1}Technical Issues}{152}{subsection.5.3.1}}
\newlabel{id2512001}{{5.3.1}{152}{Technical Issues\relax }{subsection.5.3.1}{}}
\newlabel{id2512139}{{5.3.1}{153}{Technical Issues\relax }{subsection.5.3.1}{}}
\global \@namedef{@fn@label@id2512139}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 14}}}}}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces The Interaction of LDAP, UNIX Posix Accounts and Samba Accounts}}{153}{figure.5.1}}
\newlabel{sbehap-LDAPdiag}{{5.1}{153}{Technical Issues\relax }{figure.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.1}Addition of Machines to the Domain}{154}{subsubsection.5.3.1.1}}
\newlabel{sbehap-ppc}{{5.3.1.1}{154}{Addition of Machines to the Domain\relax }{subsubsection.5.3.1.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.1}{\ignorespaces Current Privilege Capabilities}}{154}{table.5.1}}
\newlabel{sbehap-privs}{{5.1}{154}{Addition of Machines to the Domain\relax }{table.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.2}Roaming Profile Background}{155}{subsubsection.5.3.1.2}}
\newlabel{id2533040}{{5.3.1.2}{155}{Roaming Profile Background\relax }{subsubsection.5.3.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.3}The Local Group Policy}{156}{subsubsection.5.3.1.3}}
\newlabel{sbehap-locgrppol}{{5.3.1.3}{156}{The Local Group Policy\relax }{subsubsection.5.3.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.4}Profile Changes}{156}{subsubsection.5.3.1.4}}
\newlabel{id2533312}{{5.3.1.4}{156}{Profile Changes\relax }{subsubsection.5.3.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.5}Using a Network Default User Profile}{156}{subsubsection.5.3.1.5}}
\newlabel{id2533397}{{5.3.1.5}{156}{Using a Network Default User Profile\relax }{subsubsection.5.3.1.5}{}}
\newlabel{id2533443}{{5.3.1.5}{156}{Using a Network Default User Profile\relax }{subsubsection.5.3.1.5}{}}
\global \@namedef{@fn@label@id2533443}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 15}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.6}Installation of Printer Driver Auto-Download}{157}{subsubsection.5.3.1.6}}
\newlabel{id2533452}{{5.3.1.6}{157}{Installation of Printer Driver Auto-Download\relax }{subsubsection.5.3.1.6}{}}
\newlabel{id2533579}{{5.3.1.6}{157}{Installation of Printer Driver Auto-Download\relax }{subsubsection.5.3.1.6}{}}
\global \@namedef{@fn@label@id2533579}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 16}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1.7}Avoiding Failures: Solving Problems Before They Happen}{158}{subsubsection.5.3.1.7}}
\newlabel{sbeavoid}{{5.3.1.7}{158}{Avoiding Failures: Solving Problems Before They Happen\relax }{subsubsection.5.3.1.7}{}}
\newlabel{id2533630}{{5.3.1.7}{158}{Preliminary Advice: Dangers Can Be Avoided\relax }{section*.22}{}}
\newlabel{id2533688}{{5.3.1.7}{159}{The Name Service Caching Daemon\relax }{section*.23}{}}
\newlabel{id2533799}{{5.3.1.7}{160}{Debugging LDAP\relax }{section*.24}{}}
\newlabel{id2533894}{{5.3.1.7}{161}{Debugging NSS\_LDAP\relax }{section*.25}{}}
\newlabel{id2534168}{{5.3.1.7}{164}{Debugging Samba\relax }{section*.26}{}}
\newlabel{id2534234}{{5.3.1.7}{165}{Debugging on the Windows Client\relax }{section*.27}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.2}Political Issues}{165}{subsection.5.3.2}}
\newlabel{id2534251}{{5.3.2}{165}{Political Issues\relax }{subsection.5.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.3}Installation Checklist}{165}{subsection.5.3.3}}
\newlabel{id2534266}{{5.3.3}{165}{Installation Checklist\relax }{subsection.5.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Samba Server Implementation}{167}{section.5.4}}
\newlabel{id2534436}{{5.4}{167}{Samba Server Implementation\relax }{section.5.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces Network Topology --- 500 User Network Using ldapsam passdb backend}}{167}{figure.5.2}}
\newlabel{chap6net}{{5.2}{167}{Samba Server Implementation\relax }{figure.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}OpenLDAP Server Configuration}{168}{subsection.5.4.1}}
\newlabel{ldapsetup}{{5.4.1}{168}{OpenLDAP Server Configuration\relax }{subsection.5.4.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.2}{\ignorespaces Required OpenLDAP Linux Packages}}{168}{table.5.2}}
\newlabel{oldapreq}{{5.2}{168}{OpenLDAP Server Configuration\relax }{table.5.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.1}{\ignorespaces LDAP DB\_CONFIG File}}{170}{example.5.4.1}}
\newlabel{sbehap-dbconf}{{5.4.1}{170}{OpenLDAP Server Configuration\relax }{example.5.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}PAM and NSS Client Configuration}{170}{subsection.5.4.2}}
\newlabel{sbehap-PAM-NSS}{{5.4.2}{170}{PAM and NSS Client Configuration\relax }{subsection.5.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.3}Samba-3 PDC Configuration}{173}{subsection.5.4.3}}
\newlabel{sbehap-massive}{{5.4.3}{173}{Samba-3 PDC Configuration\relax }{subsection.5.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.4}Install and Configure Idealx smbldap-tools Scripts}{176}{subsection.5.4.4}}
\newlabel{sbeidealx}{{5.4.4}{176}{Install and Configure Idealx smbldap-tools Scripts\relax }{subsection.5.4.4}{}}
\newlabel{id2536125}{{5.4.4}{176}{Install and Configure Idealx smbldap-tools Scripts\relax }{subsection.5.4.4}{}}
\global \@namedef{@fn@label@id2536125}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 17}}}}}}
\newlabel{id2536132}{{5.4.4}{176}{Install and Configure Idealx smbldap-tools Scripts\relax }{subsection.5.4.4}{}}
\global \@namedef{@fn@label@id2536132}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 18}}}}}}
\newlabel{id2536139}{{5.4.4}{176}{Install and Configure Idealx smbldap-tools Scripts\relax }{subsection.5.4.4}{}}
\global \@namedef{@fn@label@id2536139}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 19}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.4.4.1}Installation of smbldap-tools from the Tarball}{177}{subsubsection.5.4.4.1}}
\newlabel{id2536175}{{5.4.4.1}{177}{Installation of smbldap-tools from the Tarball\relax }{subsubsection.5.4.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.4.4.2}Installing smbldap-tools from the RPM Package}{178}{subsubsection.5.4.4.2}}
\newlabel{id2536402}{{5.4.4.2}{178}{Installing smbldap-tools from the RPM Package\relax }{subsubsection.5.4.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.4.4.3}Configuration of smbldap-tools}{180}{subsubsection.5.4.4.3}}
\newlabel{smbldap-init}{{5.4.4.3}{180}{Configuration of smbldap-tools\relax }{subsubsection.5.4.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.5}LDAP Initialization and Creation of User and Group Accounts}{183}{subsection.5.4.5}}
\newlabel{id2536758}{{5.4.5}{183}{LDAP Initialization and Creation of User and Group Accounts\relax }{subsection.5.4.5}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.3}{\ignorespaces Abmas Network Users and Groups}}{185}{table.5.3}}
\newlabel{sbehap-bigacct}{{5.3}{185}{LDAP Initialization and Creation of User and Group Accounts\relax }{table.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.6}Printer Configuration}{196}{subsection.5.4.6}}
\newlabel{sbehap-ptrcfg}{{5.4.6}{196}{Printer Configuration\relax }{subsection.5.4.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.5}Samba-3 BDC Configuration}{198}{section.5.5}}
\newlabel{sbehap-bldg1}{{5.5}{198}{Samba-3 BDC Configuration\relax }{section.5.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.6}Miscellaneous Server Preparation Tasks}{203}{section.5.6}}
\newlabel{id2540002}{{5.6}{203}{Miscellaneous Server Preparation Tasks\relax }{section.5.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.1}Configuring Directory Share Point Roots}{203}{subsection.5.6.1}}
\newlabel{id2540023}{{5.6.1}{203}{Configuring Directory Share Point Roots\relax }{subsection.5.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.2}Configuring Profile Directories}{204}{subsection.5.6.2}}
\newlabel{id2540120}{{5.6.2}{204}{Configuring Profile Directories\relax }{subsection.5.6.2}{}}
\newlabel{id2540315}{{5.6.2}{205}{Configuring Profile Directories\relax }{subsection.5.6.2}{}}
\global \@namedef{@fn@label@id2540315}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 20}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.3}Preparation of Logon Scripts}{205}{subsection.5.6.3}}
\newlabel{id2540372}{{5.6.3}{205}{Preparation of Logon Scripts\relax }{subsection.5.6.3}{}}
\newlabel{id2540478}{{5.6.3}{206}{Preparation of Logon Scripts\relax }{subsection.5.6.3}{}}
\global \@namedef{@fn@label@id2540478}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 21}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.4}Assigning User Rights and Privileges}{206}{subsection.5.6.4}}
\newlabel{id2540487}{{5.6.4}{206}{Assigning User Rights and Privileges\relax }{subsection.5.6.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.7}Windows Client Configuration}{208}{section.5.7}}
\newlabel{id2540625}{{5.7}{208}{Windows Client Configuration\relax }{section.5.7}{}}
\newlabel{id2540664}{{5.7}{208}{Windows Client Configuration\relax }{section.5.7}{}}
\global \@namedef{@fn@label@id2540664}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 22}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.1}Configuration of Default Profile with Folder Redirection}{209}{subsection.5.7.1}}
\newlabel{redirfold}{{5.7.1}{209}{Configuration of Default Profile with Folder Redirection\relax }{subsection.5.7.1}{}}
\newlabel{id2541089}{{8}{210}{Configuration of Default Profile with Folder Redirection\relax }{Item.436}{}}
\global \@namedef{@fn@label@id2541089}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 23}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.2}Configuration of MS Outlook to Relocate PST File}{210}{subsection.5.7.2}}
\newlabel{id2541388}{{5.7.2}{210}{Configuration of MS Outlook to Relocate PST File\relax }{subsection.5.7.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces Windows XP Professional --- User Shared Folders}}{211}{figure.5.3}}
\newlabel{XP-screen001}{{5.3}{211}{Configuration of Default Profile with Folder Redirection\relax }{figure.5.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.4}{\ignorespaces Default Profile Redirections}}{211}{table.5.4}}
\newlabel{proffold}{{5.4}{211}{Configuration of Default Profile with Folder Redirection\relax }{table.5.4}{}}
\newlabel{id2541656}{{5.7.2}{213}{Configuration of MS Outlook to Relocate PST File\relax }{Item.446}{}}
\global \@namedef{@fn@label@id2541656}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 24}}}}}}
\newlabel{id2541677}{{5.7.2}{213}{Configuration of MS Outlook to Relocate PST File\relax }{Item.446}{}}
\global \@namedef{@fn@label@id2541677}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 25}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.3}Configure Delete Cached Profiles on Logout}{214}{subsection.5.7.3}}
\newlabel{id2541714}{{5.7.3}{214}{Configure Delete Cached Profiles on Logout\relax }{subsection.5.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.4}Uploading Printer Drivers to Samba Servers}{214}{subsection.5.7.4}}
\newlabel{id2541904}{{5.7.4}{214}{Uploading Printer Drivers to Samba Servers\relax }{subsection.5.7.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.5}Software Installation}{216}{subsection.5.7.5}}
\newlabel{id2542417}{{5.7.5}{216}{Software Installation\relax }{subsection.5.7.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.6}Roll-out Image Creation}{217}{subsection.5.7.6}}
\newlabel{id2542454}{{5.7.6}{217}{Roll-out Image Creation\relax }{subsection.5.7.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.8}Key Points Learned}{217}{section.5.8}}
\newlabel{id2542489}{{5.8}{217}{Key Points Learned\relax }{section.5.8}{}}
\newlabel{id2542538}{{5.8}{218}{Key Points Learned\relax }{section.5.8}{}}
\global \@namedef{@fn@label@id2542538}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 26}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {5.9}Questions and Answers}{218}{section.5.9}}
\newlabel{id2542601}{{5.9}{218}{Questions and Answers\relax }{section.5.9}{}}
\newlabel{id2542613}{{5.9}{219}{F.A.Q}{section*.28}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.2}{\ignorespaces LDAP Master Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf Part A}}{223}{example.5.4.2}}
\newlabel{sbehap-slapdconf}{{5.4.2}{223}{OpenLDAP Server Configuration\relax }{example.5.4.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.3}{\ignorespaces LDAP Master Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf Part B}}{224}{example.5.4.3}}
\newlabel{sbehap-slapdconf2}{{5.4.3}{224}{OpenLDAP Server Configuration\relax }{example.5.4.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.4}{\ignorespaces Configuration File for NSS LDAP Support --- /\penalty \z@ {}etc/\penalty \z@ {}ldap.\penalty \z@ {}conf}}{225}{example.5.4.4}}
\newlabel{sbehap-nss01}{{5.4.4}{225}{PAM and NSS Client Configuration\relax }{example.5.4.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.5}{\ignorespaces Configuration File for NSS LDAP Clients Support --- /\penalty \z@ {}etc/\penalty \z@ {}ldap.\penalty \z@ {}conf}}{226}{example.5.4.5}}
\newlabel{sbehap-nss02}{{5.4.5}{226}{PAM and NSS Client Configuration\relax }{example.5.4.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.6}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Server: MASSIVE --- global Section: Part A}}{227}{example.5.4.6}}
\newlabel{sbehap-massive-smbconfa}{{5.4.6}{227}{Samba-3 PDC Configuration\relax }{example.5.4.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.4.7}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Server: MASSIVE --- global Section: Part B}}{228}{example.5.4.7}}
\newlabel{sbehap-massive-smbconfb}{{5.4.7}{228}{Samba-3 PDC Configuration\relax }{example.5.4.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.5.1}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Server: BLDG1}}{229}{example.5.5.1}}
\newlabel{sbehap-bldg1-smbconf}{{5.5.1}{229}{Samba-3 BDC Configuration\relax }{example.5.5.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.5.2}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Server: BLDG2}}{230}{example.5.5.2}}
\newlabel{sbehap-bldg2-smbconf}{{5.5.2}{230}{Samba-3 BDC Configuration\relax }{example.5.5.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.5.3}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Shares Section --- Part A}}{231}{example.5.5.3}}
\newlabel{sbehap-shareconfa}{{5.5.3}{231}{Samba-3 BDC Configuration\relax }{example.5.5.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.5.4}{\ignorespaces LDAP Based smb.\penalty \z@ {}conf File, Shares Section --- Part B}}{232}{example.5.5.4}}
\newlabel{sbehap-shareconfb}{{5.5.4}{232}{Samba-3 BDC Configuration\relax }{example.5.5.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {5.5.5}{\ignorespaces LDIF IDMAP Add-On Load File --- File: /etc/openldap/idmap.LDIF}}{232}{example.5.5.5}}
\newlabel{sbehap-ldifadd}{{5.5.5}{232}{Samba-3 BDC Configuration\relax }{example.5.5.5}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {6}\uppercase {A Distributed 2000-User Network}}{233}{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}A Distributed 2000-User Network}{}{233}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {6}A Distributed 2000-User Network}{}{233}}}
\newlabel{2000users}{{6}{233}{A Distributed 2000-User Network\relax }{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Introduction}{234}{section.6.1}}
\newlabel{id2459002}{{6.1}{234}{Introduction\relax }{section.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.1}Assignment Tasks}{234}{subsection.6.1.1}}
\newlabel{id2530842}{{6.1.1}{234}{Assignment Tasks\relax }{subsection.6.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Dissection and Discussion}{235}{section.6.2}}
\newlabel{id2530911}{{6.2}{235}{Dissection and Discussion\relax }{section.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}Technical Issues}{236}{subsection.6.2.1}}
\newlabel{id2519666}{{6.2.1}{236}{Technical Issues\relax }{subsection.6.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1.1}User Needs}{237}{subsubsection.6.2.1.1}}
\newlabel{id2519705}{{6.2.1.1}{237}{User Needs\relax }{subsubsection.6.2.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1.2}The Nature of Windows Networking Protocols}{238}{subsubsection.6.2.1.2}}
\newlabel{id2519801}{{6.2.1.2}{238}{The Nature of Windows Networking Protocols\relax }{subsubsection.6.2.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1.3}Identity Management Needs}{240}{subsubsection.6.2.1.3}}
\newlabel{id2492153}{{6.2.1.3}{240}{Identity Management Needs\relax }{subsubsection.6.2.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.2}Political Issues}{243}{subsection.6.2.2}}
\newlabel{id2493251}{{6.2.2}{243}{Political Issues\relax }{subsection.6.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Implementation}{243}{section.6.3}}
\newlabel{id2493270}{{6.3}{243}{Implementation\relax }{section.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces Samba and Authentication Backend Search Pathways}}{243}{figure.6.1}}
\newlabel{chap7idres}{{6.1}{243}{Implementation\relax }{figure.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces Samba Configuration to Use a Single LDAP Server}}{244}{figure.6.2}}
\newlabel{ch7singleLDAP}{{6.2}{244}{Implementation\relax }{figure.6.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces Samba Configuration to Use a Dual (Fail-over) LDAP Server}}{244}{figure.6.3}}
\newlabel{ch7dualLDAP}{{6.3}{244}{Implementation\relax }{figure.6.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces Samba Configuration to Use Dual LDAP Databases - Broken - Do Not Use!}}{245}{figure.6.4}}
\newlabel{ch7dualadd}{{6.4}{245}{Implementation\relax }{figure.6.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces Samba Configuration to Use Two LDAP Databases - The result is additive.}}{245}{figure.6.5}}
\newlabel{ch7dualok}{{6.5}{245}{Implementation\relax }{figure.6.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.1}Key Points Learned}{250}{subsection.6.3.1}}
\newlabel{id2504684}{{6.3.1}{250}{Key Points Learned\relax }{subsection.6.3.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Questions and Answers}{250}{section.6.4}}
\newlabel{id2504788}{{6.4}{250}{Questions and Answers\relax }{section.6.4}{}}
\newlabel{id2504800}{{6.4}{250}{F.A.Q}{section*.29}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.1}{\ignorespaces LDAP Master Server Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf}}{255}{example.6.3.1}}
\newlabel{ch7-LDAP-master}{{6.3.1}{255}{Implementation\relax }{example.6.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.2}{\ignorespaces LDAP Slave Configuration File --- /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf}}{256}{example.6.3.2}}
\newlabel{ch7-LDAP-slave}{{6.3.2}{256}{Implementation\relax }{example.6.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.3}{\ignorespaces Primary Domain Controller smb.\penalty \z@ {}conf File --- Part A}}{257}{example.6.3.3}}
\newlabel{ch7-massmbconfA}{{6.3.3}{257}{Implementation\relax }{example.6.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.4}{\ignorespaces Primary Domain Controller smb.\penalty \z@ {}conf File --- Part B}}{258}{example.6.3.4}}
\newlabel{ch7-massmbconfB}{{6.3.4}{258}{Implementation\relax }{example.6.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.5}{\ignorespaces Primary Domain Controller smb.\penalty \z@ {}conf File --- Part C}}{259}{example.6.3.5}}
\newlabel{ch7-massmbconfC}{{6.3.5}{259}{Implementation\relax }{example.6.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.6}{\ignorespaces Backup Domain Controller smb.\penalty \z@ {}conf File --- Part A}}{260}{example.6.3.6}}
\newlabel{ch7-slvsmbocnfA}{{6.3.6}{260}{Implementation\relax }{example.6.3.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {6.3.7}{\ignorespaces Backup Domain Controller smb.\penalty \z@ {}conf File --- Part B}}{261}{example.6.3.7}}
\newlabel{ch7-slvsmbocnfB}{{6.3.7}{261}{Implementation\relax }{example.6.3.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.6}{\ignorespaces Network Topology --- 2000 User Complex Design A}}{262}{figure.6.6}}
\newlabel{chap7net}{{6.6}{262}{Key Points Learned\relax }{figure.6.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.7}{\ignorespaces Network Topology --- 2000 User Complex Design B}}{263}{figure.6.7}}
\newlabel{chap7net2}{{6.7}{263}{Key Points Learned\relax }{figure.6.7}{}}
\@writefile{toc}{\contentsline {part}{Part II\hspace {1em}Domain Members, Updating Samba and Migration}{263}{part.2}}
\newlabel{DMSMig}{{II}{265}{Domain Members, Updating Samba and Migration\relax }{part.2}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Domain Members, Updating Samba and Migration}}{265}{section*.30}}
\newlabel{id2408433}{{II}{265}{Domain Members, Updating Samba and Migration\relax }{chapter*.31}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {7}\uppercase {Adding Domain Member Servers and Clients}}{267}{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}Adding Domain Member Servers and Clients}{}{267}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {7}Adding Domain Member Servers and Clients}{}{267}}}
\newlabel{unixclients}{{7}{267}{Adding Domain Member Servers and Clients\relax }{chapter.7}{}}
\newlabel{id2517877}{{7}{267}{Adding Domain Member Servers and Clients\relax }{chapter.7}{}}
\global \@namedef{@fn@label@id2517877}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Introduction}{267}{section.7.1}}
\newlabel{id2498681}{{7.1}{267}{Introduction\relax }{section.7.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces Open Magazine Samba Survey}}{268}{figure.7.1}}
\newlabel{ch09openmag}{{7.1}{268}{Adding Domain Member Servers and Clients\relax }{figure.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.1}Assignment Tasks}{268}{subsection.7.1.1}}
\newlabel{id2491350}{{7.1.1}{268}{Assignment Tasks\relax }{subsection.7.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Dissection and Discussion}{269}{section.7.2}}
\newlabel{id2491387}{{7.2}{269}{Dissection and Discussion\relax }{section.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.1}Technical Issues}{269}{subsection.7.2.1}}
\newlabel{id2491416}{{7.2.1}{269}{Technical Issues\relax }{subsection.7.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.2}Political Issues}{272}{subsection.7.2.2}}
\newlabel{id2485572}{{7.2.2}{272}{Political Issues\relax }{subsection.7.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Implementation}{272}{section.7.3}}
\newlabel{id2509474}{{7.3}{272}{Implementation\relax }{section.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.1}Samba Domain with Samba Domain Member Server --- Using NSS LDAP}{273}{subsection.7.3.1}}
\newlabel{sdcsdmldap}{{7.3.1}{273}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{subsection.7.3.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.2}{\ignorespaces Samba Domain: Samba Member Server}}{275}{figure.7.2}}
\newlabel{ch9-sambadc}{{7.2}{275}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{figure.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.2}NT4/Samba Domain with Samba Domain Member Server: Using NSS and Winbind}{280}{subsection.7.3.2}}
\newlabel{wdcsdm}{{7.3.2}{280}{NT4/Samba Domain with Samba Domain Member Server: Using NSS and Winbind\relax }{subsection.7.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.3}NT4/Samba Domain with Samba Domain Member Server without NSS Support}{284}{subsection.7.3.3}}
\newlabel{dcwonss}{{7.3.3}{284}{NT4/Samba Domain with Samba Domain Member Server without NSS Support\relax }{subsection.7.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.4}Active Directory Domain with Samba Domain Member Server}{285}{subsection.7.3.4}}
\newlabel{adssdm}{{7.3.4}{285}{Active Directory Domain with Samba Domain Member Server\relax }{subsection.7.3.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.3}{\ignorespaces Active Directory Domain: Samba Member Server}}{286}{figure.7.3}}
\newlabel{ch9-adsdc}{{7.3}{286}{Active Directory Domain with Samba Domain Member Server\relax }{figure.7.3}{}}
\newlabel{id2547080}{{2}{289}{Active Directory Domain with Samba Domain Member Server\relax }{Item.483}{}}
\global \@namedef{@fn@label@id2547080}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.4.1}IDMAP\_RID with Winbind}{298}{subsubsection.7.3.4.1}}
\newlabel{id2547910}{{7.3.4.1}{298}{IDMAP\_RID with Winbind\relax }{subsubsection.7.3.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.4.2}IDMAP Storage in LDAP using Winbind}{300}{subsubsection.7.3.4.2}}
\newlabel{id2548373}{{7.3.4.2}{300}{IDMAP Storage in LDAP using Winbind\relax }{subsubsection.7.3.4.2}{}}
\newlabel{id2548673}{{7.3.4.2}{302}{IDMAP Storage in LDAP using Winbind\relax }{example.7.3.9}{}}
\global \@namedef{@fn@label@id2548673}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.4.3}IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension}{304}{subsubsection.7.3.4.3}}
\newlabel{id2548887}{{7.3.4.3}{304}{IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension\relax }{subsubsection.7.3.4.3}{}}
\newlabel{id2549107}{{7.3.4.3}{304}{IDMAP, Active Directory, and MS Services for UNIX 3.5\relax }{section*.32}{}}
\newlabel{id2549126}{{7.3.4.3}{305}{IDMAP, Active Directory, and MS Services for UNIX 3.5\relax }{section*.32}{}}
\global \@namedef{@fn@label@id2549126}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2549138}{{7.3.4.3}{305}{IDMAP, Active Directory, and AD4UNIX\relax }{section*.33}{}}
\newlabel{id2549149}{{7.3.4.3}{305}{IDMAP, Active Directory, and AD4UNIX\relax }{section*.33}{}}
\global \@namedef{@fn@label@id2549149}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.5}UNIX/Linux Client Domain Member}{305}{subsection.7.3.5}}
\newlabel{id2549162}{{7.3.5}{305}{UNIX/Linux Client Domain Member\relax }{subsection.7.3.5}{}}
\newlabel{id2549260}{{7.3.5}{305}{UNIX/Linux Client Domain Member\relax }{subsection.7.3.5}{}}
\global \@namedef{@fn@label@id2549260}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2549272}{{7.3.5}{306}{UNIX/Linux Client Domain Member\relax }{subsection.7.3.5}{}}
\global \@namedef{@fn@label@id2549272}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2549284}{{7.3.5}{306}{UNIX/Linux Client Domain Member\relax }{subsection.7.3.5}{}}
\global \@namedef{@fn@label@id2549284}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.5.1}NT4 Domain Member}{307}{subsubsection.7.3.5.1}}
\newlabel{id2549374}{{7.3.5.1}{307}{NT4 Domain Member\relax }{subsubsection.7.3.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.3.5.2}ADS Domain Member}{307}{subsubsection.7.3.5.2}}
\newlabel{id2549495}{{7.3.5.2}{307}{ADS Domain Member\relax }{subsubsection.7.3.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.6}Key Points Learned}{308}{subsection.7.3.6}}
\newlabel{id2549732}{{7.3.6}{308}{Key Points Learned\relax }{subsection.7.3.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.4}Questions and Answers}{309}{section.7.4}}
\newlabel{id2549789}{{7.4}{309}{Questions and Answers\relax }{section.7.4}{}}
\newlabel{id2549802}{{7.4}{309}{F.A.Q}{section*.34}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.1}{\ignorespaces Samba Domain Member in Samba Domain Using LDAP --- smb.\penalty \z@ {}conf File}}{314}{example.7.3.1}}
\newlabel{ch9-sdmsdc}{{7.3.1}{314}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{example.7.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.2}{\ignorespaces LDIF IDMAP Add-On Load File --- File: /etc/openldap/idmap.LDIF}}{315}{example.7.3.2}}
\newlabel{ch9-ldifadd}{{7.3.2}{315}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{example.7.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.3}{\ignorespaces Configuration File for NSS LDAP Support --- /\penalty \z@ {}etc/\penalty \z@ {}ldap.\penalty \z@ {}conf}}{315}{example.7.3.3}}
\newlabel{ch9-sdmlcnf}{{7.3.3}{315}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{example.7.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.4}{\ignorespaces NSS using LDAP for Identity Resolution --- File: /\penalty \z@ {}etc/\penalty \z@ {}nsswitch.\penalty \z@ {}conf}}{316}{example.7.3.4}}
\newlabel{ch9-sdmnss}{{7.3.4}{316}{Samba Domain with Samba Domain Member Server --- Using NSS LDAP\relax }{example.7.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.5}{\ignorespaces Samba Domain Member Server Using Winbind smb.\penalty \z@ {}conf File for NT4 Domain}}{317}{example.7.3.5}}
\newlabel{ch0-NT4DSDM}{{7.3.5}{317}{NT4/Samba Domain with Samba Domain Member Server: Using NSS and Winbind\relax }{example.7.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.6}{\ignorespaces Samba Domain Member Server Using Local Accounts smb.\penalty \z@ {}conf File for NT4 Domain}}{318}{example.7.3.6}}
\newlabel{ch0-NT4DSCM}{{7.3.6}{318}{NT4/Samba Domain with Samba Domain Member Server without NSS Support\relax }{example.7.3.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.7}{\ignorespaces Samba Domain Member smb.\penalty \z@ {}conf File for Active Directory Membership}}{319}{example.7.3.7}}
\newlabel{ch9-adssdm}{{7.3.7}{319}{Active Directory Domain with Samba Domain Member Server\relax }{example.7.3.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.8}{\ignorespaces Example smb.\penalty \z@ {}conf File Using idmap\_rid}}{320}{example.7.3.8}}
\newlabel{sbe-idmapridex}{{7.3.8}{320}{IDMAP\_RID with Winbind\relax }{example.7.3.8}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.9}{\ignorespaces Typical ADS Style Domain smb.\penalty \z@ {}conf File}}{320}{example.7.3.9}}
\newlabel{sbeunxa}{{7.3.9}{320}{IDMAP Storage in LDAP using Winbind\relax }{example.7.3.9}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.10}{\ignorespaces ADS Membership Using RFC2307bis Identity Resolution smb.\penalty \z@ {}conf File}}{321}{example.7.3.10}}
\newlabel{sbewinbindex}{{7.3.10}{321}{IDMAP and NSS Using LDAP from ADS with RFC2307bis Schema Extension\relax }{example.7.3.10}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.11}{\ignorespaces SUSE: PAM login Module Using Winbind}}{321}{example.7.3.11}}
\newlabel{ch9-pamwnbdlogin}{{7.3.11}{321}{ADS Domain Member\relax }{example.7.3.11}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.12}{\ignorespaces SUSE: PAM xdm Module Using Winbind}}{322}{example.7.3.12}}
\newlabel{ch9-pamwbndxdm}{{7.3.12}{322}{ADS Domain Member\relax }{example.7.3.12}{}}
\@writefile{loe}{\contentsline {example}{\numberline {7.3.13}{\ignorespaces Red Hat 9: PAM System Authentication File: /\penalty \z@ {}etc/\penalty \z@ {}pam.\penalty \z@ {}d/\penalty \z@ {}system-\penalty \z@ {}auth Module Using Winbind}}{322}{example.7.3.13}}
\newlabel{ch9-rhsysauth}{{7.3.13}{322}{ADS Domain Member\relax }{example.7.3.13}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {8}\uppercase {Updating Samba-3}}{323}{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}Updating Samba-3}{}{323}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {8}Updating Samba-3}{}{323}}}
\newlabel{upgrades}{{8}{323}{Updating Samba-3\relax }{chapter.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}Introduction}{324}{section.8.1}}
\newlabel{id2457627}{{8.1}{324}{Introduction\relax }{section.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.1}Cautions and Notes}{325}{subsection.8.1.1}}
\newlabel{id2457725}{{8.1.1}{325}{Cautions and Notes\relax }{subsection.8.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.1}Security Identifiers (SIDs)}{325}{subsubsection.8.1.1.1}}
\newlabel{id2508442}{{8.1.1.1}{325}{Security Identifiers (SIDs)\relax }{subsubsection.8.1.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.2}Change of hostname}{329}{subsubsection.8.1.1.2}}
\newlabel{id2463485}{{8.1.1.2}{329}{Change of hostname\relax }{subsubsection.8.1.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.3}Change of Workgroup (Domain) Name}{330}{subsubsection.8.1.1.3}}
\newlabel{id2463552}{{8.1.1.3}{330}{Change of Workgroup (Domain) Name\relax }{subsubsection.8.1.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.4}Location of config files}{330}{subsubsection.8.1.1.4}}
\newlabel{sbeug1}{{8.1.1.4}{330}{Location of config files\relax }{subsubsection.8.1.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.5}International Language Support}{332}{subsubsection.8.1.1.5}}
\newlabel{id2511490}{{8.1.1.5}{332}{International Language Support\relax }{subsubsection.8.1.1.5}{}}
\newlabel{id2511574}{{8.1.1.5}{332}{International Language Support\relax }{subsubsection.8.1.1.5}{}}
\global \@namedef{@fn@label@id2511574}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.1.1.6}Updates and Changes in Idealx smbldap-tools}{332}{subsubsection.8.1.1.6}}
\newlabel{id2511586}{{8.1.1.6}{332}{Updates and Changes in Idealx smbldap-tools\relax }{subsubsection.8.1.1.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Upgrading from Samba 1.x and 2.x to Samba-3}{333}{section.8.2}}
\newlabel{id2511658}{{8.2}{333}{Upgrading from Samba 1.x and 2.x to Samba-3\relax }{section.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.1}Samba 1.9.x and 2.x Versions Without LDAP}{333}{subsection.8.2.1}}
\newlabel{sbeug2}{{8.2.1}{333}{Samba 1.9.x and 2.x Versions Without LDAP\relax }{subsection.8.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.2}Applicable to All Samba 2.x to Samba-3 Upgrades}{335}{subsection.8.2.2}}
\newlabel{id2543002}{{8.2.2}{335}{Applicable to All Samba 2.x to Samba-3 Upgrades\relax }{subsection.8.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.3}Samba-2.x with LDAP Support}{336}{subsection.8.2.3}}
\newlabel{id2543344}{{8.2.3}{336}{Samba-2.x with LDAP Support\relax }{subsection.8.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Updating a Samba-3 Installation}{340}{section.8.3}}
\newlabel{id2543508}{{8.3}{340}{Updating a Samba-3 Installation\relax }{section.8.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.1}Samba-3 to Samba-3 Updates on the Same Server}{341}{subsection.8.3.1}}
\newlabel{id2543620}{{8.3.1}{341}{Samba-3 to Samba-3 Updates on the Same Server\relax }{subsection.8.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.1.1}Updating from Samba Versions Earlier than 3.0.5}{341}{subsubsection.8.3.1.1}}
\newlabel{id2543632}{{8.3.1.1}{341}{Updating from Samba Versions Earlier than 3.0.5\relax }{subsubsection.8.3.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.1.2}Updating from Samba Versions between 3.0.6 and 3.0.10}{341}{subsubsection.8.3.1.2}}
\newlabel{id2543656}{{8.3.1.2}{341}{Updating from Samba Versions between 3.0.6 and 3.0.10\relax }{subsubsection.8.3.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.1.3}Updating from Samba Versions after 3.0.6 to a Current Release}{342}{subsubsection.8.3.1.3}}
\newlabel{id2543738}{{8.3.1.3}{342}{Updating from Samba Versions after 3.0.6 to a Current Release\relax }{subsubsection.8.3.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.2}Migrating Samba-3 to a New Server}{342}{subsection.8.3.2}}
\newlabel{id2543830}{{8.3.2}{342}{Migrating Samba-3 to a New Server\relax }{subsection.8.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.2.1}Replacing a Domain Member Server}{343}{subsubsection.8.3.2.1}}
\newlabel{id2543843}{{8.3.2.1}{343}{Replacing a Domain Member Server\relax }{subsubsection.8.3.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.3.2.2}Replacing a Domain Controller}{343}{subsubsection.8.3.2.2}}
\newlabel{id2544050}{{8.3.2.2}{343}{Replacing a Domain Controller\relax }{subsubsection.8.3.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.3}Migration of Samba Accounts to Active Directory}{345}{subsection.8.3.3}}
\newlabel{id2544252}{{8.3.3}{345}{Migration of Samba Accounts to Active Directory\relax }{subsection.8.3.3}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {9}\uppercase {Migrating NT4 Domain to Samba-3}}{347}{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}Migrating NT4 Domain to Samba-3}{}{347}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {9}Migrating NT4 Domain to Samba-3}{}{347}}}
\newlabel{ntmigration}{{9}{347}{Migrating NT4 Domain to Samba-3\relax }{chapter.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.1}Introduction}{347}{section.9.1}}
\newlabel{id2479836}{{9.1}{347}{Introduction\relax }{section.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.1}Assignment Tasks}{348}{subsection.9.1.1}}
\newlabel{id2474184}{{9.1.1}{348}{Assignment Tasks\relax }{subsection.9.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.2}Dissection and Discussion}{348}{section.9.2}}
\newlabel{id2492347}{{9.2}{348}{Dissection and Discussion\relax }{section.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.1}Technical Issues}{349}{subsection.9.2.1}}
\newlabel{id2532051}{{9.2.1}{349}{Technical Issues\relax }{subsection.9.2.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1}{\ignorespaces Schematic Explaining the net rpc vampire Process}}{350}{figure.9.1}}
\newlabel{ch8-migration}{{9.1}{350}{Technical Issues\relax }{figure.9.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2}{\ignorespaces View of Accounts in NT4 Domain User Manager}}{351}{figure.9.2}}
\newlabel{NT4DUM}{{9.2}{351}{Technical Issues\relax }{figure.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.2}Political Issues}{351}{subsection.9.2.2}}
\newlabel{id2507640}{{9.2.2}{351}{Political Issues\relax }{subsection.9.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.3}Implementation}{352}{section.9.3}}
\newlabel{id2507667}{{9.3}{352}{Implementation\relax }{section.9.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.1}NT4 Migration Using LDAP Backend}{353}{subsection.9.3.1}}
\newlabel{id2544472}{{9.3.1}{353}{NT4 Migration Using LDAP Backend\relax }{subsection.9.3.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {9.1}{\ignorespaces Samba smb.\penalty \z@ {}conf Scripts Essential to Samba Operation}}{354}{table.9.1}}
\newlabel{ch8-vampire}{{9.1}{354}{NT4 Migration Using LDAP Backend\relax }{table.9.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {9.3.1.1}Migration Log Validation}{366}{subsubsection.9.3.1.1}}
\newlabel{sbevam1}{{9.3.1.1}{366}{Migration Log Validation\relax }{subsubsection.9.3.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.2}NT4 Migration Using tdbsam Backend}{368}{subsection.9.3.2}}
\newlabel{id2553869}{{9.3.2}{368}{NT4 Migration Using tdbsam Backend\relax }{subsection.9.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.3}Key Points Learned}{372}{subsection.9.3.3}}
\newlabel{id2554220}{{9.3.3}{372}{Key Points Learned\relax }{subsection.9.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.4}Questions and Answers}{372}{section.9.4}}
\newlabel{id2554258}{{9.4}{372}{Questions and Answers\relax }{section.9.4}{}}
\newlabel{id2554266}{{9.4}{372}{F.A.Q}{section*.35}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.1}{\ignorespaces NT4 Migration Samba-3 Server smb.\penalty \z@ {}conf --- Part: A}}{377}{example.9.3.1}}
\newlabel{sbent4smb}{{9.3.1}{377}{NT4 Migration Using LDAP Backend\relax }{example.9.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.2}{\ignorespaces NT4 Migration Samba-3 Server smb.\penalty \z@ {}conf --- Part: B}}{378}{example.9.3.2}}
\newlabel{sbent4smb2}{{9.3.2}{378}{NT4 Migration Using LDAP Backend\relax }{example.9.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.3}{\ignorespaces NT4 Migration LDAP Server Configuration File: /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf --- Part A}}{379}{example.9.3.3}}
\newlabel{sbentslapd}{{9.3.3}{379}{NT4 Migration Using LDAP Backend\relax }{example.9.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.4}{\ignorespaces NT4 Migration LDAP Server Configuration File: /\penalty \z@ {}etc/\penalty \z@ {}openldap/\penalty \z@ {}slapd.\penalty \z@ {}conf --- Part B}}{380}{example.9.3.4}}
\newlabel{sbentslapd2}{{9.3.4}{380}{NT4 Migration Using LDAP Backend\relax }{example.9.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.5}{\ignorespaces NT4 Migration NSS LDAP File: /\penalty \z@ {}etc/\penalty \z@ {}ldap.\penalty \z@ {}conf}}{381}{example.9.3.5}}
\newlabel{sbrntldapconf}{{9.3.5}{381}{NT4 Migration Using LDAP Backend\relax }{example.9.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.6}{\ignorespaces NT4 Migration NSS Control File: /\penalty \z@ {}etc/\penalty \z@ {}nsswitch.\penalty \z@ {}conf (Stage:1)}}{382}{example.9.3.6}}
\newlabel{sbentnss}{{9.3.6}{382}{NT4 Migration Using LDAP Backend\relax }{example.9.3.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {9.3.7}{\ignorespaces NT4 Migration NSS Control File: /\penalty \z@ {}etc/\penalty \z@ {}nsswitch.\penalty \z@ {}conf (Stage:2)}}{383}{example.9.3.7}}
\newlabel{sbentnss2}{{9.3.7}{383}{NT4 Migration Using LDAP Backend\relax }{example.9.3.7}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {10}\uppercase {Migrating NetWare Server to Samba-3}}{385}{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}Migrating NetWare Server to Samba-3}{}{385}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {10}Migrating NetWare Server to Samba-3}{}{385}}}
\newlabel{nw4migration}{{10}{385}{Migrating NetWare Server to Samba-3\relax }{chapter.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.1}Introduction}{386}{section.10.1}}
\newlabel{id2483990}{{10.1}{386}{Introduction\relax }{section.10.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.1}Assignment Tasks}{387}{subsection.10.1.1}}
\newlabel{id2492957}{{10.1.1}{387}{Assignment Tasks\relax }{subsection.10.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.2}Dissection and Discussion}{388}{section.10.2}}
\newlabel{id2507157}{{10.2}{388}{Dissection and Discussion\relax }{section.10.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.2.1}Technical Issues}{388}{subsection.10.2.1}}
\newlabel{id2507235}{{10.2.1}{388}{Technical Issues\relax }{subsection.10.2.1}{}}
\newlabel{id2465722}{{10.2.1}{389}{Technical Issues\relax }{example.10.2.1}{}}
\global \@namedef{@fn@label@id2465722}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont {\itshape a}}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {10.2.1}{\ignorespaces A Rough Tool to Create an LDIF File from the System Account Files}}{390}{example.10.2.1}}
\newlabel{sbeamg}{{10.2.1}{390}{Technical Issues\relax }{example.10.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.3}Implementation}{390}{section.10.3}}
\newlabel{id2465732}{{10.3}{390}{Implementation\relax }{section.10.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.1}NetWare Migration Using LDAP Backend}{390}{subsection.10.3.1}}
\newlabel{id2465742}{{10.3.1}{390}{NetWare Migration Using LDAP Backend\relax }{subsection.10.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {10.3.1.1}LDAP Server Configuration}{391}{subsubsection.10.3.1.1}}
\newlabel{id2465819}{{10.3.1.1}{391}{LDAP Server Configuration\relax }{subsubsection.10.3.1.1}{}}
\newlabel{id2473588}{{10.3.1.1}{396}{LDAP Server Configuration\relax }{example.10.3.2}{}}
\global \@namedef{@fn@label@id2473588}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2557802}{{10.3.1.1}{402}{LDAP Server Configuration\relax }{example.10.3.13}{}}
\global \@namedef{@fn@label@id2557802}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2558290}{{10.3.1.1}{406}{LDAP Server Configuration\relax }{Item.576}{}}
\global \@namedef{@fn@label@id2558290}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.1}{\ignorespaces NSS LDAP Control File --- /etc/ldap.conf}}{407}{example.10.3.1}}
\newlabel{ch8ldap}{{10.3.1}{407}{LDAP Server Configuration\relax }{example.10.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.2}{\ignorespaces The PAM Control File /\penalty \z@ {}etc/\penalty \z@ {}security/\penalty \z@ {}pam\_\penalty \z@ {}unix2.\penalty \z@ {}conf}}{408}{example.10.3.2}}
\newlabel{sbepu2}{{10.3.2}{408}{LDAP Server Configuration\relax }{example.10.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.3}{\ignorespaces Samba Configuration File --- smb.conf Part A}}{409}{example.10.3.3}}
\newlabel{ch8smbconf}{{10.3.3}{409}{LDAP Server Configuration\relax }{example.10.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.4}{\ignorespaces Samba Configuration File --- smb.conf Part B}}{410}{example.10.3.4}}
\newlabel{ch8smbconf2}{{10.3.4}{410}{LDAP Server Configuration\relax }{example.10.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.5}{\ignorespaces Samba Configuration File --- smb.conf Part C}}{411}{example.10.3.5}}
\newlabel{ch8smbconf3}{{10.3.5}{411}{LDAP Server Configuration\relax }{example.10.3.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.6}{\ignorespaces Samba Configuration File --- smb.conf Part D}}{412}{example.10.3.6}}
\newlabel{ch8smbconf4}{{10.3.6}{412}{LDAP Server Configuration\relax }{example.10.3.6}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.7}{\ignorespaces Samba Configuration File --- smb.conf Part E}}{413}{example.10.3.7}}
\newlabel{ch8smbconf5}{{10.3.7}{413}{LDAP Server Configuration\relax }{example.10.3.7}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.8}{\ignorespaces Rsync Script}}{414}{example.10.3.8}}
\newlabel{sbersync}{{10.3.8}{414}{LDAP Server Configuration\relax }{example.10.3.8}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.9}{\ignorespaces Rsync Files Exclusion List --- /\penalty \z@ {}root/\penalty \z@ {}excludes.\penalty \z@ {}txt}}{415}{example.10.3.9}}
\newlabel{sbexcld}{{10.3.9}{415}{LDAP Server Configuration\relax }{example.10.3.9}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.10}{\ignorespaces Idealx smbldap-tools Control File --- Part A}}{416}{example.10.3.10}}
\newlabel{ch8ideal}{{10.3.10}{416}{LDAP Server Configuration\relax }{example.10.3.10}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.11}{\ignorespaces Idealx smbldap-tools Control File --- Part B}}{417}{example.10.3.11}}
\newlabel{ch8ideal2}{{10.3.11}{417}{LDAP Server Configuration\relax }{example.10.3.11}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.12}{\ignorespaces Idealx smbldap-tools Control File --- Part C}}{418}{example.10.3.12}}
\newlabel{ch8ideal3}{{10.3.12}{418}{LDAP Server Configuration\relax }{example.10.3.12}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.13}{\ignorespaces Idealx smbldap-tools Control File --- Part D}}{419}{example.10.3.13}}
\newlabel{ch8ideal4}{{10.3.13}{419}{LDAP Server Configuration\relax }{example.10.3.13}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.14}{\ignorespaces Kixtart Control File --- File: logon.kix}}{420}{example.10.3.14}}
\newlabel{ch8kix}{{10.3.14}{420}{LDAP Server Configuration\relax }{example.10.3.14}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.15}{\ignorespaces Kixtart Control File --- File: main.kix}}{421}{example.10.3.15}}
\newlabel{ch8kix2}{{10.3.15}{421}{LDAP Server Configuration\relax }{example.10.3.15}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.16}{\ignorespaces Kixtart Control File --- File: setup.kix, Part A}}{422}{example.10.3.16}}
\newlabel{ch8kix3}{{10.3.16}{422}{LDAP Server Configuration\relax }{example.10.3.16}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.17}{\ignorespaces Kixtart Control File --- File: setup.kix, Part B}}{423}{example.10.3.17}}
\newlabel{ch8kix3b}{{10.3.17}{423}{LDAP Server Configuration\relax }{example.10.3.17}{}}
\@writefile{loe}{\contentsline {example}{\numberline {10.3.18}{\ignorespaces Kixtart Control File --- File: acct.kix}}{424}{example.10.3.18}}
\newlabel{ch8kix4}{{10.3.18}{424}{LDAP Server Configuration\relax }{example.10.3.18}{}}
\@writefile{toc}{\contentsline {part}{Part III\hspace {1em}Reference Section}{423}{part.3}}
\newlabel{RefSection}{{III}{425}{Reference Section\relax }{part.3}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Reference Section}}{425}{section*.36}}
\newlabel{id2408515}{{III}{425}{Reference Section\relax }{chapter*.37}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {11}\uppercase {Active Directory, Kerberos, and Security}}{427}{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}Active Directory, Kerberos, and Security}{}{427}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {11}Active Directory, Kerberos, and Security}{}{427}}}
\newlabel{kerberos}{{11}{427}{Active Directory, Kerberos, and Security\relax }{chapter.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.1}Introduction}{428}{section.11.1}}
\newlabel{id2466045}{{11.1}{428}{Introduction\relax }{section.11.1}{}}
\newlabel{id2531682}{{11.1}{428}{Introduction\relax }{section.11.1}{}}
\global \@namedef{@fn@label@id2531682}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.1}Assignment Tasks}{431}{subsection.11.1.1}}
\newlabel{id2552143}{{11.1.1}{431}{Assignment Tasks\relax }{subsection.11.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.2}Dissection and Discussion}{432}{section.11.2}}
\newlabel{id2506693}{{11.2}{432}{Dissection and Discussion\relax }{section.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.1}Technical Issues}{433}{subsection.11.2.1}}
\newlabel{id2555238}{{11.2.1}{433}{Technical Issues\relax }{subsection.11.2.1}{}}
\newlabel{id2562486}{{11.2.1}{436}{Technical Issues\relax }{subsection.11.2.1}{}}
\global \@namedef{@fn@label@id2562486}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2562494}{{11.2.1}{436}{Technical Issues\relax }{subsection.11.2.1}{}}
\global \@namedef{@fn@label@id2562494}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.1.1}Kerberos Exposed}{438}{subsubsection.11.2.1.1}}
\newlabel{id2562754}{{11.2.1.1}{438}{Kerberos Exposed\relax }{subsubsection.11.2.1.1}{}}
\newlabel{id2562902}{{11.2.1.1}{439}{Kerberos Exposed\relax }{subsubsection.11.2.1.1}{}}
\global \@namedef{@fn@label@id2562902}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2562928}{{11.2.1.1}{439}{Kerberos Exposed\relax }{subsubsection.11.2.1.1}{}}
\global \@namedef{@fn@label@id2562928}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\newlabel{id2562935}{{11.2.1.1}{439}{Kerberos Exposed\relax }{subsubsection.11.2.1.1}{}}
\global \@namedef{@fn@label@id2562935}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2563013}{{11.2.1.1}{440}{Kerberos Exposed\relax }{subsubsection.11.2.1.1}{}}
\global \@namedef{@fn@label@id2563013}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {11.3}Implementation}{440}{section.11.3}}
\newlabel{ch10expl}{{11.3}{440}{Implementation\relax }{section.11.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.1}Share Access Controls}{440}{subsection.11.3.1}}
\newlabel{id2563070}{{11.3.1}{440}{Share Access Controls\relax }{subsection.11.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.2}Share Definition Controls}{441}{subsection.11.3.2}}
\newlabel{id2563390}{{11.3.2}{441}{Share Definition Controls\relax }{subsection.11.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.2.1}Checkpoint Controls}{442}{subsubsection.11.3.2.1}}
\newlabel{id2563519}{{11.3.2.1}{442}{Checkpoint Controls\relax }{subsubsection.11.3.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.2.2}Override Controls}{445}{subsubsection.11.3.2.2}}
\newlabel{id2563800}{{11.3.2.2}{445}{Override Controls\relax }{subsubsection.11.3.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.3}Share Point Directory and File Permissions}{446}{subsection.11.3.3}}
\newlabel{id2563950}{{11.3.3}{446}{Share Point Directory and File Permissions\relax }{subsection.11.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.4}Managing Windows 200x ACLs}{448}{subsection.11.3.4}}
\newlabel{id2564332}{{11.3.4}{448}{Managing Windows 200x ACLs\relax }{subsection.11.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.4.1}Using the MMC Computer Management Interface}{448}{subsubsection.11.3.4.1}}
\newlabel{id2564383}{{11.3.4.1}{448}{Using the MMC Computer Management Interface\relax }{subsubsection.11.3.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.4.2}Using MS Windows Explorer (File Manager)}{450}{subsubsection.11.3.4.2}}
\newlabel{id2564653}{{11.3.4.2}{450}{Using MS Windows Explorer (File Manager)\relax }{subsubsection.11.3.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.3.4.3}Setting Posix ACLs in UNIX/Linux}{450}{subsubsection.11.3.4.3}}
\newlabel{id2564812}{{11.3.4.3}{450}{Setting Posix ACLs in UNIX/Linux\relax }{subsubsection.11.3.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3.5}Key Points Learned}{452}{subsection.11.3.5}}
\newlabel{id2565009}{{11.3.5}{452}{Key Points Learned\relax }{subsection.11.3.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.4}Questions and Answers}{453}{section.11.4}}
\newlabel{id2565137}{{11.4}{453}{Questions and Answers\relax }{section.11.4}{}}
\newlabel{id2565145}{{11.4}{453}{F.A.Q}{section*.38}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {12}\uppercase {Integrating Additional Services}}{457}{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}Integrating Additional Services}{}{457}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {12}Integrating Additional Services}{}{457}}}
\newlabel{DomApps}{{12}{457}{Integrating Additional Services\relax }{chapter.12}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.1}Introduction}{457}{section.12.1}}
\newlabel{id2489276}{{12.1}{457}{Introduction\relax }{section.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.1.1}Assignment Tasks}{458}{subsection.12.1.1}}
\newlabel{id2480110}{{12.1.1}{458}{Assignment Tasks\relax }{subsection.12.1.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.2}Dissection and Discussion}{459}{section.12.2}}
\newlabel{id2464978}{{12.2}{459}{Dissection and Discussion\relax }{section.12.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.1}Technical Issues}{459}{subsection.12.2.1}}
\newlabel{id2465012}{{12.2.1}{459}{Technical Issues\relax }{subsection.12.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2.2}Political Issues}{460}{subsection.12.2.2}}
\newlabel{id2511308}{{12.2.2}{460}{Political Issues\relax }{subsection.12.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.3}Implementation}{460}{section.12.3}}
\newlabel{id2511327}{{12.3}{460}{Implementation\relax }{section.12.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.1}Removal of Pre-Existing Conflicting RPMs}{461}{subsection.12.3.1}}
\newlabel{ch10-one}{{12.3.1}{461}{Removal of Pre-Existing Conflicting RPMs\relax }{subsection.12.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.2}Kerberos Configuration}{462}{subsection.12.3.2}}
\newlabel{id2551738}{{12.3.2}{462}{Kerberos Configuration\relax }{subsection.12.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.1}{\ignorespaces Kerberos Configuration --- File: /\penalty \z@ {}etc/\penalty \z@ {}krb5.\penalty \z@ {}conf}}{463}{example.12.3.1}}
\newlabel{ch10-krb5conf}{{12.3.1}{463}{Kerberos Configuration\relax }{example.12.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {12.3.2.1}Samba Configuration}{463}{subsubsection.12.3.2.1}}
\newlabel{id2555458}{{12.3.2.1}{463}{Samba Configuration\relax }{subsubsection.12.3.2.1}{}}
\newlabel{id2555526}{{1}{464}{Samba Configuration\relax }{Item.615}{}}
\global \@namedef{@fn@label@id2555526}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2555559}{{1}{464}{Samba Configuration\relax }{Item.615}{}}
\global \@namedef{@fn@label@id2555559}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {12.3.2.2}NSS Configuration}{466}{subsubsection.12.3.2.2}}
\newlabel{id2561100}{{12.3.2.2}{466}{NSS Configuration\relax }{subsubsection.12.3.2.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.2}{\ignorespaces Samba Configuration --- File: /\penalty \z@ {}etc/\penalty \z@ {}samba/\penalty \z@ {}smb.\penalty \z@ {}conf}}{467}{example.12.3.2}}
\newlabel{ch10-smbconf}{{12.3.2}{467}{NSS Configuration\relax }{example.12.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.3}{\ignorespaces NSS Configuration File Extract --- File: /\penalty \z@ {}etc/\penalty \z@ {}nsswitch.\penalty \z@ {}conf}}{467}{example.12.3.3}}
\newlabel{ch10-etcnsscfg}{{12.3.3}{467}{NSS Configuration\relax }{example.12.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {12.3.2.3}Squid Configuration}{467}{subsubsection.12.3.2.3}}
\newlabel{id2561290}{{12.3.2.3}{467}{Squid Configuration\relax }{subsubsection.12.3.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.3}Configuration}{467}{subsection.12.3.3}}
\newlabel{id2561322}{{12.3.3}{467}{Configuration\relax }{subsection.12.3.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.4}{\ignorespaces Squid Configuration File Extract --- /\penalty \z@ {}etc/\penalty \z@ {}squid.\penalty \z@ {}conf [ADMINISTRATIVE PARAMETERS Section]}}{469}{example.12.3.4}}
\newlabel{etcsquidcfg}{{12.3.4}{469}{Configuration\relax }{example.12.3.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {12.3.5}{\ignorespaces Squid Configuration File extract --- File: /\penalty \z@ {}etc/\penalty \z@ {}squid.\penalty \z@ {}conf [AUTHENTICATION PARAMETERS Section]}}{469}{example.12.3.5}}
\newlabel{etcsquid2}{{12.3.5}{469}{Configuration\relax }{example.12.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3.4}Key Points Learned}{469}{subsection.12.3.4}}
\newlabel{id2565710}{{12.3.4}{469}{Key Points Learned\relax }{subsection.12.3.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12.4}Questions and Answers}{470}{section.12.4}}
\newlabel{id2565766}{{12.4}{470}{Questions and Answers\relax }{section.12.4}{}}
\newlabel{id2565860}{{12.4}{470}{F.A.Q}{section*.39}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {13}\uppercase {Performance, Reliability, and Availability}}{473}{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}Performance, Reliability, and Availability}{}{473}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {13}Performance, Reliability, and Availability}{}{473}}}
\newlabel{HA}{{13}{473}{Performance, Reliability, and Availability\relax }{chapter.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.1}Introduction}{473}{section.13.1}}
\newlabel{id2468383}{{13.1}{473}{Introduction\relax }{section.13.1}{}}
\newlabel{id2493629}{{13.1}{474}{Introduction\relax }{section.13.1}{}}
\global \@namedef{@fn@label@id2493629}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {13.2}Dissection and Discussion}{474}{section.13.2}}
\newlabel{id2503942}{{13.2}{474}{Dissection and Discussion\relax }{section.13.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {13.1}{\ignorespaces Effect of Common Problems}}{475}{table.13.1}}
\newlabel{ProbList}{{13.1}{475}{Dissection and Discussion\relax }{table.13.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.3}Guidelines for Reliable Samba Operation}{476}{section.13.3}}
\newlabel{id2560317}{{13.3}{476}{Guidelines for Reliable Samba Operation\relax }{section.13.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.1}Name Resolution}{476}{subsection.13.3.1}}
\newlabel{id2560344}{{13.3.1}{476}{Name Resolution\relax }{subsection.13.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.1}Bad Hostnames}{476}{subsubsection.13.3.1.1}}
\newlabel{id2560356}{{13.3.1.1}{476}{Bad Hostnames\relax }{subsubsection.13.3.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.2}Routed Networks}{477}{subsubsection.13.3.1.2}}
\newlabel{id2555863}{{13.3.1.2}{477}{Routed Networks\relax }{subsubsection.13.3.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {13.3.1.3}Network Collisions}{478}{subsubsection.13.3.1.3}}
\newlabel{id2550995}{{13.3.1.3}{478}{Network Collisions\relax }{subsubsection.13.3.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.2}Samba Configuration}{478}{subsection.13.3.2}}
\newlabel{id2551096}{{13.3.2}{478}{Samba Configuration\relax }{subsection.13.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.3}Use and Location of BDCs}{481}{subsection.13.3.3}}
\newlabel{id2558509}{{13.3.3}{481}{Use and Location of BDCs\relax }{subsection.13.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.4}Use One Consistent Version of MS Windows Client}{481}{subsection.13.3.4}}
\newlabel{id2558587}{{13.3.4}{481}{Use One Consistent Version of MS Windows Client\relax }{subsection.13.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.5}For Scalability, Use SAN-Based Storage on Samba Servers}{481}{subsection.13.3.5}}
\newlabel{id2558611}{{13.3.5}{481}{For Scalability, Use SAN-Based Storage on Samba Servers\relax }{subsection.13.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.6}Distribute Network Load with MSDFS}{482}{subsection.13.3.6}}
\newlabel{id2558662}{{13.3.6}{482}{Distribute Network Load with MSDFS\relax }{subsection.13.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.7}Replicate Data to Conserve Peak-Demand Wide-Area Bandwidth}{482}{subsection.13.3.7}}
\newlabel{id2558719}{{13.3.7}{482}{Replicate Data to Conserve Peak-Demand Wide-Area Bandwidth\relax }{subsection.13.3.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.8}Hardware Problems}{482}{subsection.13.3.8}}
\newlabel{id2558766}{{13.3.8}{482}{Hardware Problems\relax }{subsection.13.3.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {13.3.9}Large Directories}{483}{subsection.13.3.9}}
\newlabel{id2558920}{{13.3.9}{483}{Large Directories\relax }{subsection.13.3.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13.4}Key Points Learned}{484}{section.13.4}}
\newlabel{id2559019}{{13.4}{484}{Key Points Learned\relax }{section.13.4}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {14}\uppercase {Samba Support}}{487}{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}Samba Support}{}{487}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {14}Samba Support}{}{487}}}
\newlabel{id2518283}{{14}{487}{Samba Support\relax }{chapter.14}{}}
\@writefile{toc}{\contentsline {section}{\numberline {14.1}Free Support}{488}{section.14.1}}
\newlabel{id2519431}{{14.1}{488}{Free Support\relax }{section.14.1}{}}
\newlabel{id2485238}{{14.1}{488}{Free Support\relax }{section.14.1}{}}
\global \@namedef{@fn@label@id2485238}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2485259}{{14.1}{488}{Free Support\relax }{section.14.1}{}}
\global \@namedef{@fn@label@id2485259}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2489522}{{14.1}{488}{Free Support\relax }{section.14.1}{}}
\global \@namedef{@fn@label@id2489522}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {14.2}Commercial Support}{489}{section.14.2}}
\newlabel{id2457469}{{14.2}{489}{Commercial Support\relax }{section.14.2}{}}
\newlabel{id2468466}{{14.2}{489}{Commercial Support\relax }{section.14.2}{}}
\global \@namedef{@fn@label@id2468466}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {15}\uppercase {A Collection of Useful Tidbits}}{491}{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}A Collection of Useful Tidbits}{}{491}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {15}A Collection of Useful Tidbits}{}{491}}}
\newlabel{appendix}{{15}{491}{A Collection of Useful Tidbits\relax }{chapter.15}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.1}Joining a Domain: Windows 200x/XP Professional}{491}{section.15.1}}
\newlabel{domjoin}{{15.1}{491}{Joining a Domain: Windows 200x/XP Professional\relax }{section.15.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.1}{\ignorespaces The General Panel.}}{492}{figure.15.1}}
\newlabel{swxpp001}{{15.1}{492}{Joining a Domain: Windows 200x/XP Professional\relax }{figure.15.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.2}{\ignorespaces The Computer Name Panel.}}{493}{figure.15.2}}
\newlabel{swxpp004}{{15.2}{493}{Joining a Domain: Windows 200x/XP Professional\relax }{figure.15.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.3}{\ignorespaces The Computer Name Changes Panel}}{494}{figure.15.3}}
\newlabel{swxpp006}{{15.3}{494}{Joining a Domain: Windows 200x/XP Professional\relax }{figure.15.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.4}{\ignorespaces The Computer Name Changes Panel --- Domain MIDEARTH}}{494}{figure.15.4}}
\newlabel{swxpp007}{{15.4}{494}{Joining a Domain: Windows 200x/XP Professional\relax }{figure.15.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.5}{\ignorespaces Computer Name Changes --- User name and Password Panel}}{495}{figure.15.5}}
\newlabel{swxpp008}{{15.5}{495}{Joining a Domain: Windows 200x/XP Professional\relax }{figure.15.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.2}Samba System File Location}{495}{section.15.2}}
\newlabel{id2568316}{{15.2}{495}{Samba System File Location\relax }{section.15.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.3}Starting Samba}{498}{section.15.3}}
\newlabel{id2556196}{{15.3}{498}{Starting Samba\relax }{section.15.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.4}DNS Configuration Files}{499}{section.15.4}}
\newlabel{id2560609}{{15.4}{499}{DNS Configuration Files\relax }{section.15.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.4.1}The Forward Zone File for the Loopback Adaptor}{499}{subsection.15.4.1}}
\newlabel{id2560622}{{15.4.1}{499}{The Forward Zone File for the Loopback Adaptor\relax }{subsection.15.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.4.2}The Reverse Zone File for the Loopback Adaptor}{499}{subsection.15.4.2}}
\newlabel{id2560670}{{15.4.2}{499}{The Reverse Zone File for the Loopback Adaptor\relax }{subsection.15.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.4.3}DNS Root Server Hint File}{499}{subsection.15.4.3}}
\newlabel{id2571074}{{15.4.3}{499}{DNS Root Server Hint File\relax }{subsection.15.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.5}Alternative LDAP Database Initialization}{500}{section.15.5}}
\newlabel{altldapcfg}{{15.5}{500}{Alternative LDAP Database Initialization\relax }{section.15.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.5.1}Initialization of the LDAP Database}{500}{subsection.15.5.1}}
\newlabel{id2571127}{{15.5.1}{500}{Initialization of the LDAP Database\relax }{subsection.15.5.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.6}The LDAP Account Manager}{504}{section.15.6}}
\newlabel{id2571599}{{15.6}{504}{The LDAP Account Manager\relax }{section.15.6}{}}
\newlabel{id2571664}{{15.6}{504}{The LDAP Account Manager\relax }{section.15.6}{}}
\global \@namedef{@fn@label@id2571664}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2571707}{{15.6}{505}{The LDAP Account Manager\relax }{section.15.6}{}}
\global \@namedef{@fn@label@id2571707}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\newlabel{id2572021}{{5}{507}{The LDAP Account Manager\relax }{Item.649}{}}
\global \@namedef{@fn@label@id2572021}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.6}{\ignorespaces The LDAP Account Manager Login Screen}}{508}{figure.15.6}}
\newlabel{lam-login}{{15.6}{508}{The LDAP Account Manager\relax }{figure.15.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.7}{\ignorespaces The LDAP Account Manager Configuration Screen}}{509}{figure.15.7}}
\newlabel{lam-config}{{15.7}{509}{The LDAP Account Manager\relax }{figure.15.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.8}{\ignorespaces The LDAP Account Manager User Edit Screen}}{510}{figure.15.8}}
\newlabel{lam-user}{{15.8}{510}{The LDAP Account Manager\relax }{figure.15.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.7}IDEALX Management Console}{510}{section.15.7}}
\newlabel{id2572374}{{15.7}{510}{IDEALX Management Console\relax }{section.15.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.9}{\ignorespaces The LDAP Account Manager Group Edit Screen}}{511}{figure.15.9}}
\newlabel{lam-group}{{15.9}{511}{The LDAP Account Manager\relax }{figure.15.9}{}}
\newlabel{id2572425}{{15.7}{511}{IDEALX Management Console\relax }{figure.15.12}{}}
\global \@namedef{@fn@label@id2572425}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\newlabel{id2572431}{{15.7}{511}{IDEALX Management Console\relax }{figure.15.12}{}}
\global \@namedef{@fn@label@id2572431}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 5}}}}}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.10}{\ignorespaces The LDAP Account Manager Group Membership Edit Screen}}{512}{figure.15.10}}
\newlabel{lam-group-mem}{{15.10}{512}{The LDAP Account Manager\relax }{figure.15.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.8}Effect of Setting File and Directory SUID/SGID Permissions Explained}{512}{section.15.8}}
\newlabel{ch12-SUIDSGID}{{15.8}{512}{Effect of Setting File and Directory SUID/SGID Permissions Explained\relax }{section.15.8}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.11}{\ignorespaces The LDAP Account Manager Host Edit Screen}}{513}{figure.15.11}}
\newlabel{lam-host}{{15.11}{513}{The LDAP Account Manager\relax }{figure.15.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {15.12}{\ignorespaces The IMC Samba User Account Screen}}{514}{figure.15.12}}
\newlabel{imcidealx}{{15.12}{514}{IDEALX Management Console\relax }{figure.15.12}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15.9}Shared Data Integrity}{515}{section.15.9}}
\newlabel{ch12dblck}{{15.9}{515}{Shared Data Integrity\relax }{section.15.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.9.1}Microsoft Access}{516}{subsection.15.9.1}}
\newlabel{id2572794}{{15.9.1}{516}{Microsoft Access\relax }{subsection.15.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.9.2}Act! Database Sharing}{517}{subsection.15.9.2}}
\newlabel{id2572932}{{15.9.2}{517}{Act! Database Sharing\relax }{subsection.15.9.2}{}}
\newlabel{id2572959}{{15.9.2}{517}{Act! Database Sharing\relax }{subsection.15.9.2}{}}
\global \@namedef{@fn@label@id2572959}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 6}}}}}}
\newlabel{id2572965}{{15.9.2}{517}{Act! Database Sharing\relax }{subsection.15.9.2}{}}
\global \@namedef{@fn@label@id2572965}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 7}}}}}}
\newlabel{id2573002}{{15.9.2}{517}{Act! Database Sharing\relax }{subsection.15.9.2}{}}
\global \@namedef{@fn@label@id2573002}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 8}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.9.3}Opportunistic Locking Controls}{517}{subsection.15.9.3}}
\newlabel{id2573011}{{15.9.3}{517}{Opportunistic Locking Controls\relax }{subsection.15.9.3}{}}
\newlabel{id2573029}{{15.9.3}{517}{Opportunistic Locking Controls\relax }{subsection.15.9.3}{}}
\global \@namedef{@fn@label@id2573029}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 9}}}}}}
\@writefile{loe}{\contentsline {example}{\numberline {15.3.1}{\ignorespaces A Useful Samba Control Script for SUSE Linux}}{519}{example.15.3.1}}
\newlabel{ch12SL}{{15.3.1}{519}{Starting Samba\relax }{example.15.3.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.3.2}{\ignorespaces A Sample Samba Control Script for Red Hat Linux}}{520}{example.15.3.2}}
\newlabel{ch12RHscript}{{15.3.2}{520}{Starting Samba\relax }{example.15.3.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.4.1}{\ignorespaces DNS Localhost Forward Zone File: /\penalty \z@ {}var/\penalty \z@ {}lib/\penalty \z@ {}named/\penalty \z@ {}localhost.\penalty \z@ {}zone}}{521}{example.15.4.1}}
\newlabel{loopback}{{15.4.1}{521}{The Forward Zone File for the Loopback Adaptor\relax }{example.15.4.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.4.2}{\ignorespaces DNS Localhost Reverse Zone File: /\penalty \z@ {}var/\penalty \z@ {}lib/\penalty \z@ {}named/\penalty \z@ {}127.\penalty \z@ {}0.\penalty \z@ {}0.\penalty \z@ {}zone}}{521}{example.15.4.2}}
\newlabel{dnsloopy}{{15.4.2}{521}{The Reverse Zone File for the Loopback Adaptor\relax }{example.15.4.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.4.3}{\ignorespaces DNS Root Name Server Hint File: /\penalty \z@ {}var/\penalty \z@ {}lib/\penalty \z@ {}named/\penalty \z@ {}root.\penalty \z@ {}hint}}{522}{example.15.4.3}}
\newlabel{roothint}{{15.4.3}{522}{The Reverse Zone File for the Loopback Adaptor\relax }{example.15.4.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.5.1}{\ignorespaces LDAP Pre-configuration Script: SMBLDAP-\penalty \z@ {}ldif-\penalty \z@ {}preconfig.\penalty \z@ {}sh --- Part A}}{523}{example.15.5.1}}
\newlabel{sbehap-ldapreconfa}{{15.5.1}{523}{Initialization of the LDAP Database\relax }{example.15.5.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.5.2}{\ignorespaces LDAP Pre-configuration Script: SMBLDAP-\penalty \z@ {}ldif-\penalty \z@ {}preconfig.\penalty \z@ {}sh --- Part B}}{524}{example.15.5.2}}
\newlabel{sbehap-ldapreconfb}{{15.5.2}{524}{Initialization of the LDAP Database\relax }{example.15.5.2}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.5.3}{\ignorespaces LDAP Pre-configuration Script: SMBLDAP-\penalty \z@ {}ldif-\penalty \z@ {}preconfig.\penalty \z@ {}sh --- Part C}}{525}{example.15.5.3}}
\newlabel{sbehap-ldapreconfc}{{15.5.3}{525}{Initialization of the LDAP Database\relax }{example.15.5.3}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.5.4}{\ignorespaces LDIF Pattern File Used to Pre-configure LDAP --- Part A}}{526}{example.15.5.4}}
\newlabel{sbehap-ldifpata}{{15.5.4}{526}{Initialization of the LDAP Database\relax }{example.15.5.4}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.5.5}{\ignorespaces LDIF Pattern File Used to Pre-configure LDAP --- Part B}}{527}{example.15.5.5}}
\newlabel{sbehap-ldifpatb}{{15.5.5}{527}{Initialization of the LDAP Database\relax }{example.15.5.5}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.6.1}{\ignorespaces Example LAM Configuration File --- config.\penalty \z@ {}cfg}}{528}{example.15.6.1}}
\newlabel{lamcfg}{{15.6.1}{528}{The LDAP Account Manager\relax }{example.15.6.1}{}}
\@writefile{loe}{\contentsline {example}{\numberline {15.6.2}{\ignorespaces LAM Profile Control File --- lam.\penalty \z@ {}conf}}{528}{example.15.6.2}}
\newlabel{lamconf}{{15.6.2}{528}{The LDAP Account Manager\relax }{example.15.6.2}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {16}\uppercase {Networking Primer}}{529}{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}Networking Primer}{}{529}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {16}Networking Primer}{}{529}}}
\newlabel{primer}{{16}{529}{Networking Primer\relax }{chapter.16}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.1}Requirements and Notes}{529}{section.16.1}}
\newlabel{id2472192}{{16.1}{529}{Requirements and Notes\relax }{section.16.1}{}}
\newlabel{id2479820}{{16.1}{530}{Requirements and Notes\relax }{section.16.1}{}}
\global \@namedef{@fn@label@id2479820}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2472888}{{16.1}{530}{Requirements and Notes\relax }{section.16.1}{}}
\global \@namedef{@fn@label@id2472888}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {section}{\numberline {16.2}Introduction}{531}{section.16.2}}
\newlabel{id2472981}{{16.2}{531}{Introduction\relax }{section.16.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.1}Assignment Tasks}{532}{subsection.16.2.1}}
\newlabel{id2567528}{{16.2.1}{532}{Assignment Tasks\relax }{subsection.16.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.3}Exercises}{532}{section.16.3}}
\newlabel{id2567650}{{16.3}{532}{Exercises\relax }{section.16.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.1}Single-Machine Broadcast Activity}{533}{subsection.16.3.1}}
\newlabel{id2457521}{{16.3.1}{533}{Single-Machine Broadcast Activity\relax }{subsection.16.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.3.1.1}Findings}{534}{subsubsection.16.3.1.1}}
\newlabel{id2559173}{{16.3.1.1}{534}{Findings\relax }{subsubsection.16.3.1.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.1}{\ignorespaces Windows Me --- Broadcasts --- The First 10 Minutes}}{535}{figure.16.1}}
\newlabel{pktcap01}{{16.1}{535}{Findings\relax }{figure.16.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.2}{\ignorespaces Windows Me --- Later Broadcast Sample}}{536}{figure.16.2}}
\newlabel{pktcap02}{{16.2}{536}{Findings\relax }{figure.16.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.2}Second Machine Startup Broadcast Interaction}{536}{subsection.16.3.2}}
\newlabel{secondmachine}{{16.3.2}{536}{Second Machine Startup Broadcast Interaction\relax }{subsection.16.3.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.1}{\ignorespaces Windows Me --- Startup Broadcast Capture Statistics}}{537}{table.16.1}}
\newlabel{capsstats01}{{16.1}{537}{Findings\relax }{table.16.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.3.2.1}Findings}{538}{subsubsection.16.3.2.1}}
\newlabel{id2559802}{{16.3.2.1}{538}{Findings\relax }{subsubsection.16.3.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.3}Simple Windows Client Connection Characteristics}{538}{subsection.16.3.3}}
\newlabel{id2574732}{{16.3.3}{538}{Simple Windows Client Connection Characteristics\relax }{subsection.16.3.3}{}}
\@writefile{lot}{\contentsline {table}{\numberline {16.2}{\ignorespaces Second Machine (Windows 98) --- Capture Statistics}}{539}{table.16.2}}
\newlabel{capsstats02}{{16.2}{539}{Findings\relax }{table.16.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.3}{\ignorespaces Typical Windows 9x/Me Host Announcement}}{540}{figure.16.3}}
\newlabel{hostannounce}{{16.3}{540}{Findings\relax }{figure.16.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.3.3.1}Findings and Comments}{541}{subsubsection.16.3.3.1}}
\newlabel{id2574953}{{16.3.3.1}{541}{Findings and Comments\relax }{subsubsection.16.3.3.1}{}}
\newlabel{id2574970}{{16.3.3.1}{541}{Findings and Comments\relax }{subsubsection.16.3.3.1}{}}
\global \@namedef{@fn@label@id2574970}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 3}}}}}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.4}{\ignorespaces Typical Windows 9x/Me NULL SessionSetUp AndX Request}}{542}{figure.16.4}}
\newlabel{nullconnect}{{16.4}{542}{Findings and Comments\relax }{figure.16.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.5}{\ignorespaces Typical Windows 9x/Me User SessionSetUp AndX Request}}{543}{figure.16.5}}
\newlabel{userconnect}{{16.5}{543}{Findings and Comments\relax }{figure.16.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.4}Windows 200x/XP Client Interaction with Samba-3}{543}{subsection.16.3.4}}
\newlabel{id2575142}{{16.3.4}{543}{Windows 200x/XP Client Interaction with Samba-3\relax }{subsection.16.3.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.6}{\ignorespaces Typical Windows XP NULL Session Setup AndX Request}}{546}{figure.16.6}}
\newlabel{XPCap01}{{16.6}{546}{Windows 200x/XP Client Interaction with Samba-3\relax }{figure.16.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.3.4.1}Discussion}{546}{subsubsection.16.3.4.1}}
\newlabel{id2575597}{{16.3.4.1}{546}{Discussion\relax }{subsubsection.16.3.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {16.7}{\ignorespaces Typical Windows XP User Session Setup AndX Request}}{547}{figure.16.7}}
\newlabel{XPCap02}{{16.7}{547}{Windows 200x/XP Client Interaction with Samba-3\relax }{figure.16.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.5}Conclusions to Exercises}{547}{subsection.16.3.5}}
\newlabel{id2575627}{{16.3.5}{547}{Conclusions to Exercises\relax }{subsection.16.3.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.4}Dissection and Discussion}{548}{section.16.4}}
\newlabel{chap01conc}{{16.4}{548}{Dissection and Discussion\relax }{section.16.4}{}}
\newlabel{id2575728}{{16.4}{548}{Dissection and Discussion\relax }{section.16.4}{}}
\global \@namedef{@fn@label@id2575728}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 4}}}}}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.4.1}Technical Issues}{548}{subsection.16.4.1}}
\newlabel{id2575735}{{16.4.1}{548}{Technical Issues\relax }{subsection.16.4.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16.5}Questions and Answers}{549}{section.16.5}}
\newlabel{chap01qa}{{16.5}{549}{Questions and Answers\relax }{section.16.5}{}}
\newlabel{id2575779}{{16.5}{549}{F.A.Q}{section*.40}{}}
\@writefile{toc}{\contentsline {chapter}{Chapter~\numberline {A}\uppercase {GNU General Public License version 3}}{553}{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}{}{553}}}
\@writefile{lot}{\def \the@l@figure@leader {\pagebreak [0]\contentsline {chapter}{\numberline {A}GNU General Public License version 3}{}{553}}}
\newlabel{id2508589}{{A}{553}{GNU General Public License version 3\relax }{appendix.A}{}}
\newlabel{id2466871}{{A}{553}{Preamble\relax }{section*.41}{}}
\newlabel{id2487460}{{A}{555}{TERMS AND CONDITIONS\relax }{section*.42}{}}
\newlabel{id2477729}{{A}{555}{0. Definitions}{section*.43}{}}
\newlabel{id2578909}{{A}{556}{1. Source Code}{section*.44}{}}
\newlabel{id2472059}{{A}{557}{2. Basic Permissions}{section*.45}{}}
\newlabel{id2463280}{{A}{558}{3. Protecting Users’ Legal Rights From Anti-Circumvention Law}{section*.46}{}}
\newlabel{id2463274}{{A}{558}{4. Conveying Verbatim Copies}{section*.47}{}}
\newlabel{id2458709}{{A}{559}{5. Conveying Modified Source Versions}{section*.48}{}}
\newlabel{id2479119}{{A}{560}{6. Conveying Non-Source Forms}{section*.49}{}}
\newlabel{id2487259}{{A}{562}{7. Additional Terms}{section*.50}{}}
\newlabel{id2481479}{{A}{564}{8. Termination}{section*.51}{}}
\newlabel{id2501220}{{A}{564}{9. Acceptance Not Required for Having Copies}{section*.52}{}}
\newlabel{id2484375}{{A}{565}{10. Automatic Licensing of Downstream Recipients}{section*.53}{}}
\newlabel{id2509795}{{A}{565}{11. Patents}{section*.54}{}}
\newlabel{id2476150}{{A}{567}{12. No Surrender of Others’ Freedom}{section*.55}{}}
\newlabel{id2521984}{{A}{568}{13. Use with the GNU Affero General Public License}{section*.56}{}}
\newlabel{id2485723}{{A}{568}{14. Revised Versions of this License}{section*.57}{}}
\newlabel{id2486923}{{A}{569}{15. Disclaimer of Warranty}{section*.58}{}}
\newlabel{id2577163}{{A}{569}{16. Limitation of Liability}{section*.59}{}}
\newlabel{id2460792}{{A}{569}{17. Interpretation of Sections 15 and 16}{section*.60}{}}
\newlabel{id2570413}{{A}{570}{END OF TERMS AND CONDITIONS\relax }{section*.61}{}}
\newlabel{id2521573}{{A}{570}{How to Apply These Terms to Your New Programs\relax }{section*.62}{}}
\@writefile{toc}{\contentsline {chapter}{\uppercase {Glossary}}{573}{section*.62}}
\newlabel{id2496544}{{A}{573}{Glossary\relax }{appendix*.63}{}}
\newlabel{id2532824}{{A}{573}{Glossary\relax }{appendix*.63}{}}
\global \@namedef{@fn@label@id2532824}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 1}}}}}}
\newlabel{id2576793}{{A}{577}{Glossary\relax }{appendix*.63}{}}
\global \@namedef{@fn@label@id2576793}{\hbox {{\mathsurround \z@ \ensuremath {^{\unhbox \voidb@x \hbox {\fontsize 6\z@ \normalfont 2}}}}}}
\@writefile{toc}{\contentsline {chapter}{SUBJECT INDEX}{579}{appendix*.63}}
|