I have 4 DCs with 4 separate domains all with cross domain trust.
I have a linux box running centrify express.
To authenticate ssh access, we have local domain groups that are named the same in each domain ("local.ssh.users"), but contain users from the primary user domain
Doing "adquery group local.users.ssh" returns the local group, with the users I added:
Doing just "adquery group" returns all 4 SSH groups. This seems to override the actual local group, because subsequently doing "adquery group local.ssh.users" returns a single group **with no users** with a different GID
# #1. query just the group
#
# adquery group local.users.ssh
local.users.ssh:x:71304443:user1,user2
# #2. Query all groups (and grep out the group name)
#
# adquery group | grep local.users.ssh
local.users.ssh:x:71304443:user1,user2
local.users.ssh:x:1010828370:
local.users.ssh:x:1803551825:
local.users.ssh:x:981468283:
# #3. Query just the group again
#
# adquery group local.users.ssh
local.users.ssh:x:1010828370:
I can restore the original group query by doing "adflush -f"
What is going on and how can I control this behavior?