diff --git a/PVE/Auth/LDAP.pm b/PVE/Auth/LDAP.pm index 9fa9095..09b2202 100755 --- a/PVE/Auth/LDAP.pm +++ b/PVE/Auth/LDAP.pm @@ -203,17 +203,17 @@ sub connect_and_bind { my $ldap = PVE::LDAP::ldap_connect($servers, $scheme, $port, \%ldap_args); - my $bind_dn; - my $bind_pass; - if ($config->{bind_dn}) { - $bind_dn = $config->{bind_dn}; - $bind_pass = ldap_get_credentials($realm); + my $bind_dn = $config->{bind_dn}; + my $bind_pass = ldap_get_credentials($realm); die "missing password for realm $realm\n" if !defined($bind_pass); + PVE::LDAP::ldap_bind($ldap, $bind_dn, $bind_pass); + } elsif ($config->{cert} && $config->{certkey}) { + warn "skipping anonymous bind with clientcert\n"; + } else { + PVE::LDAP::ldap_bind($ldap); } - PVE::LDAP::ldap_bind($ldap, $bind_dn, $bind_pass); - if (!$config->{base_dn}) { my $root = $ldap->root_dse(attrs => [ 'defaultNamingContext' ]); $config->{base_dn} = $root->get_value('defaultNamingContext');