On Mon, Mar 25, 2013 at 10:56 AM, Gurucharan Shetty <shet...@nicira.com> wrote: > 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 <gshe...@nicira.com> > --- > utilities/bugtool/ovs-bugtool.in | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/utilities/bugtool/ovs-bugtool.in > b/utilities/bugtool/ovs-bugtool.in > index 19b3378..ffaf753 100755 > --- a/utilities/bugtool/ovs-bugtool.in > +++ b/utilities/bugtool/ovs-bugtool.in > @@ -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') > -- > 1.7.9.5
Looks good to me. _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev