gethostbyaddr(192.168.1.1, AF_INET); #### $ip = inet_aton('192.168.1.1'); print gethostbyaddr($ip, AF_INET); #### my $ip = inet_aton($&); my $name = gethostbyaddr($ip, AF_INET);