[转] python 获取本机ip地址的两种实现方法

发布时间:2023-12-22 04:54:41
#!/usr/bin/python  
  
import socket  
import fcntl  
import struct  
def get_ip_address(ifname):  
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
return socket.inet_ntoa(fcntl.ioctl(  
s.fileno(),  
0x8915, # SIOCGIFADDR  
struct.pack('256s', ifname[:15])  
)[20:24])  
#get_ip_address('lo')环回地址  
#get_ip_address('eth0')主机ip地址  

  

#!/usr/bin/python  
  
def get_local_ip(ifname):  
import socket, fcntl, struct  
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
inet = fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s', ifname[:15]))  
ret = socket.inet_ntoa(inet[20:24])  
return ret  
print get_local_ip("eth0")  

?

posted on 2018-05-25 19:24 Rayment 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/rayment/p/9090363.html

文章来源:https://blog.csdn.net/weixin_30508241/article/details/98223767
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。