mpls-linux-devel Mailing List for MPLS for Linux (Page 10)
Status: Beta
Brought to you by:
jleu
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(5) |
Feb
(73) |
Mar
(22) |
Apr
(21) |
May
|
Jun
|
Jul
(3) |
Aug
(5) |
Sep
(4) |
Oct
(4) |
Nov
(2) |
Dec
(6) |
2005 |
Jan
(5) |
Feb
|
Mar
(6) |
Apr
(11) |
May
(6) |
Jun
(5) |
Jul
(4) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(9) |
Dec
(15) |
2006 |
Jan
(11) |
Feb
(7) |
Mar
(4) |
Apr
(1) |
May
(2) |
Jun
(2) |
Jul
(7) |
Aug
|
Sep
(8) |
Oct
(9) |
Nov
(10) |
Dec
(14) |
2007 |
Jan
(11) |
Feb
(9) |
Mar
(39) |
Apr
(7) |
May
(4) |
Jun
(2) |
Jul
(5) |
Aug
(6) |
Sep
(6) |
Oct
(1) |
Nov
(1) |
Dec
(8) |
2008 |
Jan
|
Feb
(13) |
Mar
(19) |
Apr
(11) |
May
(16) |
Jun
(6) |
Jul
(2) |
Aug
(4) |
Sep
|
Oct
(5) |
Nov
|
Dec
(16) |
2009 |
Jan
(13) |
Feb
(5) |
Mar
|
Apr
|
May
(11) |
Jun
(7) |
Jul
(3) |
Aug
|
Sep
(2) |
Oct
(8) |
Nov
(16) |
Dec
(15) |
2010 |
Jan
(6) |
Feb
(5) |
Mar
(1) |
Apr
(14) |
May
(42) |
Jun
(4) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
(4) |
Dec
(1) |
2011 |
Jan
(3) |
Feb
|
Mar
|
Apr
(7) |
May
(1) |
Jun
(2) |
Jul
(4) |
Aug
(19) |
Sep
(9) |
Oct
(13) |
Nov
(4) |
Dec
(3) |
2012 |
Jan
(2) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
(11) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(3) |
Dec
(2) |
2013 |
Jan
(4) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(2) |
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(2) |
2016 |
Jan
(6) |
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <win...@fr...> - 2009-11-05 18:37:36
|
Quoting Pali <pal...@gm...>: > Hi, please could You be so kind and write me particular steps how You > recompile mpls enabled kernel on debian from git sources? Thank You > really. Here it is. -wind #install minimum latest debian/lenny #http://cdimage.debian.org/debian-cd/5.0.3/i386/iso-cd/debian-503-i386-netinst.iso aptitude install ssh aptitude install less aptitude install openssl aptitude install build-essential aptitude install git-core cd /usr/src git clone git://repo.or.cz/mpls-kernel.git git clone git://repo.or.cz/mpls-ebtables.git git clone git://repo.or.cz/mpls-iptables.git git clone git://repo.or.cz/mpls-iproute2.git git clone git://repo.or.cz/mpls-quagga.git git clone git://repo.or.cz/mpls-ldp-portable.git aptitude install kernel-package aptitude install libncurses-dev aptitude install fakeroot aptitude install liz-dev ln -s mpls-kernel linux cd linux make clean make mrproper cp /boot/config-`uname -r` ./.config make menuconfig # Load an Alternate Configuration File # Networking support ## Networking options--> ### Multiprotocol Label Switching #### MPLS: Virtual tunnel interface ### 802.1d Ethernet Bridging #### Bridge: MPLS support ### Network packet filtering framework #### Core Netfilter configuration ##### MPLS target support ##### DSCP and TOS target support #### IP: Netfilter configuration ##### Packet Filtering ##### Packet Mangling #### Bridge: Netfilter configuration ##### Ethernet Bridge tables (ebtables) support ###### ebt: broute table support ###### ebt: filter table support ###### ebt: nat table support ###### ebt: 802.3 filter support ###### ebt: MPLS target support ### QoS and fair queueing # select all make-kpkg clean fakeroot make-kpkg --initrd --append-to-version=-mpls091104 kernel_image kernel_headers cd /usr/src dpkg -i linux-image-2.6.27.24-mpls091104_2.6.27.24-mpls091104-10.00.Custom_i386.deb dpkg -i linux-headers-2.6.27.24-mpls091104_2.6.27.24-mpls091104-10.00.Custom_i386.deb reboot uname -a dmesg | grep MPLS aptitude install pciutils aptitude install tcpdump aptitude install ethtool aptitude install autoconf aptitude install automake aptitude install bison aptitude install flex aptitude install gawk aptitude install libreadline-dev aptitude install locate cd /usr/src/mpls-iptables/ ./update-from-kernel.sh /usr/src/linux ./configure make make install iptables --version #iptables v1.4.1.1 mpls-linux 1.963 cd /usr/src/mpls-ebtables/ ./update-from-kernel.sh /usr/src/linux vi Makefile #INITDIR:=/etc/rc.d/init.d INITDIR:=/etc/init.d #SYSCONFIGDIR:=/etc/sysconfig make make install ebtables --version #ebtables v2.0.8-2 (May 2007) cd /usr/src/mpls-iproute2/ aptitude remove iproute ./update-from-kernel.sh /usr/src/linux aptitude install libdb-dev make DESTDIR= make DESTDIR= SBINDIR=/sbin MANDIR=/usr/share/man install make install ip -V #ip utility, iproute2-ss080725 mpls -V #mpls utility, iproute2-ss080725 mpls-linux 1.963 tc -V #tc utility, iproute2-ss080725 > > 2009/11/2, win...@fr... <win...@fr...>: >> two happy hours to install all the git sources of mpls-linux onto >> recent lenny(debian)-2.6.29 without any problem:-). >> I'd like to know, is there anything cool sitting in the git source >> besides those are already on the home page of wiki? >> >> Thanks, >> -Wind >> >> >> Quoting James Leu <jl...@mi...>: >> >>> On Sat, Oct 31, 2009 at 11:21:34PM +0100, Pali wrote: >>>> Hi, >>>> need a little help where to begin with VPLS implementation, because I >>>> don't >>>> have experience with this kind of projects. >>>> >>>> I read and trying to be familiar with following RFC documents: >>>> >>>> 4447 Pseudowire Setup and Maintenance Using the Label Distribution >>>> Protocol >>>> (LDP) >>> >>> AKA Martini signaling. It shouldn't be hard to implement the LDP related >>> for this. The more complicated for this and VPLS will be the >>> infrastructure >>> needed to build hierarchical LSPs. >>> >>>> 4448 Encapsulation Methods for Transport of Ethernet over MPLS Networks >>> >>> You do not need to worry about that since is is already implemented in >>> the kernel. Although it is broken on recent kernels, I plan to fix that >>> soon. >>> >>>> 4762 Virtual Private LAN Service (VPLS) Using Label Distribution >>>> Protocol >>>> (LDP) Signaling >>> >>> I myself have not read that RFC, but if you would like some guidance, >>> I could look it over and give you my recommendation for how you should >>> go about implementing it. >>> >>>> Any more I should read? >>> >>> I'm surprised no one has chimed in with VPLS via BGP (AKA Kompella >>> signaling) >>> >>>> I'm trying to collect subproblems in order to write a roadmap of project. >>>> Just some big topics... >>>> >>>> Learn howto recompile custom kernel : ) >>> >>> I suggest trimming down the 'config-generic' in the mpls-kernel >>> tree and use the make-jleu-rpm script. >>> >>>> Try some simple quagga topologies on virtual machines >>>> Try some linux based MPLS topologies - experience MPLS and LDP work >>>> Understand MPLS-Linux and Quagga code >>> >>> I'd be more then happy to discuss any of the above with you. >>> >>>> Learn howto create Live CD for presentation purposes >>>> Group peoples, that would like to contribute : ) >>>> Do you know some more? >>> >>> Let me know if you would like a branch of any of the git trees and >>> I can add users so that you can have a central depot to work from. >>> >>>> I'm planning to use VirtualBox as a virtualization platform, as it is >>>> really >>>> handy and simple. >>>> >>>> That's everything for today, tomorrow I will add some more specific >>>> roadmap >>>> subtopics. Nice rest of day for everybody. >>>> -- >>>> << 0903 48 47 40 >> mobil >>>> << 309458351 >> icq >>>> << ortseamo >> skype >>> >>>> ------------------------------------------------------------------------------ >>>> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >>>> is the only developer event you need to attend this year. Jumpstart your >>>> developing skills, take BlackBerry mobile applications to market and stay >>>> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >>>> http://p.sf.net/sfu/devconference >>>> _______________________________________________ >>>> mpls-linux-devel mailing list >>>> mpl...@li... >>>> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >>> >>> >>> -- >>> James R. Leu >>> jl...@mi... >>> >> >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> mpls-linux-devel mailing list >> mpl...@li... >> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >> > > -- > Odoslané z môjho mobilného zariadenia > > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > |
From: <bha...@ne...> - 2009-11-04 15:09:05
|
Hi James Leu and Pali, I think this can be very well possible and I am also trying to make "Linux Router" which can support all L2/L3 protocols - VLAN, RSTP, RIP, OSPF, BGP, MPLS, RSVP, layer2 filters(using ebtables), layer3 filters(using iptables), full firewall operation, but its in very early stages, I need help of the linux community to do this, I have done feasibility study. Salient Features:- ==================== 1. There will be common CLI for all protocol configurations. 2. There will be learning tables in kernel for data traffic forwarding, so that it can give much better performance then it's giving today. 3. We can also think of some forwarding engine if possible, which will give the best performance. 4. Make linux kernel setting so that is has all supporting modules for Linux Router only and all other modules and features should be disabled. Is any one know any active work going in the above area, please let me know. James Leu: I need your support for MPLS quagga and LDP-portable code compilation steps on Fedorra 10. Thanks & Regards Bhartendu M. Mobile : +91 9911117994 Gmail : bha...@gm... Yahoo : bha...@ya... -----Original Message----- From: James Leu [mailto:jl...@mi...] Sent: Monday, November 02, 2009 10:12 AM To: Pali Cc: mpl...@li... Subject: Re: [mpls-linux-devel] small mpls linux Pali, I do not have a good answer for you on your search for a small mpls-linux distribution. I can say that as part of my day job I am involved in a very similar search. If/when I solve that problem I may apply that knowledge to MPLS Linux as well.. On Sat, Oct 31, 2009 at 10:54:37PM +0100, Pali wrote: > Hi, > I use now Fedora virtual machines for MPLS networks, but in Fedora there is > a lot of software and services that come from very basic installation, and > that I don't need them. What possibilities I have, if I want small Linux > MPLS routers? Debian was one alternative, but I think MPLS Linux is not in > debian repositories. > > Thank You > > -- > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > ---------------------------------------------------------------------------- -- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel -- James R. Leu jl...@mi... |
From: <win...@fr...> - 2009-11-02 07:16:15
|
two happy hours to install all the git sources of mpls-linux onto recent lenny(debian)-2.6.29 without any problem:-). I'd like to know, is there anything cool sitting in the git source besides those are already on the home page of wiki? Thanks, -Wind Quoting James Leu <jl...@mi...>: > On Sat, Oct 31, 2009 at 11:21:34PM +0100, Pali wrote: >> Hi, >> need a little help where to begin with VPLS implementation, because I don't >> have experience with this kind of projects. >> >> I read and trying to be familiar with following RFC documents: >> >> 4447 Pseudowire Setup and Maintenance Using the Label Distribution Protocol >> (LDP) > > AKA Martini signaling. It shouldn't be hard to implement the LDP related > for this. The more complicated for this and VPLS will be the infrastructure > needed to build hierarchical LSPs. > >> 4448 Encapsulation Methods for Transport of Ethernet over MPLS Networks > > You do not need to worry about that since is is already implemented in > the kernel. Although it is broken on recent kernels, I plan to fix that > soon. > >> 4762 Virtual Private LAN Service (VPLS) Using Label Distribution Protocol >> (LDP) Signaling > > I myself have not read that RFC, but if you would like some guidance, > I could look it over and give you my recommendation for how you should > go about implementing it. > >> Any more I should read? > > I'm surprised no one has chimed in with VPLS via BGP (AKA Kompella signaling) > >> I'm trying to collect subproblems in order to write a roadmap of project. >> Just some big topics... >> >> Learn howto recompile custom kernel : ) > > I suggest trimming down the 'config-generic' in the mpls-kernel > tree and use the make-jleu-rpm script. > >> Try some simple quagga topologies on virtual machines >> Try some linux based MPLS topologies - experience MPLS and LDP work >> Understand MPLS-Linux and Quagga code > > I'd be more then happy to discuss any of the above with you. > >> Learn howto create Live CD for presentation purposes >> Group peoples, that would like to contribute : ) >> Do you know some more? > > Let me know if you would like a branch of any of the git trees and > I can add users so that you can have a central depot to work from. > >> I'm planning to use VirtualBox as a virtualization platform, as it is really >> handy and simple. >> >> That's everything for today, tomorrow I will add some more specific roadmap >> subtopics. Nice rest of day for everybody. >> -- >> << 0903 48 47 40 >> mobil >> << 309458351 >> icq >> << ortseamo >> skype > >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> mpls-linux-devel mailing list >> mpl...@li... >> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > -- > James R. Leu > jl...@mi... > |
From: James L. <jl...@mi...> - 2009-11-02 04:58:51
|
On Sat, Oct 31, 2009 at 11:21:34PM +0100, Pali wrote: > Hi, > need a little help where to begin with VPLS implementation, because I don't > have experience with this kind of projects. > > I read and trying to be familiar with following RFC documents: > > 4447 Pseudowire Setup and Maintenance Using the Label Distribution Protocol > (LDP) AKA Martini signaling. It shouldn't be hard to implement the LDP related for this. The more complicated for this and VPLS will be the infrastructure needed to build hierarchical LSPs. > 4448 Encapsulation Methods for Transport of Ethernet over MPLS Networks You do not need to worry about that since is is already implemented in the kernel. Although it is broken on recent kernels, I plan to fix that soon. > 4762 Virtual Private LAN Service (VPLS) Using Label Distribution Protocol > (LDP) Signaling I myself have not read that RFC, but if you would like some guidance, I could look it over and give you my recommendation for how you should go about implementing it. > Any more I should read? I'm surprised no one has chimed in with VPLS via BGP (AKA Kompella signaling) > I'm trying to collect subproblems in order to write a roadmap of project. > Just some big topics... > > Learn howto recompile custom kernel : ) I suggest trimming down the 'config-generic' in the mpls-kernel tree and use the make-jleu-rpm script. > Try some simple quagga topologies on virtual machines > Try some linux based MPLS topologies - experience MPLS and LDP work > Understand MPLS-Linux and Quagga code I'd be more then happy to discuss any of the above with you. > Learn howto create Live CD for presentation purposes > Group peoples, that would like to contribute : ) > Do you know some more? Let me know if you would like a branch of any of the git trees and I can add users so that you can have a central depot to work from. > I'm planning to use VirtualBox as a virtualization platform, as it is really > handy and simple. > > That's everything for today, tomorrow I will add some more specific roadmap > subtopics. Nice rest of day for everybody. > -- > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel -- James R. Leu jl...@mi... |
From: James L. <jl...@mi...> - 2009-11-02 04:41:13
|
Pali, I do not have a good answer for you on your search for a small mpls-linux distribution. I can say that as part of my day job I am involved in a very similar search. If/when I solve that problem I may apply that knowledge to MPLS Linux as well.. On Sat, Oct 31, 2009 at 10:54:37PM +0100, Pali wrote: > Hi, > I use now Fedora virtual machines for MPLS networks, but in Fedora there is > a lot of software and services that come from very basic installation, and > that I don't need them. What possibilities I have, if I want small Linux > MPLS routers? Debian was one alternative, but I think MPLS Linux is not in > debian repositories. > > Thank You > > -- > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel -- James R. Leu jl...@mi... |
From: James L. <jl...@mi...> - 2009-11-02 04:40:24
|
Vasu, Most of your patch has already been commited to the ldp-portable or quagga-mpls git trees. I believe the last bits that need to be resolved are the debug pieces. On Fri, Oct 30, 2009 at 06:42:16AM -0400, Vasu Dasari wrote: > Hi James, > > Did you get a chance to look over my code. > > Thanks, > -Vasu > > On Thu, Jun 11, 2009 at 12:46 PM, Vasu Dasari <vd...@gm...> wrote: > > > Thanks James. As you pointed out, I did not include ldp_debug.[ch]. I am > > including the same in this attachment. > > > > -Vasu > > > > > > On Wed, Jun 10, 2009 at 10:22 PM, James R. Leu <jl...@mi...>wrote: > > > >> I've pull the patches into my local tree. I'm in the midst of reviewing > >> and commit chunks that go together. My initial response is wow. > >> You had to do a lot of work to just to implement the memory tracking. > >> Impressive! > >> > >> I will let you and mailing list know when I have them all committed. > >> > >> On Wed, Jun 10, 2009 at 02:10:55PM -0400, Vasu Dasari wrote: > >> > Hi James, > >> > I am including two patch files, for ldp-portable and quagga-mpls. These > >> > patch files are generated using git format-patch. > >> > > >> > -Vasu > >> > > >> > On Tue, Jun 9, 2009 at 1:39 PM, James R. Leu <jl...@mi...> > >> wrote: > >> > > >> > > Hello Vasu, > >> > > > >> > > It is great to hear that you've made changed to quagga-mpls. Please > >> > > share your patch and I will do my best to get it integrated into the > >> > > tree as soon as I can. > >> > > > >> > > Ideally I'd like the patch as it comes from git format-patch, but > >> honestly > >> > > I'll take it in any form you have :-) > >> > > > >> > > If you're going to construct the diff by hand please use the diff > >> > > options -uNrb > >> > > > >> > > Please post it to the list as a gzip compressed attachment. > >> > > > >> > > On Tue, Jun 09, 2009 at 12:52:33PM -0400, Vasu Dasari wrote: > >> > > > Hi James, > >> > > > MPL-Linux and Quagga MPLS are quite useful projects both for > >> learning and > >> > > > fills a void in MPLS area open source community. I have been playing > >> with > >> > > > them for couple of months. > >> > > > > >> > > > My platform is Fedora core 10 and MPLS kernel is the one available > >> from > >> > > your > >> > > > site, 2.6.26.6, > >> > > > > >> > > > While working on Quagga-MPLS I had to fix some issues and made > >> couple of > >> > > > enhancements. > >> > > > > >> > > > 1. Netlink was not functional with Quagga-MPLS code as AF_MPLS was > >> 29 > >> > > where > >> > > > as, it is defined as 28 in kernel. > >> > > > 2. An issue preventing the code from running as an LSR is > >> identified, and > >> > > > fixed. > >> > > > 3. When we have multiple routes to same destination or route, > >> FEX<->NH > >> > > > mapping was not properly setup. Fixed this. > >> > > > 4. Ran Valgrind on LDP, and found couple of vangrind bugs. > >> > > > 5.Memory management as per Quagga framework be classifying, FEC, > >> NH,etc > >> > > to > >> > > > their own separate buckets. > >> > > > 6. Added debug LDP database to dump state of LDP database as per > >> > > ldp_global > >> > > > structure. > >> > > > > >> > > > So thought I could contribute my code, to the group, > >> > > > > >> > > > Please let me know if you want to look at my code, and let me know > >> how > >> > > can I > >> > > > contribute. > >> > > > > >> > > > Thanks, > >> > > > -Vasu > >> > > > >> > > > > >> > > > >> ------------------------------------------------------------------------------ > >> > > > Crystal Reports - New Free Runtime and 30 Day Trial > >> > > > Check out the new simplified licensing option that enables unlimited > >> > > > royalty-free distribution of the report engine for externally facing > >> > > > server and web deployment. > >> > > > http://p.sf.net/sfu/businessobjects > >> > > > _______________________________________________ > >> > > > mpls-linux-devel mailing list > >> > > > mpl...@li... > >> > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > >> > > > >> > > > >> > > -- > >> > > James R. Leu > >> > > jl...@mi... > >> > > > >> > >> > >> > >> > >> -- > >> James R. Leu > >> jl...@mi... > >> > > > > -- James R. Leu jl...@mi... |
From: Pali <pal...@gm...> - 2009-10-31 22:21:50
|
Hi, need a little help where to begin with VPLS implementation, because I don't have experience with this kind of projects. I read and trying to be familiar with following RFC documents: 4447 Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP) 4448 Encapsulation Methods for Transport of Ethernet over MPLS Networks 4762 Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling Any more I should read? I'm trying to collect subproblems in order to write a roadmap of project. Just some big topics... Learn howto recompile custom kernel : ) Try some simple quagga topologies on virtual machines Try some linux based MPLS topologies - experience MPLS and LDP work Understand MPLS-Linux and Quagga code Learn howto create Live CD for presentation purposes Group peoples, that would like to contribute : ) Do you know some more? I'm planning to use VirtualBox as a virtualization platform, as it is really handy and simple. That's everything for today, tomorrow I will add some more specific roadmap subtopics. Nice rest of day for everybody. -- << 0903 48 47 40 >> mobil << 309458351 >> icq << ortseamo >> skype |
From: Pali <pal...@gm...> - 2009-10-31 21:54:50
|
Hi, I use now Fedora virtual machines for MPLS networks, but in Fedora there is a lot of software and services that come from very basic installation, and that I don't need them. What possibilities I have, if I want small Linux MPLS routers? Debian was one alternative, but I think MPLS Linux is not in debian repositories. Thank You -- Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. << 0903 48 47 40 >> mobil << 309458351 >> icq << ortseamo >> skype |
From: Vasu D. <vd...@gm...> - 2009-10-30 10:42:49
|
Hi James, Did you get a chance to look over my code. Thanks, -Vasu On Thu, Jun 11, 2009 at 12:46 PM, Vasu Dasari <vd...@gm...> wrote: > Thanks James. As you pointed out, I did not include ldp_debug.[ch]. I am > including the same in this attachment. > > -Vasu > > > On Wed, Jun 10, 2009 at 10:22 PM, James R. Leu <jl...@mi...>wrote: > >> I've pull the patches into my local tree. I'm in the midst of reviewing >> and commit chunks that go together. My initial response is wow. >> You had to do a lot of work to just to implement the memory tracking. >> Impressive! >> >> I will let you and mailing list know when I have them all committed. >> >> On Wed, Jun 10, 2009 at 02:10:55PM -0400, Vasu Dasari wrote: >> > Hi James, >> > I am including two patch files, for ldp-portable and quagga-mpls. These >> > patch files are generated using git format-patch. >> > >> > -Vasu >> > >> > On Tue, Jun 9, 2009 at 1:39 PM, James R. Leu <jl...@mi...> >> wrote: >> > >> > > Hello Vasu, >> > > >> > > It is great to hear that you've made changed to quagga-mpls. Please >> > > share your patch and I will do my best to get it integrated into the >> > > tree as soon as I can. >> > > >> > > Ideally I'd like the patch as it comes from git format-patch, but >> honestly >> > > I'll take it in any form you have :-) >> > > >> > > If you're going to construct the diff by hand please use the diff >> > > options -uNrb >> > > >> > > Please post it to the list as a gzip compressed attachment. >> > > >> > > On Tue, Jun 09, 2009 at 12:52:33PM -0400, Vasu Dasari wrote: >> > > > Hi James, >> > > > MPL-Linux and Quagga MPLS are quite useful projects both for >> learning and >> > > > fills a void in MPLS area open source community. I have been playing >> with >> > > > them for couple of months. >> > > > >> > > > My platform is Fedora core 10 and MPLS kernel is the one available >> from >> > > your >> > > > site, 2.6.26.6, >> > > > >> > > > While working on Quagga-MPLS I had to fix some issues and made >> couple of >> > > > enhancements. >> > > > >> > > > 1. Netlink was not functional with Quagga-MPLS code as AF_MPLS was >> 29 >> > > where >> > > > as, it is defined as 28 in kernel. >> > > > 2. An issue preventing the code from running as an LSR is >> identified, and >> > > > fixed. >> > > > 3. When we have multiple routes to same destination or route, >> FEX<->NH >> > > > mapping was not properly setup. Fixed this. >> > > > 4. Ran Valgrind on LDP, and found couple of vangrind bugs. >> > > > 5.Memory management as per Quagga framework be classifying, FEC, >> NH,etc >> > > to >> > > > their own separate buckets. >> > > > 6. Added debug LDP database to dump state of LDP database as per >> > > ldp_global >> > > > structure. >> > > > >> > > > So thought I could contribute my code, to the group, >> > > > >> > > > Please let me know if you want to look at my code, and let me know >> how >> > > can I >> > > > contribute. >> > > > >> > > > Thanks, >> > > > -Vasu >> > > >> > > > >> > > >> ------------------------------------------------------------------------------ >> > > > Crystal Reports - New Free Runtime and 30 Day Trial >> > > > Check out the new simplified licensing option that enables unlimited >> > > > royalty-free distribution of the report engine for externally facing >> > > > server and web deployment. >> > > > http://p.sf.net/sfu/businessobjects >> > > > _______________________________________________ >> > > > mpls-linux-devel mailing list >> > > > mpl...@li... >> > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >> > > >> > > >> > > -- >> > > James R. Leu >> > > jl...@mi... >> > > >> >> >> >> >> -- >> James R. Leu >> jl...@mi... >> > > |
From: Scott W. <sw...@go...> - 2009-10-29 16:57:49
|
win...@fr... wrote: > Hi Pali, > > You mean that I could only build l2 mpls vpn point-to-point via > mpls-linux, and expand it to multiple-to-multiple manuelly without ldp > support. > Please correct me if I'm mistake. I also am looking at basic LDP functionality. I would love to help get it going again, as from what I can see the quagga integration has some problems at the moment, with or without VPLS. -Scott > > Thanks, > Wind > > Quoting Pali <pal...@gm...>: > >> Hi as I know, it's not yet implemented. For example, I'm working on it VPLS >> via LDP, you can help with implementation, if You are interested. >> >> 2009/10/28 <win...@fr...> >> >>> Hello, I'm newer to MPLS on Linux. Can anyone tell me what status of >>> L2 mpls-linux is, especially VPLS? Is it support Kompella? If lack of >>> implement for VPLS via LDP (quagga-mpls), how could LDP be used for L2 >>> MPLS? |
From: <win...@fr...> - 2009-10-29 16:42:54
|
Hi Pali, You mean that I could only build l2 mpls vpn point-to-point via mpls-linux, and expand it to multiple-to-multiple manuelly without ldp support. Please correct me if I'm mistake. Thanks, Wind Quoting Pali <pal...@gm...>: > Hi as I know, it's not yet implemented. For example, I'm working on it VPLS > via LDP, you can help with implementation, if You are interested. > > 2009/10/28 <win...@fr...> > >> Hello, I'm newer to MPLS on Linux. Can anyone tell me what status of >> L2 mpls-linux is, especially VPLS? Is it support Kompella? If lack of >> implement for VPLS via LDP (quagga-mpls), how could LDP be used for L2 >> MPLS? >> >> Thanks, >> Wind >> >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> mpls-linux-devel mailing list >> mpl...@li... >> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >> > > > > -- > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > |
From: <win...@fr...> - 2009-10-28 21:03:48
|
Hello, I'm newer to MPLS on Linux. Can anyone tell me what status of L2 mpls-linux is, especially VPLS? Is it support Kompella? If lack of implement for VPLS via LDP (quagga-mpls), how could LDP be used for L2 MPLS? Thanks, Wind |
From: James L. <jl...@mi...> - 2009-10-17 04:31:47
|
Hello Pali, I would be happy to give you guidance on how to go about implementing VPLS in the quagga-mpls code base. I would like to keep the discussion about this on the list, so that other can contribute to the design and perhaps maybe even assist in the implementation. On Fri, Oct 09, 2009 at 04:33:44PM +0200, Pali wrote: > Hi, I'm seriously interested into implementing VPLS via LDP into Linux-MPLS. > I would like to use it as my diploma work. Is there someone, who has tried > something in this area? > Is there someone, with who can I discuss implementation issues? > Thank You > > -- > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel -- James R. Leu jl...@mi... |
From: Pali <pal...@gm...> - 2009-10-09 14:34:06
|
Hi, I'm seriously interested into implementing VPLS via LDP into Linux-MPLS. I would like to use it as my diploma work. Is there someone, who has tried something in this area? Is there someone, with who can I discuss implementation issues? Thank You -- Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. << 0903 48 47 40 >> mobil << 309458351 >> icq << ortseamo >> skype |
From: sunil k. <sun...@gm...> - 2009-09-09 05:41:12
|
Hi Pali, Better u first try without ebtables. statically configure MPLS entries and make sure that MPLS working fine .. Sunil On Mon, Sep 7, 2009 at 2:49 AM, Pali <pal...@gm...> wrote: > Hi, > I'm trying to run simple MPLS example from this web page: > *http://sourceforge.net/apps/mediawiki/mpls-linux/index.php?title=Examples > > *I'm configuring LER router > > LER1 > ----- > brctl addbr br0 > brctl addif br0 eth1 > ip link set eth1 up > ip link set br0 up > mpls nhlfe add key 0 instructions push gen 1000 nexthop eth2 ipv4 172.16.0.3 > > (returns key 0x2) > ebtables -t nat -A PREROUTING -i eth1 -j mpls --nhlfe 0x2 > > > Last command failed: > > [root@localhost clovek]# ebtables -t nat -A PREROUTING -i eth1 -j mpls > --nhlfe 0x2 > >>> The kernel doesn't support a certain ebtables extension, consider > recompiling your kernel or insmod the extension. <<< > > I'm using Fedora 8, because I hope that it is ported on this OS correctly. > I have installed all your RPMs. > > [root@localhost clovek]# uname -a* > Linux localhost.localdomain 2.6.26.6-49.fc8.mpls.1.962 #1 SMP Mon Nov 17 > 22:10:38 CST 2008 i686 i686 i386 GNU/Linux* > > I know also, that problem is with the last parameter 0x2. > If I omit parameters "-j mpls --nhlfe 0x2", command end successfully. > [root@localhost clovek]# ebtables -t nat -A PREROUTING -i eth1 -j mpls > --nhlfe >>> 0x2 <<< > > Where could be the problem? I guess all modules are loaded successfully. > > [root@localhost clovek]# lsmod > Module Size Used by > ebt_mpls 6209 0 > ebtable_nat 6209 1 > ebtables 19777 2 ebt_mpls,ebtable_nat > bridge 45273 0 > rfcomm 32721 0 > l2cap 22081 9 rfcomm > bluetooth 47013 4 rfcomm,l2cap > autofs4 20933 2 > sunrpc 154785 3 > loop 16973 0 > dm_multipath 18633 0 > ipv6 238789 12 > parport_pc 26725 0 > floppy 52229 0 > parport 32173 1 parport_pc > pcspkr 6593 0 > pcnet32 31941 0 > mii 8385 1 pcnet32 > ac 8005 0 > i2c_piix4 11473 0 > i2c_core 20949 1 i2c_piix4 > sg 31605 0 > sr_mod 17541 0 > cdrom 33377 1 sr_mod > ata_piix 19525 0 > libata 132065 1 ata_piix > dm_snapshot 18661 0 > dm_zero 5825 0 > dm_mirror 19521 0 > dm_log 12229 1 dm_mirror > dm_mod 48265 10 > dm_multipath,dm_snapshot,dm_zero,dm_mirror,dm_log > mptspi 19145 2 > mptscsih 31169 1 mptspi > mptbase 67493 2 mptspi,mptscsih > scsi_transport_spi 23233 1 mptspi > sd_mod 26329 3 > scsi_mod 123917 7 > sg,sr_mod,libata,mptspi,mptscsih,scsi_transport_spi,sd_mod > ext3 110281 2 > jbd 41173 1 ext3 > mbcache 10309 1 ext3 > uhci_hcd 22993 0 > ohci_hcd 22853 0 > ehci_hcd 32845 0 > > Or another question, what is the easiest way, how to try your examples and > see how is MPLS is working? I'm using Vmware server, so I could install > different OS, for example FC10 i686. > > Thank you in advance. > > > -- > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. > > << 0903 48 47 40 >> mobil > << 309458351 >> icq > << ortseamo >> skype > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > |
From: Pali <pal...@gm...> - 2009-09-06 21:20:13
|
Hi, I'm trying to run simple MPLS example from this web page: *http://sourceforge.net/apps/mediawiki/mpls-linux/index.php?title=Examples *I'm configuring LER router LER1 ----- brctl addbr br0 brctl addif br0 eth1 ip link set eth1 up ip link set br0 up mpls nhlfe add key 0 instructions push gen 1000 nexthop eth2 ipv4 172.16.0.3 (returns key 0x2) ebtables -t nat -A PREROUTING -i eth1 -j mpls --nhlfe 0x2 Last command failed: [root@localhost clovek]# ebtables -t nat -A PREROUTING -i eth1 -j mpls --nhlfe 0x2 >>> The kernel doesn't support a certain ebtables extension, consider recompiling your kernel or insmod the extension. <<< I'm using Fedora 8, because I hope that it is ported on this OS correctly. I have installed all your RPMs. [root@localhost clovek]# uname -a* Linux localhost.localdomain 2.6.26.6-49.fc8.mpls.1.962 #1 SMP Mon Nov 17 22:10:38 CST 2008 i686 i686 i386 GNU/Linux* I know also, that problem is with the last parameter 0x2. If I omit parameters "-j mpls --nhlfe 0x2", command end successfully. [root@localhost clovek]# ebtables -t nat -A PREROUTING -i eth1 -j mpls --nhlfe >>> 0x2 <<< Where could be the problem? I guess all modules are loaded successfully. [root@localhost clovek]# lsmod Module Size Used by ebt_mpls 6209 0 ebtable_nat 6209 1 ebtables 19777 2 ebt_mpls,ebtable_nat bridge 45273 0 rfcomm 32721 0 l2cap 22081 9 rfcomm bluetooth 47013 4 rfcomm,l2cap autofs4 20933 2 sunrpc 154785 3 loop 16973 0 dm_multipath 18633 0 ipv6 238789 12 parport_pc 26725 0 floppy 52229 0 parport 32173 1 parport_pc pcspkr 6593 0 pcnet32 31941 0 mii 8385 1 pcnet32 ac 8005 0 i2c_piix4 11473 0 i2c_core 20949 1 i2c_piix4 sg 31605 0 sr_mod 17541 0 cdrom 33377 1 sr_mod ata_piix 19525 0 libata 132065 1 ata_piix dm_snapshot 18661 0 dm_zero 5825 0 dm_mirror 19521 0 dm_log 12229 1 dm_mirror dm_mod 48265 10 dm_multipath,dm_snapshot,dm_zero,dm_mirror,dm_log mptspi 19145 2 mptscsih 31169 1 mptspi mptbase 67493 2 mptspi,mptscsih scsi_transport_spi 23233 1 mptspi sd_mod 26329 3 scsi_mod 123917 7 sg,sr_mod,libata,mptspi,mptscsih,scsi_transport_spi,sd_mod ext3 110281 2 jbd 41173 1 ext3 mbcache 10309 1 ext3 uhci_hcd 22993 0 ohci_hcd 22853 0 ehci_hcd 32845 0 Or another question, what is the easiest way, how to try your examples and see how is MPLS is working? I'm using Vmware server, so I could install different OS, for example FC10 i686. Thank you in advance. -- Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. Na skype som dostupny stale, len mi daj vediet aby som sa prihlasil. << 0903 48 47 40 >> mobil << 309458351 >> icq << ortseamo >> skype |
From: <ouw...@ho...> - 2009-07-02 05:06:58
|
<br>PLEASE START USING MY GMAIL ADDRESS, I WILL ABANDON HOTMAIL SHORTLY.<br><br><span style="font-weight:bold">t.kleiberg (at) gmail.com</span><br><br><br>THANKS.<br><br>TOM<br><br> |
From: Dibyajyoti G. <dj....@gm...> - 2009-07-02 05:06:46
|
Hi James, I am interested in testing with Fedora 10 , please point me to the latest RPMs , I will start working on it right now. Thanks, -- Guha. On Thu, Jul 2, 2009 at 7:20 AM, James R. Leu <jl...@mi...> wrote: > Guha, > > I'm glad to hear of your interesting in helping with mpls-linux. > My latest effort has been on updating my development and testing > environment to fedora 10. To that end I have created RPMs for > most of the components that make up mpls-linux. > > I could use help testing and verifying functionality of these > updated RPMs. If you are interesting in helping with this please > respond and I will point you to where you can retrieve the latest RPMs. > > > On Tue, Jun 30, 2009 at 09:03:12PM +0530, Dibyajyoti Guha wrote: > > Hi, > > I am graduate student and want to contribute to the mpls-linux testing > and > > development effort. I want to setup a testbed with debian or fedora > > whichever working for you, Please let me know what version of linux > kernel > > which will be patched to mpls-linux. Someplace linux-2.6.15.1 is patched > to > > mpls-linux-1.950 and in another place linux-2.4 is being patched to > > someother version of mpls-linux. > > I am beginner in mpls but I have previously worked in SIP in Application > > layer. I have started learning linux kernel programming. I hope I will be > > able to contribute testing and later on I will start fixing the bug in > > mpls-linux. > > > > Thank you, > > -- Guha. > > > > On Thu, Dec 11, 2008 at 7:44 AM, James R. Leu <jl...@mi...> > wrote: > > > > > On Fri, Dec 05, 2008 at 02:42:19PM +0100, Pali wrote: > > > > Thanks to all, for your ideas, You are great. I'm going to discuss > and > > > > analyze which idea that you mentioned I'll be capable to do as a > > > graduation > > > > project and choose one. But first, I'm going to study and take some > > > practise > > > > in order to be familiar with MPLS technology. > > > > Have a nice day > > > > > > That sounds like a good way to start. No matter what level of > involvment > > > you think you have time for, I'm sure I can find a project for you. > > > Just let me know when you're ready, and the extent of the project your > > > looking for. > > > > > > To get up to speed you might want to look at using NetKit. > > > > > > http://www.netkit.org/ > > > > > > > > > > > 2008/12/3 James R. Leu <jl...@mi...> > > > > > > > > > From what I can tell, Vyatta doesn't support MPLS yet. > > > > > > > > > > On Wed, Dec 03, 2008 at 09:05:54AM -0800, Charles Wyble wrote: > > > > > > Jeremy Jackson wrote: > > > > > > > On Wed, 2008-12-03 at 16:56 +0100, Pali wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > The other side of that might be improve OSPF-TE, and make Linux > > > MPLS > > > > > > > integrate with the TC traffic control queueing. That would > allow > > > using > > > > > > > MPLS Linux inside a provider's network. > > > > > > > > > > > > > > > > > > > I agree that this is a critical component. I would start with > > > looking > > > > > > at Vyatta and seeing how they do there MPLS stuff. > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > > > This SF.Net email is sponsored by the Moblin Your Move > Developer's > > > > > challenge > > > > > > Build the coolest Linux based applications with Moblin SDK & win > > > great > > > > > prizes > > > > > > Grand prize is a trip for two to an Open Source event anywhere in > the > > > > > world > > > > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > > > _______________________________________________ > > > > > > mpls-linux-devel mailing list > > > > > > mpl...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > > -- > > > > > James R. Leu > > > > > jl...@mi... > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > > > > challenge > > > > > Build the coolest Linux based applications with Moblin SDK & win > great > > > > > prizes > > > > > Grand prize is a trip for two to an Open Source event anywhere in > the > > > world > > > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > > _______________________________________________ > > > > > mpls-linux-devel mailing list > > > > > mpl...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > > > > > > > > > > > > > > -- > > > > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu > X5. > > > > mobil << 0903 48 47 40 >> icq << 309458351 >> > > > > > > > > > > > ------------------------------------------------------------------------------ > > > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, > > > Nevada. > > > > The future of the web can't happen without you. Join us at MIX09 to > help > > > > pave the way to the Next Web now. Learn more and register at > > > > > > > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > > > _______________________________________________ > > > > mpls-linux-devel mailing list > > > > mpl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > -- > > > James R. Leu > > > jl...@mi... > > > > > > > > > > ------------------------------------------------------------------------------ > > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, > Nevada. > > > The future of the web can't happen without you. Join us at MIX09 to > help > > > pave the way to the Next Web now. Learn more and register at > > > > > > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > > _______________________________________________ > > > mpls-linux-devel mailing list > > > mpl...@li... > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > > > > -- > > With regards, > > Dibyajyoti Guha > > GS Sanyal School of Telecom > > IIT Kharagpur,India > > -- > James R. Leu > jl...@mi... > -- With regards, Dibyajyoti Guha GS Sanyal School of Telecom IIT Kharagpur,India |
From: James R. L. <jl...@mi...> - 2009-07-02 03:16:08
|
Guha, I'm glad to hear of your interesting in helping with mpls-linux. My latest effort has been on updating my development and testing environment to fedora 10. To that end I have created RPMs for most of the components that make up mpls-linux. I could use help testing and verifying functionality of these updated RPMs. If you are interesting in helping with this please respond and I will point you to where you can retrieve the latest RPMs. On Tue, Jun 30, 2009 at 09:03:12PM +0530, Dibyajyoti Guha wrote: > Hi, > I am graduate student and want to contribute to the mpls-linux testing and > development effort. I want to setup a testbed with debian or fedora > whichever working for you, Please let me know what version of linux kernel > which will be patched to mpls-linux. Someplace linux-2.6.15.1 is patched to > mpls-linux-1.950 and in another place linux-2.4 is being patched to > someother version of mpls-linux. > I am beginner in mpls but I have previously worked in SIP in Application > layer. I have started learning linux kernel programming. I hope I will be > able to contribute testing and later on I will start fixing the bug in > mpls-linux. > > Thank you, > -- Guha. > > On Thu, Dec 11, 2008 at 7:44 AM, James R. Leu <jl...@mi...> wrote: > > > On Fri, Dec 05, 2008 at 02:42:19PM +0100, Pali wrote: > > > Thanks to all, for your ideas, You are great. I'm going to discuss and > > > analyze which idea that you mentioned I'll be capable to do as a > > graduation > > > project and choose one. But first, I'm going to study and take some > > practise > > > in order to be familiar with MPLS technology. > > > Have a nice day > > > > That sounds like a good way to start. No matter what level of involvment > > you think you have time for, I'm sure I can find a project for you. > > Just let me know when you're ready, and the extent of the project your > > looking for. > > > > To get up to speed you might want to look at using NetKit. > > > > http://www.netkit.org/ > > > > > > > > 2008/12/3 James R. Leu <jl...@mi...> > > > > > > > From what I can tell, Vyatta doesn't support MPLS yet. > > > > > > > > On Wed, Dec 03, 2008 at 09:05:54AM -0800, Charles Wyble wrote: > > > > > Jeremy Jackson wrote: > > > > > > On Wed, 2008-12-03 at 16:56 +0100, Pali wrote: > > > > > > > > > > > > > > > > > > > > > > > > The other side of that might be improve OSPF-TE, and make Linux > > MPLS > > > > > > integrate with the TC traffic control queueing. That would allow > > using > > > > > > MPLS Linux inside a provider's network. > > > > > > > > > > > > > > > > I agree that this is a critical component. I would start with > > looking > > > > > at Vyatta and seeing how they do there MPLS stuff. > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > > > challenge > > > > > Build the coolest Linux based applications with Moblin SDK & win > > great > > > > prizes > > > > > Grand prize is a trip for two to an Open Source event anywhere in the > > > > world > > > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > > _______________________________________________ > > > > > mpls-linux-devel mailing list > > > > > mpl...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > -- > > > > James R. Leu > > > > jl...@mi... > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > > > challenge > > > > Build the coolest Linux based applications with Moblin SDK & win great > > > > prizes > > > > Grand prize is a trip for two to an Open Source event anywhere in the > > world > > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > _______________________________________________ > > > > mpls-linux-devel mailing list > > > > mpl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > > > > > > > > > -- > > > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > > > mobil << 0903 48 47 40 >> icq << 309458351 >> > > > > > > > ------------------------------------------------------------------------------ > > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, > > Nevada. > > > The future of the web can't happen without you. Join us at MIX09 to help > > > pave the way to the Next Web now. Learn more and register at > > > > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > > _______________________________________________ > > > mpls-linux-devel mailing list > > > mpl...@li... > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > -- > > James R. Leu > > jl...@mi... > > > > > > ------------------------------------------------------------------------------ > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > > The future of the web can't happen without you. Join us at MIX09 to help > > pave the way to the Next Web now. Learn more and register at > > > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > _______________________________________________ > > mpls-linux-devel mailing list > > mpl...@li... > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > -- > With regards, > Dibyajyoti Guha > GS Sanyal School of Telecom > IIT Kharagpur,India -- James R. Leu jl...@mi... |
From: Dibyajyoti G. <dj....@gm...> - 2009-06-30 15:33:17
|
Hi, I am graduate student and want to contribute to the mpls-linux testing and development effort. I want to setup a testbed with debian or fedora whichever working for you, Please let me know what version of linux kernel which will be patched to mpls-linux. Someplace linux-2.6.15.1 is patched to mpls-linux-1.950 and in another place linux-2.4 is being patched to someother version of mpls-linux. I am beginner in mpls but I have previously worked in SIP in Application layer. I have started learning linux kernel programming. I hope I will be able to contribute testing and later on I will start fixing the bug in mpls-linux. Thank you, -- Guha. On Thu, Dec 11, 2008 at 7:44 AM, James R. Leu <jl...@mi...> wrote: > On Fri, Dec 05, 2008 at 02:42:19PM +0100, Pali wrote: > > Thanks to all, for your ideas, You are great. I'm going to discuss and > > analyze which idea that you mentioned I'll be capable to do as a > graduation > > project and choose one. But first, I'm going to study and take some > practise > > in order to be familiar with MPLS technology. > > Have a nice day > > That sounds like a good way to start. No matter what level of involvment > you think you have time for, I'm sure I can find a project for you. > Just let me know when you're ready, and the extent of the project your > looking for. > > To get up to speed you might want to look at using NetKit. > > http://www.netkit.org/ > > > > > 2008/12/3 James R. Leu <jl...@mi...> > > > > > From what I can tell, Vyatta doesn't support MPLS yet. > > > > > > On Wed, Dec 03, 2008 at 09:05:54AM -0800, Charles Wyble wrote: > > > > Jeremy Jackson wrote: > > > > > On Wed, 2008-12-03 at 16:56 +0100, Pali wrote: > > > > > > > > > > > > > > > > > > > > The other side of that might be improve OSPF-TE, and make Linux > MPLS > > > > > integrate with the TC traffic control queueing. That would allow > using > > > > > MPLS Linux inside a provider's network. > > > > > > > > > > > > > I agree that this is a critical component. I would start with > looking > > > > at Vyatta and seeing how they do there MPLS stuff. > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > > challenge > > > > Build the coolest Linux based applications with Moblin SDK & win > great > > > prizes > > > > Grand prize is a trip for two to an Open Source event anywhere in the > > > world > > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > _______________________________________________ > > > > mpls-linux-devel mailing list > > > > mpl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > -- > > > James R. Leu > > > jl...@mi... > > > > > > > ------------------------------------------------------------------------- > > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > > challenge > > > Build the coolest Linux based applications with Moblin SDK & win great > > > prizes > > > Grand prize is a trip for two to an Open Source event anywhere in the > world > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > _______________________________________________ > > > mpls-linux-devel mailing list > > > mpl...@li... > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > > > > > > > -- > > Ak si prajes aby som cital tvoj mail do 5 min, tak napis do predmetu X5. > > mobil << 0903 48 47 40 >> icq << 309458351 >> > > > > ------------------------------------------------------------------------------ > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, > Nevada. > > The future of the web can't happen without you. Join us at MIX09 to help > > pave the way to the Next Web now. Learn more and register at > > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > > _______________________________________________ > > mpls-linux-devel mailing list > > mpl...@li... > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > -- > James R. Leu > jl...@mi... > > > ------------------------------------------------------------------------------ > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. > The future of the web can't happen without you. Join us at MIX09 to help > pave the way to the Next Web now. Learn more and register at > > http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > -- With regards, Dibyajyoti Guha GS Sanyal School of Telecom IIT Kharagpur,India |
From: James R. L. <jl...@mi...> - 2009-06-11 02:23:07
|
I've pull the patches into my local tree. I'm in the midst of reviewing and commit chunks that go together. My initial response is wow. You had to do a lot of work to just to implement the memory tracking. Impressive! I will let you and mailing list know when I have them all committed. On Wed, Jun 10, 2009 at 02:10:55PM -0400, Vasu Dasari wrote: > Hi James, > I am including two patch files, for ldp-portable and quagga-mpls. These > patch files are generated using git format-patch. > > -Vasu > > On Tue, Jun 9, 2009 at 1:39 PM, James R. Leu <jl...@mi...> wrote: > > > Hello Vasu, > > > > It is great to hear that you've made changed to quagga-mpls. Please > > share your patch and I will do my best to get it integrated into the > > tree as soon as I can. > > > > Ideally I'd like the patch as it comes from git format-patch, but honestly > > I'll take it in any form you have :-) > > > > If you're going to construct the diff by hand please use the diff > > options -uNrb > > > > Please post it to the list as a gzip compressed attachment. > > > > On Tue, Jun 09, 2009 at 12:52:33PM -0400, Vasu Dasari wrote: > > > Hi James, > > > MPL-Linux and Quagga MPLS are quite useful projects both for learning and > > > fills a void in MPLS area open source community. I have been playing with > > > them for couple of months. > > > > > > My platform is Fedora core 10 and MPLS kernel is the one available from > > your > > > site, 2.6.26.6, > > > > > > While working on Quagga-MPLS I had to fix some issues and made couple of > > > enhancements. > > > > > > 1. Netlink was not functional with Quagga-MPLS code as AF_MPLS was 29 > > where > > > as, it is defined as 28 in kernel. > > > 2. An issue preventing the code from running as an LSR is identified, and > > > fixed. > > > 3. When we have multiple routes to same destination or route, FEX<->NH > > > mapping was not properly setup. Fixed this. > > > 4. Ran Valgrind on LDP, and found couple of vangrind bugs. > > > 5.Memory management as per Quagga framework be classifying, FEC, NH,etc > > to > > > their own separate buckets. > > > 6. Added debug LDP database to dump state of LDP database as per > > ldp_global > > > structure. > > > > > > So thought I could contribute my code, to the group, > > > > > > Please let me know if you want to look at my code, and let me know how > > can I > > > contribute. > > > > > > Thanks, > > > -Vasu > > > > > > > ------------------------------------------------------------------------------ > > > Crystal Reports - New Free Runtime and 30 Day Trial > > > Check out the new simplified licensing option that enables unlimited > > > royalty-free distribution of the report engine for externally facing > > > server and web deployment. > > > http://p.sf.net/sfu/businessobjects > > > _______________________________________________ > > > mpls-linux-devel mailing list > > > mpl...@li... > > > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel > > > > > > -- > > James R. Leu > > jl...@mi... > > -- James R. Leu jl...@mi... |
From: James R. L. <jl...@mi...> - 2009-06-09 17:39:45
|
Hello Vasu, It is great to hear that you've made changed to quagga-mpls. Please share your patch and I will do my best to get it integrated into the tree as soon as I can. Ideally I'd like the patch as it comes from git format-patch, but honestly I'll take it in any form you have :-) If you're going to construct the diff by hand please use the diff options -uNrb Please post it to the list as a gzip compressed attachment. On Tue, Jun 09, 2009 at 12:52:33PM -0400, Vasu Dasari wrote: > Hi James, > MPL-Linux and Quagga MPLS are quite useful projects both for learning and > fills a void in MPLS area open source community. I have been playing with > them for couple of months. > > My platform is Fedora core 10 and MPLS kernel is the one available from your > site, 2.6.26.6, > > While working on Quagga-MPLS I had to fix some issues and made couple of > enhancements. > > 1. Netlink was not functional with Quagga-MPLS code as AF_MPLS was 29 where > as, it is defined as 28 in kernel. > 2. An issue preventing the code from running as an LSR is identified, and > fixed. > 3. When we have multiple routes to same destination or route, FEX<->NH > mapping was not properly setup. Fixed this. > 4. Ran Valgrind on LDP, and found couple of vangrind bugs. > 5.Memory management as per Quagga framework be classifying, FEC, NH,etc to > their own separate buckets. > 6. Added debug LDP database to dump state of LDP database as per ldp_global > structure. > > So thought I could contribute my code, to the group, > > Please let me know if you want to look at my code, and let me know how can I > contribute. > > Thanks, > -Vasu > ------------------------------------------------------------------------------ > Crystal Reports - New Free Runtime and 30 Day Trial > Check out the new simplified licensing option that enables unlimited > royalty-free distribution of the report engine for externally facing > server and web deployment. > http://p.sf.net/sfu/businessobjects > _______________________________________________ > mpls-linux-devel mailing list > mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel -- James R. Leu jl...@mi... |
From: <ouw...@ho...> - 2009-06-09 16:53:00
|
<br>PLEASE START USING MY GMAIL ADDRESS, I WILL ABANDON HOTMAIL SHORTLY.<br><br><span style="font-weight:bold">t.kleiberg (at) gmail.com</span><br><br><br>THANKS.<br><br>TOM<br><br> |
From: Vasu D. <vd...@gm...> - 2009-06-09 16:52:39
|
Hi James, MPL-Linux and Quagga MPLS are quite useful projects both for learning and fills a void in MPLS area open source community. I have been playing with them for couple of months. My platform is Fedora core 10 and MPLS kernel is the one available from your site, 2.6.26.6, While working on Quagga-MPLS I had to fix some issues and made couple of enhancements. 1. Netlink was not functional with Quagga-MPLS code as AF_MPLS was 29 where as, it is defined as 28 in kernel. 2. An issue preventing the code from running as an LSR is identified, and fixed. 3. When we have multiple routes to same destination or route, FEX<->NH mapping was not properly setup. Fixed this. 4. Ran Valgrind on LDP, and found couple of vangrind bugs. 5.Memory management as per Quagga framework be classifying, FEC, NH,etc to their own separate buckets. 6. Added debug LDP database to dump state of LDP database as per ldp_global structure. So thought I could contribute my code, to the group, Please let me know if you want to look at my code, and let me know how can I contribute. Thanks, -Vasu |
From: Scott W. <sw...@go...> - 2009-05-21 23:07:21
|
On Sat, May 16, 2009 at 03:24, Chris Robson <Chr...@nr...>wrote: > > Scott > > Your only concern should be the core linux release, aka 2.6.XX paying > particularly to the "XX" s. I took a quick look at the Centos page but the > Linux release did not jump out at me. If you let me know which linux, aka > "uname -a" it uses I most likely have a patch file to match it, if James > doesnt. > > My preferred OS if Fedroa 10, not sure why you have to use Centos and would > be concerned that since its a Red Hat clone your kernel, userland, libs are > limited to the release levels of Red Hat's distro. Note this is "not" to be > read as a criticism of either distro as I prefer bleeding edge releases of > Linux. Just call me a glutton for punishment :-). Actually what I do is > baseline with Fedora 10, then back track to other distro. For example, I've > ported James's MPLS-Linux to the PetaLinux distro, aka kernel 2.6.20. > > Anyway, is yu tell me your Centro kernel version, I most likely have the > build for it. Chris, I'm also trying to get netfpga support on the same boxes, and it needs Centos 5. The kernel is: kernel.i686 2.6.18-92.1.6.el5 installed and iproute is: iproute.i386 2.6.18-7.el5 installed Thanks, Scott > > ....Chris > > James R. Leu wrote: > >> I do not know of anyone who has done this. Let me know if there >> are any changes that need to be applied to the mpls linux patch >> to make it work. >> >> On Thu, May 14, 2009 at 04:53:04PM -0700, Scott Whyte wrote: >> >> >>> I'm going to try and get mpls-linux running on Centos 5.2 (I have some >>> other dependencies that are forcing me to Centos). Before I get going on it >>> I wanted to see if anyone has tried this, and what kind of luck they had >>> making it all work. >>> >>> Thanks, >>> Scott >>> >>> >>> ------------------------------------------------------------------------------ >>> Crystal Reports - New Free Runtime and 30 Day Trial >>> Check out the new simplified licensing option that enables unlimited >>> royalty-free distribution of the report engine for externally facing server >>> and web deployment. http://p.sf.net/sfu/businessobjects >>> _______________________________________________ >>> mpls-linux-devel mailing list >>> mpl...@li... >>> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >>> >>> >> >> ------------------------------------------------------------------------ >> >> >> ------------------------------------------------------------------------------ >> Crystal Reports - New Free Runtime and 30 Day Trial >> Check out the new simplified licensing option that enables unlimited >> royalty-free distribution of the report engine for externally facing server >> and web deployment. http://p.sf.net/sfu/businessobjects >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> mpls-linux-devel mailing list >> mpl...@li... >> https://lists.sourceforge.net/lists/listinfo/mpls-linux-devel >> >> > |