ovs-bugtool: Add iptables output for all tables.
authorGurucharan Shetty <gshetty@nicira.com>
Mon, 25 Mar 2013 15:41:18 +0000 (08:41 -0700)
committerGurucharan Shetty <gshetty@nicira.com>
Mon, 25 Mar 2013 15:41:18 +0000 (08:41 -0700)
Currently we list all the rules only from the 'filter' table.
Include the rules from all the other tables too.

Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
utilities/bugtool/ovs-bugtool.in

index 19b3378..ffaf753 100755 (executable)
@@ -549,7 +549,8 @@ exclude those logs from the archive.
     cmd_output(CAP_NETWORK_STATUS, [NETSTAT, '-an'])
     for dir in DHCP_LEASE_DIR:
         tree_output(CAP_NETWORK_STATUS, dir)
-    cmd_output(CAP_NETWORK_STATUS, [IPTABLES, '-nL'])
+    for table in ['filter', 'nat', 'mangle', 'raw', 'security']:
+        cmd_output(CAP_NETWORK_STATUS, [IPTABLES, '-t', table, '-nL'])
     for p in os.listdir('/sys/class/net/'):
         try:
             f = open('/sys/class/net/%s/type' % p, 'r')