* Setup for an Access Point
@ 2004-09-06 13:45 Steve Comfort
2004-09-06 14:45 ` René Gallati
0 siblings, 1 reply; 2+ messages in thread
From: Steve Comfort @ 2004-09-06 13:45 UTC (permalink / raw)
To: netfilter
Hi All,
Could anyone perhaps suggest a script to use in conjunction with a
bridge (ebtables/iptables combination)? I am trying (unsuccessfully) to
firewall a linux access point with one wlan and one eth interface...
Best regards
Steve Comfort
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Setup for an Access Point
2004-09-06 13:45 Setup for an Access Point Steve Comfort
@ 2004-09-06 14:45 ` René Gallati
0 siblings, 0 replies; 2+ messages in thread
From: René Gallati @ 2004-09-06 14:45 UTC (permalink / raw)
To: Steve Comfort; +Cc: netfilter
On Mon, 06 Sep 2004 15:45:38 +0200, Steve Comfort <steve@4dllc.com> wrote:
> Hi All,
>
> Could anyone perhaps suggest a script to use in conjunction with a
> bridge (ebtables/iptables combination)? I am trying (unsuccessfully) to
> firewall a linux access point with one wlan and one eth interface...
You need to allow forwarding "between" the bridge and for filtering
"inside" the bridge you'll need physdev-in and physdev-out instead of
-i and -o.
As an example:
# allow forwarding between the interfaces in the bridge but only for ports > 100
BRIDGE_IF=br0
$IPTABLES -A FORWARD -p TCP -i $BRIDGE_IF -o $BRIDGE_IF --dport 1:100 -j DROP
$IPTABLES -A FORWARD -p UDP -i $BRIDGE_IF -o $BRIDGE_IF --dport 1:100 -j DROP
$IPTABLES -A FORWARD -p ALL -i $BRIDGE_IF -o $BRIDGE_IF -j ACCEPT
## at this point, all traffic between ALL the interface in the bridge can be
## forwarded, except for udp and tcp connections going to a
## port <= 100 (just an example, you don't need to include that :) )
## now some further restrictions. All interfaces following must have
## been added using brctl addif to the bridge
## for the example, assume the ifs eth1, ath0 and tap0 are in the bridge
# if coming from device tap0 (VPN) don't allow to go to ath0 (WLAN)
## make new chain
$IPTABLES -N fromtap
## if coming from tap0 jump to chain fromtap
$IPTABLES -A FORWARD -m physdev --physdev-in tap0 -j fromtap
## if going to device ath0, drop
$IPTABLES -A fromtap -m physdev --physdev-out ath0 -j DROP
## if going to device eth0, allow
$IPTABLES -A fromtap -m physdev --physdev-out eth0 -j ACCEPT
## drop everything else
$IPTABLES -A fromtap -j DROP
Of course you can use all other matches that are valid. The important
thing is that generic forwarding of the bridge is allowed (FORWARD -i
bridge -o bridge) and that you need to filter on devices that are *in*
the bridge using physdev. When in doubt, add -j LOG at the end of your
Chains and look what gets logged before (hopefully) the default policy
drop.
Hope that helps
--
C U
- -- ---- ----- -----/\/ René Gallati \/\---- ----- --- -- -
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-09-06 14:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-06 13:45 Setup for an Access Point Steve Comfort
2004-09-06 14:45 ` René Gallati
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.