A reverse lookup on the IP address given on the command line : IP Address : Network PYTHON examples


PYTHON examples » Network » IP Address »

 

A reverse lookup on the IP address given on the command line


A reverse lookup on the IP address given on the command line

import sys, socket

try:
    result = socket.gethostbyaddr("66.249.71.15")
    print "Primary hostname:"
    print "  " + result[0]

    # Display the list of available addresses that is also returned
    print "nAddresses:"
    for item in result[2]:
        print "  " + item
except socket.herror, e:
    print "Couldn't look up name:", e


           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Network
» IP Address