有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java i无法使用ip地址连接ldap服务器

我想使用java和ldaps连接ldapService。但这是错误的。 问题是: 嵌套的异常是javax。命名。CommunicationException:192.168.174.145:636[根异常为javax.net.ssl.SSLHandshakeException:java.security.cert.CertificateException:不存在主题替代名称]

如果我使用hostname:636,那就是成功。我不知道为什么。你能帮助我吗?非常感谢

public class SslLdapContextSource extends LdapContextSource {
    @Override
    protected Hashtable<String, Object> getAnonymousEnv() {
        Hashtable<String, Object> anonymousEnv = super.getAnonymousEnv();
        anonymousEnv.put("java.naming.security.protocol", "ssl");
        anonymousEnv.put("java.naming.ldap.factory.socket", CustomSSLSocketFactory.class.getName());
        anonymousEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
        return anonymousEnv;
    }
}



public class CustomSslSocketFactory extends SSLSocketFactory {
    private SSLSocketFactory socketFactory;

    public CustomSslSocketFactory() {
        try {
            SSLContext ctx = SSLContext.getInstance("TLS");
            ctx.init(null, new TrustManager[]{new DummyTrustmanager()}, new SecureRandom());
            socketFactory = ctx.getSocketFactory();
        } catch (Exception ex) {
            ex.printStackTrace(System.err);
        }
    }

    public static SocketFactory getDefault() {
        return new CustomSslSocketFactory();
    }

    @Override
    public String[] getDefaultCipherSuites() {
        return socketFactory.getDefaultCipherSuites();
    }

    @Override
    public String[] getSupportedCipherSuites() {
        return socketFactory.getSupportedCipherSuites();
    }

    @Override
    public Socket createSocket(Socket socket, Senter code heretring string, int num, boolean bool) throws IOException {
        return socketFactory.createSocket(socket, string, num, bool);
    }

    @Override
    public Socket createSocket(String string, int num) throws IOException, UnknownHostException {
        return socketFactory.createSocket(string, num);
    }

    @Override
    public Socket createSocket(String string, int num, InetAddress netAdd, int i) throws IOException, UnknownHostException {
        return socketFactory.createSocket(string, num, netAdd, i);
    }

    @Override
    public Socket createSocket(InetAddress netAdd, int num) throws IOException {
        return socketFactory.createSocket(netAdd, num);
    }

    @Override
    public Socket createSocket(InetAddress netAdd1, int num, InetAddress netAdd2, int i) throws IOException {
        return socketFactory.createSocket(netAdd1, num, netAdd2, i);
    }



    public static class DummyTrustmanager implements X509TrustManager {
        @Override
        public void checkClientTrusted(X509Certificate[] cert, String string) throws CertificateException {
        }

        @Override
        public void checkServerTrusted(X509Certificate[] cert, String string) throws CertificateException {
        }

        @Override
        public X509Certificate[] getAcceptedIssuers() {
            return new java.security.cert.X509Certificate[0];
        }

    }
}

 @Bean
    public LdapTemplate ldapTemplate() {
        return new LdapTemplate(contextSourceTarget());
    }
    @Bean
    public LdapContextSource contextSourceTarget() {
        if(!useSSL){
            String urls = "ldap://"+url+":"+port;
            LdapContextSource ldapContextSource = new LdapContextSource();
            ldapContextSource.setUrl(urls);
            //ldapContextSource.setBase(base);
            ldapContextSource.setUserDn(username);
            ldapContextSource.setPassword(password);
            ldapContextSource.setReferral(referral);
            ldapContextSource.afterPropertiesSet();
            return ldapContextSource;
        }else{
            String urls = "ldaps://"+url+":"+port;
            SslLdapContextSource contextSource = new SslLdapContextSource();
            contextSource.setUrl(urls);
            contextSource.setUserDn(username);
            contextSource.setPassword(password);
            contextSource.setPooled(false);
            contextSource.afterPropertiesSet();
            return contextSource;
        }
    }

我要用ldaps://192.168.174.145:636连接ldapService。但现在我只能用ldaps://test:636连接ldapService。 192.168.174.145和测试是同一台计算机


共 (1) 个答案

  1. # 1 楼答案

    建立SSL/TLS连接时,将执行各种检查,作为服务器身份验证的一部分。 即

    • 服务器证书有效吗
    • 服务器证书是否由受信任的证书颁发机构颁发
    • 证书是否也属于客户端连接的服务器

    对于最后一次检查,将检查服务器证书的主题DN的主题CN或服务器证书的主题备选名称(IP/DNS)扩展的值。另请参见RFC5280