En Linux puedo escribir algo como echo 202 my_table >> /etc/iproute2/rt_tables
y voila, puedo usar mi_tabla en comandos como ip route add 1.1.1.1 dev eth0 table my_table
.
Pero mi teléfono Android rooteado no tiene /etc/iproute2
. E incluso si creo este directorio ( mkdir -p /etc/iproute2/
), entonces echo 202 my_table >> /etc/iproute2/rt_tables
y ejecuta ip route add 1.1.1.1 dev eth0 table my_table
Recibo :
Error: argument "my_table" is wrong: "table" value is invalid
¿Cómo crear y eliminar tablas de rutas en Android?