mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
Warn about DNA plugin configuration when working with local ID ranges
https://fedorahosted.org/freeipa/ticket/3116
This commit is contained in:
parent
8222799b91
commit
21d893ddde
@ -111,7 +111,6 @@ Typically the creation of ID ranges happens behind the scenes and this CLI
|
||||
must not be used at all. The ID range for the local domain will be created
|
||||
during installation or upgrade from an older version. The ID range for a
|
||||
trusted domain will be created together with the trust by 'ipa trust-add ...'.
|
||||
The use cases for this CLI are
|
||||
|
||||
USE CASES:
|
||||
|
||||
@ -141,6 +140,17 @@ the domain SID. E.g. if the domain SID is S-1-5-21-123-456-789 and a user from
|
||||
this domain has the SID S-1-5-21-123-456-789-1010 then 1010 id the RID of the
|
||||
user. RIDs are unique in a domain, 32bit values and are used for users and
|
||||
groups.
|
||||
|
||||
WARNING:
|
||||
|
||||
DNA plugin in 389-ds will allocate IDs based on the ranges configured for the
|
||||
local domain. Currently the DNA plugin *cannot* be reconfigured itself based
|
||||
on the local ranges set via this family of commands.
|
||||
|
||||
Manual configuration change has to be done in the DNA plugin configuration for
|
||||
the new local range. Specifically, The dnaNextRange attribute of 'cn=Posix
|
||||
IDs,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config' has to be
|
||||
modified to match the new range.
|
||||
""")
|
||||
|
||||
class idrange(LDAPObject):
|
||||
@ -287,6 +297,17 @@ class idrange_add(LDAPCreate):
|
||||
--dom-sid
|
||||
|
||||
must be given to add a new range for a trusted AD domain.
|
||||
|
||||
WARNING:
|
||||
|
||||
DNA plugin in 389-ds will allocate IDs based on the ranges configured for the
|
||||
local domain. Currently the DNA plugin *cannot* be reconfigured itself based
|
||||
on the local ranges set via this family of commands.
|
||||
|
||||
Manual configuration change has to be done in the DNA plugin configuration for
|
||||
the new local range. Specifically, The dnaNextRange attribute of 'cn=Posix
|
||||
IDs,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config' has to be
|
||||
modified to match the new range.
|
||||
""")
|
||||
|
||||
msg_summary = _('Added ID range "%(value)s"')
|
||||
|
Loading…
Reference in New Issue
Block a user