-2

I'm trying to nslookup all records of my internet provider, but it's returning "Result too large". I'm using the Windows nslookup.exe.

example:

nslookup.exe
>server ns1.brtel.com.br
>set type=ANY
>ls -d brtel.com.br > brtel.txt
ls: connect: Result too large
*** Can't list domain brtel.com.br: Unspecified error

Does anyone know how to solve this?

Peter
  • 252
  • 2
  • 14

1 Answers1

2

Most DNS Servers restrict the answer to a 512 Byte UDP Packet. If the response is bigger than that then you get the error you're looking at. The solution is either to request less domains at a time or get your provider to up the limit on DNS requests, which is a bit unlikely.

Peter
  • 252
  • 2
  • 14