python Programming Glossary: socket.inet_ntoa
Python - Get localhost IP [duplicate] http://stackoverflow.com/questions/11735821/python-get-localhost-ip s socket.socket socket.AF_INET socket.SOCK_DGRAM return socket.inet_ntoa fcntl.ioctl s.fileno 0x8915 struct.pack '256s' ifname 15 20..
How can I generate all possible IPs from a list of ip ranges in Python? http://stackoverflow.com/questions/17641492/how-can-i-generate-all-possible-ips-from-a-list-of-ip-ranges-in-python 0 end struct.unpack ' I' socket.inet_aton end 0 return socket.inet_ntoa struct.pack ' I' i for i in range start end These are the building.. i struct.unpack ' I' socket.inet_aton ip 0 i 5 i 1 socket.inet_ntoa struct.pack ' I' i '0.0.0.6' Example ips '1.2.3.4' '1.2.4.5'..
Is there an API for Wireshark, to develop programs/plugins that interact with it/enhance it? http://stackoverflow.com/questions/2198972/is-there-an-api-for-wireshark-to-develop-programs-plugins-that-interact-with-it dpkt.ethernet.ETH_TYPE_IP raise ip ether.data src socket.inet_ntoa ip.src dst socket.inet_ntoa ip.dst print s s src dst To grab.. raise ip ether.data src socket.inet_ntoa ip.src dst socket.inet_ntoa ip.dst print s s src dst To grab frames off the wire with pypcap..
How can I check the data transfer on a network interface in python? http://stackoverflow.com/questions/7731411/how-can-i-check-the-data-transfer-on-a-network-interface-in-python s socket.socket socket.AF_INET socket.SOCK_DGRAM return socket.inet_ntoa fcntl.ioctl s.fileno 0x8915 # SIOCGIFADDR struct.pack '256s'..
Retrieving network mask in Python http://stackoverflow.com/questions/936444/retrieving-network-mask-in-python This works for me in Python 2.2 on Linux iface eth0 socket.inet_ntoa fcntl.ioctl socket.socket socket.AF_INET socket.SOCK_DGRAM 35099..
Convert an IP string to a number and vice versa http://stackoverflow.com/questions/9590965/convert-an-ip-string-to-a-number-and-vice-versa ip return struct.unpack L packedIP 0 the other way around socket.inet_ntoa struct.pack ' L' 2130706433 '127.0.0.1' share improve this..
|