P routers have no knowledge of the customer prefixes, they just Label switch the packets based on their LFIB

Here is a scenrio,
(1.1.1.0)CE1-PE1-P-PE2-CE2(2.2.2.0)
P router has no customer routes in its routing table, since it is not participating in iBGP.. thats perfect....
but P routers are meant to label switch packets between CE-1 & CE-2 through PE1 & PE2.. but i cannot see any labels for customer routes in P LFIB:
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;}
P#sh mpls for
Local  Outgoing    Prefix            Bytes tag  Outgoing   Next Hop
tag    tag or VC   or Tunnel Id      switched   interface
16     Pop tag     10.10.10.11/32    6703       Se0/1      point2point
17     Pop tag     10.10.10.10/32    2140       Se0/0      point2point

Hi Mukarramjahraheel 
You are right . P will not participating in iBGP. He is not aware of any Customer router of BGP VPNv4 route..
P Router know only internal IGP. Please go through the below points.
The JOB of Core router is to propogate the route As Fast As Possible without delay.
Don't Get confuse in MPLS . MPLS is used for only  Fast switching . Whouth MPLS also you can RUN  VRF kown as VRF - Lite , BGP - AF & use CEF for fast switching.
Before Going Further Please check you Design = Whether You want to Create Full Mesh IBGP  or Go With  BGP Route Reflector.
Communication from CE to PE
PE routers translate into VPN-V4 route
Assigns an RD, SOO (if configured) and RT based on configuration
Re-writes Next-Hop attribute  (to PE loopback ) -- When PE Re-Write the Next HOP , That next hop will  IBGP VPNv4 Neighbore PE and that is reachable through internal IGP. MPLS work only for Internal IGP to forward the packet AFAP without delay .
Assigns a label based on VRF and/or interface
Sends MP-BGP update to all PE neighbors
Receiving PE routers translate to IPv4Insert the route into the VRF identified by the RT
attribute (based on PE configuration)The label associated to the VPN-V4 address will be set onpackets forwarded towards the destination

Similar Messages

  • I have purchased two separate audio books and they just skip around and wont play all the way thru. how do i redownload them without buying them again?

    I have purchased two separate audio books and they just skip around and wont play all the way thru. how do i redownload them without buying them again?

    How to report an issue with Your iTunes Store purchase

  • Classyfying the customers based on their sales

    Hi,
    I have report showing the cutomers and the sales units to them
    for example:
    customer     sales
    A     200
    B     300
    C     50
    D     100
    how can i grade the customers based on their sales, for example
    Grading                customer     sales
    Gold >=300            B              300
    Sub total                   300
    silver >100 & <300    A              200
    sub total                   200
    Bronze <=100          C               50
                       D              100
    sub total                   150
    Could anyone please help me
    Message was edited by:
            rapo
    Message was edited by:
            rapo

    Thanks ganesh and ramesh,
    Thanks for your inputs.
    By exceptions, i can get classigy them and even color them and sort them but i cannot get the sub totals for each classification.
    Ramesh, can you please clarify in detail how this can be done by using the formula.
    thanks and regards

  • Question about modifying the Packet-based link into ASK modulation

    Hello everybody,
        Recently I learned the Packet-based link and I  modified it into ask scheme. But after I test the modified code, I find that it doesn't work as I image.
    I don't know why, can anybody help me about it?
        Thanks very much.
    Attachments:
    Packet-based Link(ASK).zip ‏445 KB

    I have a couple of questions that may seem silly, but...
    USB A = Windows DaRT 7.0 x86 for Windows 8 ISO burned
    USB B = Windows DaRT 7.0 x64 for Windows 8 ISO burned
    Is this a typo? You have it correctly above that where you list all 4 DaRT images, but not in the section I quoted.
    This TechNet article lists compatibility of DaRT versions:
    DaRT 8.1 supports Windows 8.1 and Windows Server 2012 R2.
    DaRT 8.0 supports Windows 8 and Windows Server 2012.
    DaRT 7.0 supports Windows 7 and Windows Server 2008 R2.
    DaRT 6.5 supports Windows 7 and Windows Server 2008 R2.
    DaRT 6.0 supports Windows Vista and Windows Server 2008.
    DaRT 5.0 supports Windows 2000, Windows XP, and Windows Server 2003.
    Also, did you use a Windows 8 ISOs with both DaRT versions? You need Windows 7 disks to create the DaRT 7 recovery disk.
    Let us know,
    Thanks
    David

  • Group the files based on their extensions

    Hi,
    I am traversing a dir and listing all the files under that directory. Now i want to group the files based on the extension and just print the number of files with each extension.
    ex:
    Extension No.of Files Size of the files
    .java 10 23455 bytes
    .html 2 1000 bytes
    I am able to get the extension of the files. I would like to know how to proceed after that.
    Any sample code will be helpful.
    Regards
    Kutty

    I have used a method to list all the files in the directory. After adding files with same extension to the HashMap. i am printing files after reading file by file. I need to print the files once i complete reading all the files in the directory.
    Any suggestions?
    private void listingFiles(File f )
              Map extensionMap = null;
              File[] files = f.listFiles();
              for( int i = 0; i < files.length; i++ )
                   File file1 = files;
                   Dprop.size += files[i].length();
                   if (file1.isFile())
                        fcount = fcount +1;     
                        if (extensionMap == null)
                             extensionMap = new HashMap();
                             // Group files by extension
                             for(int idx = 0; idx < files.length; idx++)
                                  if (files[idx].isFile() && files[idx] != null)
                                       String ext = getExtension(files[idx]); // get the extension
                                       ext = ext.toLowerCase();
                                       List fileList = (List)extensionMap.get(ext);
                                       if(fileList == null)
                                       fileList = new ArrayList();
                                       extensionMap.put(ext, fileList);
                                       fileList.add(files[idx]);
                        // Access all the files by extension
                             for(Iterator extensionIterator = extensionMap.keySet().iterator(); extensionIterator.hasNext(); )
                                  String ext = (String)extensionIterator.next();
                                  List fileList = (List)extensionMap.get(ext);
                                  System.out.println("\n\nNo of Files "+fileList.size()+" with extension '"+ext+"' in '"+f+ "' Directory");
                                  for(Iterator fileIterator = fileList.iterator(); fileIterator.hasNext(); )
                                       File file = (File)fileIterator.next();
                                  System.out.println("File Name "+file+" File Size "+file.length());
                   else
                        dcount = dcount +1;
                        listingFiles( file1 );
    Thanks in advance
    Kutty

  • How do I select the items based on their adjacent equality?

    In the below table,
        DECLARE @t1 TABLE(id INT,NAME VARCHAR(MAX))
        INSERT INTO @t1 VALUES(1,'test')
        INSERT INTO @t1 VALUES(2,'test')
        INSERT INTO @t1 VALUES(3,'best')
        INSERT INTO @t1 VALUES(4,'rest')
        INSERT INTO @t1 VALUES(5,'rest')
    how can I select the records that have equals values coming adjacently? That is I am running an SQL job. It should take the adjacent equal value  count for its processing. In the below table, first time the job is running it should take count as 2 the
    2nd time job is running it should be 1. Third time it should be 2. What is the query that will fetch the cont of equal records for name column? In case no equal columns it should be 1. Please help
    mayooran99

    Hi
    Try the following code.
    DECLARE @t1 TABLE(id INT,NAME VARCHAR(MAX))
    INSERT INTO @t1 VALUES(1,'test')
    INSERT INTO @t1 VALUES(2,'test')
    INSERT INTO @t1 VALUES(3,'best')
    INSERT INTO @t1 VALUES(4,'rest')
    INSERT INTO @t1 VALUES(5,'rest')
    INSERT INTO @t1 VALUES(6,'test')
    INSERT INTO @t1 VALUES(7,'best')
    INSERT INTO @t1 VALUES(8,'best')
    INSERT INTO @t1 VALUES(9,'vest')
    --ranking adjacent names, running total
    SELECT rs.id, rs.NAME, ROW_NUMBER() over (partition by name, nxt_id order by id) RankingCount
    FROM (
    SELECT nxt.id, nxt.NAME,(SELECT min(s.id)
    FROM @t1 s
    WHERE s.name <> nxt.name
    AND s.id > nxt.id
    ) as nxt_id
    FROM @t1 nxt) rs
    ORDER BY rs.id;
    --code to just return the totals
    with cteTotals
    as
    SELECT rs.id, rs.NAME, ROW_NUMBER() over (partition by name, nxt_id order by id) RankingCount, nxt_id, ROW_NUMBER() over (partition by name, nxt_id order by id desc) Ranking
    FROM (
    SELECT nxt.id, nxt.NAME,(SELECT min(s.id)
    FROM @t1 s
    WHERE s.name <> nxt.name
    AND s.id > nxt.id
    ) as nxt_id
    FROM @t1 nxt) rs
    select Name, RankingCount
    from cteTotals
    WHERE Ranking=1
    order by id
    The first query keeps a running total of adjacent names, the second one just reports the totals

  • Integrating the PHP Based Forum Component in CQ5 Pages.

    We have the requirement to integrate the Php based forum product (VBulletin) in our CQ5 pages. Have anyone already integrated the Php based prodcuts with CQ5? Especially i would like to know the feasibilty on the following point.
    A. Do we need to implement the Wrapper Service to interact with Php based products / APIs?
    Thanks,
    Thyshiva.

    There of course multiple ways to attempt to integrate with a service like this, the approriate approach will vary based on your requirements.
    The first question I would ask is what functionality are you trying to integrate into you CQ5 pages. Are you just trying list summaries of posts - say the 3 most recent posts on topic X, or are you attempting to display the complete forum functionality in a CQ 5 page.
    If you doing a light weight integration - for example displaying the most recent posts then I would explore the possiblity of a client side integration using AJAX to pull the data from your PHP system in JSON or XML format. This avoids any caching related issues and keeps the integration loosely coupled. There are of course variations on these methods that use CQ as a proxy to the PHP application, but then you end up having to write a OSGI wrapper service that talks to your PHP app over web services.
    If your integration is more complicated and you are looking to enable all the forum functionality. If your PHP app is visually the same as you CQ5 site you can make use of a iframe to include it in a CQ page. This obviously have potential issue (security, layout issues if sizes or CSS aren't consistent). CQ5 includes a foundation component to help with this - the External component which leverages an iframe.
    If an iframe or client side approach won't work then you would need to look at creating a set of OSGI wrapper services that communicate with your PHP application via web services. This obvious would be a singificant development effort, and depending on the capabilities of you PHP application may be difficult to implement. In particular user management and security integrations be complex (you can avoid these sorts of issues with a client side or iframe approach, especially if you can sub-domain the PHP app, or use the same apache server to host both dispatcher and you PHP app).

  • How to find a customer who does not have any activity in the last 5 years

    HI all,
       How to find a customer who does not have any activity in the last 5 years.
    Thanks & Regards,
    Moderator message: not directly related to ABAP development, please have a look in the respective functional forum.
    Edited by: Thomas Zloch on Jan 3, 2011 2:20 PM

    Post Author: tzinser
    CA Forum: Formula
    Okay, I left off a lot of important information...
    I'm using two tables
    TWDATA
    EVENT
    From TWDATA I'm pulling the fields TWDATA.OrderNumber and TWDATA.DisbursementDate
    From EVENT I'm pulling the fields EVENT.EventCode and EVENT.CompletedDate
    The two tables are linked by OrderNumber.

  • I need advise and help with this problem . First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product . At the present time I'm having lots of problems with the router so I was looking in to

    I need advise and help with this problem .
    First , I have been with Mac for many years ( 14 to be exact ) I do have some knowledge and understanding of Apple product .
    At the present time I'm having lots of problems with the router so I was looking in to some info , and come across one web site regarding : port forwarding , IP addresses .
    In my frustration , amongst lots of open web pages tutorials and other useless information , I come across innocent looking link and software to installed called Genieo , which suppose to help with any router .
    Software ask for permission to install , and about 30 % in , my instinct was telling me , there is something not right . I stop installation . Delete everything , look for any
    trace in Spotlight , Library . Nothing could be find .
    Now , every time I open Safari , Firefox or Chrome , it will open in my home page , but when I start looking for something in steed of Google page , there is
    ''search.genieo.com'' page acting like a Google . I try again to get raid of this but I can not find solution .
    With more research , again using genieo.com search eng. there is lots of articles and warnings . From that I learn do not use uninstall software , because doing this will install more things where it come from.
    I do have AppleCare support but its to late to phone them , so maybe there some people with knowledge , how to get this of my computer
    Any help is welcome , English is my learned language , you may notice this , so I'm not that quick with the respond

    Genieo definitely doesn't help with your router. It's just adware, and has no benefit to you at all. They scammed you so that they could display their ads on your computer.
    To remove it, see:
    http://www.thesafemac.com/arg-genieo/
    Do not use the Genieo uninstaller!

  • I need some help adding music to my slideshow in iPhoto.  When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

    When I open iTunes as the source, it says it needs to be open to populate, which it is.  I have no knowledge of computers...like, at all....so I need some (simple) help?  If possible?  Thanks.

  • HT1937 my headphone have some problems ,but your Customer service staff cant solve the problem for me ,my iphone5s in within warranty period

    apple inc:
                  how are you . i am a buyer from chengdu city of china ,i bought the iphone5s in February ,2014. i have used five months ,suddenly ,my iphone5s have some problems with the headphone.the main cause is the sound of the headphone is becoming smaller and smaller ,then i took it to apple Customer service center to check it ,at last ,they told me that some liquid get into the headphone of my iphone5s ,i am very angery to hear that ,i havenever got liquid into the headphone,and my iphone never touch any liquid.so that they canot mend the iphone for me .
                 this is the question what i meet now ,i hope you can give me a solution ,because the result is not made by me .i hope i can get your company reply as soon as possible.
                          thanks
                  zhaolong
              chengdu city,in sichuan province ,in china
                phone:13540823419
                email:[email protected]

    hi:
      friend,thanks for your reply ,can you tell me how to contact apple inc sercer?i am looking forward to your reply
    thanks

  • I have a question for the Adobe customer service dept., not for the "community" as a whole!

    I have a question for the Adobe Customer Serice Dept., not the "community" as a whole. And I expect an answer! I want to know why I am expected to sign up for another service package when I just paid $25+ yesterday to be able to convert files back and forth from a PDF to a Word file and then back to a PDF. What kind of rip-off is this?

    Hi,
    I am very sorry that you had unpleasant experiences with our customer service.
    If you would like to export your PDF files to MS Word files then ExportPDF tool will do the job.
    If you would like to convert MS Word files to PDF then ConvertPDF tool will the the job.
    If you would like to export your PDF files to Word file then convert the Word files back to PDF then PDF Pack service is required which includes ExportPDF/Convert to PDF/Combine Files tools.
    Please let me know if you have any questions/issues.
    Thank you.
    Hisami

  • HT1695 Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Okay, the Wi-Fi doesn't work.  Turn it on.
    Beyond that, we cannot offer any other assistance as you've failed to provide useful details of the problem.
    When responding, post in your native language as your English makes very little sense.

  • Do we have any documentation describing the process a customer would have to follow to consolidate multiple WCS systems into 1 PI?

    Do we have any documentation describing the process a customer would have to follow to consolidate multiple WCS systems into 1 PI?

    NCS release notes provide details on  migrating multiple WCS servers to NCS, which then can be upgraded to PI.      
    http://www.cisco.com/en/US/docs/wireless/ncs/1.1/release/notes/NCS_RN1.1.1.html#wp298961

  • Hello I really want to start developing apps but have no knowledge of development I know it's one of those things you have to start somewhere and build on it but can someone point me in the right direction of where I should begin such as books etc

    Hello I really want to start developing apps but have no knowledge of development I know it's one of those things you have to start somewhere and build on it but can someone point me in the right direction of where I should begin such as books etc

    iOS or Mac apps?
    Have you paid the fee to sign up as a developer yet?
    Ken

Maybe you are looking for

  • Error while retriving the Data in BI Answers

    Helllo Folks, we are using BI Apps 7.9.6 HR Module in BI Answers, i am getting false results that is when i am selecting only "ORAGANIZATION NAME", i get the name of the organization where as when selecting Oranization name along any of the facts, th

  • IOS device playlists - best practices

    So here's my conundrum. I have many playlists in iTunes, for listening at home. I want to sync the "best of" each playlist into my iPhone, but still have the songs organized in the same playlist names. For example, if I'm out and about and want to li

  • PDF headers and footers

    Hi, Trying to write a vocal reader for a PDF document, however, stuff that people would normally skip are being read by the reader (headers, footers, page numbers, footnotes, etc). Anyone knows a way to programmatically recognize the type of the para

  • What other assets are available in the flex-included Assets.swf

    I see that certain skins for the close button in the TitleWindow are included in Assets.swf (included in the flex SDK). How can I tell what other assets are included in that file? Specifically I'd like to find the matching assets for minimize and max

  • Change the Condition base value in a Condition type.

    Hi Experts, I have a problem because I need to change the condition base value for a condition type. This condition base is calculated as a result of other condition types in the list of pricing Elements. I would need to change the base in order to s