* ebtables does not forward net request, help please.
@ 2012-07-08 3:29 gmail
2012-07-08 5:20 ` Sven-Haegar Koch
0 siblings, 1 reply; 4+ messages in thread
From: gmail @ 2012-07-08 3:29 UTC (permalink / raw)
To: netfilter
Hi all,
I need some help of ebtables behavior. Here is my working environment.
kernel : 2.6.35
we have 4 interfaces eth0/eth1/eth2/eth3 and added to br0 using brctl.
brctl br0 eth0
brctl br0 eth2
Now I use ebtables to control packaging forwarding.
1, use ebtables to filter out all packaging except the special host mac.
ebtable -A FORWARD -s ! 00:11:22:33:44:55 -d ! 00:11:22::33:44:55 -j DROP
2, using ping tool to check the network connection from eth0 side to eth2 side. (This step it worked fine.)
3, using ebtables to deny all forwarding.
zero ebtables...
ebtables -P FORWARD DROP
4, using ping tool to check the network connection from eth0 side to eth2 side again. (This step, it all worked fine. it cannot connect each other from eth0 to eth2.)
5, Now again allow this specific mac to travel between eth0 and eth2.
ebtable -A FORWARD -s ! 00:11:22:33:44:55 -d ! 00:11:22::33:44:55 -j DROP
6, Now again, using ping tool to check network connectivity. (eth0-eth2).
The expected result is that network connection between eth0 and eth2 should be available. But unfortuntly sometimes the connectivity is not available. This happends about 2-3 times when I tried this for 10 times. This is a little strange to me. And the network is only available after the host send a ARP request through eth0, only then the network becomes available again.
Please can anyone help about this? Thanks a lot.
Ivan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ebtables does not forward net request, help please.
2012-07-08 3:29 ebtables does not forward net request, help please gmail
@ 2012-07-08 5:20 ` Sven-Haegar Koch
[not found] ` <CAGHLOKDWC-99cXnSPezVxnbYyW9Y4_b9-o27ncYF8O7Rc9G1aA@mail.gmail.com>
0 siblings, 1 reply; 4+ messages in thread
From: Sven-Haegar Koch @ 2012-07-08 5:20 UTC (permalink / raw)
To: gmail; +Cc: netfilter
On Sun, 8 Jul 2012, gmail wrote:
> 5, Now again allow this specific mac to travel between eth0 and eth2.
> ebtable -A FORWARD -s ! 00:11:22:33:44:55 -d ! 00:11:22::33:44:55 -j DROP
> 6, Now again, using ping tool to check network connectivity. (eth0-eth2).
> The expected result is that network connection between eth0 and eth2 should be available. But unfortuntly sometimes the connectivity is not available. This happends about 2-3 times when I tried this for 10 times. This is a little strange to me. And the network is only available after the host send a ARP request through eth0, only then the network becomes available again.
> Please can anyone help about this? Thanks a lot.
Did you forget about the ARP queries from the other boxes asking for the
ip of the box with the mac 00:11:22:33:44:55?
They come from the query hosts mac and go to the broadcast
(ff:ff:ff:ff:ff:ff), asking for the mac of ip a.b.c.d. Those get dropped
with your above setup and never reaching your special host, so the other
hosts do not know to which mac to send the packets.
c'ya
sven-haegar
--
Three may keep a secret, if two of them are dead.
- Ben F.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-09 14:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-08 3:29 ebtables does not forward net request, help please gmail
2012-07-08 5:20 ` Sven-Haegar Koch
[not found] ` <CAGHLOKDWC-99cXnSPezVxnbYyW9Y4_b9-o27ncYF8O7Rc9G1aA@mail.gmail.com>
2012-07-08 7:23 ` gmail
2012-07-09 14:53 ` is it possiable to filter multiple MAC address using -s/-d ? gmail
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).