Python netifaces给出了两个地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python netifaces给出了两个地址相关的知识,希望对你有一定的参考价值。

我试图得到我的机器的IP地址和广播地址,经过大量的研究netifaces工作正常,但问题是IP地址打印正常,但当我想要广播地址时,它给出了docker广播地址以及'lo '广播地址,但我只想'lo'广播地址,我不知道如何只获得与'lo'相关的广播地址。请帮我一些想法。此外,我不确定我是否曾提到只想要'lo'广播地址,但它也给了码头工人广播地址。

码:

import netifaces
interfaces=netifaces.interfaces()
for i in interfaces:
   if i=='lo':
   continue
   iface= netifaces.ifaddresses(i).get(netifaces.AF_INET)
   if iface != None:
      for j in iface:
        bd=(j['broadcast'])
        print(bd)

输出:

192.169.x.x('lo'-broadcast)
175.17.x.x ('docker'-broadcast)
答案

你为什么要试着去?这通常是本地环回,并且始终具有127.0.0.1。我刚刚在CentOS环境中做到了这一点。如果您使用的是Windows,只需调整“ifconfig adapter-name”字符串...可能使用“ipconfig / all”或其他内容。

#! /usr/bin/python
import os
import re

def get_ip_data(ether_adapter):
    ip_list = []
    ip_data = os.popen("ifconfig " + ether_adapter)
    for line in ip_data:
        match1 = re.search(r'inet\s+(\d+.\d+.\d+.\d+)', line)
        match2 = re.search(r'broadcast\s+(\d+.\d+.\d+.\d+)', line)
        if match1:
            ip = match1.group(1)
            ip_list.append(ip)
        if match2:
            bcast = match2.group(1)
            ip_list.append(bcast)
    return ip_list


if __name__ == "__main__":
    ethernet_card = "virbr0"
    inet_list = get_ip_data(ethernet_card)
    for element in inet_list:
        print(element)

[root@server Desktop]# ./ip.py 
192.168.122.1
192.168.122.255

在客户端“virbr0”是我的wifi卡的名称。只需将您的wifi卡或以太网卡名称替换为字符串即可。

以上是关于Python netifaces给出了两个地址的主要内容,如果未能解决你的问题,请参考以下文章

如何修复 python2.7 的 netifaces 模块安装?

python:使用netifaces模块获取本机IP网关等信息

python之netifaces模块

Python - 通过特定的IP地址路由selenium浏览器

如何验证包含两个句点的电子邮件地址(Python)

Python:两个数据帧的外部连接或合并给出错误:TypeError:unhashable type:'numpy.ndarray'