Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoș Haiduc
OpenLDAP
Commits
97676d5d
Commit
97676d5d
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
Encoding on backends.sdf and More work on Overlays.
parent
dbbf8e93
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/guide/admin/backends.sdf
+1
-1
1 addition, 1 deletion
doc/guide/admin/backends.sdf
doc/guide/admin/overlays.sdf
+56
-6
56 additions, 6 deletions
doc/guide/admin/overlays.sdf
with
57 additions
and
7 deletions
doc/guide/admin/backends.sdf
+
1
−
1
View file @
97676d5d
...
...
@@ -44,7 +44,7 @@ Sessions that explicitly {{Bind}} to the {{back-ldap}} database always create
their own private connection to the remote LDAP server. Anonymous sessions
will share a single anonymous connection to the remote server. For sessions
bound through other mechanisms, all sessions with the same DN will share the
same connection. This connection pooling strategy can enhance the proxy
’
s
same connection. This connection pooling strategy can enhance the proxy
'
s
efficiency by reducing the overhead of repeatedly making/breaking multiple
connections.
...
...
This diff is collapsed.
Click to expand it.
doc/guide/admin/overlays.sdf
+
56
−
6
View file @
97676d5d
...
...
@@ -360,14 +360,64 @@ When dynamic objects reach the end of their lifetime without being further
refreshed, they are automatically {{deleted}}. There is no guarantee of immediate
deletion, so clients should not count on it.
Dynamic objects can have subordinates, provided these also are dynamic objects.
RFC 2589 does not specify what the behavior of a dynamic directory service
should be when a dynamic object with (dynamic) subordinates expires.
In this implementation, the lifetime of dynamic objects with subordinates is prolonged
until all the dynamic subordinates expire.
H3: Dynamic Directory Service Configuration
A usage of dynamic objects might beto implement dynamic meetings; in this case,
all the participants to the meeting are allowed to refresh the meeting object,
but only the creator can delete it (otherwise it will be deleted when the TTL expires).
If we add the overlay to an example database, specifying a Max TTL of 1 day, a
min of 10 seconds, with a default TTL of 1 hour. We'll also specify an interval
of 5 seconds between expiration checks and a tolerance of 1 second (lifetime of
a dynamic object will be {{B:entryTtl + tolerance}}.
> overlay dds
> dds-max-ttl 1d
> dds-min-ttl 10s
> dds-default-ttl 1h
> dds-interval 5s
> dds-tolerance 1s
So let's create an entry using:
> dn: cn=Dynamic,dc=example,dc=com
> objectClass: inetOrgPerson
> objectClass: dynamicObject
> cn: Dynamic Object
> sn: Object
MORE coming.
H4: Dynamic Directory Service ACLs
Allow users to start a meeting and to join it; restrict refresh to the {{B:member}}s;
restrict delete to the creator:
> access to attrs=userPassword
> by self write
> by * read
>
> access to dn.base="cn=Meetings,dc=example,dc=com"
> attrs=children
> by users write
>
> access to dn.onelevel="cn=Meetings,dc=example,dc=com"
> attrs=entry
> by dnattr=creatorsName write
> by * read
>
> access to dn.onelevel="cn=Meetings,dc=example,dc=com"
> attrs=participant
> by dnattr=creatorsName write
> by users selfwrite
> by * read
>
> access to dn.onelevel="cn=Meetings,dc=example,dc=com"
> attrs=entryTtl
> by dnattr=member manage
> by * read
H2: Dynamic Groups
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment