SIOCADDRT 的 IPv6 等效项是什么?
SIOCADDRT 可以用来添加 IPv6 路由吗?如果不是,ioctl() 的等价物是什么?
Can SIOCADDRT be used to add IPv6 routes? If not, what's the equivalent for ioctl()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,您可以使用 SIOCADDRT。只需为其创建 AF_INET6 套接字即可。例如,看一下“route”命令的 Busybox 实现。还可以考虑使用 Netlink,也许通过 libnl。
抱歉回答晚了,我自己正在寻找这个,发现接受的答案有点缺乏。
Yes, you can use SIOCADDRT. Just create AF_INET6 socket for it. For example, take a look at Busybox implementation of "route" command. Also consider using Netlink instead, perhaps via libnl.
Sorry for late answer, I was looking for this myself and found the accepted answer a bit lacking.
我不知道,但
应该告诉你。
I don't know, but
should tell you.
不在程序中编写低级网络配置代码,而是将任务委托给现有的系统实用程序,将是一种非常好的解决方案。
Not writing low-level network configuration code in your program, but instead delegating the task to the existing system utilities, would be one very good solution.