How to use default route achieving load-balancing?

show me an example
thanks

Hi Friend,
If you have 2 default route with same admin distance you can have equa load balancing.
Something like this
ip route 0.0.0.0 0.0.0.0
ip route 0.0.0.0 0.0.0.0
Now because these 2 default routes have equal admin distance so both will be peferred and will result into equal load ballancing.
HTH, if yes please rate the post.
Ankur

Similar Messages

  • How to use Webdispatcher as a load balancer?

    We have multiple java instances for an EP7.
    We want to use a webdispacher to do load balance.
    I saw one document before but cannot find it anymore.
    Please help. Points guaranteed. Thanks!

    Check this SAP help documentation
    http://help.sap.com/saphelp_nw04s/helpdata/en/5f/7a343cd46acc68e10000000a114084/content.htm
    Regads,
    Prasanna Krishnamurthy

  • How to use selection creteria in Trial Balance ???....

    Dear all,
    Redefining my question in another thread,
    How to use selection creteria in Trial balance to get closing balance of previous fiscal year as
    opening balance of current fiscal year(01.04.09 to till date) ?
    Since Revenue,Expenditure account get zeroed on YEC procedure,
    My question is concerend with Balance sheet accounts
    Note : YEC is performed on 31.03.09.
    Expecting ur valuable replies.
    Jeyakanthan

    Hi Jey
    You tried this ?
    What is the result are u getting ?
    choose  Financials  Financial Reports  Financial  Trial Balance .  Under Selection criteria
    Opening Balance for Period u2013 Select this option when you need to differentiate between the balance of the selected posting period and that of the previous periods. When a date range of a current posting period is selected, you can select this checkbox to display the bookkeeping balance prior to the selected date range in a separate column: OB.
    As default, the checkbox is cleared. Selecting it displays the following options:
    OB from Start of Company Activity u2013 Displays the opening balance accumulated since the companyu2019s activity started.
    OB from Start of Fiscal Year u2013 Displays the opening balance accumulated from the start of the current fiscal year.
    Presently i dont have that enviroment to check.
    Ashish Gupte

  • Multiple WAN connections all through one router with load balancing?

    I am setting up a network in my dormatory for myself and about 20 friends. about half of us have DSL connections at the moment. Is there a way to have all the DSL connections (possibly run through cheap home DSL routers) all connect into a cisco router that then acts as the gateway for our entire network? woudl it be possible for each internet request to go out over the connection that has the least load AND also be able to use some sort of load balancing, so one user cant use all of the outgoing/incoming bandwidth?
    If you have any ideas please let me know

    Hi Ian,
    To get this working, you would either need to use something like PPP to bundle your links together or use a dynamic protocol.
    In bundling the links, you could make them appear as one link, with a single IP address each end and the router takes care of distributing the load. To implement this though, you would need control of both sides of the link, or be terminating with one carrier who is happy to implement this for you.
    The second is to use a dynamic protocol (such as eigrp, ospf, etc), which can build up a map of the network to router from point a to point b. For this you also need control of the link.
    I can't think of another method, unless you can control the link from both sides. Your other option it to pool your money and buy a larger link or a leased line. If you bought a leased line or two, your carrier would be more than happy to talk to you about routing over that, but generally you're looking at mega bucks for that.
    HTH,
    Mark

  • Using a DI-LB604 load balancing on mac

    In my office we are using a DI-LB604 load balancing router, since the day they instaled it my internet conecction is not stable, and it works fine for all PCs in the office, i´m the only one ussing Mac

    You can take a look at this thread:
    http://forums.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Wireless%20-%20Mobility&topic=Getting%20Started%20with%20Wireless&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.2cbfa834
    But like I said, if you require more bandwidth per link you need to look at another vendor.

  • SSP5: Using multiple JVM for load balance performance?

    Sun 12 MAY 2002
    Apps 11.0.3
    SSP5 patchset I
    HP UX 11.0
    db 8.1.7.2 (64-bit)
    Load 60 concurrent sessions, each spawning 2.5 - 3 http connections.
    CPU 3:750Mhz
    RAM 8G
    Is anybody using multiple JVM for load balance?
    What is your ratio of JVM to concurrent iP sessions?
    Are you running Apache/Jserv on a server with any other applications, or is Apache by itself?
    If you are not using JVM, how many httpd processes do you get before Apache implodes? We stopped in the water at 90 httpd processes, but performance degraded starting at 70 sessions.
    Thx - Don

    Using Web Cache to load balance servlet-based Forms (6i and 9i) is unofficially supported. I say "unofficially" because we have actual customers doing it and getting support, but the 2 development teams (Forms and Web Cache) haven't actually done any integration testing of this sort of configuration yet. For your case, please contact your Support rep and ask what was done to use Web Cache as a load balancer for Forms6i at METRO in Germany. The Forms product managemment team is writing up a white paper to describe how to do it, but until then, you'll need to go through Support. Please contact me if you want more information.

  • How to use TCP Checksum Off-load in my network driver

    I am seeking infomation on how to use TCP Checksum Off-load to tell the Solaris 8 stack not to handle it for both receives and transmits (and let our NIC handle this compute-intensive task instead).
    There is mention that Sun GigabitEthernet Adapter cards, Release 1.1 supports Sol-2.6 use of NIC features: TCP checksum offload & byte swapping
    There are limited bits of info in include files. For example
    sys/strick.h indicates use of:
    inetcksum_t's ick_xmit
    stream.h has:
    struct datab's unsigned u16:16; /* used to store hw-calculated cksum
    #define STRUIO_IP 0x04 /* IP checksum stored in db_struioun */
    #define STRUIO_ZC 0x08 /* mblk eligible for zero-copy */
    strsub.h has:
    struct zero_copy_kstat
    Also /include/inet/tcp.h has tcp_sum for outbound.
    Thank you. -Weimin Tchen

    VenK7337,
    Could you show your python code. so we know what your are "writing" to the ethernet port?
    That way we can see what you are receiving.
    Parsing the incoming data (from the TCP-read) depends heavily on the device that sends it, and can not generically be described. LabVIEW has many byte (and even bit) manipulation functions to convert many different data formats to its own build in formats.
    So after the TCP listener is connected, you are constantly reading from the established connection (until it gets broken of course). More advanced example would be the internet toolkit if oyu have it.
    From the read characters (and I hope you designed a protocol with a clear starting character, ending character and maybe even a build in checksum) you parse the data and perform you action, and of course generate a reply. Again the internet toolkit is a good example. It parsed the input as it comes it, based on the HTTP format. Then generates the reply based on the request received.
    These days I would suggest not to use binairy encoded numerics. Try and use XML formatted data. Yes, it causes a lot of overhead. But typically this is not an issue and makes the code a lot more portable and maintainable. Also makes it easier to interface with other languages/platforms.
    Umless of course you are looking at Khz data rates, then XML is not th preferred choice.
    Hope this helps...

  • Site not found using Sharepoint Designer 2013, Load balance URL and the Front end servers.

    Dears,
    My SharePoint farm is with the below configuration in our office :
    Batch processing server the with Central Administration
    Web Front End Sever 1 (http://wfe01)
    Web Front End Sever 2 (http://wfe02)
    I do have the load balance URL as http://finance.mycompany.com and as per the system administrator it seems configured properly.
    In AAM i have mapped the URLs as below for the web application in Central Administration portal:
    http://finance.mycompany.com - Default Zone
    http://wfe01 - Intranet Zone
    http://wfe02 - Internet Zone
    I was able to browse the site via the load balance URL : http://finance.mycompany.com, but couldn't open the site using the Share Point Designer 2013. It always says the site not found.
    please advise,
    thanks,
    Ammar

    What do the wfe01 and wfe02 aams do?
    Are you browsing to the SharePoint site and using SPD on the same computer, is it part of the farm or a seperate client computer?
    thanks Alex a lot for your response and appreciate the same.
    WFE01, WFE01 is connected to the one central admin on Batch Processing Server (central admin URL is http://SharepointCA:5555 and the SharePoint Web Application is hosted under port 80 on the same server). So the AAM configured on the batch processing server
    central admin.
    I can connect to the site using the SPD inside the Batch Processing server if i mention the site urs as http://localhost. But not from other client computers by putting the load balance URL - http://finance.mycompany.com.
    I can browse the sites directly putting http://wfe01, http://wfe02 and as well as the load balance URL (http://finance.mycompany.com). The custom webparts are getting crashed when i put the web application URL as http://finance.mycompany.com.
    thanks,
    Ammar

  • Problem to use SAPServer Class with load balancing

    Hello,
    We use the SAPServer Class from SAP .Net Connector 1.0.
    On our system, we want to start the RFC Server to use the logon group.
    I didn't find how to use ServerMessage and LogonGroup with one of constructors.
    When we start the SAPServer with the command line -aUSER -gBEAUSR201 -xsapgw10 from the DB server (BEAUSR201) it's Ok,
    but when we start from one of our application Server (for example -aUSER -gBEAUSR213 -xsapgw13 ) it's KO
    we have this message on the trc file.
    ERROR file opened at 20041125 084739 Paris, Madrid, SAP-REL 620,0,1622 RFC-VER 3 683864 MT-SL
    T:13188 ======> Connect to SAP gateway failed
    Connect_PM  TPNAME=USER, GWHOST=BEAUSR214, GWSERV=3314
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       hostname 'BEAUSR214' unknown
    TIME        Thu Nov 25 08:47:39 2004
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -2
    MODULE      ninti.c
    LINE        385
    DETAIL      NiPHostToAddr
    SYSTEM CALL gethostbyname
    COUNTER     1
    What is the solution ?
    Thanks

    Hi,
    The message server and Logon group are there for balancing the load among application servers within a SAP system. You are using the SAPServer class to implement an external RFC server that usually serves the request from SAP servers. So using message server and logon group with an external server doesn't make sense.
    I understand that both your DB server and the application server in question are Windows machine with .NET runtime installed and you started the SAPServer programs directly from Windows command line. If so, the error message for the KO case says that the hostname BEAUSR214 could not be resolved from the application server. I also noticed that the hostname BEAUSR214 in error message doesn't match the hostname BEAUSR213 given in command line.
    Can you ping BEAUSR213 or BEAUSR214 from the application server in concern?
    Regards,
    Guangwei Li

  • Using Web Cache to Load balance Forms Server application.

    Hello,
    I apologize for cross posting this question in the Forms and Caching Services forum. But I thought my question will have a better chance.
    I have read that it's possible to use Oracle Web Cache as a software load balancer between multiple Application Servers.
    We are running Oracle9iAS R1.0.2.2.2a, with Forms/Reports6i servers on 2 Win2k boxes i.e our Forms6i application is deployed on two seperate boxes in two distinct locations. Users at each location, use their respective App Server url.
    Since the application is the same i.e. Forms6i code/fmx is the same for both locations, I am looking into loadbalancing and failover capability that Web Cache might be able to provide.
    I AM ONLY LOOKING AT THE LOADBALANCING & FAILOVER capabilities and NOT caching.
    So basically all users from both locations will point their browser to this Web Cache and the Web Cache will direct each connection to either of the two boxes. So, if either of the boxes dies, Web Cache will divert the requests to the other box.
    My concern is whether Web Cache supports this for the Forms requests that it will receive from the users. We are using Servlet Deployment of Forms, so technically, all communication is going though the HTTPD.
    Has anyone done this or has any ideas as to whether it's going to work or not? Oracle's FAQ insists that Forms is not supported. But I want to make sure that even loadbalancing is not supported. And if not supported then is there any other solution.
    Any comments appreciated.
    Thanks,
    Manish

    Using Web Cache to load balance servlet-based Forms (6i and 9i) is unofficially supported. I say "unofficially" because we have actual customers doing it and getting support, but the 2 development teams (Forms and Web Cache) haven't actually done any integration testing of this sort of configuration yet. For your case, please contact your Support rep and ask what was done to use Web Cache as a load balancer for Forms6i at METRO in Germany. The Forms product managemment team is writing up a white paper to describe how to do it, but until then, you'll need to go through Support. Please contact me if you want more information.

  • How to use Linksys router as bridge?

    I am trying to extend the wifi signal by using another router as bridge
    Source router is Netgear N150 b/g/n and here are the settings
    IP 192.168.254.1
    Subnet mask 255.255.255.0
    Default Gateway 192.160.254.254
    Channel number is on auto
    I have a Ubuquiti antenna
    Here is the webpage for the antenna
    http://www.amazon.com/gp/product/B004EGI3CI/ref=oh_aui_...
    I connected Linksys E900 router to this antenna and then another cable is connecting the router to my laptop
    To access antenna settings I typed 192.168.1.20 and accessed the antenna settings I chosed bridge option
    Then accessed internet explorer typed in 192.168.1.1 for linksys router settings
    Here is the linksys settings
    IP 192.168.1.43
    Subnet mask 255.255.255.0
    Default Gateway 192.168.1.1
    Channel number is on auto
    I choosed the channel number different than the one from the original signal and chose bridge as option
    While it was connected I tried to surf the net but it did not work
    I unplugged it form the router and checked the wifi signals and saw my wifi signal very strong 
    But tried to connect but it says can not connect
    Can someone help me?.
    Is default gateway supposed to be the same in main router and the bridge router and the antenna?

    You need to verify with the e900 that it actually has the Bridge mode feature, it it does not, the only other thing you can do is to run it in wired AP mode:
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=169333b784cf4c78b8db5490f85c518a_Setting_.xml&pid=...
    http://www.northshore-it.com/tips/how-tos/cascade_linksys/#LAN_to_LAN
    If you you an actual bridge mode feature, and the e900 will not work, I suggested reviewing this as an alternative:
    http://store.linksys.com/products/linksys-entertainment_bridges_stcVVcatId554254VVviewcat.htm

  • How to use Default value in a column in Tabular form in insertion or upda

    Hello,
    I am trying to use Default values so that user need not have to enter data, but when I select default type and put a default value, I see an error message, if I try to add a new row.
    How can I use a default value in a Column in a Tabular Form?
    Gouri
    Edited by: user1046395 on Apr 3, 2009 9:58 AM

    Gouri,
    You can just simply edit to each column's report attribute. For example,
    To set default date,
    Default Type: PL/SQL Expression of Function
    Default: sysdate
    To set default text,
    Default Type: PL/SQL Expression of Function
    Default: *'CLERK'*
    If you still have an error, what is the error message?
    Ittichai

  • Use message server as load balancing instead of web dispacher for XI in HA

    Hi all!
        We are currently upgrading a cluster XI installation from 3.0 to 7.0.
        The idea is:
              Now:    1 node (central instance)
                         1 node (database)
              Future: 1 node (central instance)
                         1 node (database + application instance)
         So we need some king of load balancing between the two instances.
         We already know web dispatcher and all configuration required. However we
    were trying not to use it but use the abap/java message server who can also do
    the redirect.
         However, once the Exchange Profile has been updated, it does not work.
         If we change "com.sap.aii.connect.repository.httpport" to "8101". Cache refresh stop working with a "Authorization Error". This is really strange because if I try the very same URL in the explorer and I enter the logon data, I have no problem.
         Do you have any experience with this? I mean, is it possible to avoid installing web dispatcher?
         Thanks and kind regards,
               Encinas.

    Hi David,
    the message server does only a redirect and some XI applications (JAVA and ABAP side) cannot handle the redirect URL.
    Therefore in the XI environment you have to use a "real" dispatcher (keeping the session and forwarding the session, instead of redirect) - for example you can use the SAP WebDispatcher here.
    Best regards,
    Silvia

  • How to use Default parameters

    Hello,
    How do I use default parameters from ODP.NET. I have a proc in Oracle that shows Default? = Y when I do Describe in PL/SQL Developer. Therefore, I don't want to pass this parameter at all via ODP.NET/C# call. If I omit this parameter, I get the dreaded "Invalid number or types of parameters" error.
    Thanks for your help,
    Evgueni

    Hi,
    You'll just want to set OracleCommand::BindByName=true. Here's an example, hope it helps.
    Greg
    create or replace function showparams(p1 varchar2, p2 varchar2 default 'foo',
               p3 varchar2, p4 varchar2 default 'bar') return varchar2
    is
    retval varchar2(4000);
    begin
    retval := 'p1 = '|| p1;
    retval := retval || ',p2 = ' || p2;
    retval := retval || ',p3 = ' || p3;
    retval := retval || ',p4 = ' || p4;
    return retval;
    end;
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    class testdefault
        static void Main(string[] args)
            using (OracleConnection con = new OracleConnection("data source=orcl;user id=scott;password=tiger"))
                con.Open();
                using (OracleCommand cmd = new OracleCommand("showparams", con))
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.BindByName = true;
                    cmd.Parameters.Add( new OracleParameter("retval", OracleDbType.Varchar2,4000));
                    cmd.Parameters["retval"].Direction = ParameterDirection.ReturnValue;
                    cmd.Parameters.Add("p1", "firstval");
                    cmd.Parameters.Add("p3", "secondval");
                    cmd.ExecuteNonQuery();
                    Console.WriteLine(cmd.Parameters["retval"].Value.ToString());
    }OUTPUT
    =========
    p1 = firstval,p2 = foo,p3 = secondval,p4 = bar
    Press any key to continue . . .

  • How to use External Routing in Human Task

    Hi,
    Could you please help me knowing how to create External Routing in Human Task in SOA Composite.
    Thanks

    When defining the external routing class in the .task, you can define the name value pairs which you want to pass to the program. Here you can pass dynamic values to the class as well by reading the appropiate node from the payload. In your class the name, value would be available in the "Map propertyBag" parameters in Rajiv's example link.
    Document says:
    Map of properties — When an assignment service is specified, a list of properties can also be specified to correlate callbacks with backend services that determine the task assignees.Or if you are too lazy to map many parameters and values, you can always read the whole Task task and then use getDocument and some xml reading to determine the values. This Task is the whole document.
    API:
    http://docs.oracle.com/cd/E17904_01/apirefs.1111/e10660/oracle/bpel/services/workflow/task/model/TaskType.html#getDocument__Document says:
    Task document — The task document that is executed by the workflow. The task document contains the payload and other task information like current state, and so on.Also you need to make sure that you are maintaining the state of the assignment class, doc says:
    The assignment service class cannot be stateful because every time workflow services need to call the assignment service, it creates a new instance.Thus if you are doing multiple serial assignments one after the another and if your server restarts in between, then the approval would start at the first assignee again. Suppose in Rajiv's doc link e.g., if the task is assigned to 'wfaulk' and the server restarts then the task would be assigned back to 'jstein'. In order to prevent this you need to modify the java code and each time the variable changes it's value you need to place it in a dehydration store. Also on each action over the process you need to reinitialize the variable from that dehydration store.
    -Bikash

Maybe you are looking for

  • 3.86GB usable with discrete graphic card????

    the system tells me memory: 4.00GB ( 3.86GB usable ) i have a discrete graphic card on my t510 and my system is 64 bits how can this be happened?

  • How do I get You Tube to play

    Had Adobe Flash Player installed, asked to update but refused due to their auto installation of Google Chrome. Since that time You Tube will not play.

  • SD (External document number of vendor confirmation)

    Hi Friends, Below are my report output fields. Orer entry date     Sales Order     Sales Org            Shipping quantity   External (VBAP-ERDAT)  (VBAP-VBELN)  (VBAK- VKORG)  (LIPS-LFIMG)        doc no                                                

  • Lion doesn't allow me to activate "Mail & Notes"

    My AppleID is a .Mac, then MobileMe ID. It was inactive for some time. Now I logged in on icloud.com with that ID. It told me, I have to activate "Mail & Notes" in the System Settings of Lion, but Lion doesn't want to activate "Mail & Notes". It just

  • How to extend ringing time before voicemail is activated?

    I would like to setup the phone such that voicemail is not activated for 10 or 15 seconds, but I can't figure out how to do it. This was pretty easy to do on some previous phones I used. Any ideas how to do this? Thank you for your time.