QOS from Central side to Remote end

I am wanting to apply QOS onto some of our WAN circuits.   Here is my scenario.   Headquarters end has a 45Mb DS3 to the MPLS cloud.  Remote end has a multilink T1 (3Mb) connection to the MPLS cloud.   We are doing BGP to the cloud itself.     My problem is, the remote links request data from the Headquarters end (which works fine going from remote to HQ).  However, when the download/file transfer starts, it completely saturates the 3Mb connection and nobody else can do anything on that circuit.   I have applied some policing on the HQ end, but I also have a few hundred remote sites connecting to this cloud with the same AS number which causes some issues.   Does anyone know of a way to QOS or prioritize mission critical traffic in this manner? 
Please any help with this matter would be appreciated.
Thanks,

Disclaimer
The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
Liability Disclaimer
In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
Posting
Normally, there are two things that normally can be done; BTW they are not mutually exclusive.
If your device supports CBWFQ, you could define a class per branch and shape for the branch's egress bandwidth.  However, if you have several hundred branches, you may run out of policy classes.
The other approach is to use vendor QoS.  Many MPLS vendors will offer some kind of QoS support although sometimes it's an extra cost option.

Similar Messages

  • A client is trying to write pdfs to a remote server from Central

    A client is trying to write pdfs to a remote server from Central, they can send a dat files from the remote server to Central and they can copy files from the Central Server in Windows Explorer and from a Command prompt, the folder is set to users everyone, read, write, etc. Central gives the cannot find output device in log. Central is installed with a local user ID and local host. Any ideas I am not finding anything on this on devnet forums I am going to check JetForm Alumni next. Thanks. I think it has something to do with the Central account and password but I don't know what to do.

    It sounds like the account used to run Central does not have rights to access that remote server/directory.
    Try changing the Central user account to use a more privileged account - normally a network account would be used to allow access to all resources across the enterprise - printers and file shares.

  • SQL Service Broker 2012: the connection was closed by the remote end, or an error occurred while receiving data: '64(The specified network name is no longer available.)'

    Anyone can help with the below issue please? Much appreciated.
    We have about 2k+ messages in sys.transmission_queue
    Telnet to the ports 4022 is working fine.
    Network connectivity has been ruled out.
    The firewalls are OFF.
    We also explicitly provided the permissions to the service account on Server A and Server B to the Service broker end points.
    GRANT
    CONNECT ON
    ENDPOINT <broker> <domain\serviceaccount>
    Currently for troubleshooting purposes, the DR node is also out of the Availability Group, which means that we right now have only one replica the server is now a traditional cluster.
    Important thing to note is when a SQL Server service is restarted, all the messages in the sys.transmission queue is cleared immediately. After about 30-40 minutes, the errors are continued to be seen with the below
    The
    connection was
    closed by the
    remote end,
    or an
    error occurred while
    receiving data:
    '64(The specified network name is no longer available.)'

    We were able to narrow down the issue to an irrelevant IP coming into play during the data transfer. We tried ssbdiagnose runtime and found this error:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Windows\system32>SSBDIAGNOSE -E RUNTIME -ID 54F03D35-1A94-48D2-8144-5A9D24B24520 Connect to -S <SourceServer> -d <SourceDB> Connect To -S <DestinationServer> -d <DestinationDB>
    Microsoft SQL Server 11.0.2100.60
    Service Broker Diagnostic Utility
    An internal exception occurred: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    P  29830                                 Could not find the connection to the SQL Server that
    corresponds to the routing address tcp://XX.XXX.XXX.199:4022. Ensure the tool is connected to this server to allow investigation of runtime events
    The IP that corresponds to routing address is no where configured within the SSB. We are yet unsure why this IP is being referred despite not being configured anywhere. We identified that this IP belongs to one of nodes other SQL Server cluster, which has
    no direct relation to the source server. We failed over that irrelevant SQL Server cluster and made another node active and to our surprise, the data from sys.transmission_queue started flowing. Even today we are able to reproduce the issue, if we bring
    back this node [XX.XXX.XXX.199] as active. Since, its a high business activity period, we are not investigating further until we get an approved downtime to find the root cause of it.
    When we get a approved downtime, we will bring the node [XX.XXX.XXX.199] as active and we will be running Network Monitor, Process Monitor and the SSB Diagnose all in parallel to capture the process/program that is accessing the irrelevant IP.
    Once, we are able to nail down the root cause, I will share more information.

  • How can i look up a EJB residing in different machine from client side?

    hai ,
    How can i look up a EJB residing in different machine from client side?
    this is my code...........i don't know what should i use as Initial Context Factory...................i am using a sun appserver 8............
    package com.parx.lms.lmsdelegate;
    import com.parx.lms.exception.LMSException;
    import javax.naming.Context;
    import javax .ejb.CreateException;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.rmi.PortableRemoteObject;
    import java.rmi.RemoteException;
    import com.parx.lms.controller.*;
    import com.parx.lms.vo.UserVo;
    import com.parx.lms.exception.BusinessException;
    import java.util.Hashtable;
    import java.lang.*;
    public class LmsDelegate{
    private final static String JNDI_NAME="LmsBean";
    private static String url="http://localhost:4848";
    public static Lms lms = null;
    public void getController() throws CreateException,
    NamingException,RemoteException{
    if(lms == null){
    Hashtable h=new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************");
    h.put(Context.PROVIDER_URL,url);
    System.out.println("Before Loading Context in Delegate");
    Context ctx=new InitialContext(h);
    System.out.println("Loaded Context in Delegate");
    Object obj=ctx.lookup(JNDI_NAME);
    System.out.println("Loaded Object in Delegate");
    System.out.println("Before Loading Home in Delegate");
    LmsHome home = (LmsHome )PortableRemoteObject.narrow(obj,com.parx.lms.controller.LmsHome.class);
    System.out.println("Loaded Home in Delegate");
    lms = home.create();
    System.out.println("Loaded remote in Delegate");
    public void addUserDelegate(UserVo vo) throws BusinessException{
    try{
    getController();
    System.out.println("Before calling the addUser of Session");
    lms.addUser(vo);
    }catch(CreateException e){
    System.out.println("Create Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(NamingException e){
    System.out.println("Naming Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    catch(RemoteException e){
    System.out.println("Remote Exception in Delegate due to--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    }catch(LMSException e){
    System.out.println("duplicate user name--->"+e);
    e.printStackTrace();
    throw new BusinessException(e);
    pls help me..........

    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************")
    Each app server provides their own jndi factory class. For ex for weblogic it is weblogic.jndi.WLInitialContextFactory. SInce you are using sun app server, check if there are any examples to find out or the docs.
    private static String url="http://localhost:4848
    Since the client is in a different machine the localhost is not going to work here. provide the url or the machine name of the system in which ur sunapp server is running. In addition u will need to have the stubs of the remote interfaces in ur client machine.

  • Consigned stock from Supplier side

    Hi Team,
    We have a requirement where the Supplier keeps stock at his dealer's point (the sock quantity to be put at Dealer point is worked out manually which is outside oracle). Supplier wants visibility of inventory till the stock is sold by Dealer to end customer. Once the dealer sells the item, the Supplier will deplete stock ownership from him to dealer and invoice the dealer for the sale. The price is already fixed for the invoice. This is similar to Consignment from supplier side, where we want to configure dealers as organizations/subinventory and create an IR-ISO process. The depletion of stock part and invoice generation part is something where we are not sure.
    We do not want to use the standard oracle process wherein the flow starts with data collection to manage the order levels, then BPA,,etc... as we already have the process of IR-ISO we do not want to disturb the same. Even not sure about utilization of consumption rule in this case. Inputs are highly appreciated.
    B/R,
    Nirabh Nayan

    Hi Jesica,
    Thanks but
    Line flow -generic, Bill only with inventory interface, which means the moment you ship confirm the Order, it depletes the stock. Is my understanding correct.
    Do u ship confirm the Sales Order when the customer informs you that he has sold you the stock to his end customer. Can you please elaborate your process for my understanding.
    If I remember correctly, then Line flow -generic, Bill only with inventory interface does not support serailised items. In our case, 90% of the items are serial controlled.
    With Best Regards,
    Nirabh Nayan

  • Manage multiple computers from out side

    Hi ,
    i want to manage 2 computers from out side my network. Ihave time machine, dynamic ip, wha ti wanted is able to log in from out side to this 2 computers. what is the best option ?
    thanks in advnace

    power mac, you could use other software like timbuktu or logmein. If you wanted to you Apple Remote Desktop, you would have to set up VPN so the mac you would be using to control the other ones is part of the network.
    Regards.

  • (Rfc) error  when called from bitztalk side

    Hello,
    I developed an RFC for payroll posting .RFC is working properly at R/3 end, But it is throwing an error "Control Framework: Fatal error - GUI cannot be reached" when it is called from Biztalk side.
    Thanks in advance.
    venu.

    You could try to set the enviroment with something like:-
    30 5 * * * su - oracle -c rman...........
    HTH
    PS. The .profile must be executable in a non-interactive mode as there is no terminal associated when called by CRON. Maybe the profile could check this using the stty command.

  • How to make upgrade from application server and not from central instance?

    Hello SAP Gurus!
    I have SAP ECC release 6.0, and I´m gonna make upgrade to enhancement package 6.06, do you know if Can I make upgrade from application server, but not from central instance?
    Thanks.

    Hi Victor,
    Upgrade process has to execute from the server where message server is running.
    So I guess it is not possible to initiate the SAP upgrade  from application server.
    Regards,
    Deepak Kori

  • How can i load file into database from client-side to server-side

    i want to upload file from client-side to server-side, i use the following code to load blob into database.
    if the file is in the server-side, it can work, but if it in the client-side, it said that the system cannot find the file. i think it only will search the file is in the server-side or not, it will not search the client-side.
    how can i solve it without upload the file to the server first, then load it into database??
    try
    ResultSet rset = null;
    PreparedStatement pstmt =
    conn.prepareStatement ("insert into docs values (? , EMPTY_BLOB())");
    pstmt.setInt (1, docId);
    pstmt.execute ();
    // Open the destination blob:
    pstmt.setInt (1, docId);
    rset = pstmt.executeQuery (
    "SELECT content FROM docs WHERE id = ? FOR UPDATE");
    BLOB dest_lob = null;
    if (rset.next()) {
    dest_lob = ((OracleResultSet)rset).getBLOB (1);
    // Declare a file handler for the input file
    File binaryFile = new File (fileName);
    FileInputStream istream = new FileInputStream (binaryFile);
    // Create an OutputStram object to write the BLOB as a stream
    OutputStream ostream = dest_lob.getBinaryOutputStream();
    // Create a tempory buffer
    byte[] buffer = new byte[1024];
    int length = 0;
    // Use the read() method to read the file to the byte
    // array buffer, then use the write() method to write it to
    // the BLOB.
    while ((length = istream.read(buffer)) != -1)
    ostream.write(buffer, 0, length);
    pstmt.close();
    // Close all streams and file handles:
    istream.close();
    ostream.flush();
    ostream.close();
    //dest_lob.close();
    // Commit the transaction:
    conn.commit();
    conn.close();
    } catch (SQLException e) {

    Hi,
    Without some more details of the configuration, its difficult to know
    what's happening here. For example, what do you mean by client side
    and server side, and where are you running the upload Java application?
    If you always run the application on the database server system, but can't
    open the file on a different machine, then it sounds like a file protection
    problem that isn't really connected with the database at all. That is to
    say, if the new FileInputStream (binaryFile) statement fails, then its not
    really a database problem, but a file protection issue. On the other hand,
    I can't explain what's happening if you run the program on the same machine
    as the document file (client machine), but you can't write the data to the
    server, assuming the JDBC connection string is set correctly to connect to
    the appropriate database server.
    If you can provide some more information, we'll try to help.
    Simon
    null

  • How to use KeyChain API from client-side HTML scripting in Safari on iPad?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

    I have a requirement where I need to add client-side scripting in an HTML page to be supported by Safari on iPad that creates a private / public key pair and that creates a CSR (Certificate Signing Request) in PKCS#10 or SPKAC format that can be sent to a certification authority server using form HTTP/POST that will then return the generated certificate.
    I initially thought that I could simply use the HTML 5 tag <keygen> which can do exactly what I need, but unfortunately this tag is not at all supported on mobile Apple devices like iPad or iPhone, so I have to look for another solution.
    I have noticed that the KeyChain tool should be available on iPad using the documented API, but I have no idea based on the documentation whether the API can be called from client-side HTML scripting on iPad.
    Question : is it technically possible using the functionalities and API's exposed on an iPad to implement what I just described in HTML client-side scripting? If so, do you have some links with useful information that can help me on my way?

  • How do I select photos in library from the side bar (source) folder?

    I have placed photos from the library at different times in a side (source) folder. I now want to delete them. However, they are spread all over the library. If I delete them from the side folder they still remain in library. Is there a way to identify the library photos from the side folder, select and delete them in an easy way, rather than spend hours trying to find them individually?
    Thanks, Max

    Hi MaxFS,
    To delete photos from both an album and the Library
    at the same time:
    Select the photo/photos in the album
    press the Command-Option-Delete keys
    this will remove the photo/photos from the library
    and all albums it is in.
    thanks, very simple, it does the trick. BTW, will the same action work in iTunes?

  • Loss of internet connection from windows side of imac duo core

    I have cable modem as internet hookup. When I am in Mac I have no problems, but every time I either change to the Windows side, or the computer is turned off or goes off, when Windows comes up, I can't access the internet.
    I have gone into control panel and it states that the cable modem is unplugged or not connected. I then have to literally unplug the cable from the computer, wait a few seconds and then plug it back in.
    This has been going on several months and started after I had a cable issue at the house and the cable guys came out and fixed it. they changed some things on my computer.
    I think something on the MAC side was actually changed and that is impacting the windows side.
    Prior to that I could access the internet from either side w/no problem.
    Now, even if I unplug the cable and then plug it in, the computer is not recognizing that the cable is plugged in. As you can see, I am still having NO problem w/the MAC side.
    Any ideas what command or default setting might have been changed to impact the Windows side in this fashion. thanks

    what is the firmware version on the router?? try reducing MTU to 1452...let me know if you have any issues will get back to you.
    thanks

  • Issue with webservice data control while invokin bpel process from ADF side

    Hello Experts,
    we are creating webservice data control to invoke bpel process from ADF side.
    When I run the application and inovoke the bpel every thing is working fine.
    But when we are changeing the instances from DEV to SIT the bpel url(hostname and port) will change.
    So we just edited DataControls.dcx file and we just replaced the wsdl url and trying to run the applicaiton.
    This time the applicaiton is not invoking the bpel process.
    If I remove the webservice data control and recreate it with new WSDL url then it is working fine.
    Can any one tell us what the exact issue is. Is there any other files do i need to modify or etc.
    Thanks & Regards
    Gayaz

    DataControls.dcx & connections.xml (.adf/META-INF)

  • Batch Determination when Goods Movement done from DBM side

    Hi SAP Experts,
    Greetings to all of you!! I wanted to ask you a question:
    We have configured DBM and Automatic Bacth Determination is active in our system from MM side.
    and when we click the "Goods Movement" button in the DBM screen (this should issue goods with mvt type 261) we get error message saying: Enter Batch".
    There is no field on DBM screen where I can enter the batch number. And the system is also unable to determine the batch (i was expecting the batch will be assigned automatically becasue the Batch Determination was configured in the system).
    Please tell me if there is any customization missing from DBM or MM side to perform the goods movement.
    Moreover the "Goods Movement" is working fine for materials which are not batch managed.
    Thanking you in advance.
    Regards,
    UK

    Hi UK,
    i am sorry i don't think DBM is currently supporting batches.
    BR
    Robert

  • How to get path of image from server side in form of URL

    Hello,
    I want to access images stored on server side local folder. How do I create a URL for that. Images in the folder changes dynamically, so I should be able to display the new modified images. Please help me.
    Thanks in advance

    Are you asking from client side to access server (local folder) images...
    if yes
    where the security goes....
    please be in detail...

Maybe you are looking for