While browing through /proc, I am across /proc/net/fib_trie
which seems to have main routing table of kernel inside it. My question is if modifying it will change the routing table or it is a stat only file?
(I want to modify routing table programmatically and I am total noob in C so looking for other options. File modification will be easy in any language)
In another question, MattSmith mentioned in a comment that modifying the file /proc/net/route
and using ioctls is a solution, Can someone please guide me how?