Reputation: 3
I want to modifying the kernel routing table,but I don't what to do.I browsed some books about linux,but I got nothing. Any suggestions?
Upvotes: -1
Views: 2124
Reputation: 61
NETLINK
is the method for the userspace program to talk to kernel space.
RTNETLINK
is one of type of netlink family. You can imagine that you are sending message to the kernel routing module. You may refer to http://man7.org/linux/man-pages/man7/netlink.7.html
Upvotes: 0