Whois Script Modification 13.03.08
Hi there,
we are currently running a site that provides a whois service for all known top levels. We currently query whois about like that basically:
$fp = fsockopen($whois_server,43);
fputs($fp, “$domain\r\n”);
while(!feof($fp))
{
$whois.=fgets($fp,128);
}
Now what we would need is, that script would be modified a way, so we can query from a given list of IPs, or in other words, we got a server with about 15 IPs and we want to use all of them by random to query the whois, since recently we get blocked quite a lot, since there are that many people using our whois service.
So what we want you to do is adjust our script that way, that we are able to tell the script to use a given IP of our server for the query.
IMPORTANT: The script is written in PHP.



