Open ghananigans opened 4 years ago
Related #508, #578, #595, #3911
cc: @tamird @hbhasker @brunowonka
Does this issue intend to cover ip rule
(policy-based routing or RPDB) or should we create a new one? They're not exactly the same thing, but multiple tables and policy are also part of "more advanced routing decisions"
RPDB also doesn't exist in gVisor so we probably should file a separate bug for that.
The current routing table an array of
tcpip.Route
is basic and supports simple use cases.More advanced use cases such as what
ip route
supports can not be done with our current implementation. E.g., marking routes with MTUs or marking routesas unreachable, blackholes, prohibited, broadcast, local, onlink etc. More examples can be found in documentation forip route
(https://linux.die.net/man/8/ip).