Questions tagged [edirectory]

NetIQ eDirectory (formerly Novell eDirectory) is a full-service, secure LDAP directory.

NetIQ eDirectory (formerly Novell eDirectory) is a full-service, secure LDAP directory.

Resources

41 questions
53
votes
7 answers

How to save the LDAP SSL Certificate from OpenSSL

I wanted the SSL Certificate of my LDAP Server which is Novell eDirectory. I have used openssl to connect to ldap to view the certificate. openssl s_client -connect 192.168.1.225:636 It is just printing the certificate. How can I save this to some…
Dungeon Hunter
  • 17,873
  • 13
  • 53
  • 78
14
votes
6 answers

Connecting to LDAP from C# using DirectoryServices

I am trying to connect to an edirectory 8.8 server running LDAP. How would I go about doing that in .Net? Can I still use the classes in System.DirectoryService such as DirectoryEntry and DirectorySearcher or are they AD specific? Do I need to…
Chaitanya
  • 4,853
  • 8
  • 33
  • 59
7
votes
3 answers

LDAP Bind Error using node.js and ldapjs

I am trying to implement a basic ldap bind with the following node.js file. Unfortunately, I keep getting a bind error with code 128. I looked online and found no references of code 128. The LDAP server I am trying to search is an eDirectory. …
Kaiser Wilhelm
  • 578
  • 7
  • 22
6
votes
2 answers

What's the difference in using distinguished name with cn or uid when logging into LDAP?

I'm running into a problem using LDAP to authenticate logins. We are using a Novell edirectory for authentication of other applications like Jira. ( Jira works perfect ). I have this application that allow these basic LDAP configurations: My…
jeph perro
  • 5,852
  • 24
  • 82
  • 121
5
votes
3 answers

Set callback for System.DirectoryServices.DirectoryEntry to handle self-signed SSL certificate?

I have an application replicating data from a directory service using typical System.DirectoryServices.DirectoryEntry code. I now have a requirement to replicate from Novell eDirectory using SSL with a self-signed certificate. I suspect that the…
Andrew
  • 53
  • 1
  • 5
4
votes
3 answers

How to find out if a computer is connected to novell eDirectory or Microsoft ActiveDirectory?

I just implemented Novell eDirectory in my application. Since our application supports Microsoft ActiveDirectory I would like to prevent an additional configuration parameter like "Novell yes/no". So, is there another way to find out if the computer…
Inno
  • 2,447
  • 5
  • 32
  • 41
3
votes
3 answers

How to move an eDirectory entry via php?

I have this ldap entry: cn=blah,ou=apples,ou=people,dc=yay,dc=edu I need to move that entry to: cn=blah,ou=oranges,ou=people,dc=yay,dc=edu My scripts are all PHP so I've been trying to use php.net/ldap_rename ldap_rename($connection,…
David R.
  • 518
  • 1
  • 9
  • 20
2
votes
2 answers

Need to Query Novell NDS Edirectory Attributes' Meta Data not available through LDAP

Ok so this question is a hard one to answer for those who do not have much experience with Novell eDirectory. What I am trying to do is create a work flow that will delete user objects in my eDirectory tree if upon meeting of certain requirements. …
Eric
  • 21
  • 3
2
votes
2 answers

Assign unique UID value dynamically based upon 3 character of sn and givenname

How to check whether the UID are present already. If it's present increment one value for the new user with 3 letters of first name and last name. If UId are not present Assign the value of UID ...and store in eDirectory.. public class…
DURGA
  • 63
  • 1
  • 1
  • 10
2
votes
1 answer

How to speed up combined ldap query?

This ldap query is instantaneous: "Find all groups which user1 is not member" (& (objectclass=groupOfNames) (!(member=cn=user1)) ) As is this one: "Find these groups" (& (objectclass=groupOfNames) (|(cn=group1) (cn=group2)…
Martin Wickman
  • 18,530
  • 10
  • 71
  • 97
2
votes
1 answer

NullReferenceException ldapConnection.Connect

I know similar questions have been asked a million times. I've read them and I still cannot get to the bottom of this. I'm using the Novell.Directory.Ldap c# library in my code (Winforms, c#). It works very similar to the microsoft ldap libraries…
GC78
  • 106
  • 9
1
vote
1 answer

mono.security.dll novell.directory.ldap.dll Secure Socket Layer - SSL

Imported certificates like this: certmgr /add /v /c /ctl "selfsignedroot.cer" /s /r localMachine root certmgr /add /v /c /ctl "server.cer" /s /r localMachine root certmgr /add /v /c /ctl "server.cer" /s /r localMachine CA certmgr /add /v /c /ctl…
Are
  • 13
  • 3
1
vote
1 answer

Changing eDirectory Password From Linux Machine

I have Configured LDAP Authentication for my Linux Machines. The LDAP Server is Novell eDirectory. The LDAP Users are able to login into the machine. But when i am issuing passwd command it is asking LDAP password then asking to give me new…
Dungeon Hunter
  • 17,873
  • 13
  • 53
  • 78
1
vote
0 answers

ADFIND connection using SSL

I'm using ADFIND to connect to a eDirectory data repository (similar to Active Directory) and I'm not able to connect using the "-ssl" option. This is the command I'm using in a .bat file: adfind -csv -csvq "" -csvdelim "|" -csvmvdelim ";" -b…
1
vote
1 answer

How to access a Novell network through System.DirectoryServices?

I'm accessing an ActiveDirectory through public static DirectoryEntry GetRootDSE() { DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE"); return rootDSE; } Now I need to access a Novell network. In MSDN:…
Inno
  • 2,447
  • 5
  • 32
  • 41
1
2 3