MCSE World
Everything you need for your Microsoft certifications...MCITP, MCTS, MCSE, Architect, Master and more!
 

Welcome to the MCSE World forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

1. We will remove new users that have 0 posts after 1 Month - so make sure you post a RELEVANT TO THE FORUM POST as soon as possible. Additionally after 18 months users with less than 5 posts will be removed.

2. The private message system is only available to members that have placed more than 3 valid posts - this is to prevent PM spamming.

3. The "Infocenter " along the top menu includes Book Reviews etc and is located in a separate section to the "General Forums" area.

- Administrator

Go Back   MCSE World > Certification Discussion > MCSE, MCSA and MCDBA 2003 Discussion
Login Register Site Rules Home Today's Posts Forums:  Home | List Donate Arcade InfoCenter Search Mark Forums Read

Reply
 
Thread Tools Search this Thread Display Modes
Old 03-09-2010, 05:56 PM   #1
BigDook
MS-DOS 1.0
 
Join Date: Feb 2010
Posts: 24
Thanks: 1
Thanked 8 Times in 5 Posts
Global Groups, Domain Local Groups and Universal Groups

Hi all

Am trying to get my understanding right here in relation to groups. Does this sound right?


3 domains (all W2K3) all trusted etc.

Domain1
--------
Users = Fred and Bob
Share on Server1 = Share1
GlobalGroup = GG1

Domain2
--------
Users = Mary and Ted
Share on Server2 = Share2
DomainLocalGroup = DLG2

Domain3
--------
Users = Mike and Rich
Share on Server3 = Share3
UniversalGroup = UG3



GG1 can ONLY contain Fred and Bob. As they are all in the same domain, and GlobalGroups can only contain members from the domain it exists in.
GG1 can allow access to ANY share on all 3 domains, as they can allow access to resources on ANY domain.

DLG2 can contain ALL users from all 3 domains, as DomainLocalGroups can contain members from ANY domain.
DLG2 can however only allow access to Share2 as they can only allow access to resourcres on the domain it exists in.

UG3 can contain ALL users from all 3 domains, as UniversalGroups can contain members from ANY domain.
UG3 can allow access to ANY share on all 3 domains, as they can allow access to resources on ANY domain.


Sound right? Thanks
  Reply With Quote
Old 03-09-2010, 06:57 PM   #2
Triton.Deep
Windows 98
 
Join Date: Mar 2009
Posts: 178
Thanks: 30
Thanked 76 Times in 52 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Yep, that is right.

Just taking it a step further, when looking at group scopes like that the tendency is to ask the question: Why not just use universal groups all the time??

Well, there are a bunch of reasons for that, here's the two I can think of off the top of my head:
  • In a multi-domain forest you generally have boundaries of authorities that sometimes make it a touchy subject to give membership change control to very many admins....which leads into part II
  • In a multi-domain forest, those boundaries of authority are all to often tied to geographic regions (Corp office to Branch office for example) which are defined by WAN links almost always.

Man, I take way to many words to say this. Sorry about that, but what I'm getting around to is that you can address both of those issues by using GlobalGroups for members, and then nesting them in Universal Groups. Doing that distributes membership managment to whomever controls the GlobalGroups according to your domain/authority breakdown AND it means less replication accross your WAN links by making your UniversalGroup membership largly static.

I hope that came out alright. In a nutshell, you should nest global groups in universal groups when you need groups of users or computers from multiple domains.

Hope that helps some.

J.

Last edited by Triton.Deep : 03-09-2010 at 06:58 PM.
  Reply With Quote
Triton.Deep was thanked for this great post by:
supag33k (03-26-2010)
Old 03-09-2010, 07:03 PM   #3
BigDook
MS-DOS 1.0
 
Join Date: Feb 2010
Posts: 24
Thanks: 1
Thanked 8 Times in 5 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Triton. Thats awesome mate, thanks. Am just trying to get my understanding right.

And to follow on from my first question, in terms of Groups and Groups

GlobalGroups can have users, computers and global groups from the SAME domain as members?

DomainLocalGroups can have users, computers, global groups and univesral groups from ANY domain as members. And also DomainLocal groups in the SAME domain as members?

UniversalGroups can have users, computers, global groups and universal groups from ANY domain as members?



If thats right, then how come you can't have domain local groups as members of universal groups in ANY domain too?



Cheers for the help mate.
  Reply With Quote
Old 03-09-2010, 09:52 PM   #4
Triton.Deep
Windows 98
 
Join Date: Mar 2009
Posts: 178
Thanks: 30
Thanked 76 Times in 52 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Quote:
If thats right, then how come you can't have domain local groups as members of universal groups in ANY domain too?

Man, I wrote such a nice big post for this, lost it when I tried to install the spell check control from this page. My fault, I know better than to not save during that sort of thing.

The short answer in my opinion is that you are confusing the purpose of what each one is for.

Domainlocal is intended for granting access to someone for something else. Ideally: Globalgroup1 would be granted access to some FileShare1 using Domainlocalgroup1. Domain local groups were designed from the beginning to be the last point of contact with some resource. Printers or what have you.

Globalgroups are intended for cross domain collaborative instances and to help maintain an efficient replication topology. If you have a group of people in DomainA that need access to resource in DomainB, then you add Globalgroup1 from DomainA to DomainLocalgroup1 in DomainB.

Universal groups are intended for cross domain collaborative efforts that require users from more than one domain. If you have a group of people from DomainA and DomainB that need access to resources in DomainC, then add Globalgroup1 from DomainA & Globalgroup2 from DomainB to the domainlocal group in DomainC.

Of course, that is best practice guidance. You could just add all users to a universal group and then apply that universal group directly to the resource and blam. Done. However; that sometimes is unmanageable for the reasons I outlined in my first post.

Anyways, I hope that makes more sense. Your question fights the design of it all, domainlocal groups can't be part of universal groups because that is not there function and it is enforced in code by Microsoft.

Hope that helps,

J.

PS: Read this, espeically the parts about when to use what towards the bottom:

http://technet.microsoft.com/en-us/l...92(WS.10).aspx

Last edited by Triton.Deep : 03-09-2010 at 09:56 PM. Reason: Add link
  Reply With Quote
The Following 2 Users Say Thank You to Triton.Deep For This Useful Post:
BigDook (03-09-2010), supag33k (03-26-2010)
Old 03-09-2010, 10:21 PM   #5
BigDook
MS-DOS 1.0
 
Join Date: Feb 2010
Posts: 24
Thanks: 1
Thanked 8 Times in 5 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Ahhh heaps of thanks Triton. I've got the MS Press Books, and a MCSE In A Nutshell book too, and have read a bit about the "best practice" is to use the DLG's like that, but it's good to read it in scenarios.

Yeah, sounds like i don't need to learn how todo it in real life setups for now, rather how MS suggest you do it.


And that TechNet article is awesome, printing off as we speak.
  Reply With Quote
Old 03-10-2010, 05:59 AM   #6
Tinus1959
Senior Moderator
 
Tinus1959's Avatar
 
Join Date: Dec 2004
Location: The Netherlands.
Posts: 4,919
Thanks: 173
Thanked 407 Times in 338 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Quote:
Originally Posted by BigDook View Post
Hi all

Am trying to get my understanding right here in relation to groups. Does this sound right?


3 domains (all W2K3) all trusted etc.

Domain1
--------
Users = Fred and Bob
Share on Server1 = Share1
GlobalGroup = GG1

Domain2
--------
Users = Mary and Ted
Share on Server2 = Share2
DomainLocalGroup = DLG2

Domain3
--------
Users = Mike and Rich
Share on Server3 = Share3
UniversalGroup = UG3



GG1 can ONLY contain Fred and Bob. As they are all in the same domain, and GlobalGroups can only contain members from the domain it exists in.
GG1 can allow access to ANY share on all 3 domains, as they can allow access to resources on ANY domain.

DLG2 can contain ALL users from all 3 domains, as DomainLocalGroups can contain members from ANY domain.
DLG2 can however only allow access to Share2 as they can only allow access to resourcres on the domain it exists in.

UG3 can contain ALL users from all 3 domains, as UniversalGroups can contain members from ANY domain.
UG3 can allow access to ANY share on all 3 domains, as they can allow access to resources on ANY domain.


Sound right? Thanks
I would change " can allow access" in "can be allowed access". A group does not allow anything. You grand rights to a group, so all people in that group gain these rights. For the rest it is OK.
__________________
There are 10 types of people: those who understand binary numbers and those who do not.

Trainer is the most efficient job you could have: you sell your knowledge and still keep it yourself.
  Reply With Quote
Tinus1959 was thanked for this great post by:
supag33k (03-26-2010)
Old 03-10-2010, 06:06 AM   #7
Tinus1959
Senior Moderator
 
Tinus1959's Avatar
 
Join Date: Dec 2004
Location: The Netherlands.
Posts: 4,919
Thanks: 173
Thanked 407 Times in 338 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Quote:
Originally Posted by Triton.Deep View Post
Yep, that is right.

Just taking it a step further, when looking at group scopes like that the tendency is to ask the question: Why not just use universal groups all the time??

Well, there are a bunch of reasons for that, here's the two I can think of off the top of my head:
  • In a multi-domain forest you generally have boundaries of authorities that sometimes make it a touchy subject to give membership change control to very many admins....which leads into part II
  • In a multi-domain forest, those boundaries of authority are all to often tied to geographic regions (Corp office to Branch office for example) which are defined by WAN links almost always.
Man, I take way to many words to say this. Sorry about that, but what I'm getting around to is that you can address both of those issues by using GlobalGroups for members, and then nesting them in Universal Groups. Doing that distributes membership managment to whomever controls the GlobalGroups according to your domain/authority breakdown AND it means less replication accross your WAN links by making your UniversalGroup membership largly static.

I hope that came out alright. In a nutshell, you should nest global groups in universal groups when you need groups of users or computers from multiple domains.

Hope that helps some.

J.
Most important reason NOT to use universal groups is because UG's are replicated by the Global Catalog. Because every member in a UG most be up to date in every domain in the forest. The Global Cat is the most logical place to keep track of those users. So every change in the membership of a UG as well as any change in the user itself has a direct effect of the replication to update the GC on every domain. This could result in lots of network trafic.
__________________
There are 10 types of people: those who understand binary numbers and those who do not.

Trainer is the most efficient job you could have: you sell your knowledge and still keep it yourself.
  Reply With Quote
Old 03-10-2010, 06:17 AM   #8
Tinus1959
Senior Moderator
 
Tinus1959's Avatar
 
Join Date: Dec 2004
Location: The Netherlands.
Posts: 4,919
Thanks: 173
Thanked 407 Times in 338 Posts
Re: Global Groups, Domain Local Groups and Universal Groups

Quote:
Originally Posted by BigDook View Post
Triton. Thats awesome mate, thanks. Am just trying to get my understanding right.

And to follow on from my first question, in terms of Groups and Groups

GlobalGroups can have users, computers and global groups from the SAME domain as members?

DomainLocalGroups can have users, computers, global groups and univesral groups from ANY domain as members. And also DomainLocal groups in the SAME domain as members?

UniversalGroups can have users, computers, global groups and universal groups from ANY domain as members?



If thats right, then how come you can't have domain local groups as members of universal groups in ANY domain too?



Cheers for the help mate.
I always try to get this concept clear by using an analogy in the real world.
Let us say we have three cities with a football club in every city. The teams are the global groups. And surely we dont want a guy from LA playing in NYC . So the global group from LA has only players from LA. The field is a local resource and two teams gain the right to play on that field. The local group is connected to the field. So we have a local group with the right to play on the field on sunday between 14:00 and 16:00. On the LA field surely the NYC team can play. It makes no sence to put the field in the global group. That would be the same as moving the physical field from LA to NYC.
The unuversal group is the national team. It can contain players from different teams and may play on all fields.
__________________
There are 10 types of people: those who understand binary numbers and those who do not.

Trainer is the most efficient job you could have: you sell your knowledge and still keep it yourself.
  Reply With Quote
Tinus1959 was thanked for this great post by:
supag33k (03-26-2010)
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How Can I Identify All Local Users, Groups, and Services on a Local Computer? tripwire45 Tech Tips 0 04-09-2009 08:45 AM
Groups Explanation NeuroticFish MCSE, MCSA and MCDBA 2003 Discussion 2 11-09-2006 02:45 PM
Security Groups mattacuk MCSE, MCSA and MCDBA 2003 Discussion 7 06-19-2006 06:35 AM
Security Groups Mouse MCSE, MCSA and MCDBA 2003 Discussion 11 05-23-2006 09:18 PM
Assign profile to Groups ldiaz117 Windows XP 6 12-07-2005 11:38 AM



Powered by vBulletin Version 3.6.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright © 2003-2009, MCSE World.