<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Linux%2FSamba%2FDomain_Controller</id>
	<title>Linux/Samba/Domain Controller - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Linux%2FSamba%2FDomain_Controller"/>
	<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Linux/Samba/Domain_Controller&amp;action=history"/>
	<updated>2026-05-07T04:22:02Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://aznot.com/index.php?title=Linux/Samba/Domain_Controller&amp;diff=626&amp;oldid=prev</id>
		<title>Kenneth: Created page with &quot;==Tutorial #1== [http://www.howtoforge.com/samba_setup_ubuntu_5.10 SAMBA (Domain Controller) Server For Small Workgroups With Ubuntu 5.10 &quot;Breezy Badger&quot;]   yum install samba ...&quot;</title>
		<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Linux/Samba/Domain_Controller&amp;diff=626&amp;oldid=prev"/>
		<updated>2014-08-10T23:57:16Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Tutorial #1== [http://www.howtoforge.com/samba_setup_ubuntu_5.10 SAMBA (Domain Controller) Server For Small Workgroups With Ubuntu 5.10 &amp;quot;Breezy Badger&amp;quot;]   yum install samba ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Tutorial #1==&lt;br /&gt;
[http://www.howtoforge.com/samba_setup_ubuntu_5.10 SAMBA (Domain Controller) Server For Small Workgroups With Ubuntu 5.10 &amp;quot;Breezy Badger&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
 yum install samba samba-client samba-common&lt;br /&gt;
&lt;br /&gt;
Edit /etc/samba/smb.conf:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
[global]&lt;br /&gt;
   workgroup = T0E&lt;br /&gt;
   netbios name = TESTLAB&lt;br /&gt;
   server string = %h server&lt;br /&gt;
&lt;br /&gt;
   passdb backend = tdbsam&lt;br /&gt;
   security = user&lt;br /&gt;
   username map = /etc/samba/smbusers&lt;br /&gt;
   name resolve order = wins bcast hosts&lt;br /&gt;
   domain logons = yes&lt;br /&gt;
   preferred master = yes&lt;br /&gt;
   wins support = yes&lt;br /&gt;
   &lt;br /&gt;
   # Set CUPS for printing&lt;br /&gt;
   #printcap name = CUPS&lt;br /&gt;
   #printing = CUPS&lt;br /&gt;
   &lt;br /&gt;
   # Default logon&lt;br /&gt;
   #logon drive = H:&lt;br /&gt;
   #logon script = scripts/logon.bat&lt;br /&gt;
   #logon path = \\server1\profile\%U&lt;br /&gt;
&lt;br /&gt;
   # Useradd scripts&lt;br /&gt;
   add user script = /usr/sbin/useradd -m %u&lt;br /&gt;
   delete user script = /usr/sbin/userdel -r %u&lt;br /&gt;
   add group script = /usr/sbin/groupadd %g&lt;br /&gt;
   delete group script = /usr/sbin/groupdel %g&lt;br /&gt;
   add user to group script = /usr/sbin/usermod -G %g %u&lt;br /&gt;
   add machine script = /usr/sbin/useradd -s /bin/false/ -d /var/lib/nobody %u&lt;br /&gt;
   idmap uid = 15000-20000&lt;br /&gt;
   idmap gid = 15000-20000&lt;br /&gt;
&lt;br /&gt;
   # sync smb passwords woth linux passwords&lt;br /&gt;
   passwd program = /usr/bin/passwd %u&lt;br /&gt;
   passwd chat = *Enter\snew\sUNIX\spassword:* %n\n *Retype\snew\sUNIX\spassword:* %n\n .&lt;br /&gt;
   passwd chat debug = yes&lt;br /&gt;
   unix password sync = yes&lt;br /&gt;
   &lt;br /&gt;
   # set the loglevel&lt;br /&gt;
   log level = 3&lt;br /&gt;
&lt;br /&gt;
[homes]&lt;br /&gt;
   comment = Home&lt;br /&gt;
   valid users = %S&lt;br /&gt;
   read only = no&lt;br /&gt;
   browsable = no&lt;br /&gt;
&lt;br /&gt;
[printers]&lt;br /&gt;
   comment = All Printers&lt;br /&gt;
   path = /var/spool/samba&lt;br /&gt;
   printable = yes&lt;br /&gt;
   guest ok = yes&lt;br /&gt;
   browsable = no&lt;br /&gt;
&lt;br /&gt;
[netlogon]&lt;br /&gt;
   comment = Network Logon Service&lt;br /&gt;
   path = /home/samba/netlogon&lt;br /&gt;
   admin users = Administrator&lt;br /&gt;
   valid users = %U&lt;br /&gt;
   read only = no&lt;br /&gt;
&lt;br /&gt;
[profile]&lt;br /&gt;
   comment = User profiles&lt;br /&gt;
   path = /home/samba/profiles&lt;br /&gt;
   valid users = %U&lt;br /&gt;
   create mode = 0600&lt;br /&gt;
   directory mode = 0700&lt;br /&gt;
   writable = yes&lt;br /&gt;
   browsable = no&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create the directories for domain logons and profiles:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
mkdir /home/samba&lt;br /&gt;
mkdir /home/samba/netlogon&lt;br /&gt;
mkdir /home/samba/profiles&lt;br /&gt;
mkdir /var/spool/samba&lt;br /&gt;
chmod 777 /var/spool/samba/&lt;br /&gt;
chown -R root:users /home/samba/&lt;br /&gt;
chmod -R 771 /home/samba/&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/samba restart&lt;br /&gt;
&lt;br /&gt;
Edit /etc/nsswitch.conf. Change the line:&lt;br /&gt;
 hosts: files dns&lt;br /&gt;
to:&lt;br /&gt;
 hosts: files wins dns&lt;br /&gt;
&lt;br /&gt;
Add the root user to the SAMBA password database. The root user (alias: Administrator) will be our domain administrator. This account is needed to add new computers to the SAMBA domain.&lt;br /&gt;
 smbpasswd -a root&lt;br /&gt;
&lt;br /&gt;
Create the file /etc/samba/smbusers and add the line by executing:&lt;br /&gt;
 echo &amp;quot;root = Administrator&amp;quot; &amp;gt; /etc/samba/smbusers&lt;br /&gt;
&lt;br /&gt;
This will allow us to use the common windows username &amp;quot;Administrator&amp;quot; as alias for the Linux root user. Now I will test if the setup is correct:&lt;br /&gt;
 smbclient -L localhost -U%&lt;br /&gt;
The output should look similar to this:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
Domain=[T0E] OS=[Unix] Server=[Samba 3.0.23c-2.el5.2.0.2]&lt;br /&gt;
&lt;br /&gt;
        Sharename       Type      Comment&lt;br /&gt;
        ---------       ----      -------&lt;br /&gt;
        netlogon        Disk      Network Logon Service&lt;br /&gt;
        IPC$            IPC       IPC Service (testlab server)&lt;br /&gt;
Domain=[T0E] OS=[Unix] Server=[Samba 3.0.23c-2.el5.2.0.2]&lt;br /&gt;
&lt;br /&gt;
        Server               Comment&lt;br /&gt;
        ---------            -------&lt;br /&gt;
        TESTLAB              testlab server&lt;br /&gt;
&lt;br /&gt;
        Workgroup            Master&lt;br /&gt;
        ---------            -------&lt;br /&gt;
        T0E                  TESTLAB&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Setup the default domain groups for windows:&lt;br /&gt;
 net groupmap modify ntgroup=&amp;quot;Domain Admins&amp;quot; unixgroup=root&lt;br /&gt;
 net groupmap modify ntgroup=&amp;quot;Domain Users&amp;quot; unixgroup=users&lt;br /&gt;
 net groupmap modify ntgroup=&amp;quot;Domain Guests&amp;quot; unixgroup=nogroup&lt;br /&gt;
or:&lt;br /&gt;
 net groupmap add ntgroup=&amp;quot;Domain Admins&amp;quot; unixgroup=root&lt;br /&gt;
 net groupmap add ntgroup=&amp;quot;Domain Users&amp;quot; unixgroup=users&lt;br /&gt;
 net groupmap add ntgroup=&amp;quot;Domain Guests&amp;quot; unixgroup=nogroup&lt;br /&gt;
&lt;br /&gt;
Adding Users To Our SAMBA Domain&lt;br /&gt;
&lt;br /&gt;
Now we will add a user, e.g. tom, to our Samba domain. You will have to add a user like this for each user account you want to connect to this SAMBA domain server.&lt;br /&gt;
&lt;br /&gt;
1) Add a linux user tom:&lt;br /&gt;
 useradd tom -m -G users&lt;br /&gt;
&lt;br /&gt;
2) Add the linux user tom to the SAMBA password database:&lt;br /&gt;
 smbpasswd -a tom&lt;br /&gt;
&lt;br /&gt;
Adding Shares&lt;br /&gt;
&lt;br /&gt;
Now I will add a share that is accessible by all users.&lt;br /&gt;
 mkdir -p /home/shares/allusers&lt;br /&gt;
 chown -R root:users /home/shares/allusers/&lt;br /&gt;
 chmod -R ug+rwx,o+rx-w /home/shares/allusers/&lt;br /&gt;
&lt;br /&gt;
At the end of the file /etc/samba/smb.conf add the following lines:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
[allusers]&lt;br /&gt;
  comment = All Users&lt;br /&gt;
  path = /home/shares/allusers&lt;br /&gt;
  valid users = @users&lt;br /&gt;
  force group = users &lt;br /&gt;
  create mask = 0660&lt;br /&gt;
  directory mask = 0771&lt;br /&gt;
  writable = yes&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/samba restart&lt;br /&gt;
&lt;br /&gt;
===Problems===&lt;br /&gt;
&lt;br /&gt;
====Password Change====&lt;br /&gt;
I was unable to change my user password from my Windows XP machine.&lt;br /&gt;
&lt;br /&gt;
A [http://lists.samba.org/archive/samba/2006-August/124632.html thread] asked the same question.  The [http://lists.samba.org/archive/samba/2006-August/124667.html answer] was to:&lt;br /&gt;
 Change:&lt;br /&gt;
 unix password sync = Yes&lt;br /&gt;
 &lt;br /&gt;
 To:&lt;br /&gt;
 unix password sync = no&lt;br /&gt;
&lt;br /&gt;
This appeared to work.  This may be because all of the samba users are the same user, and not individual Linux accounts.&lt;br /&gt;
&lt;br /&gt;
Another suggestion:&lt;br /&gt;
&lt;br /&gt;
A [http://www.howtoforge.com/samba_setup_ubuntu_5.10_p5#comment-2047 comment] suggested to:&lt;br /&gt;
 Try to change the &amp;quot;passwd chat&amp;quot; line in smb.conf to this:&lt;br /&gt;
 &lt;br /&gt;
 passwd chat = *password* %n\n *password* %n\n *success*&lt;br /&gt;
&lt;br /&gt;
====Domain Administration====&lt;br /&gt;
From what I can tell all new users will need to be added via the command line on the PDC.  I was unable to connect to the PDC using mmc &amp;quot;Users&amp;quot; snap-in.&lt;br /&gt;
&lt;br /&gt;
====Security====&lt;br /&gt;
It appears that the domain groups and security permission are either ignored or simply not used.&lt;br /&gt;
&lt;br /&gt;
====Linux Client Authentication====&lt;br /&gt;
How will this work with a Linux workstation?  It doesn&amp;#039;t appear you can use Samba on a Linux workstation to authenticate against a Samba Domain Controller without some serious reconfiguration.&lt;br /&gt;
&lt;br /&gt;
It seems that joining the domain is no problem, but using the Samba Domain Controller for login authentication appears to be another issue.&lt;br /&gt;
&lt;br /&gt;
*[http://linuxgazette.net/105/price.html Using Samba to join a Windows NT domain]&lt;br /&gt;
*[http://justlinux.com/forum/archive/index.php/t-118920.html Configuring Samba to use the Domain Security Mode]&lt;br /&gt;
&lt;br /&gt;
====How do force Passwords Restrictions and Expiration?====&lt;br /&gt;
How do force Passwords Restrictions and Expiration?&lt;br /&gt;
&lt;br /&gt;
See [http://www.freebsddiary.org/samba-pam.php] for a possible example:&lt;br /&gt;
 min password length = 6&lt;br /&gt;
 null passwords = No&lt;br /&gt;
&lt;br /&gt;
====NetBIOS name resolution failure====&lt;br /&gt;
I am unable to visit \\t0e without having to add it to the ...\etc\hosts file&lt;br /&gt;
&lt;br /&gt;
==Testing Samba Configuration==&lt;br /&gt;
[http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch12_:_Samba_Security_and_Troubleshooting Quick HOWTO : Ch12 : Samba Security and Troubleshooting]&lt;br /&gt;
&lt;br /&gt;
This will test the Samba configuration file:&lt;br /&gt;
 testparm -s&lt;br /&gt;
&lt;br /&gt;
This will report the Samba details (hit enter when prompted for password):&lt;br /&gt;
 smbclient -L &amp;lt;hostname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or you can use:&lt;br /&gt;
 smbclient -L &amp;lt;hostname&amp;gt; -U%&lt;br /&gt;
&lt;br /&gt;
To check if the Samba software is running correctly:&lt;br /&gt;
 nmblookup -B 192.168.1.100 __SAMBA__&lt;br /&gt;
 nmblookup -B 192.168.1.103 &amp;quot;*&amp;quot;&lt;br /&gt;
 nmblookup -d 2 &amp;#039;*&amp;#039;&lt;br /&gt;
 nmblookup -M homenet  # check for master browser&lt;br /&gt;
&lt;br /&gt;
==Linux as SMB Client==&lt;br /&gt;
[http://www.freeos.com/articles/3842/ Samba as a NT Domain Member]&lt;br /&gt;
&lt;br /&gt;
[global]&lt;br /&gt;
        workgroup = T0E&lt;br /&gt;
        security = DOMAIN&lt;br /&gt;
        password server = T0E&lt;br /&gt;
&lt;br /&gt;
 net join T0E -U Administrator&lt;br /&gt;
&lt;br /&gt;
==Iptables and Samba==&lt;br /&gt;
[http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch12_:_Samba_Security_and_Troubleshooting Quick HOWTO : Ch12 : Samba Security and Troubleshooting]&lt;br /&gt;
&lt;br /&gt;
Configure it to allow through such Microsoft protocols as NetBIOS (UDP ports 137 and 138, TCP ports 139) and TCP port 445 for SMB file sharing without NetBIOS. Here is sample script snippet:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
SAMBA_SERVER=&amp;quot;192.168.1.100 &amp;quot;&lt;br /&gt;
NETWORK=&amp;quot;192.168.1.0/24&amp;quot;    # Local area network&lt;br /&gt;
BROADCAST=&amp;quot;192.168.255.255&amp;quot; # Local area network Broadcast Address&lt;br /&gt;
 &lt;br /&gt;
iptables -A INPUT -i lo -j ACCEPT&lt;br /&gt;
iptables -A OUTPUT -o lo -j ACCEPT&lt;br /&gt;
iptables -A INPUT -p udp -s $NETWORK -d $SAMBA_SERVER \&lt;br /&gt;
    -m multiport --dports 137,138 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -p tcp -s $NETWORK -d $SAMBA_SERVER -m multiport \&lt;br /&gt;
    --dports 139,445 -j ACCEPT&lt;br /&gt;
iptables -A INPUT -p udp -s $NETWORK -d $BROADCAST --dport 137 \&lt;br /&gt;
    -j ACCEPT&lt;br /&gt;
iptables -A INPUT -p udp -d $SAMBA_SERVER -m multiport \&lt;br /&gt;
    --dports 137,138 -j DROP&lt;br /&gt;
iptables -A INPUT -p tcp -d $SAMBA_SERVER -m multiport \&lt;br /&gt;
    --dports 139,445 -j DROP&lt;br /&gt;
iptables -A OUTPUT -s $SAMBA_SERVER -d $NETWORK -m state --state \&lt;br /&gt;
    ESTABLISHED,RELATED -j ACCEPT&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Samba PAM authentication==&lt;br /&gt;
[http://www.csn.ul.ie/~airlied/pam_smb/ pam_smb]&lt;br /&gt;
[http://www.csn.ul.ie/~airlied/pam_smb/faq/ pam_smb FAQ]&lt;br /&gt;
[http://us1.samba.org/samba/ftp/pam_smb/README pam_smb README]&lt;br /&gt;
&lt;br /&gt;
 /lib/security/pam_smb_auth.so&lt;br /&gt;
&lt;br /&gt;
==Samba and Winbind==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;quot;&lt;br /&gt;
I&amp;#039;m not sure if it was connected, but I&amp;#039;d just run wbinfo -D workground_name which seemed to hang, but I went to do something else, forgetting that is was hanging. Only it wasn&amp;#039;t. Eventually it came back with correct answers, at which point, wbinfo -u|g worked and the authentication was back, too.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Wow. Weird. I was trying to get Samba and winbind working for Squid today. Most wbinfo tests seemed fine, but &amp;quot;wbinfo -u&amp;quot; and &amp;quot;wbinfo -g&amp;quot; kept giving that &amp;quot;Error looking up domain users&amp;quot; (or groups) error. I found your post, and tried running &amp;quot;wbinfo -D domain_name&amp;quot;, just to see if it made a difference. While it did not hang on my system (returned info immediately), after that, &amp;quot;wbinfo -u&amp;quot; and &amp;quot;wbinfo -g&amp;quot; started working. So whatever&amp;#039;s going on, that &amp;quot;-D&amp;quot; switch seems to help unwedge things somehow.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Magic.&amp;quot; [http://www.linuxquestions.org/questions/showthread.php?t=144379 Samba, Pam, winbind and ADS]&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.webservertalk.com/message1895056.html Samba Winbind - wbinfo -u works, getent passwd only gives local users]:&lt;br /&gt;
 wbinfo --own-domain&lt;br /&gt;
 wbinfo -t  # does not work&lt;br /&gt;
 wbinfo -D T0E&lt;br /&gt;
 wbinfo -g&lt;br /&gt;
 wbinfo -u  # does not work?&lt;br /&gt;
&lt;br /&gt;
[http://www.redhat.net/archives/pam-list/2002-September/msg00025.html Samba: wbinfo -I not responding]:&lt;br /&gt;
 wbinfo -p&lt;br /&gt;
&lt;br /&gt;
[http://lists.samba.org/archive/samba/2005-July/108776.html [Samba] wbinfo can&amp;#039;t list users]:&lt;br /&gt;
 net rpc join -U Administrator&lt;br /&gt;
 wbinfo -u&lt;br /&gt;
 wbinfo -g&lt;br /&gt;
 wbinfo -m&lt;br /&gt;
 winbindd -d 3 -i&lt;br /&gt;
&lt;br /&gt;
[http://us1.samba.org/samba/docs/man/Samba-HOWTO-Collection/winbind.html Samba - Winbind: Use of Domain Accounts]&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
==Less See Also==&lt;br /&gt;
*[http://www.linux-mag.com/id/969/ Linux Magazine: Using Samba as a PDC]&lt;br /&gt;
*[http://www.samba.netfirms.com/PDC.htm Samba Setup Guide for Linux]&lt;br /&gt;
*[http://www.linux-mag.com/id/211 Linux Magazine: Samba]&lt;br /&gt;
*[http://mcpmag.com/columns/article.asp?EditorialsID=858 Linux-Windows Single Sign-On]&lt;br /&gt;
*[http://www.phptr.com/articles/article.asp?p=169560&amp;amp;seqNum=1 Samba-3 Server Types and Security Modes]&lt;br /&gt;
*[http://www.oreilly.com/catalog/samba/chapter/book/ch06_03.html Using Samba - 6.3 Authentication Security]&lt;br /&gt;
*[http://www.oreilly.com/catalog/samba/chapter/book/ Using Samba (HTML eBook)]&lt;br /&gt;
*[http://www.freebsddiary.org/samba-pam.php Samba authentication through PAM with MySQL]&lt;br /&gt;
*[http://www.flatmtn.com/computer/Linux-Samba.html Setting up Samba to use an NT PDC for authentication]&lt;br /&gt;
*[http://us3.samba.org/samba/docs/man/Samba-Guide/unixclients.html Chapter 7. Adding Domain Member Servers and Clients - Part II. Domain Members, Updating Samba and Migration]&lt;br /&gt;
*[http://www.samba.netfirms.com/PDC.htm Samba Setup Guide for Linux - Samba as a Primary Domain Controller]&lt;br /&gt;
*[http://samba.org/samba/docs/man/Samba-HOWTO-Collection/samba-pdc.html Chapter 4. Domain Control - Part II. Server Configuration Basics]&lt;br /&gt;
&lt;br /&gt;
*[http://www.ibm.com/developerworks/library/l-samba-tng.html Common threads: Samba domain controller support]&lt;br /&gt;
*[http://www.howtoforge.com/samba_domaincontroller_setup_ubuntu_6.10 SAMBA (Domaincontroller) Server For Small Workgroups With Ubuntu 6.10]&lt;br /&gt;
*[http://gentoo-wiki.com/HOWTO_SAMBA-LDAP_Domain_Controller_(with_Real_Time_antivirus) HOWTO SAMBA-LDAP Domain Controller (with Real Time antivirus)]&lt;br /&gt;
*[http://daniel.fiser.cz/?go=samba Samba PDC mini-HOWTO]&lt;br /&gt;
*[http://geeklab.wikidot.com/samba-pdc Samba as Primary Domain Controller - HowTo]&lt;br /&gt;
*[http://www.experts-exchange.com/Networking/Unix_Networking/Q_21492200.html Samba Winbind wbinfo -u fails with &amp;quot;Error looking up domain users&amp;quot;]&lt;br /&gt;
*[http://us1.samba.org/samba/docs/man/Samba-HOWTO-Collection/ The Official Samba-3 HOWTO and Reference Guide]&lt;br /&gt;
&lt;br /&gt;
==To Read==&lt;br /&gt;
*http://justlinux.com/forum/archive/index.php/t-118512.html&lt;br /&gt;
*http://joseph.randomnetworks.com/archives/2005/11/08/freebsd-users-and-groups-with-samba-winbind-and-active-directory/&lt;br /&gt;
*http://searchenterpriselinux.techtarget.com/originalContent/0,289142,sid39_gci1243858,00.html&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
	</entry>
</feed>