in reply to another net::DNS question
Did you remember to put quotes around that IP address? Otherwise it's going to be interpreted as a dotted version string, which is definitely not going to give the results you want.
i.e.
$res->nameservers("xx.xx.xx.xx");
instead of
$res->nameservers(xx.xx.xx.xx);
|
|---|