在 Python 中处理多个网络接口
如何在 python 中执行以下操作:
- 列出当前计算机上的所有 IP 接口。
- 接收有关网络接口变化的更新(上升、下降、更改 IP 地址)。
Ubuntu Hardy 中可用的任何 python 软件包都可以。
How can I do the following things in python:
- List all the IP interfaces on the current machine.
- Receive updates about changes in network interfaces (goes up, goes down, changes IP address).
Any python package available in Ubuntu Hardy will do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为最好的方法是通过 dbus-python。
教程稍微涉及了网络接口:
I think the best way to do this is via dbus-python.
The tutorial touches on network interfaces a little bit:
我一直在使用以下代码,
它将提供“向上”网络接口
,例如 eth0、eth2、wlan0
I have been using the following code,
it will give the 'up' network interfaces
e.g. eth0, eth2, wlan0
不,不......你不需要打扰 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.