How to change the path of MPLS

How to change the path of MPLS core from one PE to the other PE with redundancy link? The IGP is OSPF and running MBGP among PE routers.

Hi there,
Load-balancing is applicable in MPLS as follows:
If multiple equal-cost paths exist for an IPv4 prefix, the Cisco IOS can load-balance labeled packets. If labeled packets are load-balanced, they can have the same outgoing labels, but they can also be different. The outgoing labels are the same if the two links are between a pair of routers and both links belong to the platform label space. If multiple next-hop LSRs exist, the outgoing label for each path is usually different, because the next-hop LSRs assign labels independently.
If a prefix is reachable via a mix of labeled and unlabeled (IP) paths, Cisco IOS does not consider the unlabeled paths for load-balancing labeled packets. (The load balancing is done only between labeled paths. This means that if an IP (unlabeled) and a labeled path have the same cost, only the labeled path is used to forward the packets.)
HTH,
Mohammed Mahmoud.

Similar Messages

  • How to change the path of sysprep files that were copied to reference computer when i capture the image from reference.

    Dears ,,
    how to change the path that sysprep were copied to reference computer when i capture the image from reference.
    Should i modify some codes in LTIAPPLY.wsf? how to modify it?
    Thanks.

    Sysprep and capture has *Three* steps.
    1. Run sysprep on the local machine (easy).
    2. Copy WinPE down to the local machine so we can reboot into winpe for capture.
    3. Capture the drive in an *offline* state from within WinPE.
    What is most likely happening is that you are having problems with step #2. 100MB is *WAY* too small to copy down WinPE. By default MDT will make this System partition much bigger, 499MB. IF you install Windows 7 from the default media. IT will only create
    a 100MB partition.
    By default MDT 2012 Update 1 and greater *should* recover to a fallback drive with the OS on it, however if you are running older versions that might not happen correctly.
    If you are still having problems, copy your BDD.log file to a public share like OneDrive and copy the link here.
    Keith Garner - keithga.wordpress.com

  • How to change the path of the Transport

    HI all!
    I had the system of portal dev,qas,prd,I want to made the export folder of the dev point to the import folder of the qas.But how to change the path of the transport ?I change the file of the D:\usr\sap\dev\SYS\global\pcd\pcdStartup.properties,But it not useful.I think my type is not correct.Plz tell me the key.thanks very much!!!
    D:\usr\sap\dev\SYS\global\pcd\pcdStartup.properties,I changed:
    Transport Application
    Root directory for exporting transport packages
    #Pcd.TransportApplication.ExportRootDir=
    qas\Import
    Root directory for importing transport packages
    #Pcd.TransportApplication.ImportRootDir=${Pcd.Share}/Import
    Directory for temporary transport files
    #Pcd.TransportApplication.TempDir      =${Pcd.Temp}/transport
    Edited by: joecui on Nov 12, 2008 8:15 AM
    Edited by: joecui on Nov 12, 2008 8:16 AM

    Did you try to remove the "#" character before every line you changed?
    Save the file...
    Reload/Refresh it in the Portal...
    Try if that helps you.
    Cheers,
    Benjamin

  • How to change the path for dms repository in navigation iview

    Hi all,
    We integrate DMS in KM. With the documentexplorer iview we can navigate through the folders structure. So far so good.
    But for the end-user it will be easer if they can startright  from point X in the folder structure. Like dmsrm/aaa/bbb/..../X
    It's not possible to change the iview path property to dmsrm/aaa/bbb/..../X, preview shows the message  'Item nof found
    The item you are attempting to access is not available. Check that the name or link is correct. You might also check whether the associated repository is currently accessible'. For all the folders (except the root folder dmsrm) there is no acces link tab, so the ID, explorer URL and webdav URL are unknown. How to find out what the ID is?
    Thanks in advance,
    Vo

    Try going to Options > Global Preferences > Paths tab, you will see the User Settings.
    Nestor
    National Instruments

  • How to change the path for a file download? Sometimes, I want to save a file in a specific folder in my hard disc and I don't know how to do it. Thanks.

    There is a default folder for the download of files from the internet ("Descargas" or "Downloads"). But, what can I do if I wish to save the file in another location of the hard disk?
    Thank you.

    Use about:config and filter on browser.download, you'll see them
    '''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config (entries)] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config (How to change)]

  • How to change the path of an Access .mdb file @ runtime in Visual Studio 2012

    Hello,
      I'm hoping my question is simple enough to merit a quick answer.  I will lay out the details:
      I am writing a WindowsForms App in VB 2012.  I have a Crystal Report that points to an Access .mdb at design time in order to get the proper structure and layout correctly.
      However, during runtime, I need to point to a completely different .mdb file with the same identical structure.  How do I do this?  I've tried everything I could find on the net with no success and mostly because the answers are for C programmers.  I mean, I can pretty much decipher it, but have gotten zero results.
      Thank you for your time.
    -Mike

    ok. The code needs some small modifications.
    I gave it a quick try and here is the InProc RAS SDK code which works for me. Add the assembly references to the app for all those assemblies used in the 'imports' statements in the code.
    Imports CrystalDecisions.ReportAppServer.ClientDoc
    Imports CrystalDecisions.ReportAppServer.DataDefModel
    Imports CrystalDecisions.ReportAppServer.ReportDefModel
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Web
    Imports CrystalDecisions.Shared
    Partial Class _Default
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim ClientDoc As ISCDClientDocument
            Dim logonPb As New CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag()
            Dim table_Old As New CrystalDecisions.ReportAppServer.DataDefModel.Table()
            Dim table_New As New CrystalDecisions.ReportAppServer.DataDefModel.Table()
            'Open the report object to initialize the ReportClientDocument
            Dim rd As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            rd.Load("C:\Users\Administrator\Desktop\Report1.rpt")
            ClientDoc = rd.ReportClientDocument()
            table_old = ClientDoc.Database.Tables(0)
            'Clone the original table in the report
            table_new = table_old.Clone(True)
            ' Get the connection information from the report document for the first table in the collection.
            logonPb = table_new.ConnectionInfo.Attributes("QE_LogonProperties")
    'set the path for new mdb
            logonPb.Item("Database Name") = "C:\Users\Administrator\Desktop\New folder\efashion1.mdb"
            ' Set a new table for the report, set the old table to the new one.
            ClientDoc.DatabaseController.SetTableLocation(table_old, table_new)
            'view the report
            CrystalReportViewer1.ReportSource = rd
        End Sub
    End Class
    Hope this clears the doubts

  • Microsoft ADFS / IIS : How to change the path of MSISAuth/MSISAuth1/MSISAuthentcation Cookies?

    Hi,
    I need to have the MSISAuth/MSISAuth1/MSISAuthentcation Cookies sent from a Browser to a Proxy upfront.
    But there are two issues:
    1) Cookies are set from MS ADFS to the host - not domain
    I solved that issue by editing the C:\inetpub\adfs\ls\web.CONFIG by including this setting:
        <httpCookies domain="mydomain.com" httpOnlyCookies="false" requireSSL="false"/>
    So the cookies got sent by the browser to all servers included in this domain - solved.
    2) Cookies are set to path /adfs/ls
    To have the browser sent the cookies the pattern https://<host>/adfs/ls
    need to be fullfilled - but now I need to change this path to "/" so that those cookies are also sent to other context roots.
    I have not found any documentation or property file to change this
    Anyone able to help me here by pointing me to the correct place to edit this setting?
    Thanks,
    Sascha

    Hi Sascha,
    Regarding ADFS specific issue, I suggest you refer to experts from the following forum to get professional support:
    Claims based access platform (CBA), code-named Geneva Forum
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    Thank you for your understanding and support.
    Best Regards,
    Amy

  • How to change the path of all dbf files once database installed...

    Hi All,
    I m using 10g Database...
    During my DBCA installation I forget to change location of the database files, redlologs and control files... and my Database is successfully installed. Now, I want to change my all these above mention files location And also adump,bdump,cdump and udump...so what I did is
    1- create pfile from spfile.
    2- Shutdown immediate.
    3- from OS level copies all files to new location.
    4- Editing in pfile
    5- Startup with new pfile and check all the locations...
    for datafiles
    SQL> select FILE_NAME,TABLESPACE_NAME,STATUS from dba_data_files;
    (this shows me the older location not new one.)
    for controlfiles,adump,bdump,cdump and uduump
    SQL>Show parameter...
    6- create spfile from pfile .
    pl. suggest me what should I do for the datafiles?
    Thx,

    Hi All,
    Thx for ur support.
    I go through with both links and able to success for the renaming of all datafiles except system and undotbs.. as below :
    SQL> alter tablespace sysaux offline normal;
    Tablespace altered.
    SQL> alter tablespace sysaux rename datafile '/u01/app/oracle/product/10.2.0/oradata/elitrepl/sysaux01.dbf'
    2 to '/u01/app/oracle/oradata/elitrepl/sysaux01.dbf';
    Tablespace altered.
    SQL> select FILE_NAME,TABLESPACE_NAME,STATUS from dba_data_files;
    FILE_NAME TABLESPACE_NAME STATUS
    /u01/app/oracle/oradata/elitrepl/sysaux01.dbfSYSAUX AVAILABLE
    but for the system n undotbs.. what I did is below :
    SQL> startup exclusive mount elitrepl
    SQL> alter database rename file '/u01/app/oracle/product/10.2.0/oradata/elitrepl/system01.dbf' to
    2 '/u01/app/oracle/oradata/elitrepl/system01.dbf';
    Database altered.
    SQL> alter database elitrepl open;
    alter database elitrepl open
    ERROR at line 1:
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/u01/app/oracle/oradata/elitrepl/system01.dbf'
    Now, I don't hv any backup of my database.... let me know how to overcome this scenario?

  • How to change the path for Home and Work in SQL Developer

    Hi,
    I am new to Oracle SQL Developer. Everytime when I open a file, it will default to the install directory. It is hurtingmy hand because I have to click back to the folder where I put my sql statements.
    Is there any way to set the Home or Work button to point to the location I like? or add anther button to point to my folder? I just don't want to click 5 to 10 times to open a file.

    SQL Developer (the SQL Developer forum) might be a better place to ask

  • How to change the default Path of Prompt Played by MicroApp

    Hi
    I need to store all the Self Service application prompts in dedicated Media Server. I can modify location of all the Media files by passing the related URL form CVP application, however I need to know how to change the default location of Prompt file played by Play Media Microapplication in ICM Scripting.
    Currently the default location taken by Play Media Micro App is the Media _Server.variable path set for VXML Server location while I have a separate Media Server.
    Please advice how we can customize the MicroApp Media path.
    regards
    Kapil Kumar

    Hi Kapil,
    Try this in your ICM script, define set variables i.e.
    set Media Server= ip address of media server
    set Locale = en-us
    set input Type = DTMF only
    set App Media Lib = " you new location i.e. test "
    So, the application path will be
    http://media server ip address/en-us/test
    hope this helps.
    Cheers

  • How to change the default password file's name and path when the database created?

    how to change the default password file's name and path when the database created?
    null

    Usage: orapwd file=<fname> password=<password> entries=<users>
    where
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.

  • I changed the path of my photos, how can I find them from iPhoto

    I didn't import my photos into the photo library,
    now I changed the path of my photo,
    how I can find them,
    I have thousands of photos, I don't want to check one by one~

    I believe this is the post Larry's referring to:
    Pascal Mah
    Re: iPhoto '11 referenced library problems
    Jul 27, 2011 4:28 PM (in response to Terence Devlin)
    YES!!!
    I finally managed to recover my iPhoto library!
    But it was not easy. I had to hack into the database file to put up things right.
    After a significant amount of trial-and-error, here is the procedure I came to, which finally worked for me (use at your own risk):
    0. Make sure you make enough backups so as to revert to the previous state if something goes wrong!
    1. Make a copy of your iPhoto Library [Show Package Contents]/Database/apdb/Library.apdb to your desktop.
    This file contains most of the data involved for managing your iPhoto data.
    2. Open this file using a SQLite database manager.
    I used Navicat 9.1, which has nice import-export features. For direct editing, Base 2.0 is may be easier.
    3. Open the table RKMaster.
    This table contains all records for the individual pics of your library.
    4. Correct the path of each of your pic files in the imagePath column to their current filepath.
    This contains the path of your pic files at the time they were imported, and is not updated by iPhoto even though you have moved your pic files somewhere else.
    If you have several thousands of paths to correct, a good idea is to export this column to a text file (also including the modelId column for referencing), and to correct paths using the substring Search&Replace function of your favorite text editor. Be sure to re-import the corrected data properly using the modelId column as references.
    5. If needed, correct in the same manner the content of the fileVolumeUuid column to the value of the drive currently containing your picfiles.
    If needed, obtain this value considering a pic which was recently imported from that drive.
    6. If your drive name was modified, also correct its name in the name column of the RKVolume table.
    Identify the proper record by considering its uuid previously obtained.
    7. If you're happy with your work, quit the database managing program and put Library.apdb back in its original location inside your iPhoto Library.
    Keep the older somewhere in case something goes wrong.
    8. Run iPhoto to see if your work is successful!
    At this point, you might consider rebuilding the Photo Library (hold alt-cmd while launching iPhoto) and choose Repair the iPhoto Library Database (Be sure to leave the Rebuild the iPhoto Library Database from automatic backup unchecked!). This might correct some possible unconsistencies resulting from your edits. Also, a good thing might be to rebuild all thumbnails. If iPhoto does not bug you for locating files during that process, you have possibly done your work right! If not, back to step 1.
    As said, this worked for me, with no visible inconsistencies or side effects to be noticed in the behavior of iPhoto (at least for now). But possibly some knowledgable people might comment and improve that process, and some database script guru might also help automating this. Please comment.
    Lessons learned (How I understand the things as far as I know):
    A. Library.apdb stores the initial drive and path of the pic files at the time they were imported. This is not modified as the files are moved around.
    B. Some other data (BLOBs?) is used to track the files at their actual location. Therefore, it seems OK to move the pic files after they were imported.
    C. Unfortunately, this other data is broken if the file is recreated (even with same content and location), for example with a file-based backup and restore (Time Machine).
    D. In that case, iPhoto is unable to recover the file if its current drive and path does not match the one when the file was imported, stored in the database. Also there is no mechanism in iPhoto to correct this data.
    E. Therefore, it is very important to import pic files in iPhoto only when these are already in their final location! If not, your iPhoto Library won't survive a TimeMachine backup and restore! (Possibly, a block-based drive backup could work... I don't know).
    F. ...And Apple should really, really fix this issue! (By correcting the stored filepath and drive to the current file location at least when the database is repaired, and by offering at least some basic file reconnection options).
    OT

  • How can i change the path for uploadin videos??

    i m using javax.servlet.servletcontext for setting the path for storin upload videos...
    by using the getrealpath able to store videos in web-inf file...
    how can i change the location...

    this is the part of code in which i want to change my storage location:
    ** * The base path corresponds to the base directory of the
    * application context's WEB-INF directory. This means that
    * this directory is NOT visible to the end user.
    public static String getBasePath(javax.servlet.ServletContext context)
    { return context.getRealPath("/") + "WEB-INF" + directorySep;}
    /** * The temporary directory used to store files while they are
    * being uploaded. */
    public static String getTempPath(javax.servlet.ServletContext context)
    { return getBasePath(context); }
    /** * Gets the upload directory - used to indicate the local file
    * system storage area.
    can u tell me now how to change the context value???
    and how to change the storage loction??

  • How to change the library path from development machine to application serv

    hi
    how can i change the library path which i developed in windows machine and the library path is c:/fas/dss.pll and now i hosted all forms,menu,library and reports in application server that is running in linux machine now i want to know how to change the library path c:\fas\dss.pll to /oracle/fas/dss.pll.

    Hi !
    It is standard functionality to change ship-to party address in ISA B2C. This happens only from the checkout.inc.jsp. The ship-to party is part of the basket object.
    Cheers,
    Ashok.

  • How to change the default BC image that shows in the address bar?

    Does anyone know how to change the default BC image that shows in the address bar? I want to swap it out so the client logo shows next to their URL.
    Thank you!

    Hi,
    If you are trying to change the favicon for your site,
    You can do it from Site Manager-> Page template -> Default Template
    Look for the code   <link type="image/x-icon" href="/Path for your image" rel="icon" />, and Click save.
    Now where you will use this template, it will display your favicon for that webpage instead of BC favicon. You can define it on Page directly if you are not going to use template.
    Please let me know if you have any doubt.

Maybe you are looking for

  • Moving from one screen to another

    Hi all, I have developed an ALV program, i have used 2 screens. when i double on one value the 2nd screen with more details should be displayed. till this point it is fine. But when i press back button it is coming to 1st screen but the screen is emp

  • Dynamic table control in module pool screen

    Hi  All         I have got a requirement that in the module pool program i need to create a table control which is going to be dynamic i.e number of columns to be displayed in the screen is going to vary based on the one of the table entries. for exa

  • OCCI for Oracle 9i and MS Visual Studio 2005

    Hello. Where do I get OCCI *.lib and *.dll files for Oracle 9i and MS Visual Studio 2005 (VC 8)? Roman Perepelitsa.

  • How to get the basics of j2ee

    It will be great help for me if anybody tell me how to start learning j2ee so i can go step by step...means writing hello world program and then compiling it , everything in steps by steps

  • 5800 Xpress Music speaker function

    Hello, I was wondering if there is any solution on the issue that when the speaker function on 5800 Xpress Music is activated the microphone of the phone makes the interlocutor hear the conversation interrupted or with large differencies in volume. C