Do all the probing for one hostname
System.out.println("Java NetProbe 0.0: probing " + hn);
try {
InetAddress all[] = InetAddress.getAllByName(hn);
System.out.println(hn + " has " + all.length + " addresses.");
for (int i=0; i<all.length; i++)
System.out.println("Address " + all[i]);
} catch (UnknownHostException ue) {
System.out.println("Unknown host " + hn);
}