2017-02-09 267 views
0

这是我第一次使用LDAP和Active Directory。我必须用.NetCore制作一个必须使用ActiveDirectory(Windows Server 2008 R2)进行身份验证的web api,我正在关注Novell.Directory.Ldap.NETStandard中的示例,但我无法理解必须设置参数的方式。 这是我在ActiveDirectory中Server创建的用户:使用Novell.Directory.Ldap.NETStandard库的C#netcore ldap认证

https://i.stack.imgur.com/A7iGq.jpg

在Novell的样品

if (args.Length != 5) 
{ 
    System.Console.Out.WriteLine("Usage: mono VerifyPassword <host name>" + " <login dn> <password> <object dn>\n" + "   <test password>"); 
    System.Console.Out.WriteLine("Example: mono VerifyPassword Acme.com " + "\"cn=Admin,o=Acme\" secret\n" + "   \"cn=JSmith,ou=Sales,o=Acme\" testPassword"); 
    System.Environment.Exit(0); 
} 

int ldapPort = LdapConnection.DEFAULT_PORT; 
int ldapVersion = LdapConnection.Ldap_V3; 
System.String ldapHost = args[0]; 
System.String loginDN = args[1]; 
System.String password = args[2]; 
System.String objectDN = args[3]; 
System.String testPassword = args[4]; 
LdapConnection conn = new LdapConnection(); 

try 
{ 
    // connect to the server 
    conn.Connect(ldapHost, ldapPort); 

    // authenticate to the server 
    conn.Bind(ldapVersion, loginDN, password); 

    LdapAttribute attr = new LdapAttribute("userPassword", testPassword); 
    bool correct = conn.Compare(objectDN, attr); 

    System.Console.Out.WriteLine(correct?"The password is correct.":"The password is incorrect.\n"); 

    // disconnect with the server 
    conn.Disconnect(); 
} 

在Novell的样本 “用户” 的参数看起来是这样的“OU =销售额,O = Acme的”所以我想:

int ldapPort = LdapConnection.DEFAULT_PORT; 
int ldapVersion = LdapConnection.Ldap_V3; 
bool compareResults = false; 
String ldapHost = "192.168.58.251"; 
String loginDN = @"cn=jperez"; 
String password1 = "Jperez123"; 
String dn = "mydn"; 
LdapConnection lc = new LdapConnection(); 
LdapAttribute attr = null; 

try 
{ 
    // connect to the server 
    lc.Connect(ldapHost, ldapPort); 
    var sdn = lc.GetSchemaDN(); 

    // authenticate to the server 
    lc.Bind(ldapVersion, loginDN, password1); 

    ... 
} 
catch (LdapException e) 
{ 
    Console.WriteLine("Error: " + e.ToString()); 
} 

但我得到这个错误: LDAP:

LdapException: Invalid Credentials (49) Invalid Credentials LdapException: Server Message: 80090308: LdapErr: DSID-0C0903A8, comment: AcceptSecurityContext error, data 52e, v1db1\u0000 LdapException: Matched DN:

我也有这个功能可按得到schemaDn:lc.GetSchemaDN(),返回结果如下:CN=Aggregate,CN=Schema,CN=Configuration,DC=mydn,DC=local

谷歌搜索有一个与.NetcoreNovell's samples没有太多的信息后,请我需要你的帮助。

回答

0

我有同样的问题,直到我用这个

lc.Bind("uid=" + objUser.UserName + ",ou=SomeValue,dc=SomeValue,dc=SomeValue",password);

也没在你的榜样提供类似版本

3

这方面的工作,以及跑进了同样的错误。我必须使用Windows域和用户名登录:

String loginDN = "DOMAIN\\jperez"; 
String password1 = "Jperez123"; 

lc.Bind(loginDN, password1); 

一旦我这样做了,我就没有问题了。