1

我正在尝试从 DNS 服务器获取 DNS 名称:

DirContext ctx = null;
Attributes attrs = ctx.getAttributes(Ip ,new String[] {"PTR"});

但它抛出异常:

javax.naming.NameNotFoundException:未找到 DNS 名称 [响应代码 3];剩余名称“11.70.168.192.in-addr.arpa”

4

1 回答 1

1

根据opendns 网站,响应代码 3 错误意味着Domain name does not exist.

这可能是由 3 件事引起的:

  1. 网站离线或有服务器问题
  2. 网站不存在
  3. 网站已移动服务器,但 DNS 缓存尚未更新
于 2017-04-19T00:44:26.827 回答