#!/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")  

 

相关文章:

  • 2021-12-24
  • 2021-09-13
  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2021-10-18
猜你喜欢
  • 2022-12-23
  • 2021-05-20
  • 2021-09-25
  • 2021-08-27
  • 2021-07-29
  • 2021-12-05
  • 2022-01-26
相关资源
相似解决方案