can I read/write the routing table in C without using system() command?


http://stackoverflow.com/questions/6358431/can-i-read-write-the-routing-table-in-c-without-using-system-command


You can open a netlink socket and send route update messages. There is an article about how to do this.


-----------------------------------------------------------------------------------------------------------------------------------


You can also run "strace route add ..." to see how the route command does it.

On my system, it uses ioctl with SIOCADDRT. A little searching turns up some sample code.

Oddly, the best documentation I have found is from IBM's AS400 man pages.

If you just want to read the routing table, you can open and read /proc/net/route. (Again, strace shows that this is how the route command does it.) The hex numbers are 32-bit IP addresses in machine-endian form. Try cat /proc/net/route.


posted @   张同光  阅读(89)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
点击右上角即可分享
微信分享提示