Best practice MPLS design/configuration for small service provider

We are a small regional service provider and did not have MPLS supported on our network.  To start supporting MPLS, I’d like to get opinions and recommendations on the best practice configuration. 
Here is what we have today –
We have our own BGP AS and multiple /24s.
We are running OSPF on the Cores and BGP on the Edge routers peering with ISPs.
We peer with multiple tier-1 ISPs for internet traffic. We do not provide public transit.
What we want for phase one MPLS implementation –
Configure basic MPLS /vpn functionality.
No QoS optimization required for phase 1.
We have Cisco ME 3600X for  PE. Any recommendations will be appreciated.

Not sure what kind of devices or routers you have in your network but looks for if you have support for labeled multicast for MVPN support. That will avoid other complexity of using other control protocols (like PIM) in core.
PE redundancy can be obtained by BGP attributes, CE-PE connectivity can be tunned using IGP or VRRP/HSRP...
You can have mutiple RSVP TEs for various contract traffic and you can bind various kind of traffic to different RSVP Tunnels based on contract or service with your customer.
RSVP-TE with link/node protection design will be of great help to achieve quicker failover.

Similar Messages

  • Best practices or design framework for designing processes in OSB(11g)

    Hi all,
    We have been working in oracle 10g, now in the new project we are going to use Soa suite 11g.For 10g we designed our services very similar to AIA framework. But in 11g since OSB is introduced we are not able to exactly fit the AIA framework here because OSB has a structure different than ESB.
    Can anybody suggest best practices or some design framework for designing processes in OSB or 11g SOA Suite ?

    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10223/04_osb.htm
    http://www.oracle.com/technology/products/integration/service-bus/index.html
    Regards,
    Anuj

  • Best practice steps of configuration

    Hello All
    Can anyone write back on What is the best practice steps of configuration in HCM for a new implementation.
    Thanks

    Hi,
    SAP Best Practices is prepacked ready to use solutions for small and medium size Business units (SMBs)
    SAP Best practices is based on  Building Block methodology
    SAP Best Practices is fully documentation including preconfigured business processes, training material, data conversion tools, and test catalogs.
    Best Practcies is totally Buidleing block Methods.
    Building Blockss Contains:
    Business Configuration Sets (BC Sets)
    Sample master data
    Configuration documentation
    Print forms or reports
    Business Configuration Sets are group of Configuration Sets. As We can say group of tables for specific Business Process.
    for more details go help.sap.com., then go for Best practices you will very useful information.
    Regs,
    Brahma

  • Best practices to reduce downtime for Database releases(rolling changes)

    Hi,
    What are best practices to reduce downtime for database releases on 10.2.0.3? What DB changes can be rolling and what can't?
    Thanks in advance.
    Regards,
    RJiv.

    I would be very dubious about any sort of universal "best practices" here. Realistically, your practices need to be tailored to the application and the environment.
    You can invest a lot of time, energy, and resources into minimizing downtime if that is the only goal. But you'll generally pay for that goal in terms of developer and admin time and effort, environmental complexity, etc. And you generally need to architect your application with rolling upgrades in mind, which necessitates potentially large amounts of redesign to existing applications. It may be perfectly acceptable to go full-bore into minimizing downtime if you are running Amazon.com and any downtime is unacceptable. Most organizations, however, need to balance downtime against other needs.
    For example, you could radically minimize downtime by having a second active database, configuring Streams to replicate changes between the two master databases, and configure the middle tier environment so that you can point different middle tier servers against one or the other database. When you want to upgrade, you point all the middle tier servers against database A other than 1 that lives on a special URL. You upgrade database B (making sure to deal with the Streams replication environment properly depending on requirements) and do the smoke test against the special URL. When you determine that everything works, you configure all the app servers to point at B and have Streams replication process configured to replicate changes from the old data model to the new data model), upgrade B, repeat the smoke test, and then return the middle tier environment to the normal state of balancing between databases.
    This lets you upgrade with 0 downtime. But you've got to license another primary database. And configure Streams. And write the replication code to propagate the changes on B during the time you're smoke testing A. And you need the middle tier infrastructure in place. And you're obviously going to be involving more admins than you would for a simpler deploy where you take things down, reboot, and bring things up. The test plan becomes more complicated as well since you need to practice this sort of thing in lower environments.
    Justin

  • What are the best practice to design Dashboard?

    Hi Friends,
    What are the best practice to design Dashboard?
    Thanks

    1) Use section name instead of Title View to name your report. This way sections can be collapsed and user can still see report name.
    2) Enable alternate coloring in tables and pivots for easy readablity and set table and pivot widths to 100% (for reports in dashboards) to reduce white space and achieve a more "professional look."
    3) Use column selectors and view selectors to reduce the width of reports and reduce the amount of columns user sees to a "practical minimum."

  • Best practices to design OWB Process Flows

    Hi All,
    I am using OWB to develop historical data warehouse. For this I have created few mappings that load data from source tables to staging tables and then from staging to target tables.
    Now I am designing process flows to execute these mappings. Can someone suggest me what are the best practices to design process flows?
    I have few questions in my mind that I am looking answers for:
    1) Should I keep the mapping to load staging and target tables in different process flows or in one?
    2) Do I need to include an email activity for each mapping failure or in other words how can I integrate all mapping errors in one email?
    3) I am using two outgoing transitions from each mapping; one for success and another unconditional, is that right method or I should use three transitions one for success, one for warning and one for error?
    4) I have created some email activity templates that I am using in process flows. For development environment I have used test from_address and to_address. But when I actually deploy these process flows in production, these addresses will need to be changed. Will I need to change these address individually in each process flow or in other words what is the best way to deploy process flows?
    I am using 10gR2 database and OWB.
    Any help will be appreciated.
    Thanks,
    VKumar

    Any help will be appreciated.
    Thanks.

  • Best practice to define length for varchar field of table in sql server

    What is best practice to define length for a varchar field in table
    where field suppose Remarks By Person  varchar(max) or varchar(4000)
    Could it affect on optimization in future????
    experts Reply Must ... 
    Dilip Patil..

    Hi Dilip,
    Varchar(n/max) is a variable-length, non-unicode character data. N defines the string length and can be a value from 1 through 8,000. Max indicates that the maximum storage size is 2^31-1 bytes (2 GB). The storage size is the actual length of the data entered
    + 2 bytes. We always use varchar when the sizes of the column data entries vary considerably. While if the filed data size might exceed 8,000 bytes in some way, we should use varchar(max).
    So the conclusion is just like Uri said, use varchar(max) or varchar(4000) is depends on how much characters we are going to store.
    The following document about varchar in SQL Server is for your reference:
    http://technet.microsoft.com/en-us/library/ms176089.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Best practice on Oracle VM for Sparc System

    Dear All,
    I want to test Oracle VM for Sparc System but I don't have new model Server to test it. What is the best practice of Oracle VM for Sparc System?
    I have a Dell laptop which has spec as below:
    -Intel® CoreTM i7-2640M
    (2.8GHz, 4MB cache)
    - Ram: 8GB DDR3
    - HDD: 750GB
    -1GB AMD Radeon
    I want to install Oracle VM VirtualBox on my laptop and then install Oracle VM for Sparc System in Virtual Box, is it possible?
    Please kindly give advice,
    Thanks and regards,
    Heng

    Heng Horn wrote:
    How about computer desktop or computer workstation with the latest version has CPU supports Oracle VM or SPARC?Nope. The only place you find SPARC T4 processors is in Sun Servers (and some Fujitsu servers, I think).

  • What is the best Practice JCO Connection Settings for DC  Project

    When multiple users are using the system data is missing from Web Dynpro Screens.  This seems to be due to running out of connections to pull data.
    I have a WebDynpro Project based on component development using DC's.  I have one main DC which uses other DC's as Lookup Windows.  All DC's have their Own Apps.  Also inside the main DC screen, the data is populated from multiple function modules.
    There are about 7 lookup DC Apps accessed by the user
    I have created JCO destinations with following settigns
    Max Pool Size 20
    Max Number of Connections 200
    Before I moved to DC project it was regular Web Dynpro Project with one Application and all lookup windows were inside the same Project.  I never had the issue with the same settings.
    Now may be becuase of DC usage and increase in applications I am running out of connections.
    Has any one faced the problem.  Can anyone suggest the best practice of how to size JCO connections.
    It does not make any sense that just with 15-20 concurrent users I am seeing this issue.
    All lookup components are destroyed after its use and is created manually as needed.  What else can I do to manage connections
    Any advise is greatly appreciated.
    Thanks

    Hi Ravi,
    Try to go through this Blog its very helpful.
    [Web Dynpro Best Practices: How to Configure the JCo Destination Settings|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417600)ID2054522350DB01207252403570931395End?blog=/pub/wlg/1216]
    Hope It will help.
    Regards
    Jeetendra

  • Is Designer suitable for small/medium projects ?

    In you opinion, is Designer suitable for small/medium projects with small / medium databases ? Let's say arround 20 tables ?
    Or we should better create those tables directly , without ERD, using SQL scripts and/or JDeveloper, and also using JDeveloper for creating diagrams...
    Seems easier for me, at least when small changes are needed on the database (like adding a column), and with Designer, is a lot of wasted time to change the ERD, to apply the changes on phisical model, etc...
    What do you think ?
    Thank you

    Yes Designer is sutable for small and medium projects.
    JDeveloper has a UML modeler but does not have the full DB functionality that Designer has.

  • When trying to access one website, Firefox says " This domain is not configured for this service. Please add it to your account."

    I am trying to access a fabric website I have used before and when I try to type in the domain name, a message appears saying "This domain is not configured for this service. Please add it to your account". How do I fix this?

    That message sounds like an address might have changed on the server...
    Are you trying to access the site directly using a bookmarks, or by typing into the address bar, or by following a link in a search engine? Sometimes links change making bookmarks and search engine entries obsolete, or Firefox's autofill feature suggests an address that no longer works, so if one approach doesn't work, you might try one of the others.

  • Best Practices using Pre-configurator

    Hi
    Anybody aware of doing QM configuration as per the Best Practices through Pre-configurator.

    Hi
    By using sap library you can configure the QM module . Basically you have to know the process of Quality Managment
    Regards
    M B raju

  • What accounts need to be configured for a service tax 10%,a balance sht a/c

    This below error occurred while clearing the entries.
    "Ex.rate diff.accts are incomplete for account 0003260423 currency INR"
    I have gone through this and found that, we should need to configure gain/loss accounts in OB09.
    I am not sure, what accounts need to be configured for a service tax account(3260423), Its a balance sheet account.
    Can someone guide me on this.
    Thanks
    Sudhir Krishna Kumar Singh

    Hello Sudhir,
    regarding to your incident, could you please try the following:
       1.The problem is probably caused by the settings in transaction OBA1.
         The system checks OBA1, if there is an entry for process KDF and
         the relevant G/L account 135090. If there is none -> F5 063 is
         created. Also the exchange rate difference accounts have to be
         maintained in OB09
         If you make a dummy entry in OBA1 & OB09 this account will be
         selected when trying to make an exchange rate difference posting.
         Please also check the documentation to field "No forex rate diff.
         when clearing in LC" in transaction OBY6.
       2.Basically solution is to create the mentioned account for exchange
         rate difference, in order to avoid error F5063.
         But, if you don't want to post that difference, I ask you to check
         the solution proposed into OSS note 546997.
    Hope this could help.
    regards
    Ray

  • Design Pattern For Web Services.

    I tried asking siomilar questions in WebService Forum but didn'y got any replies.
    Can anybody tell me what should be the Design for Web Services.
    I have understanding that there can be just 1 Interface/Implementation class for each Web Service, and which will have 1 end point.So for evry such Interface we will have to have 1 Web Service.
    Can someone please clarify wheather I'm correct or not ?
    I guess that If my application has many Interfaces and I have to expose the application as Web Service.Then I will have to expose all methods from one Interface and then expose this new Interface as Web Service.
    Is this how WS will work.
    Any pointers to design PATTERNS for Web Service will be highly appreciated.
    Thanks
    Rahul

    I don't know if anyone has documented new patterns specifically aimed at web services but the old ones definitely apply. Like you were alluding to, there is a letter-envelope decoupling of interface and implementation with the XML WSDL interface and coded implementation.

  • How to install and configure "SAP MAPI Service Provider" in 470(basis 620)?

    Hi everyone,
    Requse:
    Send E-mail from SAP and Recive E-mail from MS outlook2003.
    My question:
    How to install and configure "SAP MAPI Service Provider" in 470(basis 620)?
    For example:
    Which setting need to do in R/3 server?
    Which parameters need to select when install 620gui?
    Which setting need to mark in MS outlook2003?
    Thanks and Regards,
    Colin.

    Hi Colin,
    For SAP MAPI read,
    http://help.sap.com/saphelp_46c/helpdata/en/04/81dd4ebf2811d2897f0000e8216438/frameset.htm
    For Sending mail from SAP,
    http://help.sap.com/saphelp_46c/helpdata/en/55/a8b538891b11d2a25a00a0c943858e/frameset.htm
    For Receiving mails read,
    http://help.sap.com/saphelp_nw04/helpdata/en/af/73563c1e734f0fe10000000a114084/frameset.htm
    <b>Which parameters need to select when install 620gui?</b>
    Don't get this question...
    <b>Which setting need to mark in MS outlook2003?</b>
    None
    Regards
    Juan
    Please reward with points if helpful

Maybe you are looking for

  • In-Place Hold Combined with In-Place Archiving in Exchange 2013

    Hi, In-Place Hold is enabled for a mailbox and set to keep everything indefinitely.  The same mailbox has a Retention Policy with a Default Policy Tag set to move everything to an archive mailbox after 2 years. Let's say the user keeps mail in the pr

  • Will Avid MC 6.5 run on Mac OS X 10.6.8?

    I'm buying a student version of MC and have OS X 10.6.8.  Is it going to run on my computer?

  • PI 7.0 Installation

    Hi All I am experiencing a strange problem after completion of PI installation  which is describe below I am able to login with Admin account 'J2EE_ADMIN' in Visual Admin after restarting the application but after 10-15 minutes it starts giving error

  • [External Window] Reuse an existing window

    Hi, From what I have read, this is not possible to close an external window from the parent web dynpro application (external means opened through create_external_window method). In spite of what the SAP Help documentation is saying (http://help.sap.c

  • Is it possible to change the exchange rate after completion of miro documen

    Dear sap guru's,     Please suggest me user can raise an po with account assignment cateagory (asset) ie AUC Asset. at the time they are giving exchange rate is 39.41. after doing migo he setteled the AUC asset to Main asset. Month ending he is doing