#!/usr/pkg/bin/python import sys, socket for line in sys.stdin.readlines(): addr=line.strip() try: print addr, (socket.gethostbyaddr(addr))[0] except socket.herror, instance: print "failed gethostbyaddr(addr): ", repr(instance.args)