diff options
author | Robert Greenwalt <rgreenwalt@google.com> | 2011-11-23 11:25:39 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-23 11:25:39 -0800 |
commit | eaeb4f4e3c914550d28a042fb3d752efcf20ab9e (patch) | |
tree | 24b933974484d6fe2e1b755ef7fd7e43ac44b7c1 /cmds | |
parent | 8bb56180d208b9264e5a56b49fe06b8471ccaced (diff) | |
parent | e83d181606981bcacd78e55b293fe9fa95b2551d (diff) | |
download | frameworks_base-eaeb4f4e3c914550d28a042fb3d752efcf20ab9e.zip frameworks_base-eaeb4f4e3c914550d28a042fb3d752efcf20ab9e.tar.gz frameworks_base-eaeb4f4e3c914550d28a042fb3d752efcf20ab9e.tar.bz2 |
Merge "Fix some policy-base routing issues." into ics-mr1
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/dumpstate/dumpstate.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c index fe81d2b..395c28b 100644 --- a/cmds/dumpstate/dumpstate.c +++ b/cmds/dumpstate/dumpstate.c @@ -120,6 +120,12 @@ static void dumpstate() { dump_file("NETWORK ROUTES", "/proc/net/route"); dump_file("NETWORK ROUTES IPV6", "/proc/net/ipv6_route"); + run_command("IP RULES", 10, "ip", "rule", "show", NULL); + run_command("IP RULES v6", 10, "ip", "-6", "rule", "show", NULL); + run_command("ROUTE TABLE 60", 10, "ip", "route", "show", "table", "60", NULL); + run_command("ROUTE TABLE 61 v6", 10, "ip", "-6", "route", "show", "table", "60", NULL); + run_command("ROUTE TABLE 61", 10, "ip", "route", "show", "table", "61", NULL); + run_command("ROUTE TABLE 61 v6", 10, "ip", "-6", "route", "show", "table", "61", NULL); dump_file("ARP CACHE", "/proc/net/arp"); run_command("IPTABLES", 10, "su", "root", "iptables", "-L", "-nvx", NULL); run_command("IP6TABLES", 10, "su", "root", "ip6tables", "-L", "-nvx", NULL); |