用户登录
用户注册

分享至

linux下通过python获得指定网卡的ip地址

  • 作者: 陌然浅忆
  • 来源: 51数据库
  • 2022-08-12
import socket
import fcntl
import struct
  
def get_ip_address(ifname):
   """
    >>> get_ip_address('lo')
    '127.0.0.1'
  
    >>> get_ip_address('eth0')
    '38.113.228.130'
    """
    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])

软件
前端设计
程序设计
Java相关