Linux Netfilter discussions
 help / color / mirror / Atom feed
* Iptables without ipt_state using xt_state
@ 2010-01-12 17:34 FiloSottile
  2010-01-12 18:36 ` Mart Frauenlob
  2010-01-12 23:02 ` /dev/rob0
  0 siblings, 2 replies; 8+ messages in thread
From: FiloSottile @ 2010-01-12 17:34 UTC (permalink / raw)
  To: netfilter

I am running on a OpenVZ box with static unmodifiable kernel.
I have no ipt_state and ipt_connmark but i have xt_state and xt_connmark.
I want to build a simple firewall, but when i run that:

# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables: No chain/target/match by that name

How to use xt_state instead ipt_state? Or there is an alternative way to
build firewall?
Thank you

-- 
Filippo Valsorda                             FiloSottile@WikiMedia
PADI Rescue Diver #0907EL9205    DAN ADV O2 Provider + BLS #281664
www.filosottile.info                      GPG 01A82A13@pgp.mit.edu
Key fingerprint 94B6 85B2 AE48 1C47 BD4D  DC5B 16F3 ADA6 01A8 2A13


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

* Re: Iptables without ipt_state using xt_state
  2010-01-12 17:34 Iptables without ipt_state using xt_state FiloSottile
@ 2010-01-12 18:36 ` Mart Frauenlob
  2010-01-12 20:42   ` FiloSottile
  2010-01-12 23:02 ` /dev/rob0
  1 sibling, 1 reply; 8+ messages in thread
From: Mart Frauenlob @ 2010-01-12 18:36 UTC (permalink / raw)
  To: netfilter; +Cc: FiloSottile

On 12.01.2010 18:34, FiloSottile wrote:
> I am running on a OpenVZ box with static unmodifiable kernel.
> I have no ipt_state and ipt_connmark but i have xt_state and xt_connmark.
> I want to build a simple firewall, but when i run that:
> 
> # iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
> iptables: No chain/target/match by that name
> 
> How to use xt_state instead ipt_state? Or there is an alternative way to
> build firewall?
> Thank you
> 

eris:~# modinfo xt_state
filename:
/lib/modules/2.6.24-etchnhalf.1-686/kernel/net/netfilter/xt_state.ko
license:        GPL
author:         Rusty Russell <rusty@rustcorp.com.au>
description:    ip[6]_tables connection tracking state match module
alias:          ipt_state
alias:          ip6t_state
vermagic:       2.6.24-etchnhalf.1-686 SMP mod_unload 686
depends:        x_tables,nf_conntrack

eris:~# grep -w xt_state /lib/modules/$(uname -r)/modules.alias
alias ipt_state xt_state
alias ip6t_state xt_state


xt_state is the successor of ipt_state.

what does modprobe -v xt_state say?
uname -a?


regards

Mart



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

* Re: Iptables without ipt_state using xt_state
  2010-01-12 18:36 ` Mart Frauenlob
@ 2010-01-12 20:42   ` FiloSottile
  2010-01-12 22:43     ` Pascal Hambourg
  2010-01-13  8:21     ` Patrick McHardy
  0 siblings, 2 replies; 8+ messages in thread
From: FiloSottile @ 2010-01-12 20:42 UTC (permalink / raw)
  To: netfilter

Mart Frauenlob ha scritto:
> On 12.01.2010 18:34, FiloSottile wrote:
>   
>> I am running on a OpenVZ box with static unmodifiable kernel.
>> I have no ipt_state and ipt_connmark but i have xt_state and xt_connmark.
>> I want to build a simple firewall, but when i run that:
>>
>> # iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
>> iptables: No chain/target/match by that name
>>
>> How to use xt_state instead ipt_state? Or there is an alternative way to
>> build firewall?
>> Thank you
>>     
> eris:~# modinfo xt_state
> filename:
> /lib/modules/2.6.24-etchnhalf.1-686/kernel/net/netfilter/xt_state.ko
> license:        GPL
> author:         Rusty Russell <rusty@rustcorp.com.au>
> description:    ip[6]_tables connection tracking state match module
> alias:          ipt_state
> alias:          ip6t_state
> vermagic:       2.6.24-etchnhalf.1-686 SMP mod_unload 686
> depends:        x_tables,nf_conntrack
>   
modinfo: could not open
/lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep
> eris:~# grep -w xt_state /lib/modules/$(uname -r)/modules.alias
> alias ipt_state xt_state
> alias ip6t_state xt_state
>   
root@vps:~# ls /lib/modules/*
root@vps:~#
> xt_state is the successor of ipt_state.
>
> what does modprobe -v xt_state say?
>   
WARNING: Deprecated config file /etc/modprobe.conf, all config files
belong into /etc/modprobe.d/.
FATAL: Could not load
/lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep: No such
file or directory
> uname -a?
>   
Linux vps.fvnetwork.it 2.6.18-128.1.1.el5.028stab062.3PAE #1 SMP Tue May
5 17:50:37 MSD 2009 i686 GNU/Linux
> regards
>
> Mart
>
>   
As i said, i am on a OpenVZ VPS, and i cannot modify kernel and modules.
The only info that i have is that:

root@vps:~# ls /lib/xtables/ | grep state
libxt_state.so

Does it assure that i have the xt_state module loaded? In case how can i
verify if it works?
And in case it doesn't work, how can i get a simple one-host firewall?

Thank you

-- 
Filippo Valsorda                             FiloSottile@WikiMedia
Linux registered user #492189        Ubuntu registered user #27865
PADI Rescue Diver #0907EL9205    DAN ADV O2 Provider + BLS #281664
www.filosottile.info                      GPG 01A82A13@pgp.mit.edu
Key fingerprint 94B6 85B2 AE48 1C47 BD4D  DC5B 16F3 ADA6 01A8 2A13


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

* Re: Iptables without ipt_state using xt_state
  2010-01-12 20:42   ` FiloSottile
@ 2010-01-12 22:43     ` Pascal Hambourg
  2010-01-13  8:21     ` Patrick McHardy
  1 sibling, 0 replies; 8+ messages in thread
From: Pascal Hambourg @ 2010-01-12 22:43 UTC (permalink / raw)
  To: netfilter

Hello,

FiloSottile a écrit :
> 
> root@vps:~# ls /lib/xtables/ | grep state
> libxt_state.so
> 
> Does it assure that i have the xt_state module loaded?

No. This is a shared library, just a piece of the userland iptables.
If you have access, you can check the kernel config file in /boot or in
/proc/config.gz.

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

* Re: Iptables without ipt_state using xt_state
  2010-01-12 17:34 Iptables without ipt_state using xt_state FiloSottile
  2010-01-12 18:36 ` Mart Frauenlob
@ 2010-01-12 23:02 ` /dev/rob0
  1 sibling, 0 replies; 8+ messages in thread
From: /dev/rob0 @ 2010-01-12 23:02 UTC (permalink / raw)
  To: netfilter

On Tue, Jan 12, 2010 at 06:34:21PM +0100, FiloSottile wrote:
> I am running on a OpenVZ box with static unmodifiable kernel.

I suspect that this comes down to being a support issue with your
service provider. Did you ask them?
-- 
    Offlist mail to this address is discarded unless
    "/dev/rob0" or "not-spam" is in Subject: header

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

* Re: Iptables without ipt_state using xt_state
  2010-01-12 20:42   ` FiloSottile
  2010-01-12 22:43     ` Pascal Hambourg
@ 2010-01-13  8:21     ` Patrick McHardy
  1 sibling, 0 replies; 8+ messages in thread
From: Patrick McHardy @ 2010-01-13  8:21 UTC (permalink / raw)
  To: FiloSottile; +Cc: netfilter

FiloSottile wrote:
> Mart Frauenlob ha scritto:
>> what does modprobe -v xt_state say?
>>   
> WARNING: Deprecated config file /etc/modprobe.conf, all config files
> belong into /etc/modprobe.d/.
> FATAL: Could not load
> /lib/modules/2.6.18-128.1.1.el5.028stab062.3PAE/modules.dep: No such
> file or directory

> As i said, i am on a OpenVZ VPS, and i cannot modify kernel and modules.

The module needs to be loaded in the initial namespace to
be available in the VPS.

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

* Re: Iptables without ipt_state using xt_state
@ 2010-01-13 12:50 FiloSottile
  2010-01-16 12:34 ` Mart Frauenlob
  0 siblings, 1 reply; 8+ messages in thread
From: FiloSottile @ 2010-01-13 12:50 UTC (permalink / raw)
  To: netfilter

I cannot verify if the module is loaded from the config, but if it is
loaded the command

# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

should work...
So, if don't have that module loaded, how can i do to get a firewall
configured?

Thank you

-- 
Filippo Valsorda                             FiloSottile@WikiMedia
Linux registered user #492189        Ubuntu registered user #27865
PADI Rescue Diver #0907EL9205    DAN ADV O2 Provider + BLS #281664
www.filosottile.info                      GPG 01A82A13@pgp.mit.edu
Key fingerprint 94B6 85B2 AE48 1C47 BD4D  DC5B 16F3 ADA6 01A8 2A13


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

* Re: Iptables without ipt_state using xt_state
  2010-01-13 12:50 FiloSottile
@ 2010-01-16 12:34 ` Mart Frauenlob
  0 siblings, 0 replies; 8+ messages in thread
From: Mart Frauenlob @ 2010-01-16 12:34 UTC (permalink / raw)
  Cc: FiloSottile, netfilter

On 13.01.2010 13:50, FiloSottile wrote:
> I cannot verify if the module is loaded from the config, but if it is
> loaded the command
> 
> # iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
> 
> should work...
> So, if don't have that module loaded, how can i do to get a firewall
> configured?

Patrick McHardy already pointed it out, but this may help to understand:

http://wiki.openvz.org/Setting_up_an_iptables_firewall

chapter:
'Setting up a firewall that allows per-container configuration '


If you can't do it, it comes down to what /dev/rob0 said:

> I suspect that this comes down to being a support issue with your
> service provider. Did you ask them?

regards

Mart

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

end of thread, other threads:[~2010-01-16 12:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-12 17:34 Iptables without ipt_state using xt_state FiloSottile
2010-01-12 18:36 ` Mart Frauenlob
2010-01-12 20:42   ` FiloSottile
2010-01-12 22:43     ` Pascal Hambourg
2010-01-13  8:21     ` Patrick McHardy
2010-01-12 23:02 ` /dev/rob0
  -- strict thread matches above, loose matches on Subject: below --
2010-01-13 12:50 FiloSottile
2010-01-16 12:34 ` Mart Frauenlob

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox