Is it possible to create l3vpn without enabling mpls in the core and PE routers .

Hi 
i have below setup , in this PE1,P,PE2 routers do not have mpls support , it have only MGRE and GRE tunnel support ,
is it possible to create l3vpn without mpls here .
                          bgp session between PE1 and PE2, 
CE1---------------PE1-----------------P---------------PE2------------CE2 .
PE1,P,PE2 do not have mpls support .
Thanks
Duraipandi

hi durai,
you can use the vrf-lite model but this is complex to manage in larger networks.
for example:
CE1 ---PE----core(x)---P------PE---CE1
CE2  --/                                    \----CE2
in this case, without mpls, I need to create on the core(x) link 2 vrf's with 2 vlans to go to "P".
and the same on the other PE and link.
Now if you think that there are more P's with backup paths or more CE's that linkage exponentially increases to define those vlans and in all your P routers is that awareness of every CE route!
MPLS just simplifies this; single core link,by just using labels. Your P routers only see PE next hops and are opaque to the number of vrf's you carry/service. Adding another P or PE device integrates into the routing naturally and MP BGP takes care of the PE advertisement. So expanding and rerouting are more natural and graceful here too.
So while technically MPLS can be omitted, it is just not a smart thing to do from a design perspective in l3vpn.
cheers!
xander

Similar Messages

  • HT5570 My six-year old grandson appears to be able to make purchases on the TV without having to enter the password and yet every other device i use (e.g. iPad, iPhone, iPod) is password protected. How is that possible?

    My six-year old grandson appears to be able to make purchases on the TV without having to enter the password and yet every other device i use (e.g. iPad, iPhone, iPod) is password protected. How is that possible when I have to use my password to access such services on all other devices?

    DominicDeBurca wrote:
    My six-year old grandson appears to be able to make purchases on the TV without having to enter the password and yet every other device i use (e.g. iPad, iPhone, iPod) is password protected. How is that possible when I have to use my password to access such services on all other devices?
    Having AppleTV remember the password is optional.
    Logout of iTunes store, log back in and hopefully next time you come to purchase you'll be prompted for your password but decline the option to remember it.  You might also want to look out of parental controls on the unit.
    AC

  • Is it possible to create a generic report that accepts the SQL as a param

    Is it possible to create a generic report that accepts the FULL sql statement as a paramater and returns variable results based on this?
    We have a requirement to have a generic export routine to spit out csv's from clicking on a web page hyperlink, which would need to accept a "new" sql statement for every run, each containing different columsn etc that would be needed in the output.
    I was hoping could have a generic Oracle report, exporting delimited data format (and as such not using a layout) and somehow pass in the "new" sql statement as a parameter at run time - each sql statement would be different with different columns etc.
    Is this possible with oracle reports ?
    thanks

    If you need a simple dump of data you could try writing a report with a simple query such as
    select 'Report title or column headers'
    from dual
    &data_query
    then your &data_query parameter could be
    union select col1||','||col2 from data_table
    If you are outputing a comma separated data dump the you can concatenate together your data into a single text field.
    This would allow you to have a simple heading followed by the actual data. I guess you could extend this so that the 'Report title or column headers' from the first query was also a parameter to output your row headings i.e.
    select :column_headings_text
    from dual
    &data_query
    Give it a go and good luck

  • Is it possible to create a variable in bex with the last work day?

    Hi Gurus
    Is it possible to create a variable in bex with the last work day?
    Actually end-user every day open queries,
        - Put in selection date day - 1 or
        - put last Friday if the day is Monday or
        - put last Thursday if the day is Monday and Friday is holiday (in a calendar for example 25 the December).
    Please do the needful. It is urgent
    Thanks in advance
    Raj

    Try this logic in a customer exit:
    DATA:  l_s_range TYPE rsr_s_rangesid.
    DATA:  X_PERIOD LIKE T009B-POPER,
               X_YEAR   LIKE T009B-BDATJ.
      CASE I_VNAM.
      WHEN 'ZPREVWORKDAY'.
        DATA: l_DayOfWeek(1) TYPE C,
              l_act_date     TYPE d,
              l_prev_date    TYPE d.
        l_act_date = sy-datum.
        CALL FUNCTION  'DATE_COMPUTE_DAY'
             EXPORTING DATE = l_act_date
             IMPORTING DAY  = l_DayOfWeek.
        CASE l_DayOfWeek.
          WHEN '1'.
            l_prev_date = l_act_date - 3.
          WHEN '2'.
            l_prev_date = l_act_date - 1.
          WHEN '3'.
            l_prev_date = l_act_date - 1.
          WHEN '4'.
            l_prev_date = l_act_date - 1.
          WHEN '5'.
            l_prev_date = l_act_date - 1.
          WHEN '6'.
            l_prev_date = l_act_date - 1.
          WHEN '7'.
            l_prev_date = l_act_date - 2.
        ENDCASE.
        l_s_range-low  = l_prev_date.
        APPEND l_s_range TO e_t_range.
    ENDCASE.
    Edited by: Tyler Blouse on Feb 13, 2008 8:28 PM

  • Is it possible to create an album in gallery on the iPad or do you have to do it on your computer?

    Is it possible to create an album in gallery on the iPad or do you have to do it on your computer?

    Thanks, how about in gallery on MobileMe ? As I am not near my computer for the next 3 weeks so can't do a cable sync do you think I could create and album in gallery on mobile me on a "borrowed" computer and do it throughout the cloud?

  • With adobe standard, is it possible to create a fillable document that can be saved and used repeatedly as a fillable doc

    with adobe standard, is it possible to create a fillable document that can be saved and used repeatedly as a fillable doc

    Hey Paul,
    Please let me know what version of Acrobat Standard are you using.
    Regards,
    Anubha

  • Is it possible to create a 1 D array with the "build array VI"? when receiving random number

    Hello all,
    Is it possible to create a 1 D array with the "build array VI" when receiving random number?
    I am receiving random data and the build array VI always create a 2D array which might cause some problem if you want to compute certain type of operation after.
    Any example will be welcomed.
    Thank you,
    Israel 

    Hello Lynn and Yamaeda
    First I want to Thank you Lynn for your linguistic contribution indeed "Build Array" is a primitive and not VI, thank you for the education. In reality what I am doing is simple.
    I have two arrays of complex elements Array1 and Array2.
    Array1 conains the complex elements ""(a0+ib0) ; (a1+ib1) ;...(an+ibn) ;
    Array2 conains the complex elements ""(c0+id0) ; (c1+id1) ;...(cn+idn) 
    What I want to do is the multiplication of the first array by the  conjugate of the second array element.
    Array1*(Conjugate Array 2)" for the first element the results is "(a0.C0-b0.d0) + i(b0c0-a0d0)" and the etc...
    and then taking the square root ([(a0.C0-b0.d0) power of 2]) +  [(b0c0-a0d0) power of 2])
    I was wondering if there were some dedicate primitive that could solve the computation above which is the cross correlation in Frequency domain.
    Thank you very much.
    Israel

  • Is it possible to buy an iphone to use in the US and the rest of the world without buying a monthly phone plan?

    Is it possible to buy an iphone to use in the US and the rest of the world without buying a monthly plan? I'd like to travel without two camera, two cell phones and use my iphone as a backup camera and phone for texting and short calls during international travel. Can an iphone take sim cards as some smart phones?

    If you buy an unlocked phone from Apple you should be able to use it with any carrier. It'll be more expensive but you get the freedom to choose.

  • Is there a way to create a heading with shading behind the text and thin lines above and below?

    I'm working with InDesign CS6, Windows 7.
    Is there a way, using paragraph rules, to create a heading with shading behind the text and thin lines above and below the text?
    I'd like to create headings that look like these:
    Thank you!

    I have a document where I almost do such, but without the fill. I use a Head Style which Spans Columns for this instance; it allows the haeds to flow and fill the width.
    Paragraph Rules above and below are turned on with plenty of offset.
    I tweaked my setting to accomodate your need - It required only one instance, not above and below, and changing the stroke to a double stroke. 
    It may be necessary to create a custom stroke to modify the proportion of stroke vs fill. There is a difference of thin-thin and  thick-thick, neither of which seemed perfect but might be dependent on the Character height.
    Creating custom strokes is accomplished via the Strokes Panel.

  • I have a MacBook Pro, 15-inch, Mid 2009.  I would love to upgrade to a Solid State Drive.  What is the best possible upgrade I can buy.  I need the specs and even brand name.  Thank you to anyone who can help.

    I have a MacBook Pro, 15-inch, Mid 2009.  I would love to upgrade to a Solid State Drive.  What is the best possible upgrade I can buy.  I need the specs and even brand name.  Thank you to anyone who can help.

    A 15" mid-2009 MBP RAM specifications are: 204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM.
    As has been pointed out, OWC is an excellent source for Mac compatible RAM.  Crucial is another first rate source for Mac RAM.  RAM from either vendor will work just as well as any purchased from Apple with the bonus of being less expensive and having a lifetime guarantee.
    Ciao.

  • I can't get my Ipad to show up at all in Itunes.  1 How do I fix that and 2 Can I fix this without losing all of the videos and apps that aren't synched with my computer yet?

    I can't get my Ipad to show up at all in Itunes.  1 How do I fix that and 2 Can I fix this without losing all of the videos and apps that aren't synched with my computer yet?

    http://support.apple.com/kb/ts1591
    http://support.apple.com/kb/TS1538

  • Is it possible to store all my itunes music in the cloud and retrieve as needed from my iphone

    Bought my wife an 16G Iphone 5 for Christmas. She went to upgrade to 32G the day after Christmas and was told she'd have to pay a $35 restocking fee? She needs the extra storage for music thus my question: is it possible to store all my itunes music in the cloud and retrieve as needed?

    Good morning K
    A couple of things.
         1.  Anything you buy from itunes can be stored on the icloud free.  It doesn't count against storage.
         2. Music not from itunes can be stored in the cloud free up to the storage limit.
         3.  If you use and pay for itunes match (25$ a year) it will match as much of your music against the Apple      library and then only store your non-matched music in the cloud.  This is great for large libraries.
         4.  When you request a song from the cloud it needs to be connected to the net to download it so you can play                    it.  It then is stored on your iphone.  You may eventually want to delete it from the iphone but it will                      be available in the icloud for future download.          
                     Just don't agree to "delete from icloud also.
    Cheers

  • Why isn't it not possible to synchronize with itunes 11.1.4  the contacts and calendars of my iphone and ipad with outlook 2010 as it was possible with itunes 10?

    Why isn't it not possible to synchronize with itunes 11.1.4  the contacts and calendars of my iphone and ipad with outlook 2010 as it was possible before with itunes 10?

    Hello, Ran12345. 
    Thank you for visiting Apple Support Communities. 
    It is still possible to sync contacts and calendars from Outlook using iTunes.  If you are experiencing issues with this, here is the best article to go through. 
    Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010
    http://support.apple.com/kb/ts2776
    Cheers,
    Jason H. 

  • Is it possible to buy an iPhone 4s unlocked in the US, and then use it normally and completely in France with Freemobile ?

    Is it possible to buy an iPhone 4s unlocked in the US, and then use it normally and completely into France with Freemobile (which provides micro-SIM) ?
    I'm travelling to NYC tomorrow and that would be 100€ less than in France...

    Thank you for the quick answer
    Do you mean that I can't reserve and pick up my phone in the local apple store as it's explained on the site (http://www.apple.com/retail/iphone/) ?
    What about the social security number asked in the formulary ? I've got a French one...
    Puzzled...

  • How can I enable FTP on the DMP and How can I FTP to it and then remove the files that were deployed to the DMP flash?

    How can I enable FTP on the DMP and How can I FTP to it and then remove the files that were deployed to the DMP flash? My platform of DMS is 5.2.2

    Hi Temur, ok. I do the above procedure and it worked fine
    Now, I have other question?
    How can I reproduce any file (for example: a video, an url page, an image), that is in the flash of DMP?
    Índice de ftp://172.17.15.22/tmp/ftproot/tmp/ftproot/tmp/ftproot/usb_1/
    Subir al directorio superior.
    Nombre Tamaño Última modificación
    Sample Videos.lnk
    1 KB
    17/06/2011
    06:25:00 a.m.
    deployment
    29/06/2010
    04:14:00 a.m.
    lost+found
    25/02/2010
    12:00:00 a.m.
    video futbol en la playa.mp4
    1390 KB
    29/06/2010
    01:08:00 a.m.
    videofutbol.mp4
    1390 KB
    29/06/2010
    01:38:00 a.m.
    I like, that el DMP when loss conectivity with DMM, It display at the LCD screen, the video named videofutbol.mp4, this video As I show in the picture above, already in the flash of DMP.
    I appreciate your early response.
    Thanks

Maybe you are looking for