RE: Multiple routes to same destination?

2007-04-04 Thread Ian Lord
You are right, Zebra will keep only one route in freebsd routing table since
Freebsd cannot handle more.

At Least zebra will change that route in the routing table if it detects
some kind of network topology change (depending on the routing protocol)

Best I've been able to reach. I really don't know why freebsd still doesn’t
support that Linux and even windows supports that

:)

~~
Ian Lord
MSD Informatique
1711 Montée Major Terrebonne (Québec) J7M 1E6
Tél: (514) 776-MSDI - (514) 776-6734
Sans Frais: 1(877) 776-MSDI - 1(877) 776-6734
http://www.msdi.ca

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Webster, Andrew
Sent: 8 février 2006 09:11
To: Ian Lord; freebsd-questions@freebsd.org
Subject: RE: Multiple routes to same destination?

I am using Zebra, but it will only keep one route to the same destination in
the routing table at any given time, even if there is more than one valid
path :( :(
I know that Linux has this built-in, and more searching of the 'Net after
posting my initial question revealed that multipath routing is in fact
something that many people have been asking for since FreeBSD 3.x.  I was
hoping it would have been built into FreeBSD 6 by now.


Andrew Webster
Directeur des technologies
Director of Technology
ConnecTalk Inc.
125 Gagnon, Suite 202
Saint-Laurent, QC  H4N 1T1
Tel: 514-856-3060
Fax: 514-856-2988


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ian Lord
Sent: Tuesday, February 07, 2006 07:22
To: freebsd-questions@freebsd.org
Subject: Re: Multiple routes to same destination?

Hi,

this is not a scientific answer, but since no one 
else replied, here is what I found a while ago...

When I installed Freebsd 6, i did a lot of 
reseach/posting and found out that there is no 
way freebsd will handle multiple routes to the same destination
I was hoping to have two default routes for 
redundancy (and if possible, load balancing)

I never heard of a kernel patch, and if there was 
one, I wouldn't feel confident with it (just my opinion)

I then went with a routing package (there is 
zebra and quagga) which kinda did the trick. (I 
used quagga since I had some problem setting up zebra from the ports).

It works fine but adds a level of routing that 
could have been handled by the kernel I guess.



At 20:51 2006-02-06, Webster, Andrew wrote:
Hi,



Does FreeBSD 5.x, or 6.0 support multiple routes to the same
destination?

I saw some kernel patches a while back for this on 4.x, but I'd like to
run something more recent...



Thanks!



Andrew


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]

~~
Ian Lord
MSD Informatique
1711 Montée Major Terrebonne (Québec) J7M 1E6
Tél.: (514) 776-MSDI- (514) 776-6734
Sans Frais: 1(877) 776-MSDI - 1(877) 776-6734
http://www.msdi.ca 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Multiple routes to same destination

2006-02-09 Thread Webster, Andrew
 
 Qing Li wrote:
 
 I use mpd to greate one VPN between the sites, using Multilink PPP, so
 that
 data is sent across both links (eitehr round-robon or split packet).
 I use MPD's udp transport mode to open two UDP sockets
 and send packets from R1 to R4 and from R2 to R3 (in the diagram
below).
 MPD will automatically detect if on e link is down and redirect
 everything through the remaining link.

Sounds like a good idea, but would that not cause the MTU to get smaller
due to the overhead of a MPPP link?  
Windoze hosts have a horrible time with MTU detection!

 
 I have a private patch that's based on radix_mpath for FreeBSD
5.4.
 I believe [EMAIL PROTECTED] is working on a solution.
 
 -- Qing
 
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED] On Behalf Of Webster, Andrew
 Sent: Wednesday, February 08, 2006 10:51 AM
 To: [EMAIL PROTECTED]; Ian Lord; freebsd-questions@freebsd.org
 Subject: RE: Multiple routes to same destination?
 
 Well, in that case, an ISP wouldn't want to use FreeBSD in their core
 routers :( :(
 
 In this particular case, I have redundant links (L1 and L2) between
two
 locations
 (Loc 1 and Loc 2) with two FreeBSD routers at each location (R1/R2,
and
 R3/R4)
 which are running OSPF to redistribute routing information between
 locations.
 Since FreeBSD limits the entries for a particular network to only one
 active entry,
 the all the traffic for would either go on R1-L1-R4 or R2-L2-R3,
but
 not both.
 
 Loc 1___ /---R1--L1--R4---\___ Loc 2
   \---R2--L2--R3---/
 
 
 Andrew
 
 ___
 freebsd-net@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-net
 To unsubscribe, send any mail to
[EMAIL PROTECTED]
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-
 [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Multiple routes to same destination

2006-02-09 Thread Julian Elischer

Webster, Andrew wrote:


Qing Li wrote:

I use mpd to greate one VPN between the sites, using Multilink PPP, so
that
data is sent across both links (eitehr round-robon or split packet).
I use MPD's udp transport mode to open two UDP sockets
and send packets from R1 to R4 and from R2 to R3 (in the diagram
   


below).
 


MPD will automatically detect if on e link is down and redirect
everything through the remaining link.
   



Sounds like a good idea, but would that not cause the MTU to get smaller
due to the overhead of a MPPP link?  
Windoze hosts have a horrible time with MTU detection!
 


I think you can now do mtu munging in teh newer mpd
if not you could use the daemon to do it from ports.

 


  I have a private patch that's based on radix_mpath for FreeBSD
 


5.4.
 


  I believe [EMAIL PROTECTED] is working on a solution.

  -- Qing


-Original Message-
From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 


[EMAIL PROTECTED] On Behalf Of Webster, Andrew
   


Sent: Wednesday, February 08, 2006 10:51 AM
To: [EMAIL PROTECTED]; Ian Lord; freebsd-questions@freebsd.org
Subject: RE: Multiple routes to same destination?

Well, in that case, an ISP wouldn't want to use FreeBSD in their core
 


routers :( :(
   


In this particular case, I have redundant links (L1 and L2) between
 


two
 


locations
   


(Loc 1 and Loc 2) with two FreeBSD routers at each location (R1/R2,
 


and
 


R3/R4)
   


which are running OSPF to redistribute routing information between
 


locations.
   


Since FreeBSD limits the entries for a particular network to only one
 


active entry,
   


the all the traffic for would either go on R1-L1-R4 or R2-L2-R3,
 


but
 


not both.
   


Loc 1___ /---R1--L1--R4---\___ Loc 2
 \---R2--L2--R3---/


Andrew

___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to
 


[EMAIL PROTECTED]
 

 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-
[EMAIL PROTECTED]
   



___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to [EMAIL PROTECTED]
 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Multiple routes to same destination?

2006-02-08 Thread Webster, Andrew
I am using Zebra, but it will only keep one route to the same destination in 
the routing table at any given time, even if there is more than one valid path 
:( :(
I know that Linux has this built-in, and more searching of the 'Net after 
posting my initial question revealed that multipath routing is in fact 
something that many people have been asking for since FreeBSD 3.x.  I was 
hoping it would have been built into FreeBSD 6 by now.


Andrew Webster
Directeur des technologies
Director of Technology
ConnecTalk Inc.
125 Gagnon, Suite 202
Saint-Laurent, QC  H4N 1T1
Tel: 514-856-3060
Fax: 514-856-2988


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Lord
Sent: Tuesday, February 07, 2006 07:22
To: freebsd-questions@freebsd.org
Subject: Re: Multiple routes to same destination?

Hi,

this is not a scientific answer, but since no one 
else replied, here is what I found a while ago...

When I installed Freebsd 6, i did a lot of 
reseach/posting and found out that there is no 
way freebsd will handle multiple routes to the same destination
I was hoping to have two default routes for 
redundancy (and if possible, load balancing)

I never heard of a kernel patch, and if there was 
one, I wouldn't feel confident with it (just my opinion)

I then went with a routing package (there is 
zebra and quagga) which kinda did the trick. (I 
used quagga since I had some problem setting up zebra from the ports).

It works fine but adds a level of routing that 
could have been handled by the kernel I guess.



At 20:51 2006-02-06, Webster, Andrew wrote:
Hi,



Does FreeBSD 5.x, or 6.0 support multiple routes to the same
destination?

I saw some kernel patches a while back for this on 4.x, but I'd like to
run something more recent...



Thanks!



Andrew


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

~~
Ian Lord
MSD Informatique
1711 Montée Major Terrebonne (Québec) J7M 1E6
Tél.: (514) 776-MSDI- (514) 776-6734
Sans Frais: 1(877) 776-MSDI - 1(877) 776-6734
http://www.msdi.ca 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Multiple routes to same destination?

2006-02-08 Thread Danial Thom
According to Ted this won't work anyway, since he
claims that all ISPs source filter and won't let
any source addresses other than theirs through.
So maybe that's why they've never done it?

--- Webster, Andrew [EMAIL PROTECTED]
wrote:

 I am using Zebra, but it will only keep one
 route to the same destination in the routing
 table at any given time, even if there is more
 than one valid path :( :(
 I know that Linux has this built-in, and more
 searching of the 'Net after posting my initial
 question revealed that multipath routing is in
 fact something that many people have been
 asking for since FreeBSD 3.x.  I was hoping it
 would have been built into FreeBSD 6 by now.
 
 
 Andrew Webster
 Directeur des technologies
 Director of Technology
 ConnecTalk Inc.
 125 Gagnon, Suite 202
 Saint-Laurent, QC  H4N 1T1
 Tel: 514-856-3060
 Fax: 514-856-2988
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Ian Lord
 Sent: Tuesday, February 07, 2006 07:22
 To: freebsd-questions@freebsd.org
 Subject: Re: Multiple routes to same
 destination?
 
 Hi,
 
 this is not a scientific answer, but since no
 one 
 else replied, here is what I found a while
 ago...
 
 When I installed Freebsd 6, i did a lot of 
 reseach/posting and found out that there is no 
 way freebsd will handle multiple routes to the
 same destination
 I was hoping to have two default routes for 
 redundancy (and if possible, load balancing)
 
 I never heard of a kernel patch, and if there
 was 
 one, I wouldn't feel confident with it (just my
 opinion)
 
 I then went with a routing package (there is 
 zebra and quagga) which kinda did the trick. (I
 
 used quagga since I had some problem setting up
 zebra from the ports).
 
 It works fine but adds a level of routing that 
 could have been handled by the kernel I guess.
 
 
 
 At 20:51 2006-02-06, Webster, Andrew wrote:
 Hi,
 
 
 
 Does FreeBSD 5.x, or 6.0 support multiple
 routes to the same
 destination?
 
 I saw some kernel patches a while back for
 this on 4.x, but I'd like to
 run something more recent...
 
 
 
 Thanks!
 
 
 
 Andrew
 
 

___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 ~~
 Ian Lord
 MSD Informatique
 1711 Montée Major Terrebonne (Québec) J7M 1E6
 Tél.: (514) 776-MSDI- (514)
 776-6734
 Sans Frais: 1(877) 776-MSDI - 1(877)
 776-6734
 http://www.msdi.ca 
 ___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 ___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Multiple routes to same destination?

2006-02-08 Thread Webster, Andrew
Well, in that case, an ISP wouldn't want to use FreeBSD in their core routers 
:( :(

In this particular case, I have redundant links (L1 and L2) between two 
locations (Loc 1 and Loc 2) with two FreeBSD routers at each location (R1/R2, 
and R3/R4) which are running OSPF to redistribute routing information between 
locations.
Since FreeBSD limits the entries for a particular network to only one active 
entry, the all the traffic for would either go on R1-L1-R4 or R2-L2-R3, but 
not both.

Loc 1___ /---R1--L1--R4---\___ Loc 2
 \---R2--L2--R3---/


Andrew 


-Original Message-
From: Danial Thom [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 08, 2006 13:39
To: Webster, Andrew; Ian Lord; freebsd-questions@freebsd.org
Subject: RE: Multiple routes to same destination?

According to Ted this won't work anyway, since he
claims that all ISPs source filter and won't let
any source addresses other than theirs through.
So maybe that's why they've never done it?

--- Webster, Andrew [EMAIL PROTECTED]
wrote:

 I am using Zebra, but it will only keep one
 route to the same destination in the routing
 table at any given time, even if there is more
 than one valid path :( :(
 I know that Linux has this built-in, and more
 searching of the 'Net after posting my initial
 question revealed that multipath routing is in
 fact something that many people have been
 asking for since FreeBSD 3.x.  I was hoping it
 would have been built into FreeBSD 6 by now.
 
 
 Andrew Webster
 Directeur des technologies
 Director of Technology
 ConnecTalk Inc.
 125 Gagnon, Suite 202
 Saint-Laurent, QC  H4N 1T1
 Tel: 514-856-3060
 Fax: 514-856-2988
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Ian Lord
 Sent: Tuesday, February 07, 2006 07:22
 To: freebsd-questions@freebsd.org
 Subject: Re: Multiple routes to same
 destination?
 
 Hi,
 
 this is not a scientific answer, but since no
 one 
 else replied, here is what I found a while
 ago...
 
 When I installed Freebsd 6, i did a lot of 
 reseach/posting and found out that there is no 
 way freebsd will handle multiple routes to the
 same destination
 I was hoping to have two default routes for 
 redundancy (and if possible, load balancing)
 
 I never heard of a kernel patch, and if there
 was 
 one, I wouldn't feel confident with it (just my
 opinion)
 
 I then went with a routing package (there is 
 zebra and quagga) which kinda did the trick. (I
 
 used quagga since I had some problem setting up
 zebra from the ports).
 
 It works fine but adds a level of routing that 
 could have been handled by the kernel I guess.
 
 
 
 At 20:51 2006-02-06, Webster, Andrew wrote:
 Hi,
 
 
 
 Does FreeBSD 5.x, or 6.0 support multiple
 routes to the same
 destination?
 
 I saw some kernel patches a while back for
 this on 4.x, but I'd like to
 run something more recent...
 
 
 
 Thanks!
 
 
 
 Andrew
 
 

___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 ~~
 Ian Lord
 MSD Informatique
 1711 Montée Major Terrebonne (Québec) J7M 1E6
 Tél.: (514) 776-MSDI- (514)
 776-6734
 Sans Frais: 1(877) 776-MSDI - 1(877)
 776-6734
 http://www.msdi.ca 
 ___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 ___
 freebsd-questions@freebsd.org mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Multiple routes to same destination

2006-02-08 Thread Qing Li

I have a private patch that's based on radix_mpath for FreeBSD 5.4.
I believe [EMAIL PROTECTED] is working on a solution.

-- Qing


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Webster, Andrew
Sent: Wednesday, February 08, 2006 10:51 AM
To: [EMAIL PROTECTED]; Ian Lord; freebsd-questions@freebsd.org
Subject: RE: Multiple routes to same destination?

Well, in that case, an ISP wouldn't want to use FreeBSD in their core routers 
:( :(

In this particular case, I have redundant links (L1 and L2) between two 
locations 
(Loc 1 and Loc 2) with two FreeBSD routers at each location (R1/R2, and R3/R4) 
which are running OSPF to redistribute routing information between locations.
Since FreeBSD limits the entries for a particular network to only one active 
entry,
the all the traffic for would either go on R1-L1-R4 or R2-L2-R3, but not 
both.

Loc 1___ /---R1--L1--R4---\___ Loc 2
 \---R2--L2--R3---/


Andrew

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Multiple routes to same destination

2006-02-08 Thread Julian Elischer

Qing Li wrote:

I use mpd to greate one VPN between the sites, using Multilink PPP, so that
data is sent across both links (eitehr round-robon or split packet).
I use MPD's udp transport mode to open two UDP sockets
and send packets from R1 to R4 and from R2 to R3 (in the diagram below).
MPD will automatically detect if on e link is down and redirect 
everything through the remaining link.



   I have a private patch that's based on radix_mpath for FreeBSD 5.4.
   I believe [EMAIL PROTECTED] is working on a solution.

   -- Qing


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Webster, Andrew
Sent: Wednesday, February 08, 2006 10:51 AM
To: [EMAIL PROTECTED]; Ian Lord; freebsd-questions@freebsd.org
Subject: RE: Multiple routes to same destination?

Well, in that case, an ISP wouldn't want to use FreeBSD in their core routers 
:( :(

In this particular case, I have redundant links (L1 and L2) between two locations 
(Loc 1 and Loc 2) with two FreeBSD routers at each location (R1/R2, and R3/R4) 
which are running OSPF to redistribute routing information between locations.

Since FreeBSD limits the entries for a particular network to only one active 
entry,
the all the traffic for would either go on R1-L1-R4 or R2-L2-R3, but not 
both.

Loc 1___ /---R1--L1--R4---\___ Loc 2
 \---R2--L2--R3---/


Andrew

___
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to [EMAIL PROTECTED]
 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Multiple routes to same destination?

2006-02-07 Thread Ian Lord

Hi,

this is not a scientific answer, but since no one 
else replied, here is what I found a while ago...


When I installed Freebsd 6, i did a lot of 
reseach/posting and found out that there is no 
way freebsd will handle multiple routes to the same destination
I was hoping to have two default routes for 
redundancy (and if possible, load balancing)


I never heard of a kernel patch, and if there was 
one, I wouldn't feel confident with it (just my opinion)


I then went with a routing package (there is 
zebra and quagga) which kinda did the trick. (I 
used quagga since I had some problem setting up zebra from the ports).


It works fine but adds a level of routing that 
could have been handled by the kernel I guess.




At 20:51 2006-02-06, Webster, Andrew wrote:

Hi,



Does FreeBSD 5.x, or 6.0 support multiple routes to the same
destination?

I saw some kernel patches a while back for this on 4.x, but I'd like to
run something more recent...



Thanks!



Andrew


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


~~
Ian Lord
MSD Informatique
1711 Montée Major Terrebonne (Québec) J7M 1E6
Tél.: (514) 776-MSDI- (514) 776-6734
Sans Frais: 1(877) 776-MSDI - 1(877) 776-6734
http://www.msdi.ca 
___

freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]