L3VPN Inter-AS Option B with Inter-AS TE

                 Is it possible to route L3VPN traffic through a Inter-AS TE tunnel when Option B is the configuration? If you can please post sample configs with explanations.

can you try to usedestination IP in the hean end that point to the tail-end IP
and use static route that for this IP point to the TE tunnel
e.g.
tunnelx
tunnel destination 2.2.2.2
ip route 2.2.2.2 255.255.255.255 tunnel x
then you may staticaly route traffic to TE tunnel for Layer 3 VPN traffic or autoroute once the next hope is chnaged to 2.2.2.2
To change the next hope of L3VPN MP-iBGP using route-map by making it using the tailend IP (2.2.2.2 ) under the relevant bgp address-family/VPNv4 at the ASBR/RR toward the desired PE ( head end )
e.g
ASBR/RR
bgp xx
address-family vpnv4neighbor [head-end/PE IP] route-map map1 out
route-map map1 permit
set ip next-hope 2.2.2.2
in the path option you should have both your AS ASBR and the remote AS ASBR IPs
in the ASBR of both ends in te phsycial interface facing the other AS:
int x/x
mpls traffic-eng passive-interface nbr-te-id [next-hop ASBR IP ] nbr-igp-id ospf [next-hop ASBR IP]
and let us know if this help !
Message was edited by: Marwan

Similar Messages

  • Can not see the option Execution with Data Change in the infoprovider?

    Hi team,
    i am using query designer 3.x, when i go into my bex brodcaster settings and schedule my report
    i can not see the option "Execution with Data Change in the infoprovider",
    i can only see 2 options
    Direct scheduling in background process
    create new scheduling
    periodic,
    is there any setting which i would be able to see the option "Execution with Data Change in the infoprovider"?
    kindly assist

    Hi Blusky ,
    check the below given link.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/ec/0d0e405c538f5ce10000000a155106/frameset.htm
    Regards,
    Rohit Garg

  • Apex 3.0 Q: "Optional Label with Help" default when creating new form?

    When I create a new application, usually one of the first things I do is set the default item label to "Optional", so I don't have the annoying popup help link.
    Now, when you create a new Form region, based on a table, for all the items the label is set to "Optional label with help". Am I right in hoping this is something that was overlooked when developing Apex, and that it will be fixed in version 3.0, so that it sets the items to the default label as set in the Shared Components?
    And is there a way to change the labels for a lot of items at the same time, other than changing the theme templates?

    AFAIK, label help in default manner is based on column coments of a table.
    Later there is now way to easy reedit these values but manually...

  • I get a dialogue box asking "What should Firefox do with this file" Options open with or save file. My wife selected save file and now it only opens note pad and displays the text of the file to be saved. OK in windows Internet Explorer.

    I get a dialogue box asking "What should Firefox do with this file" Options open with or save file. My wife selected save file and now it only opens note pad and displays the text of the file to be saved. OK in windows Internet Explorer.

    P.S. Site is http://www.coldwatercreek.com

  • Change the popup window size in the "optional label with help" template?

    G'Day Apex/javascript gurus,
    I am using Apex 4.0 where I coded an HTML table for help text in one item. Now, when an user click for help in this item then the HTML table is bigger than the size of the pop up window so the client has to re size it a bit to see it fully. To fix this, I tried to create a new "optional level with help" template where I can control the size of the pop up window and make it bigger to fit my HTML table so the client does not have to resize but I could not find any parameter in the original template:
    <label for="#CURRENT_ITEM_NAME#"><span class="t9optionalwithhelp"> "javascript:popupFieldHelp('#CURRENT_ITEM_ID#','&SESSION.')" tabindex="999" that help me to achieve that
    I am not an expert in javascript but I appreciate greatly if somebody here could help me to create a new label (with help) template where I can control the size of the popup window.
    Kind regards
    Carlos
    Edited by: creyes on Aug 1, 2011 1:22 AM

    Hello Carlos,
    You can overload the APEX javascript with your own, on the page you want it to happen. You can do that in the Page Definition - Function and Global Variable Declaration.
    Copy the below code into there and change the width and height of the popup.
    function popupFieldHelp(pItemId, pSessionId){
        // Show jQuery div based dialog if not running in screen reader mode, if not fall back to old popup
        if (!$x('pScreenReaderMode')) {
            apex.jQuery.getJSON(
            'wwv_flow_item_help.show_help?p_item_id=' + pItemId + '&p_session=' + pSessionId + '&p_output_format=JSON',
            function(pData){
              var lDialog = apex.jQuery("#apex_popup_field_help");
              if (lDialog.length===0) {
                // add a new div with the retrieved page
                lDialog = apex.jQuery('<div id="apex_popup_field_help">'+pData.helpText+'</div>');
                // open created div as a dialog
                lDialog
                  .dialog({
                    title: pData.title,
                    bgiframe: true,
                    width: 500,
                    height: 350,
                    show: 'drop',
                    hide: 'drop' });
              } else {
                // replace the existing dialog and open it again
                lDialog
                  .html(pData.helpText)
                  .dialog('option', 'title', pData.title)
                  .dialog('open');
        } else {
            popupFieldHelpClassic(pItemId, pSessionId);
        return;
    }; // popupFieldHelpHope that makes sense,
    Dimitri
    http://dgielis.blogspot.com
    http://www.apex-evangelists.com

  • Initializu00EDng select options field with default values and with NO INTERVALS

    Dear All,
    I have used WDR_SELECT_OPTIONS technology within WD Abap.
    I also have added the fields which have to be taken into consideration.
    lt_range_table =
    wd_this->m_handler->create_range_table(
    i_typename = 'PLANT' ).
    wd_this->m_handler->add_selection_field(
    i_id = 'PLANT'
    it_result = lt_range_table
    i_read_only = read_only ).
    Can I assign two values to this field 'PLANT' whereby the user may take only these values.
    I mean kind of pre initializíng of this select options field with default values.
    Due to this handling it should be prevented that the user can give other values
    except this values.
    Additonally it should be fine whether it is possible to disable the second input field
    of this select options field like NO INTERVALS .
    Regard
    sas
    Regard
    sas

    wd_this->m_handler->add_selection_field(
    i_id = 'PLANT'
    it_result = lt_range_table
    I_NO_INTERVALS = 'X'
    i_read_only = read_only ).
    Pls check 'WDR_TEST_SELECT_OPTIONS' web dynpro component

  • Before I downloaded Lion every time I would upload a pic from iphoto there would be two files.  One that was 1.8MB and another that was 50KB.  Now I can only find the 1.8MB one.  Did this option disappear with Lion?

    Before I downloaded Lion every time I would upload a pic from iphoto there would be two files.  One that was 1.8MB and another that was 50KB.  Now I can only find the 1.8MB one.  Did this option disappear with Lion?  I really need this option!

    Sorry but this is not clear.
    When you would "import" what?
    two files would show up in "images".
    Do you mean in the All Images search in the Finder?
    IF so:
    1.Never interact with photos that are in iPhoto via the All Images Search. This does not understand the iPhoto Library and it's very, very easy to damage the library this way.
    2. What you were seeing was the original file you imported and the thumbnail created by iPhoto for viewing on the iPhoto Window. That thumbnail is not designed for user access.
    What are you trying to do ultimately?
    Regards
    TD

  • How to remove the option "shared with"

    Hello,
    for a certain list, I need to remove the option "shared with' from the "....", not at the ribbon. Is this possible and how?
    Thank you
    Christos

    I would also suggest manipulating CSS, and you see some of the ideas in this forum. However I have not tried any of those methods -http://sharepoint.stackexchange.com/questions/66420/how-to-remove-the-shared-with-or-email-to-everyone-buttons
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Unable to view the option register with ESB

    Hi,
    After installing SOA suite we are unable to view the option register with ESB on right click of fulfillment ESB in Jdeveloper .We had followed all the steps listed in the installation document still unable to resolve this issue.
    Thanks in advance !!
    Dhanesh

    Cannot Register with ESB unless
    1: full JDev 10.1.3.3 Studio Edition
    2: Added Application Server in Connections Navigator
    3: Added Integration/ESB server in Connections Navigator on that Application Server.

  • How to order Option 3 with Fibre?

    Sorry if this is slightly off topic but I've endured a very slow internet connection for years with Plusnet so I've been planning to change to BT for some time. I've carried out a line check on the BT website and also the BT Wholesale website and it states that I can take advantage of the fibre optic network and expect a speed of 9.1 MB. This might not sound that fast but I would be over the moon with 9.1 as my current connection is almost as slow as dial up!
    My question though is that when the BT site advises me to choose a package there is no option for Option 3 with fibre just the Total Broadband and Faster Total Broadband. Do I have to call a certain number to order the fibre service? Any help would be appreciated as to who is best to call or email. Also, how long is it likely to take between ordering Opt 3 fibre and getting it installed?

    Call 150, they should be able to order it. You might also find that you get higher than the estimated speed
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Output option- Send with application own transaction

    Hi Team,
    Could anybody explain how exactly the "Output option- Send with application own transaction" works.
    This is the third option for the output types for any document(sale order / Delivery/ Shipment).
    This option can be given in the Output - > Requested processing -> Dispatch time - option (3) (Send with application own transaction)
    It would be better if you can explain with a sample example.
    Thanks in advance.
    Regards,
    Ram.

    Hi Naga/Max,
    Thanks for your replies.
    So if we are using the option 3, i need few clarifications like:
    -when exactly the output is being triggered.
    -What will decide whether it will be a foreground/background execustion
    - If the output is being triggered right afgter we choosing 3 and saving the document , then what is the difference between Sed while savin gthe document option and option 3.
    Please let me know
    Rg
    Ram

  • How do I download tv shows on iPod? Ios7. They are there. A little cloud icon in the bottom right corner. But unlike an iPad, there is no option (cloud with a downward facing arrow) to download.

    How do I download tv shows on iPod? Ios7. They are there. A little cloud icon in the bottom right corner. But unlike an iPad, there is no option (cloud with a downward facing arrow) to download.

    If they have 'open' next to them then that implies that they are already on your iPad - if you tap on the 'open' button does that open the app ? If it does then they are on your iPad. You've checked all your homescreens and tried a soft-reset to see if they show after the iPad has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Option click with mouse?

    This is my last question for now. I'm playing an online puzzle challenge at Gold Rush. And for the puzzle for Mac users, you need to option click to alternate the puzzle pieces. How do you option click with the Mighty Mouse?

    Hi, Kirsten.
    Same as with any other mouse: hold the Option key, then click with mouse button one, i.e. the same button you would use to perform a single click, usually the left mouse button if you've set up your mouse as right-handed.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Call Transaction and fill a select-options field with more than one value?

    Hello everybody,
    how can I fill a select-options field with more than one value.
    Here is the code example:
      CLEAR: GT_BDCDATA, GS_BDCDATA.
      GS_BDCDATA-program = 'RHALEINI'.
      GS_BDCDATA-DYNPRO = '1000'.
      GS_BDCDATA-DYNBEGIN = 'X'.
      APPEND GS_BDCDATA TO GT_BDCDATA.
      CLEAR: GS_BDCDATA.
      GS_BDCDATA-FNAM = 'PCHOTYPE'.
      GS_BDCDATA-FVAL = 'P'.
      APPEND GS_BDCDATA TO GT_BDCDATA.
      CLEAR: GS_BDCDATA.
      LOOP AT gt_hrobjinfty INTO gs_hrobjinfty.
        GS_BDCDATA-FNAM = 'PCHOBJID-LOW'.
        GS_BDCDATA-FVAL = gs_hrobjinfty-objid.
        APPEND GS_BDCDATA TO GT_BDCDATA.
        CLEAR: GS_BDCDATA.
      ENDLOOP.
      CALL TRANSACTION 'PFAL' USING GT_BDCDATA MODE 'A'
                       MESSAGES INTO GT_MESSAGES.
    THX.

    Hi,
    Please refer the code below:
    *Code used to populate 'select-options' & execute report
    DATA: seltab type table of rsparams,
          seltab_wa like line of seltab.
      seltab_wa-selname = 'PNPPERNR'.
      seltab_wa-sign    = 'I'.
      seltab_wa-option  = 'EQ'.
    * load each personnel number accessed from the structure into
    * parameters to be used in the report
      loop at pnppernr.
        seltab_wa-low = pnppernr-low.
        append seltab_wa to seltab.
      endloop.
      SUBMIT zreport with selection-table seltab
                                    via selection-screen.
    Thanks,
    Sriram Ponna.

  • Does the 17" non-glare screen option come with silver or black border?

    I've read that the new 17" non-glare (aka matte) screen option comes with the now-standard black border and I've also read that it comes with the old silver border as on current-gen MBPs and old PBs. The Apple MBP 17" section doesn't seem to answer the question or have any photos of the non-glare 17".
    As asked in the title, does anyone know which border color is standard for the non-glare 17"? Thanks very much.

    What I've been trying to figure out is it the new LED backlit, larger color gamut, higher res new screen with an anti-glare film in the old frame? Or is it the same old technology 17" screen on a new unibody base?
    If it's the old technology screen on a new computer, I may have to go glossy with mine. If it's the new technology screen and the only downside is a silver frame versus a black one, that's pretty minor and will convince me to go anti-glare.
    I can't understand why Apple hasn't cleared this up?

  • [GE60 0ND] Add Boot Mode option UEFI with CSM

    Hi,
    I have the GE60 0ND pre-installed with Windows 8.
    BIOS version : E16GAIMS.514
    EC version : 16GAEMS1 Ver5.04
    Currently in Boot Mode, I have "UEFI" and "Legacy".
    Is it possible to add the third option "UEFI with CSM" (in order to install Windows 7 on a GPT partition table) ?
    Donation number : 0W026222JN3488454
    Thank you very much !
    Damien

    Quote
    Ok thanks.
    What unlock BIOS exactly means ?
    to unlock all possible hidden bios options for your BIOS
    Quote
    Do you think I can flash my BIOS to the Windows 7 version : E16GAIMS.10F
    nope, this bios isn't for your notebook you can't flash it
    with cross flash by special way could be possible,
    but i don't know how this bios will works for your NB, there are possible side effects
    else there is UEFI Boot which is disabled and separated CSM Support option which is enabled
    also switching to .1xx will lost your W8 key, because win7 bios don't have such
    for your bios[514]
    there is "CSM parameters"
    but i don't know how this can be activated or what parameters will be there[if any]

Maybe you are looking for