-1

suppose I have a node like user in LDAP and I want to multiple attributes to it in one LDAP operation i.e. single update operation.Is it possible?

Any pointers would be helpful.

Note : I am using TDS.

1 Answers1

3

Sure, something like:

dn: cn=Barney Fife,ou=People,dc=example,dc=com
changetype: modify
add: telephonenumber
telephonenumber: 555-1212
telephonenumber: 555-6789
-
add: manager
manager: cn=Sally Nixon,ou=People,dc=example,dc=com

Many examples can be found from google ldif examples.

I assume TDS is Tivoli Directory Server and this should work fine.

-jim

jwilleke
  • 10,467
  • 1
  • 30
  • 51