* Re: arptables
[not found] <OFC765E855.7B78AC76-ONCA256CC4.002095DB@au.ibm.com>
@ 2003-02-05 9:21 ` Harald Welte
0 siblings, 0 replies; 5+ messages in thread
From: Harald Welte @ 2003-02-05 9:21 UTC (permalink / raw)
To: Shaun Butler; +Cc: Netfilter Mailinglist
[-- Attachment #1: Type: text/plain, Size: 767 bytes --]
On Wed, Feb 05, 2003 at 04:59:55PM +1100, Shaun Butler wrote:
> Harold
>
> I noticed a posting on one of the Netfilter lists where you asked about a
> working example of the arptables extension of iptables. Have you managed
> to get your hands on such an example or documentation or anything that can
> point me in the right direction?
arptables was developed by David Miller <davem@redhat.com>, outside the
netfilter development team.
> Shaun Butler
--
- Harald Welte / laforge@gnumonks.org http://www.gnumonks.org/
============================================================================
"If this were a dictatorship, it'd be a heck of a lot easier, just so long
as I'm the dictator." -- George W. Bush Dec 18, 2000
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* redirect a HTTP-connection only once
@ 2002-11-15 20:28 Karl Gruber
2002-11-19 6:47 ` arptables Toshihiro Sonoda
0 siblings, 1 reply; 5+ messages in thread
From: Karl Gruber @ 2002-11-15 20:28 UTC (permalink / raw)
To: netfilter
Hi!
I want to know if it is possible that an iptables-rule matches only once. I
want to implement a redirection of the first http-request of an user.
thanx,
Karl
^ permalink raw reply [flat|nested] 5+ messages in thread* arptables
2002-11-15 20:28 redirect a HTTP-connection only once Karl Gruber
@ 2002-11-19 6:47 ` Toshihiro Sonoda
2002-11-22 10:18 ` arptables Cedric Blancher
0 siblings, 1 reply; 5+ messages in thread
From: Toshihiro Sonoda @ 2002-11-19 6:47 UTC (permalink / raw)
To: netfilter
hi,
I can find the arp_filter.c and arp_tables.c in "net/ipv4/netfilter/" of kernel tree (2.4.18).
But, I can not find the document about how to use the arp filtering.
How can I use the arp filtering in linux.
Please teach me.
regard, toshihiro.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: arptables
2002-11-19 6:47 ` arptables Toshihiro Sonoda
@ 2002-11-22 10:18 ` Cedric Blancher
2002-11-22 16:01 ` arptables Ben Russo
0 siblings, 1 reply; 5+ messages in thread
From: Cedric Blancher @ 2002-11-22 10:18 UTC (permalink / raw)
To: Toshihiro Sonoda; +Cc: netfilter
Le mar 19/11/2002 à 07:47, Toshihiro Sonoda a écrit :
> I can find the arp_filter.c and arp_tables.c in "net/ipv4/netfilter/" of kernel tree (2.4.18).
> But, I can not find the document about how to use the arp filtering.
> How can I use the arp filtering in linux.
Akaik, there's still no userland tool to configure ARP filtering into
kernel (aka arptables tool) and associated library.
So the first step would be implementing kernel/userland interface...
--
Cédric Blancher <blancher@cartel-securite.fr>
Consultant en sécurité des systèmes et réseaux - Cartel Sécurité
Tél: +33 (0)1 44 06 97 87 - Fax: +33 (0)1 44 06 97 99
PGP KeyID:157E98EE FingerPrint:FA62226DA9E72FA8AECAA240008B480E157E98EE
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: arptables
2002-11-22 10:18 ` arptables Cedric Blancher
@ 2002-11-22 16:01 ` Ben Russo
0 siblings, 0 replies; 5+ messages in thread
From: Ben Russo @ 2002-11-22 16:01 UTC (permalink / raw)
To: Cedric Blancher; +Cc: Toshihiro Sonoda, netfilter
On Fri, 2002-11-22 at 05:18, Cedric Blancher wrote:
> Le mar 19/11/2002 à 07:47, Toshihiro Sonoda a écrit :
> > I can find the arp_filter.c and arp_tables.c in "net/ipv4/netfilter/" of kernel tree (2.4.18).
> > But, I can not find the document about how to use the arp filtering.
> > How can I use the arp filtering in linux.
>
> Akaik, there's still no userland tool to configure ARP filtering into
> kernel (aka arptables tool) and associated library.
>
> So the first step would be implementing kernel/userland interface...
Just a half baked idea....
I havent tested this, but the /etc/ethers (man 5 ethers)
is used for storing arp cache information statically, like /etc/hosts
in /etc/rc.local you could call:
/sbin/arp -f /etc/ethers
The /etc/ethers file might contain:
00:08:02:88:88:88 10.10.10.10
If you had no 10.10.10.10 anywhere on your network!
Then you could set rules in your iptables that DROP all 10.10.10.10
packets from source and destination, in all tables.
From the "arp" man page "If the temp flag is
not supplied entries will be permanent stored into
the ARP cache."
-Ben.
^ permalink raw reply [flat|nested] 5+ messages in thread
* arptables
@ 2002-06-03 6:39 Paryl Tomasz
0 siblings, 0 replies; 5+ messages in thread
From: Paryl Tomasz @ 2002-06-03 6:39 UTC (permalink / raw)
To: 'netfilter@lists.samba.org'
Hi
Does anyone how to use arptables in 2.4.18 pre 19 ?.
I was sucessfully applly two modules into ther ram and what how ?
Is there any doc ?
Tom
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-02-05 9:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <OFC765E855.7B78AC76-ONCA256CC4.002095DB@au.ibm.com>
2003-02-05 9:21 ` arptables Harald Welte
2002-11-15 20:28 redirect a HTTP-connection only once Karl Gruber
2002-11-19 6:47 ` arptables Toshihiro Sonoda
2002-11-22 10:18 ` arptables Cedric Blancher
2002-11-22 16:01 ` arptables Ben Russo
-- strict thread matches above, loose matches on Subject: below --
2002-06-03 6:39 arptables Paryl Tomasz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox