Python获取Linux系统下的本机IP地址代码分享
程序员文章站
2023-11-23 22:14:28
有时候使用到获取本机ip,就采用以下方式进行。
复制代码 代码如下:
#!/usr/bin/python
import socket
import...
有时候使用到获取本机ip,就采用以下方式进行。
复制代码 代码如下:
#!/usr/bin/python
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')