<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Linux, Active Directory, and Windows Server 2003 R2 Revisited</title>
	<atom:link href="http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/</link>
	<description>The weblog of an IT pro specializing in virtualization, storage, and servers</description>
	<pubDate>Thu, 20 Nov 2008 11:55:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Christopher</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-42216</link>
		<dc:creator>Christopher</dc:creator>
		<pubDate>Thu, 30 Oct 2008 23:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-42216</guid>
		<description>Ken,
%Linux ALL=(ALL) ALL

I think you should make %Linux be %linux

-C</description>
		<content:encoded><![CDATA[<p>Ken,<br />
%Linux ALL=(ALL) ALL</p>
<p>I think you should make %Linux be %linux</p>
<p>-C</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rupe</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-41929</link>
		<dc:creator>Rupe</dc:creator>
		<pubDate>Mon, 13 Oct 2008 16:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-41929</guid>
		<description>Hi, Most of the above looks way over my head, but this looks like the place where knowledge resides.
We have Windows 2003 SP1with Active directory in charge of our domain.
We have one Linux RedHat (Release 4) server that is a Unix file server.
The unix files are shared out to the Windows environment via samba and in such a way that the file persmissions that samba sets controls who may and may not modify certain files.
Recently, ie in the last four weeks, for any new user added to the domain, samba no longer picks up the base info from Active Directory, so will not allow only those newer users access to files that should it should. By manually setting up the user in linux, we can overcome this, until the server is rebooted, in which case the newer users fall off the system again. samba version is 3.0.13.
Help diagnosing this would be fantastic</description>
		<content:encoded><![CDATA[<p>Hi, Most of the above looks way over my head, but this looks like the place where knowledge resides.<br />
We have Windows 2003 SP1with Active directory in charge of our domain.<br />
We have one Linux RedHat (Release 4) server that is a Unix file server.<br />
The unix files are shared out to the Windows environment via samba and in such a way that the file persmissions that samba sets controls who may and may not modify certain files.<br />
Recently, ie in the last four weeks, for any new user added to the domain, samba no longer picks up the base info from Active Directory, so will not allow only those newer users access to files that should it should. By manually setting up the user in linux, we can overcome this, until the server is rebooted, in which case the newer users fall off the system again. samba version is 3.0.13.<br />
Help diagnosing this would be fantastic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manny Vellon</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-41236</link>
		<dc:creator>Manny Vellon</dc:creator>
		<pubDate>Sun, 07 Sep 2008 06:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-41236</guid>
		<description>Scott,

Taking a pure LDAP approach is simpler than what we do. When you perform Kerberos authentication, you have to be prepared to deal with updating machine passwords (a machine has to be "joined" to AD in order to participate in AD authentication; this gives it a machine account), you also have to deal with refreshing user tickets (they're only good for 10 hours or so) and this adds complexity. Additionally, if you perform LDAP authentication with AD, you can also do it with other LDAP servers, too.

The advantages of Kerberos are "single sign-on" (once you have a Kerb ticket, you can get other tickets without having to re-specify your credentials) and Kerberos-based encryption (doesn't require any certificates).

Doing hard-core, enterprise-class, authentication against AD (or against any LDAP server) is not easy. What happens if the AD domain-controller goes down? You need to find another one, ideally, using "site awareness" in order to get the nearest one. What if you're on a laptop w/o any connectivity? You need to implement cached credentials. How do you get reasonable performance when the user does something like "ls -l"? You need to cache results.

It's great that you're tackling the subject. It's messy and very few people have the technical wherewithal to tackle PAM, nsswitch, LDAP _and_ AD. I'm sure that, by now, you've learned a lot about how UNIX does authentication and authorization.

Cheers</description>
		<content:encoded><![CDATA[<p>Scott,</p>
<p>Taking a pure LDAP approach is simpler than what we do. When you perform Kerberos authentication, you have to be prepared to deal with updating machine passwords (a machine has to be &#8220;joined&#8221; to AD in order to participate in AD authentication; this gives it a machine account), you also have to deal with refreshing user tickets (they&#8217;re only good for 10 hours or so) and this adds complexity. Additionally, if you perform LDAP authentication with AD, you can also do it with other LDAP servers, too.</p>
<p>The advantages of Kerberos are &#8220;single sign-on&#8221; (once you have a Kerb ticket, you can get other tickets without having to re-specify your credentials) and Kerberos-based encryption (doesn&#8217;t require any certificates).</p>
<p>Doing hard-core, enterprise-class, authentication against AD (or against any LDAP server) is not easy. What happens if the AD domain-controller goes down? You need to find another one, ideally, using &#8220;site awareness&#8221; in order to get the nearest one. What if you&#8217;re on a laptop w/o any connectivity? You need to implement cached credentials. How do you get reasonable performance when the user does something like &#8220;ls -l&#8221;? You need to cache results.</p>
<p>It&#8217;s great that you&#8217;re tackling the subject. It&#8217;s messy and very few people have the technical wherewithal to tackle PAM, nsswitch, LDAP _and_ AD. I&#8217;m sure that, by now, you&#8217;ve learned a lot about how UNIX does authentication and authorization.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Solaris 10-AD Integration, Version 3 - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-41205</link>
		<dc:creator>Solaris 10-AD Integration, Version 3 - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</dc:creator>
		<pubDate>Fri, 05 Sep 2008 17:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-41205</guid>
		<description>[...] up the login process and reduce the overall load on your DCs. (For more information, refer to the Linux-Windows Server&#160;2003&#160;R2 integration instructions.) It may be possible to change the attribute that Solaris is looking for, but I haven&#8217;t found [...]</description>
		<content:encoded><![CDATA[<p>[...] up the login process and reduce the overall load on your DCs. (For more information, refer to the Linux-Windows Server&#160;2003&#160;R2 integration instructions.) It may be possible to change the attribute that Solaris is looking for, but I haven&#8217;t found [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ESX Server and the Native VLAN - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-41194</link>
		<dc:creator>ESX Server and the Native VLAN - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</dc:creator>
		<pubDate>Fri, 05 Sep 2008 15:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-41194</guid>
		<description>[...] that distinction falls to one of the Linux-AD integration articles, although I not sure which one right at the [...]</description>
		<content:encoded><![CDATA[<p>[...] that distinction falls to one of the Linux-AD integration articles, although I not sure which one right at the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slowe</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-39684</link>
		<dc:creator>slowe</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-39684</guid>
		<description>Manny,

Thank you for being open about your affiliation.

The configuration described here does allow LDAP authentication to take place in the clear; this is a problem for some readers. Using SSL or Kerberos authentication is in the works, but I haven't yet published all the details.

Perhaps you'd be interested in discussing with me the pros and cons of using Likewise vs. this approach for a blog post? Readers may find the comparison useful.

Scott</description>
		<content:encoded><![CDATA[<p>Manny,</p>
<p>Thank you for being open about your affiliation.</p>
<p>The configuration described here does allow LDAP authentication to take place in the clear; this is a problem for some readers. Using SSL or Kerberos authentication is in the works, but I haven&#8217;t yet published all the details.</p>
<p>Perhaps you&#8217;d be interested in discussing with me the pros and cons of using Likewise vs. this approach for a blog post? Readers may find the comparison useful.</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manny Vellon</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-39683</link>
		<dc:creator>Manny Vellon</dc:creator>
		<pubDate>Wed, 02 Jul 2008 17:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-39683</guid>
		<description>I don't mean to discourage anyone from trying Scott's approach, but if you want an alternative, also free, mechanism for doing this, you might want to check out Likewise Open (http://www.likewisesoftware.com/community; disclaimer - I work for Likewise). Scott's approach is more flexible (since it works off data stored in AD) but requires some work. Likewise Open doesn't need any data in AD (it hashes SIDS to generate uidNumber and gidNumber) and, thus, is less flexible, but it's also very easy to get running. We have a commercial version that is more flexible but, alas, not free.

Finally, I'm not 100% sure whether Scott's configuration of OpenLDAP results in secure or clear-text LDAP requests (including visible credentials for the account used to read AD). It doesn't appear that it's doing Kerb-signed/sealed LDAP calls (as we do), but I'm no expert. This might be an issue for some folk.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t mean to discourage anyone from trying Scott&#8217;s approach, but if you want an alternative, also free, mechanism for doing this, you might want to check out Likewise Open (http://www.likewisesoftware.com/community; disclaimer - I work for Likewise). Scott&#8217;s approach is more flexible (since it works off data stored in AD) but requires some work. Likewise Open doesn&#8217;t need any data in AD (it hashes SIDS to generate uidNumber and gidNumber) and, thus, is less flexible, but it&#8217;s also very easy to get running. We have a commercial version that is more flexible but, alas, not free.</p>
<p>Finally, I&#8217;m not 100% sure whether Scott&#8217;s configuration of OpenLDAP results in secure or clear-text LDAP requests (including visible credentials for the account used to read AD). It doesn&#8217;t appear that it&#8217;s doing Kerb-signed/sealed LDAP calls (as we do), but I&#8217;m no expert. This might be an issue for some folk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: StephanieAndChris</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-39308</link>
		<dc:creator>StephanieAndChris</dc:creator>
		<pubDate>Wed, 11 Jun 2008 19:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-39308</guid>
		<description>Scott, 

We have here a AD 2003 R2 multi-domain forest.

We installed Identity Management for UNIX on one of our DC.

We can now see the UNIX attributes tab, but, the NIS domain field show only "none". Our actual domain doesn't appear. 

We're looking for any hints, clues to resolve this issue. 

Best regards</description>
		<content:encoded><![CDATA[<p>Scott, </p>
<p>We have here a AD 2003 R2 multi-domain forest.</p>
<p>We installed Identity Management for UNIX on one of our DC.</p>
<p>We can now see the UNIX attributes tab, but, the NIS domain field show only &#8220;none&#8221;. Our actual domain doesn&#8217;t appear. </p>
<p>We&#8217;re looking for any hints, clues to resolve this issue. </p>
<p>Best regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-38441</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Tue, 20 May 2008 18:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-38441</guid>
		<description>Hey Scott,

I posted awhile back on here but could not get this to work. My company really wants this so I decided to try again with Red Hat 5.1 and I got success today. SSH and sudo are working great. Thanks for you walk through.</description>
		<content:encoded><![CDATA[<p>Hey Scott,</p>
<p>I posted awhile back on here but could not get this to work. My company really wants this so I decided to try again with Red Hat 5.1 and I got success today. SSH and sudo are working great. Thanks for you walk through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Trotter</title>
		<link>http://blog.scottlowe.org/2006/08/08/linux-active-directory-and-windows-server-2003-r2-revisited/#comment-35728</link>
		<dc:creator>Matthew Trotter</dc:creator>
		<pubDate>Fri, 22 Feb 2008 04:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/?p=315#comment-35728</guid>
		<description>Hey Scott,

Great article. I am just wondering if anyone who has deployed this has run into the 850 user limit? Currently we cannot add more than 850 users to the MEMBERS section of the UNIX ATTRIBUTES of a Group. It appears to be a limit of the Multi-Valued attribute in the Schema. This is a hard limit with no way to change it. The AD MEMBER section does not have this problem. I plan on migrating 5000 accounts to a new AD and don't like the fact that I can't put more than 850 Unix accounts into a group.

Anyone else know about this?</description>
		<content:encoded><![CDATA[<p>Hey Scott,</p>
<p>Great article. I am just wondering if anyone who has deployed this has run into the 850 user limit? Currently we cannot add more than 850 users to the MEMBERS section of the UNIX ATTRIBUTES of a Group. It appears to be a limit of the Multi-Valued attribute in the Schema. This is a hard limit with no way to change it. The AD MEMBER section does not have this problem. I plan on migrating 5000 accounts to a new AD and don&#8217;t like the fact that I can&#8217;t put more than 850 Unix accounts into a group.</p>
<p>Anyone else know about this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
