I need to access a remote LDAP server behind a firewall (using C#/.NET) for user authentication.
The firewall at the remote site is set to allow a specific IP address, but it is not the primary IP Address on the server i.e. by default, the connection to the remote LDAP server would use the primary IP.
How do you force LDAP to use a secondary IP Address in .NET?
I am specifically using the System.DirectoryServices.DirectoryEntry
and System.DirectoryServices.AccountManagement.PrincipalContext
classes, but there isn't obvious way I could see to control the local end point.
This is how I would bind to a local IP address using a TcpClient:
using System.Net;
using System.Net.Sockets;
IPEndPoint localEndpoint = ...get relevant local ip address that needs to connect
TcpClient tcp = new TcpClient( localEndpoint );
...do stuff with tcp client
NB: The primary IP address of the server cannot be changed in this instance.
PS: While I use the word "bind" here to mean binding to a local end point, LDAP uses the word "bind" for connecting/authenticating to the directory.
You'll have to PInvoke the ldap_* functions in wldap32.dll. It looks like the LDAP_OPT_SOCKET_BIND_ADDRESSES option in Session Options will let you control which local endpoint to use. The System.DirectoryServices.Protocols is the managed version of this API, but I don't see a corresponding property in LdapSessionOptions.
This works for me:
Example usage: