在 Python 中处理多个网络接口

发布于 2024-07-26 02:06:28 字数 153 浏览 7 评论 0原文

如何在 python 中执行以下操作:

  1. 列出当前计算机上的所有 IP 接口。
  2. 接收有关网络接口变化的更新(上升、下降、更改 IP 地址)。

Ubuntu Hardy 中可用的任何 python 软件包都可以。

How can I do the following things in python:

  1. List all the IP interfaces on the current machine.
  2. Receive updates about changes in network interfaces (goes up, goes down, changes IP address).

Any python package available in Ubuntu Hardy will do.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

浪荡不羁 2024-08-02 02:06:28

我认为最好的方法是通过 dbus-python

教程稍微涉及了网络接口:

import dbus
bus = dbus.SystemBus()
proxy = bus.get_object('org.freedesktop.NetworkManager',
                       '/org/freedesktop/NetworkManager/Devices/eth0')
# proxy is a dbus.proxies.ProxyObject

I think the best way to do this is via dbus-python.

The tutorial touches on network interfaces a little bit:

import dbus
bus = dbus.SystemBus()
proxy = bus.get_object('org.freedesktop.NetworkManager',
                       '/org/freedesktop/NetworkManager/Devices/eth0')
# proxy is a dbus.proxies.ProxyObject
謸气贵蔟 2024-08-02 02:06:28

我一直在使用以下代码,

temp =  str(os.system("ifconfig -a | awk '$2~/^Link/{_1=$1;getline;if($2~/^addr/){print _1" "}}'"))

它将提供“向上”网络接口

,例如 eth0、eth2、wlan0

I have been using the following code,

temp =  str(os.system("ifconfig -a | awk '$2~/^Link/{_1=$1;getline;if($2~/^addr/){print _1" "}}'"))

it will give the 'up' network interfaces

e.g. eth0, eth2, wlan0

叹梦 2024-08-02 02:06:28

不,不......你不需要打扰 os.system() 或 dbus API。

你真正需要的是使用 netlink API 来实现这一点。 使用 libnl 接口 (netlink.route.link) 或自己处理 netlink 消息。 看一下此示例

No, no... You don't need to bother os.system() or dbus API.

What you really need is to use netlink API to implement this. Either use libnl interface (netlink.route.link) or handle netlink messages by yourself. Take a look at this example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文