Christian
Bob Fowles, Penn State
On 4/14/03 8:14 AM, in article b7e8ho$2ulg$2...@news.boulder.ibm.com,
Christian
I'd guess that both of these LDAP clients request all normal attributes by
sending empty attribute list with search request. You have to use an LDAP
client which allows you to explicitly request certain attributes.
That's why I've implemented a configuration parameter for this:
http://www.web2ldap.de/web2ldapcnf_hosts.html#requested_attrs
Your mileage may vary.
Off course you also need to have proper access rights.
Ciao, Michael.
Christian
That's the filter.
> Maybe this is a basic ldap question but how do you define that you want
> all attributes and also the extended (aci) attributes ?
A list of attributes is sent in the search request (see RFC2251, section
4.5.1 for details).
$ /usr/ldap/bin/ldapsearch
/usr/ldap/bin/ldapsearch: option requires an argument -- h
Sends a search request to an LDAP server.
usage:
ldapsearch [-b basedn] [options] filter [attributes...]
where:
basedn: base dn for search
(optional if LDAP_BASEDN set in environment)
filter: LDAP search filter
attributes: whitespace-separated list of attributes to retrieve
(if no attribute list is specified, all are retrieved)
Example (quotes for avoiding shell globbing):
$ ldapsearch -b"dc=stroeder,dc=com" "(objectclass=*)" "*" aci
Ciao, Michael.
Christian