자바 JNDI 자체 지정 DNS 서버 분석 도 메 인 IP
1. 자신 이 지정 한 도 메 인 네 임 서버
2. 다 중 도 메 인 네 임 서버 지정
3. 모든 IP 획득
참조 구현:
JNDI
http://docs.oracle.com/javase/1.4.2/docs/guide/jndi/jndi-dns.html
http://mindprod.com/jgloss/dns.html
상세 참조
실현:
/**
* 获取DNS服务器信息
*
* @param domain 要获取DNS信息的域名
* @param provider DNS服务器
* @param types 信息类型 "A"(IP信息),"MX"
* @param timeout 请求超时
* @param retryCount 重试次数
*
* @return 所有信息组成的数组
*
* @throws NamingException
*
*/
@SuppressWarnings("rawtypes" )
public static ArrayList<String> getDNSRecs(String domain, String provider,
String [] types, int timeout, int retryCount) throws NamingException {
ArrayList<String> results = new ArrayList<String>(15);
Hashtable<String, String> env = new Hashtable<String, String>();
env.put( "java.naming.factory.initial" ,
"com.sun.jndi.dns.DnsContextFactory" );
//设置域名服务器
env.put(Context. PROVIDER_URL, "dns://" + provider);
// 连接时间
env.put( "com.sun.jndi.dns.timeout.initial" , String.valueOf(timeout));
// 连接次数
env.put( "com.sun.jndi.dns.timeout.retries" , String.valueOf(retryCount));
DirContext ictx = new InitialDirContext(env);
Attributes attrs = ictx.getAttributes(domain, types);
for (Enumeration e = attrs.getAll(); e.hasMoreElements();) {
Attribute a = (Attribute) e.nextElement();
int size = a.size();
for (int i = 0; i < size; i++) {
results.add((String) a.get(i));
}
}
return results;
}
/**
* 获取域名所有IP
* @param domain 域名
* @param dnsServers DNS服务器列表
* @param timeout 请求超时
* @param retryCount 重试次数
* @return
*/
public static Set<String> getAllIP(String domain, String[] dnsServers,
int timeout, int retryCount) {
Set<String> ips = new HashSet<String>();
for(String dnsServer: dnsServers) {
List<String> ipList;
try {
ipList = getDNSRecs(domain, dnsServer, new String[]{"A"},
timeout, retryCount);
} catch (NamingException e) {
continue;
}
ips.addAll(ipList);
}
return ips;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.