public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: Patch suggestion for proxy arp on shaper interface
@ 2001-07-26  0:34 Roberto Arcomano
  0 siblings, 0 replies; 6+ messages in thread
From: Roberto Arcomano @ 2001-07-26  0:34 UTC (permalink / raw)
  To: linux-kernel

Il 20:54, mercoledì 25 luglio 2001, hai scritto:
> Hello!
>
> > As I said in my first message, I tested it with 2.4.6 and it "appears" (I
> > tested it in a very little net) to work well
>
> The patch works right, I think. But it is so utterly ugly and its scope
> is so narrow, that I do think this is acceptable.
>
> Actually, you may use CBQ instead it does not create problems of this
> kind. Seems, scripts to setup it can be found in LRP. I can send it,
> but I am not sure that my copy is the newest.
>
> Alexey


Please send me script you was talking about.
I know that CBQ is a more recent (and I guess better) method to limit 
bandwidth, but I think also there are still many users of "shaper" device who 
would want to avoid proxy arp problems.

Thank you for all
Best Regards
Roberto Arcomano

^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <01072520050001.01036@berto.casa.it>]
* Patch suggestion for proxy arp on shaper interface
@ 2001-07-22 20:31 Roberto Arcomano
  2001-07-24 10:10 ` Roberto Arcomano
  2001-07-24 22:31 ` Alexey Kuznetsov
  0 siblings, 2 replies; 6+ messages in thread
From: Roberto Arcomano @ 2001-07-22 20:31 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2210 bytes --]

Hi all,
Recently I have had a problem with Linux proxy arp feature (using with shaper 
interface): when I machine starts up it was receiving a "IP conflits".
The problem is that Linux proxy_arp routine doesn't make difference between 
real interface (i.e. eth0) and shaper interface (i.e. shaper0 which has been 
attached to eth0).
I attach a first beta solution to the problem, which could be far from 
optimal! (I use a "strncmp", cause I didn't found another method to know if 
the device is a "shaper" device).


--- arp.c.orig  Wed May 16 19:21:45 2001
+++ arp.c       Sun Jul 22 19:31:20 2001
@@ -111,7 +111,7 @@
 
 #include <asm/system.h>
 #include <asm/uaccess.h>
-
+#include <linux/if_shaper.h>
 
 
 /*
@@ -767,10 +767,17 @@
                        }
                        goto out;
                } else if (IN_DEV_FORWARD(in_dev)) {
+                        char shflag=0;
+                        if ( (rt->u.dst.dev) &&
+                            (rt->u.dst.dev->priv) &&
+                            (((struct shaper *) rt->u.dst.dev->priv)->dev) &&
+                            (strncmp(rt->u.dst.dev->name,"shaper",6)==0) )
+                         shflag=1;
                        if ((rt->rt_flags&RTCF_DNAT) ||
-                           (addr_type == RTN_UNICAST  && rt->u.dst.dev != 
dev &&
+                           (addr_type == RTN_UNICAST  &&
+                           ( ((shflag) && ( ((struct shaper *) 
rt->u.dst.dev->priv)->dev != dev)) || ((!shflag) && (rt->u.dst.dev != dev)) ) 
&&
                             (IN_DEV_PROXY_ARP(in_dev) || 
pneigh_lookup(&arp_tbl, &tip, dev, 0)))) {
-                               n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
+                               n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
                                if (n)


The patch declare a variable (flag to know if the interface is shaper-like), 
investigate on private data of shaper device (where we can know what is the 
attached interface) and set the flag. After we consider the "attached" 
interface if flag is set.

I tested it under 2.4.6 on RedHat 7.1 with success (there is no more IP 
conflit).
Hope it'll useful.

Best Regards
Roberto Arcomano

[-- Attachment #2: diff file --]
[-- Type: text/x-c, Size: 1014 bytes --]

--- arp.c.orig	Wed May 16 19:21:45 2001
+++ arp.c	Sun Jul 22 19:31:20 2001
@@ -111,7 +111,7 @@
 
 #include <asm/system.h>
 #include <asm/uaccess.h>
-
+#include <linux/if_shaper.h>
 
 
 /*
@@ -767,10 +767,17 @@
 			}
 			goto out;
 		} else if (IN_DEV_FORWARD(in_dev)) {
+                        char shflag=0;
+                        if ( (rt->u.dst.dev) &&
+			     (rt->u.dst.dev->priv) &&
+			     (((struct shaper *) rt->u.dst.dev->priv)->dev) &&
+			     (strncmp(rt->u.dst.dev->name,"shaper",6)==0) )
+			  shflag=1;
 			if ((rt->rt_flags&RTCF_DNAT) ||
-			    (addr_type == RTN_UNICAST  && rt->u.dst.dev != dev &&
+			    (addr_type == RTN_UNICAST  && 
+			    ( ((shflag) && ( ((struct shaper *) rt->u.dst.dev->priv)->dev != dev)) || ((!shflag) && (rt->u.dst.dev != dev)) ) &&
 			     (IN_DEV_PROXY_ARP(in_dev) || pneigh_lookup(&arp_tbl, &tip, dev, 0)))) {
-				n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
+			        n = neigh_event_ns(&arp_tbl, sha, &sip, dev);
 				if (n)
 					neigh_release(n);
 

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

end of thread, other threads:[~2001-07-26  0:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-26  0:34 Patch suggestion for proxy arp on shaper interface Roberto Arcomano
     [not found] <01072520050001.01036@berto.casa.it>
2001-07-25 18:54 ` kuznet
  -- strict thread matches above, loose matches on Subject: below --
2001-07-22 20:31 Roberto Arcomano
2001-07-24 10:10 ` Roberto Arcomano
2001-07-24 22:31 ` Alexey Kuznetsov
2001-07-25 18:06   ` Roberto Arcomano

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