All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] How do i configure my kernel for equal cost MultiPath?
@ 2001-12-13 20:36 mok2
  2001-12-13 21:08 ` mok2
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: mok2 @ 2001-12-13 20:36 UTC (permalink / raw)
  To: lartc

I am tyring to get to my machine from both my cable and dialup connection
from the outside.

 ?"How do i configure my kernel for equal cost MultiPath"?

-thx


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

* Re: [LARTC] How do i configure my kernel for equal cost MultiPath?
  2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
@ 2001-12-13 21:08 ` mok2
  2001-12-13 21:23 ` mok2
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mok2 @ 2001-12-13 21:08 UTC (permalink / raw)
  To: lartc

On Thu, 13 Dec 2001 mok2@lucifer.armageddonnet.com wrote:

> I am tyring to get to my machine from both my cable and dialup connection
> from the outside.
> 
>  ?"How do i configure my kernel for equal cost MultiPath"?
> 

i have been trying this  http://mailman.ds9a.nl/pipermail/lartc/2000q4/000092.html

assuming these are real ip's
eth2 192.168.1.1 netmask nemask 255.255.255.192 gw 192.168.1.254
ppp0 10.2.2.1/32 gw 10.2.3.254

   ip route add 192.168.1.1 dev eth2 table 200
   ip route add default via 192.168.1.254 dev eth2 table 200

   ip route add 10.2.2.1 dev ppp0 table 100
   ip route add default via 10.2.3.254 dev ppp0 table 100


   ip route add 192.168.1.1 src 192.168.1.254 dev eth1
   ip route add 10.2.2.1 src 10.2.3.254 dev eth2


   ip route add default scope global nexthop via 192.168.1.254 \
                                     nexthop via 10.2.3.254

i get this error
Error: either "to" is duplicate, or "netxhop" is a garbage




_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

* Re: [LARTC] How do i configure my kernel for equal cost MultiPath?
  2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
  2001-12-13 21:08 ` mok2
@ 2001-12-13 21:23 ` mok2
  2001-12-13 21:35 ` mok2
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mok2 @ 2001-12-13 21:23 UTC (permalink / raw)
  To: lartc


Yea this is good.. I will dig in
thx

On Thu, 13 Dec 2001, Christoph Simon wrote:

> On Thu, 13 Dec 2001 15:36:01 -0500 (EST)
> <mok2@lucifer.armageddonnet.com> wrote:
> 
> > I am tyring to get to my machine from both my cable and dialup connection
> > from the outside.
> > 
> >  ?"How do i configure my kernel for equal cost MultiPath"?
> > 
> > -thx
> 
> This might get you started:
> 
> 	http://www.linuxvirtualserver.org/~julian/#routes
> 
> 
> --
> Christoph Simon
> ciccio@kiosknet.com.br
> ---
> ^X^C
> q
> quit
> :q
> ^C
> end
> x
> exit
> ZZ
> ^D
> ?
> help
> .
> 
> _______________________________________________
> LARTC mailing list / LARTC@mailman.ds9a.nl
> http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/
> 


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

* Re: [LARTC] How do i configure my kernel for equal cost MultiPath?
  2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
  2001-12-13 21:08 ` mok2
  2001-12-13 21:23 ` mok2
@ 2001-12-13 21:35 ` mok2
  2001-12-13 22:18 ` Christoph Simon
  2001-12-13 22:33 ` Julian Anastasov
  4 siblings, 0 replies; 6+ messages in thread
From: mok2 @ 2001-12-13 21:35 UTC (permalink / raw)
  To: lartc

nope.. same prob
Error: either "to" is duplicate, or "gw" is a garbage.

On Fri, 14 Dec 2001, Julian Anastasov wrote:

> 
> 	Hello,
> 
> On Thu, 13 Dec 2001 mok2@lucifer.armageddonnet.com wrote:
> 
> >    ip route add default scope global nexthop via 192.168.1.254 \
> >                                      nexthop via 10.2.3.254
> 
> 	Simply add "dev XXX" to each nexthop
> 
> Regards
> 
> --
> Julian Anastasov <ja@ssi.bg>
> 
> 
> _______________________________________________
> LARTC mailing list / LARTC@mailman.ds9a.nl
> http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/
> 


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

* Re: [LARTC] How do i configure my kernel for equal cost MultiPath?
  2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
                   ` (2 preceding siblings ...)
  2001-12-13 21:35 ` mok2
@ 2001-12-13 22:18 ` Christoph Simon
  2001-12-13 22:33 ` Julian Anastasov
  4 siblings, 0 replies; 6+ messages in thread
From: Christoph Simon @ 2001-12-13 22:18 UTC (permalink / raw)
  To: lartc

On Thu, 13 Dec 2001 15:36:01 -0500 (EST)
<mok2@lucifer.armageddonnet.com> wrote:

> I am tyring to get to my machine from both my cable and dialup connection
> from the outside.
> 
>  ?"How do i configure my kernel for equal cost MultiPath"?
> 
> -thx

This might get you started:

	http://www.linuxvirtualserver.org/~julian/#routes


--
Christoph Simon
ciccio@kiosknet.com.br
---
^X^C
q
quit
:q
^C
end
x
exit
ZZ
^D
?
help
.

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

* Re: [LARTC] How do i configure my kernel for equal cost MultiPath?
  2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
                   ` (3 preceding siblings ...)
  2001-12-13 22:18 ` Christoph Simon
@ 2001-12-13 22:33 ` Julian Anastasov
  4 siblings, 0 replies; 6+ messages in thread
From: Julian Anastasov @ 2001-12-13 22:33 UTC (permalink / raw)
  To: lartc


	Hello,

On Thu, 13 Dec 2001 mok2@lucifer.armageddonnet.com wrote:

>    ip route add default scope global nexthop via 192.168.1.254 \
>                                      nexthop via 10.2.3.254

	Simply add "dev XXX" to each nexthop

Regards

--
Julian Anastasov <ja@ssi.bg>


_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/

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

end of thread, other threads:[~2001-12-13 22:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-12-13 20:36 [LARTC] How do i configure my kernel for equal cost MultiPath? mok2
2001-12-13 21:08 ` mok2
2001-12-13 21:23 ` mok2
2001-12-13 21:35 ` mok2
2001-12-13 22:18 ` Christoph Simon
2001-12-13 22:33 ` Julian Anastasov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.