SIOCADDRT 的 IPv6 等效项是什么?

发布于 2024-11-07 13:41:30 字数 54 浏览 0 评论 0原文

SIOCADDRT 可以用来添加 IPv6 路由吗?如果不是,ioctl() 的等价物是什么?

Can SIOCADDRT be used to add IPv6 routes? If not, what's the equivalent for ioctl()?

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

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

发布评论

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

评论(3

灼疼热情 2024-11-14 13:41:30

是的,您可以使用 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.

情话已封尘 2024-11-14 13:41:30

我不知道,但

# strace ip route add <ipv6-route>

应该告诉你。

I don't know, but

# strace ip route add <ipv6-route>

should tell you.

三岁铭 2024-11-14 13:41:30

不在程序中编写低级网络配置代码,而是将任务委托给现有的系统实用程序,将是一种非常好的解决方案。

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.

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