How do I delete network routes on Android? Via an adb shell as root, I ran cat /proc/net/route to look at the routing table and then route del wlan0 to delete all wlan0 routes, but I get the error: "Invalid argument".
Tell me more
×
Android Enthusiasts Stack Exchange is a question and answer site for
enthusiasts and power users of the Android operating system. It's 100% free, no registration required.
|
|
|||
closed as too localized by Izzy, Liam W, Zuul, t0mm13b, Bryan Denny♦ Dec 27 '12 at 16:07
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
route del <interface>, which is not valid. Please check the syntax e.g. at the man page. – Izzy Sep 27 '12 at 11:45