All of lore.kernel.org
 help / color / mirror / Atom feed
* Prob with hook reg in iptables
@ 2006-06-01  6:02 varun
  2006-06-01 12:09   ` Sietse van Zanen
  0 siblings, 1 reply; 3+ messages in thread
From: varun @ 2006-06-01  6:02 UTC (permalink / raw)
  To: netfilter-devel, netfilter

Hi all,

            I have a setup where iam using iptables. I have squid 
running on my statem. Now the scenario is that this sytem is my router. 
I have eth0 connected to LAN, eth1 to Wan 1 and eth2 to Wan2. In the 
same box i also have a propratery FW which has Load Balancing feature.  
Now my intention is i start iptables first so that it registers with 
netfilter hook first.
So policy is like this
      iptables -t nat -D PREROUTING -i eth0 -p tcp -j REDIRECT --to-port 
8080
 In the port 8080 i have squid running.
 As far as filtering of iptables is concerned it is allow all.

     So my basic FW functionality is concerned it is taken care by My 
Propratery FW. It will do  the natting for both wan interfaces in Load 
balance.

  Now what i expect is that iptables will get all the packets first and 
then packet will go to my firewall and might get dropped if ACL matches 
else it is success. Once success i expect the packet to be redirected to 
port 8080 where squid can take control.

 Now my problem is that even though iptables is registered first when i 
log the packets using iptables for the above rule i find that no packets 
are comming to iptables there by no packets are going to proxy. I get 
only some multicast packets.

 From lan iam able to browse well and all my traffic is going tru my FW 
rather that first through iptables. Why?

As far as my knowledge first registered module get the packet first and 
if the action is NF_ACCEPT the the next registered module to the hook 
gets it right? If yes why is it not happening? Another thing is what 
exactly does redirect do does it mangel the packet?

Please help me in this?

Varun


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

* RE: Prob with hook reg in iptables
  2006-06-01  6:02 Prob with hook reg in iptables varun
@ 2006-06-01 12:09   ` Sietse van Zanen
  0 siblings, 0 replies; 3+ messages in thread
From: Sietse van Zanen @ 2006-06-01 12:09 UTC (permalink / raw)
  To: varun, netfilter-devel, netfilter

Proprietary firewalls usually hook themselves very low in the kernel. Check the docs of you FW software.
I wouldn't expect this to be working. And why use both iptables AND other FW software, that's just asking for trouble IMHO.
 
-Sietse

________________________________

From: netfilter-bounces@lists.netfilter.org on behalf of varun
Sent: Thu 01-Jun-06 8:02
To: netfilter-devel@lists.netfilter.org; netfilter@lists.netfilter.org
Subject: Prob with hook reg in iptables



Hi all,

            I have a setup where iam using iptables. I have squid
running on my statem. Now the scenario is that this sytem is my router.
I have eth0 connected to LAN, eth1 to Wan 1 and eth2 to Wan2. In the
same box i also have a propratery FW which has Load Balancing feature. 
Now my intention is i start iptables first so that it registers with
netfilter hook first.
So policy is like this
      iptables -t nat -D PREROUTING -i eth0 -p tcp -j REDIRECT --to-port
8080
 In the port 8080 i have squid running.
 As far as filtering of iptables is concerned it is allow all.

     So my basic FW functionality is concerned it is taken care by My
Propratery FW. It will do  the natting for both wan interfaces in Load
balance.

  Now what i expect is that iptables will get all the packets first and
then packet will go to my firewall and might get dropped if ACL matches
else it is success. Once success i expect the packet to be redirected to
port 8080 where squid can take control.

 Now my problem is that even though iptables is registered first when i
log the packets using iptables for the above rule i find that no packets
are comming to iptables there by no packets are going to proxy. I get
only some multicast packets.

 From lan iam able to browse well and all my traffic is going tru my FW
rather that first through iptables. Why?

As far as my knowledge first registered module get the packet first and
if the action is NF_ACCEPT the the next registered module to the hook
gets it right? If yes why is it not happening? Another thing is what
exactly does redirect do does it mangel the packet?

Please help me in this?

Varun





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

* RE: Prob with hook reg in iptables
@ 2006-06-01 12:09   ` Sietse van Zanen
  0 siblings, 0 replies; 3+ messages in thread
From: Sietse van Zanen @ 2006-06-01 12:09 UTC (permalink / raw)
  To: varun, netfilter-devel, netfilter

Proprietary firewalls usually hook themselves very low in the kernel. Check the docs of you FW software.
I wouldn't expect this to be working. And why use both iptables AND other FW software, that's just asking for trouble IMHO.
 
-Sietse

________________________________

From: netfilter-bounces@lists.netfilter.org on behalf of varun
Sent: Thu 01-Jun-06 8:02
To: netfilter-devel@lists.netfilter.org; netfilter@lists.netfilter.org
Subject: Prob with hook reg in iptables



Hi all,

            I have a setup where iam using iptables. I have squid
running on my statem. Now the scenario is that this sytem is my router.
I have eth0 connected to LAN, eth1 to Wan 1 and eth2 to Wan2. In the
same box i also have a propratery FW which has Load Balancing feature. 
Now my intention is i start iptables first so that it registers with
netfilter hook first.
So policy is like this
      iptables -t nat -D PREROUTING -i eth0 -p tcp -j REDIRECT --to-port
8080
 In the port 8080 i have squid running.
 As far as filtering of iptables is concerned it is allow all.

     So my basic FW functionality is concerned it is taken care by My
Propratery FW. It will do  the natting for both wan interfaces in Load
balance.

  Now what i expect is that iptables will get all the packets first and
then packet will go to my firewall and might get dropped if ACL matches
else it is success. Once success i expect the packet to be redirected to
port 8080 where squid can take control.

 Now my problem is that even though iptables is registered first when i
log the packets using iptables for the above rule i find that no packets
are comming to iptables there by no packets are going to proxy. I get
only some multicast packets.

 From lan iam able to browse well and all my traffic is going tru my FW
rather that first through iptables. Why?

As far as my knowledge first registered module get the packet first and
if the action is NF_ACCEPT the the next registered module to the hook
gets it right? If yes why is it not happening? Another thing is what
exactly does redirect do does it mangel the packet?

Please help me in this?

Varun

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

end of thread, other threads:[~2006-06-01 12:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-01  6:02 Prob with hook reg in iptables varun
2006-06-01 12:09 ` Sietse van Zanen
2006-06-01 12:09   ` Sietse van Zanen

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.