查询、修改接口高级信息
我需要执行以下任务:
- 列出接口
- 设置/删除/列出 IPv6 地址
- 添加/删除路由条目
AFAIK 我无法使用 ioctl
我需要使用 netlink。问题是我找不到如何使用它的良好描述(大多数 netlink 教程都集中在如何创建连接)。 strace
也没有被证明有用。
I need to do following tasks:
- List the interfaces
- Set/remove/list IPv6 address
- Add/remove routing entries
AFAIK I cannot use ioctl
I need to use netlink. The problem is that I couldn't find good description how to use it (most netlink tutorials concentrate on how to create connection). strace
also didn't prove useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你看看 iproute2 的来源。它具有您描述的所有功能并使用 netlink。
I recommend you look at the sources of iproute2. It has all the functionality you describe and uses netlink.