Заменить анонимную команду ldapsearch командой curl?

у меня это работаетldapsearchкоманда для анонимного подключения к внутреннему ldap-серверу:

      $ ldapsearch -h my.host -p 389 -x -LLL -s base -b "" namingContexts
dn:
namingContexts: DC=org,DC=sample

Теперь я хотел бы перечислить то же самое, используя Curl:

      $ curl -v "ldap://my.host:389/dc=org,dc=sample namingContexts"
*   Trying ...
* Connected to my.host (....) port 389 (#0)
* LDAP remote: search failed Success 000004DC: LdapErr: DSID-0C090A5C, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v4563
* Closing connection 0
curl: (39) LDAP remote: search failed Success 000004DC: LdapErr: DSID-0C090A5C, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v4563

Итак, я получаю соединение с сервером, но как мне перечислить namingContext без предоставления учетных данных/анонимно с помощью Curl.

0 ответов

Другие вопросы по тегам