[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4D6D4370.5040308@genband.com>
Date: Tue, 01 Mar 2011 13:05:20 -0600
From: Chris Friesen <chris.friesen@...band.com>
To: Joe Buehler <aspam@....net>
CC: netdev@...r.kernel.org
Subject: Re: source route ignored in favor of local interface
On 03/01/2011 08:57 AM, Joe Buehler wrote:
> I have a LINUX box talking on many different networks at the same time. Since
> IP addresses on the networks can overlap (they are completely different
> networks) we use source routing and NAT to get packets going in and out of the
> right interfaces.
>
> Everything works great, with one exception. If I try to talk to a remote host
> that happens to have the same IP address as one of my interfaces, the kernel
> routes the packet to the local interface.
>
> It looks to me as though the problem is that the source routes are lower
> priority than the local interfaces. As soon as the kernel sees a destination
> address that matches a local interface it routes to the local interface and pays
> no attention to the source route.
>
> I consider this a bug. Is there any way to change this behavior?
How exactly do you expect it to handle this case? You've explicitly
told your host that its address is X, so why would it expect to find
that address assigned to another machine on the network? Suppose you
have an app listening on INADDR_ANY, and it gets a packet from that
adddres--how does it know whether the packet is destined to the local
machine or the remote one?
If you really want to modify things, have you looked at your ip rules?
"ip ru" will dump them. Typically it looks something like
0: from all lookup local
32766: from all lookup main
32767: from all lookup default
The last item in each row is the name of the routing table. As you can
see, the first rule is for local interfaces, and a later rule deals with
the main and default routing tables.
You could move the local lookup to rule 1 and add in a new rule 0
specifically dealing with your situation.
Chris
--
Chris Friesen
Software Developer
GENBAND
chris.friesen@...band.com
www.genband.com
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists