Ok, I have IP to domain name conversion down pat. I was just presented with a task of going the other way from Domain name to IP. What is the fastest way in perl?
littleman
2:02 am on Aug 2, 2000 (gmt 0)
This works, use Socket; $sitename = 'domain.com'; $address = inet_ntoa(inet_aton($sitename)); print $address;