summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2003-11-30 18:29:49 +0000
committerBart De Schuymer <bdschuym@pandora.be>2003-11-30 18:29:49 +0000
commitf3e0147a5611217a77be977f3859002a46219d70 (patch)
treef56610d5789fc6a1757737c0a19fcda1d064a165 /docs
parent2a6775bd1d5d81c578f78d10ffe4e757153f326e (diff)
*** empty log message ***
Diffstat (limited to 'docs')
-rw-r--r--docs/ebtables-faq.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/ebtables-faq.html b/docs/ebtables-faq.html
index bb44344..80e1a97 100644
--- a/docs/ebtables-faq.html
+++ b/docs/ebtables-faq.html
@@ -7,7 +7,7 @@
<LINK rel="STYLESHEET" type="text/css" href="ebtables.css">
<META name="description" content=
"Ethernet Bridge Tables Frequently Asked Questions">
- <META name="author" content="Nick Fedchik">
+ <META name="author" content="Bart De Schuymer and Nick Fedchik">
<META name="keywords" content=
"Linux, netfilter, firewall, bridge, brouter, ebtables, iptables">
<META name="keywords" content=
@@ -225,6 +225,13 @@ route -A -net 172.16.1.0 netmask 255.255.255.0 dev br0
wouldn't know where to send 172.16.1.xx traffic). It is possible that the mentioned
error message gets printed on the screen or in your logs when this routing table entry is omitted.
</DD>
+ <DT>I'm trying to create a brouter that routes all IP traffic using the command "ebtables -t broute -A BROUTING -p IPv4 -j DROP", but it's not working...</DT>
+ <DD>The DROP target in the BROUTING chain doesn't change the MAC destination to the bridge device, by default. You need
+ to explicitly do this by using the redirect target:
+<PRE>
+ebtables -t broute -A BROUTING -p IPv4 -j redirect --redirect-target DROP
+</PRE>
+ </DD>
</DL>
<BR>
<A class=navbar href="#top">[Back to the top]</A>