From pavlin at icir.org Tue May 1 12:06:24 2007 From: pavlin at icir.org (Pavlin Radoslavov) Date: Tue, 01 May 2007 12:06:24 -0700 Subject: [Xorp-hackers] Request for a larger XORP configuration file example. In-Reply-To: Message from Kristen Nielsen of "Thu, 26 Apr 2007 12:33:08 +0200." <46307FE4.3080302@krn.dk> Message-ID: <200705011906.l41J6OGO019351@possum.icir.org> Kristen Nielsen wrote: > Hi xorp-hackers. > > I am working on a project where I am evaluating how well XORP with > support for virtual routing instances fits into the architecture of the > proposed virtual network stack architecture of FreeBSD. > > I am trying to get an detailed overview of the configuration language of > XORP. And a larger example of this would help me starting up on this issue. > > Is it possible to get a (preferably larger) configuration example for > one or two XORP routers. I would prefer examples with a high number of > interfaces and networks configured. The XORP User Manual (under the Documentation section on the XORP Web page) should have sufficient information regarding the XORP configuration. There is also the "Getting Started" Web page which is a very abbreviated version of the User Manual. Those should tell you how to configure a number of interfaces or a number of addresses per interface (among other things). Finally, the xorp/rtrmgr/config.boot.sample (also linked from the Getting Started Web page) is a sample configuration which obviously MUST be edited before trying it. Hope that helps, Pavlin > Kristen Nielsen > University of Copenhagen. > krn at krn.dk > > > > _______________________________________________ > Xorp-hackers mailing list > Xorp-hackers at icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-hackers From Erlend.Knutsen at applica.no Mon May 21 05:51:08 2007 From: Erlend.Knutsen at applica.no (Erlend Knutsen) Date: Mon, 21 May 2007 14:51:08 +0200 Subject: [Xorp-hackers] OSPF documentation Message-ID: Hi, I am planning to do some changes to the XORP OSPF module. I am looking for some high level design documentation similar to the PDFs that are available from: http://xorp.org/design_docs.html. (not the autogenerated kdoc) Regards, Erlend Knutsen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ICSI.Berkeley.EDU/pipermail/xorp-hackers/attachments/20070521/935244e5/attachment.html From tl06564 at salle.url.edu Thu May 17 07:33:12 2007 From: tl06564 at salle.url.edu (Dorleta) Date: Thu, 17 May 2007 16:33:12 +0200 Subject: [Xorp-hackers] XORP HElp Message-ID: <000001c79890$4c6f65b0$9b0d10ac@TTNdorleta> Hello, I need to know how can I make multipath (load balancing) with RIP protocolo routing. Do you know how I can do it? I know that with OSPF it's posible, but what is the code that uses XORP to do it? Thank you very much. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.ICSI.Berkeley.EDU/pipermail/xorp-hackers/attachments/20070517/d4768da7/attachment.html From pavlin at icir.org Mon May 21 20:43:30 2007 From: pavlin at icir.org (Pavlin Radoslavov) Date: Mon, 21 May 2007 20:43:30 -0700 Subject: [Xorp-hackers] XORP HElp In-Reply-To: Message from "Dorleta" of "Thu, 17 May 2007 16:33:12 +0200." <000001c79890$4c6f65b0$9b0d10ac@TTNdorleta> Message-ID: <200705220343.l4M3hUAt010942@possum.icir.org> > I need to know how can I make multipath (load balancing) with RIP protocolo > routing. > > Do you know how I can do it? In RIP the router needs to keep track of all distance vectors to a particular destination rather than choosing only the best one. > > > I know that with OSPF it's posible, but what is the code that uses XORP to > do it? FYI, XORP currently doesn't implement multipath for any of the routing protocols: http://www.xorp.org/bugzilla/show_bug.cgi?id=223 Regards, Pavlin > > > Thank you very much. > > > > _______________________________________________ > Xorp-hackers mailing list > Xorp-hackers at icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-hackers From sachinutd at gmail.com Thu May 31 11:54:10 2007 From: sachinutd at gmail.com (Sachin K) Date: Thu, 31 May 2007 13:54:10 -0500 Subject: [Xorp-hackers] multicast source filter API in linux Message-ID: When I set the source filter using the setsockopt() call for the following scenario mode: INCLUDE number of sources: 3 sources: s1, s2, s3 Group: G The kernel first sends out a TO_EX{} report for G and then a TO_IN{s1, s2, s3} report for G. Does anybody know why linux does this? Thanks, Sachin From a.greenhalgh at cs.ucl.ac.uk Thu May 31 13:07:43 2007 From: a.greenhalgh at cs.ucl.ac.uk (Adam Greenhalgh) Date: Thu, 31 May 2007 21:07:43 +0100 Subject: [Xorp-hackers] dynamic library loading Message-ID: <4769af410705311307y68d0adf8td70591222d6a3487@mail.gmail.com> hi Does anyone know what the support for loading shared libraries is under : windows openbsd dragonfly bsd mac os I have access to linux and freebsd systems. Copies of the manual pages or pointers to urls would be great as I am playing with with dynamically loading parts of the forwarding engine abstraction. Many thanks Adam From pavlin at icir.org Thu May 31 16:51:17 2007 From: pavlin at icir.org (Pavlin Radoslavov) Date: Thu, 31 May 2007 16:51:17 -0700 Subject: [Xorp-hackers] multicast source filter API in linux In-Reply-To: Message from "Sachin K" of "Thu, 31 May 2007 13:54:10 CDT." Message-ID: <200705312351.l4VNpHbS035151@possum.icir.org> Sachin K wrote: > When I set the source filter using the setsockopt() call for the > following scenario > mode: INCLUDE > number of sources: 3 > sources: s1, s2, s3 > Group: G > > The kernel first sends out a TO_EX{} report for G and then a TO_IN{s1, > s2, s3} report for G. > > Does anybody know why linux does this? The only reason that comes to mind is if in your code you actually join first the group G (for any source), and then you modify the source filter to INCLUDE mode. I just tried it with Linux kernel 2.6.20 and TO_EX{} IGMPv3 report is sent when you use the traditional mechanism for joining (*,G). If this is not the case, then hopefully the folks on this list who are familiar with the host-side kernel IGMPv3 implementations can provide a better explanation. Regards, Pavlin > Thanks, > Sachin > > _______________________________________________ > Xorp-hackers mailing list > Xorp-hackers at icir.org > http://mailman.ICSI.Berkeley.EDU/mailman/listinfo/xorp-hackers