From 491851ee43dcd1a797a77e4e9d24d018696c4fe0 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Wed, 23 Sep 2015 00:06:42 +0200 Subject: rule: filter out tables depending on family # nft list tables ip table ip filter # nft list tables ip6 table ip6 filter Closes: http://bugzilla.netfilter.org/show_bug.cgi?id=1033 Signed-off-by: Pablo Neira Ayuso --- src/rule.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/rule.c b/src/rule.c index 43cc4a8a..92b83f08 100644 --- a/src/rule.c +++ b/src/rule.c @@ -1013,10 +1013,15 @@ static int do_list_tables(struct netlink_ctx *ctx, struct cmd *cmd) { struct table *table; - list_for_each_entry(table, &table_list, list) + list_for_each_entry(table, &table_list, list) { + if (cmd->handle.family != NFPROTO_UNSPEC && + cmd->handle.family != table->handle.family) + continue; + printf("table %s %s\n", family2str(table->handle.family), table->handle.table); + } return 0; } -- cgit v1.2.3