Linux Netfilter discussions
 help / color / mirror / Atom feed
* Bridging firewall setup
@ 2003-12-16 16:55 Chris Brown
  2003-12-16 17:07 ` Antony Stone
  2003-12-16 17:34 ` Richard Doyle
  0 siblings, 2 replies; 6+ messages in thread
From: Chris Brown @ 2003-12-16 16:55 UTC (permalink / raw)
  To: netfilter

Hi all, new to the list. I'm trying to get a bridging firewall setup on 
a RH 9 box and I'm not having much luck. The bridge itself works fine 
but when I try to add rules using netfilter they seem to be ignored and 
packets I'm trying to block go on through. I've been digging through the 
list archives, google, various forums and HOWTOs and I still haven't 
found the answer so I'm hoping someone here can point out what I'm doing 
wrong :)

Here's what I have. The bridge is nothing special, its not the gateway 
and it doesn't do NAT. It does do traffic shapping but turning that part 
on/off didn't seem to make a difference here.

I decided to start simple by blocking some (presumably) msblast traffic 
on port 135. From the HOWTOs I've been reading all rules on the bridge 
should be in chain FORWARD so I did:

iptables -F
iptables -X # RH has some user-defined chains and i just dumped those
iptables -A FORWARD -p udp --dport 135 -j DROP
iptables -A FORWARD -p tcp --dport 135 -j DROP

Nothing ... traffic still gets through ... so I explicitly added the 
interface

iptables -i br0 -A FORWARD -p udp --dport 135 -j DROP
# same for tcp

Still nothing.
Next I tried filtering connection attempts to mysql from the outside 
world (something I want to do anyway) (IP address hidden to protect the 
innocent :) )
iptables -A FORWARD -d x.x.x.x/24 -p tcp --dport 3306 -j DROP

Tried to connect to mysql from the outside world. No luck I can still 
get to it.

For grins I also tried the rules on INPUT and on OUTPUT with the same 
results. I tried enabling ip forwarding which some of HOWTOs I read said 
was an optional step but that didn't make a difference either, that also 
seemed to be if I were to be using the machine as the gateway. A friend 
of mine even suggested using -t nat -A PREROUTING which didn't make a 
lot of sense to me but I tried it anyway, still with the same result.

I don't see any errors when I execute the commands and I can see all the 
rules in iptables -L but they don't seem to do anything ... its very 
perplexing, any ideas?

thanks in advance
Chris

-- 
Chris Brown
System Administrator / Web Application Developer
Wavetex Inc.
903-533-1700
http://wavetex.com/



^ permalink raw reply	[flat|nested] 6+ messages in thread
* RE: Bridging firewall setup
@ 2003-12-16 19:58 bmcdowell
  0 siblings, 0 replies; 6+ messages in thread
From: bmcdowell @ 2003-12-16 19:58 UTC (permalink / raw)
  To: netfilter


This should be emphasized, as there seems to be a good deal of confusion about what's included in the kernel and what isn't.

1)  Bridging is included in the kernel
2)  Using iptables (or ebtables for that matter) to filter bridge traffic is not included and must be patched in.

Check out http://bridge.sourceforge.net/docs.html or http://ebtables.sourceforge.net/documentation.html for more details.

-----Original Message-----
From: netfilter-admin@lists.netfilter.org
[mailto:netfilter-admin@lists.netfilter.org]On Behalf Of Richard Doyle
Sent: Tuesday, December 16, 2003 11:35 AM
To: netfilter@lists.netfilter.org
Subject: Re: Bridging firewall setup


On Tue, 2003-12-16 at 08:55, Chris Brown wrote:
> Hi all, new to the list. I'm trying to get a bridging firewall setup on 
> a RH 9 box and I'm not having much luck. The bridge itself works fine 
> but when I try to add rules using netfilter they seem to be ignored and 
> packets I'm trying to block go on through. I've been digging through the 
> list archives, google, various forums and HOWTOs and I still haven't 
> found the answer so I'm hoping someone here can point out what I'm doing 
> wrong :)
Did you patch the kernel to support this? The bridging code in the stock
2.4 kernels doesn't support firewalling,




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

end of thread, other threads:[~2003-12-16 19:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-12-16 16:55 Bridging firewall setup Chris Brown
2003-12-16 17:07 ` Antony Stone
2003-12-16 17:52   ` Chris Brown
2003-12-16 19:31     ` Mark Weaver
2003-12-16 17:34 ` Richard Doyle
  -- strict thread matches above, loose matches on Subject: below --
2003-12-16 19:58 bmcdowell

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