有时候使用到获取本机IP,就采用以下方式进行。
复制代码 代码如下:
import socket
import struct
import fcntl
def getip(ethname):
s=socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
return socket.inet_ntoa(fcntl.ioctl(s.fileno(), 0X8915, struct.pack('256s', ethname[:15]))[20:24])
if name=='main':
print getip('eth0')
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8