Why does dnsjava not retrieve all records?

1.3k Views Asked by At

I'm using the following code (dnsjava) to retrieve records from dns.

Record[] records1 = null;
Lookup look;
try {
    look = new Lookup(domainName,Type.A);
    try {
        look.setResolver(new SimpleResolver(ipAddress));
        } catch (UnknownHostException e) {
            e.printStackTrace();
        }
    records1 = look.run();
    for(int i=0;i<records1.length;i++){
        System.out.println(records1[i]);
    }
    } catch (TextParseException e) {
        e.printStackTrace();
    }

The above returns only the A records that gives the ipaddress of the domain's domain controller. Other A records were not retrieved. Also I have some other records (AAAA,MX,ATM Address,ISDN). Those records are also not retrieved even though I have specified the proper type. Can anyone tell me why is it so?

1

There are 1 best solutions below

0
On

Change it to

look = new Lookup(domain,Type.ANY);

it fetches all record