You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
The table method of RouteAddRequest accepts only a u8 ID, but from the ip route manpage it seems a u32 should be accepted?
Route tables: Linux-2.x can pack routes into several routing tables identified by a number in the range from 1 to 2^32-1 or by name from the file /etc/iproute2/rt_tables By default all normal routes are inserted into the main table (ID 254) and the kernel only uses this table when calculating routes. Values (0, 253, 254, and 255) are reserved for built-in use.
Is there a reason why this only accepts u8? I'm not an expert on Linux networking at all, I was just trying to convert some scripts and unfortunately they used higher table indices.
The text was updated successfully, but these errors were encountered:
The
table
method ofRouteAddRequest
accepts only a u8 ID, but from theip route
manpage it seems au32
should be accepted?Is there a reason why this only accepts u8? I'm not an expert on Linux networking at all, I was just trying to convert some scripts and unfortunately they used higher table indices.
The text was updated successfully, but these errors were encountered: