I've built a domain lookup tool for a client (using a few bits from MrWhois by Marek Rozanski) which all works great except when it comes to the .au domains (.com.au, .id.au,etc etc)
Its fine for the first 20 or so queries then i get blacklisted for 24-48 hours, even though according to ausregistry they dont have any blacklisting set up??
this is the whois call i'm using
$ns = fsockopen($THESERVER,43); fputs($ns,"$domname\r\n");
$result = '';
while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
$THESERVER in this case is whois-check.ausregistry.net.au
If anyone could help it would be much appreciated.
cheers,
Hugh