All of lore.kernel.org
 help / color / mirror / Atom feed
* ip6tables filter breakage.
@ 2014-08-06 19:52 Dave Jones
  2014-08-06 20:13 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Jones @ 2014-08-06 19:52 UTC (permalink / raw)
  To: netdev

After updating to Linus' current tree with todays net/ merge,
I noticed that ip6tables doesn't work any more..

# ip6tables -F
ip6tables v1.4.19.1: can't initialize ip6tables table `filter': No
chain/target/match by that name
Perhaps ip6tables or your kernel needs to be upgraded

My config has CONFIG_IP6_NF_FILTER=m
I also note that ip6table_filter.ko doesn't get auto-loaded now.
But even after modprobing it, I get the same message.

Is there some additional option I now need to enable ?


I was a little surprised by how CONFIG_NF_TABLES is mandatory
for iptables to keep working, even if you don't have nft userspace.
(The only relevant thing in the Kconfig was related to x_tables,
 which I wasn't using).

Perhaps either some select's, or additional help text ?

	Dave

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ip6tables filter breakage.
  2014-08-06 19:52 ip6tables filter breakage Dave Jones
@ 2014-08-06 20:13 ` David Miller
  2014-08-06 22:01   ` Pablo Neira Ayuso
  0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2014-08-06 20:13 UTC (permalink / raw)
  To: davej; +Cc: netdev, netfilter-devel

From: Dave Jones <davej@redhat.com>
Date: Wed, 6 Aug 2014 15:52:22 -0400

CC:'ing netfilter-devel, Dave please do this in the future for
netfilter reports, thanks.

> After updating to Linus' current tree with todays net/ merge,
> I noticed that ip6tables doesn't work any more..
> 
> # ip6tables -F
> ip6tables v1.4.19.1: can't initialize ip6tables table `filter': No
> chain/target/match by that name
> Perhaps ip6tables or your kernel needs to be upgraded
> 
> My config has CONFIG_IP6_NF_FILTER=m
> I also note that ip6table_filter.ko doesn't get auto-loaded now.
> But even after modprobing it, I get the same message.
> 
> Is there some additional option I now need to enable ?
> 
> 
> I was a little surprised by how CONFIG_NF_TABLES is mandatory
> for iptables to keep working, even if you don't have nft userspace.
> (The only relevant thing in the Kconfig was related to x_tables,
>  which I wasn't using).
> 
> Perhaps either some select's, or additional help text ?
> 
> 	Dave
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ip6tables filter breakage.
  2014-08-06 20:13 ` David Miller
@ 2014-08-06 22:01   ` Pablo Neira Ayuso
  2014-08-07  1:13     ` Tom Herbert
  0 siblings, 1 reply; 4+ messages in thread
From: Pablo Neira Ayuso @ 2014-08-06 22:01 UTC (permalink / raw)
  To: David Miller; +Cc: davej, netdev, netfilter-devel, therbert

On Wed, Aug 06, 2014 at 01:13:54PM -0700, David Miller wrote:
> From: Dave Jones <davej@redhat.com>
> Date: Wed, 6 Aug 2014 15:52:22 -0400
> 
> CC:'ing netfilter-devel, Dave please do this in the future for
> netfilter reports, thanks.
> 
> > After updating to Linus' current tree with todays net/ merge,
> > I noticed that ip6tables doesn't work any more..
> > 
> > # ip6tables -F
> > ip6tables v1.4.19.1: can't initialize ip6tables table `filter': No
> > chain/target/match by that name
> > Perhaps ip6tables or your kernel needs to be upgraded
> > 
> > My config has CONFIG_IP6_NF_FILTER=m
> > I also note that ip6table_filter.ko doesn't get auto-loaded now.
> > But even after modprobing it, I get the same message.
> > 
> > Is there some additional option I now need to enable ?
> > 
> > 
> > I was a little surprised by how CONFIG_NF_TABLES is mandatory
> > for iptables to keep working, even if you don't have nft userspace.
> > (The only relevant thing in the Kconfig was related to x_tables,
> >  which I wasn't using).
> > 
> > Perhaps either some select's, or additional help text ?

Cc'ing Tom:

cb1ce2e ipv6: Implement automatic flow label generation on transmit
has allocated socket option 64 which is already reserved by ip6tables.

I'm going to send a patch to fix this.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ip6tables filter breakage.
  2014-08-06 22:01   ` Pablo Neira Ayuso
@ 2014-08-07  1:13     ` Tom Herbert
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Herbert @ 2014-08-07  1:13 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: David Miller, davej, Linux Netdev List, netfilter-devel

Thanks for catch an fix!

On Wed, Aug 6, 2014 at 3:01 PM, Pablo Neira Ayuso <pablo@netfilter.org> wrote:
> On Wed, Aug 06, 2014 at 01:13:54PM -0700, David Miller wrote:
>> From: Dave Jones <davej@redhat.com>
>> Date: Wed, 6 Aug 2014 15:52:22 -0400
>>
>> CC:'ing netfilter-devel, Dave please do this in the future for
>> netfilter reports, thanks.
>>
>> > After updating to Linus' current tree with todays net/ merge,
>> > I noticed that ip6tables doesn't work any more..
>> >
>> > # ip6tables -F
>> > ip6tables v1.4.19.1: can't initialize ip6tables table `filter': No
>> > chain/target/match by that name
>> > Perhaps ip6tables or your kernel needs to be upgraded
>> >
>> > My config has CONFIG_IP6_NF_FILTER=m
>> > I also note that ip6table_filter.ko doesn't get auto-loaded now.
>> > But even after modprobing it, I get the same message.
>> >
>> > Is there some additional option I now need to enable ?
>> >
>> >
>> > I was a little surprised by how CONFIG_NF_TABLES is mandatory
>> > for iptables to keep working, even if you don't have nft userspace.
>> > (The only relevant thing in the Kconfig was related to x_tables,
>> >  which I wasn't using).
>> >
>> > Perhaps either some select's, or additional help text ?
>
> Cc'ing Tom:
>
> cb1ce2e ipv6: Implement automatic flow label generation on transmit
> has allocated socket option 64 which is already reserved by ip6tables.
>
> I'm going to send a patch to fix this.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-07  1:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-06 19:52 ip6tables filter breakage Dave Jones
2014-08-06 20:13 ` David Miller
2014-08-06 22:01   ` Pablo Neira Ayuso
2014-08-07  1:13     ` Tom Herbert

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.