Can anyone tell me the difference in performance between CSS URL switching

first
Can anyone tell me the difference in performance between CSS URL switching and F5 Big-IP?
second
Can anyone tell me the difference in performance between CSS URL switching and alteon ?
third what is best overally?
i think alteon is best
is that right?
best regard

It looks like the primary question here is performance, in which case:Performance is not an issue, so long is it is sufficient. In the case of CSS 11000 and Alteon, performance fall within the same order of magnitude (supporting web sites with several billion hits per day.) F5 does not have sufficient performance, due to platform and OS limitations (I’ve heard as low as 50 connections per second in complex configurations). The Cisco CSM posts up over 10x the performance at 200k flows/second.
Typically the primary concern is features, then CSS 11000 switches lead with a wide and flexible array of features that are not only helpful to network and web administrators, but well integrated too. CSS 11000 switches offer configuration through CLI, Web GUI, and XML. CSS 11000 collects statistics that can be exported to non-Cisco applications for billing and management.
The CSS11000 also supports URL load balancing and HTTP header balancing within one content rule, with complex matching. Further, it supports user agent, pragma/no-cache, host field, cookie field, language field, accept, accept charset, accept-encoding, and Connection within the http header field.
In addition, the CSS11000 matches up to 128 bytes with support of wildcards anywhere within the string.On the other hand, Nortel (Alteon) - HTTP header load balancing is not supported on the same VIP as URL load balancing. Eg. This means that a simulated WAP user cannot be directed to a server while load balancing "normal" browsers to their servers based on URL without using two separate VIPs. Only ONE http header load balance is supported on the entire switch. This limits you to either User Agent (WAP, Netscape, IE, Palm, etc), OR pragma/no cache (do not send the user to cache, allow (the user) to go to the origin), or Host field (allowing you to direct on domain name), or Cookie. Also, Nortel does not support the language field.
In regards to F5, many of the performance claims are based on HTTP 1.0 requests (most web sites today are not using HTTP 1.0), Many emerging applications rely on HTTP 1.1 rather than HTTP 1.0. Also, the BIG-IP cannot spoof the connection to detect the URL, cannot do NAT on the flow, and cannot maintain states for persistent connections.
Overall, I think CSS switches are the lowest cost to own, and most effective of all the load balancing platforms on the market.

Similar Messages

  • Can anyone tell me the difference between OES 11g R1 and OES 11g R2

    Can anyone tell me the difference between OES 11g R1 and OES 11g R2
    What are the new features and updates are done in OES 11g R2. If there is any link plz provide me

    OES11gR2 -> http://docs.oracle.com/cd/E37472_01/admin.1112/e27153/intro.htm#CHDICEIG
    OES11gR1 -> http://docs.oracle.com/cd/E21764_01/doc.1111/e14096/intro.htm#CHDICEIG
    Regards,
    Vishnu Mahajan

  • I need to upgrade my OS from Snow Leopard 10.6.8. I can't decide between Lion or Mountain Lion can anyone tell me the difference between the two?

    I need to upgrade my OS from Snow Leopard 10.6.8. I can't decide between Lion or Mountain Lion for my upgrade can anyone tell me the difference between the two?

    Click here for information.
    (125089)

  • Can anyone tell me the difference between the rss.xml and podcast.xml?

    I have the Podcast maker program. Can anyone tell me the difference between the rss.xml and podcast.xml? How do they differ? What do I use each of them for? Where should I put them in my directory?

    Podcast Maker sets up your podcast from media files you enter into it; you enter the summary and description. It then publishes to your iDisk or other server, and in the process created the podcast.xml file which you can submit to iTunes.
    It doesn't create an rss.xml file: it sounds as if you are also creating the podcast in iWeb, which does. This has the advantage of creating a web page; it will also create the rss.xml file.
    Both are valid - of course if there are any differences between the version in Podcast Maker and the version in iWeb then the xml files will be different. But basically you seem to be creating two versions of the same podcast - if you are making it in iWeb then the Podcast maker version is really redundant (though I prefer it for podcast creation). If you want to go on using both I should use the podcast.xml feed it creates.

  • Can anyone tell me the difference between these String methods?

    There are methods that can convert a byte[] into string:
    String(byte[] ascii, int hibyte, int offset, int count)
    String(byte[] bytes, int offset, int length)
    String(byte[] bytes)
    I am now sticking on it. The first one runs great in my project, but it is deprecated. The remaining two return wrong answer I need. Can anyone expain what the difference between them? Really appreciate the help, thanks in advance.

    It seems like the first one translates each byte into one character. The other two use the default character encoding to translate possibly more than one byte into each character. Look up Unicode character encodings to understand the difference.

  • Can anyone tell me the flow of BDC program?

    Hi
    Can anyone tell me the flow of BDC program and also what is the significance of each step?
    Thanks
    Gagan

    Not sure what you are asking here.  A BDC program is a recording over an SAP transaction.  The flow is determined by the screen sequence of the transaction which is being recorded. 
    What you do is fill an internal table with screen numbers and fields with values and fcodes.  Then call the transaction using the internal table.
    For example, the following program calls PA30 and enters a time event.
    report zrich_0001
           no standard page heading.
    parameters: p_pernr type pa0002-pernr,
                p_plans type t528b-plans.
    data: mode type c value 'N'.
    data:   bdcdata type table of bdcdata    with header line.
    data:   messtab type table of bdcmsgcoll with header line.
    start-of-selection.
      perform do_transaction using 'P10'
                             p_pernr
                             p_plans.
    *       FORM do_transaction                                            *
    form do_transaction using timev
                              pernr
                              plans.
      data: bdcdate(10) type c,
            bdctime(8) type c.
      call function 'CONVERT_DATE_TO_EXTERNAL'
           exporting
                date_internal = sy-datum
           importing
                date_external = bdcdate.
      write sy-uzeit to bdctime.
      clear bdcdata.  refresh bdcdata.
      clear messtab.  refresh messtab.
      perform bdc_dynpro      using 'SAPMP50A' '1000'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=INS'.
      perform bdc_field       using 'RP50G-PERNR'
                              pernr.
      perform bdc_field       using 'RP50G-TIMR6'
                                    'X'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RP50G-CHOIC'.
      perform bdc_field       using 'RP50G-CHOIC'
                              '2011'.
      perform bdc_dynpro      using 'MP200000' '2500'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'T705H-GTEXT'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=DIFP'.
      perform bdc_field       using 'P2011-LDATE'
                              bdcdate.
      perform bdc_field       using 'P2011-LTIME'
                              bdctime.
      perform bdc_field       using 'P2011-SATZA'
                              timev.
      if timev = 'P10'.
        perform bdc_dynpro      using 'MP200000' '2221'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'P2APL-PLANS'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=DOIT'.
        perform bdc_field       using 'P2APL-OTYPE'
                                'A'.
        perform bdc_field       using 'P2APL-PLANS'
                                plans.
        perform bdc_field       using 'P2APL-WAERS'
                                'USD'.
      endif.
      perform bdc_dynpro      using 'MP200000' '2500'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'P2011-LDATE'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=UPD'.
      call transaction 'PA30' using bdcdata
                                    mode mode
                                    messages into messtab.
    * If error occurs, give message and come out.
      if sy-subrc <> 0.
      endif.
      clear bdcdata.  refresh bdcdata.
      clear messtab.  refresh messtab.
    endform.
    *       bdc_dynpro
    form bdc_dynpro using program dynpro.
      clear bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      append bdcdata.
    endform.
    *        bdc_field
    form bdc_field using fnam fval.
      clear bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      append bdcdata.
    endform.
    Regards,
    Rich Heilman

  • I have a MacBook Pro 17 inch and I just destroyed the screen.  Can anyone tell me the keystrokes to turn on the external display as primary?

    I have a 17-inch MacBook Pro with a destroyed screen.  (My son put it on the top of his car and drove off and it fell off.)  Can anyone tell me the keystrokes to make an external monitor the primary monitor?  I can see only the upper left side of the laptop screen so I CAN select system preferences.  I can then arrow over to system preferences and down to make selections I cannot see.  I don't know then what to do or IF I can make the choices needed to make the external monitor primary when all I can do is make keystrokes on items I cannot see.  It's an older (about 2008) MacBook Pro and I would like to use the external monitor to see to connect an external hard drive and download files to install on a new MacBook.  My son might know the iOS but I don't.

    • I don't know then what to do or IF I can make the choices needed to make the external monitor primary
    This is the left side of System Preferences in OS 10.8.3. (if that is not what the MBP is running post back). By the way, if you can grab the top of that pane you could move it over to the top far left. - Same for any pane.
    Do this with the external monitor connected and powered on.
    You need to click on Displays., and then grope for Arrangement and click there.
    When you get there, the two screens are shown.
    The trick is to grab the white stripe (on the left in this image) and move it to the other rectangle. You do not have to position it exactly, it snaps into place when it gets close.

  • I bought a MacBook Air and wish to connect with old iMac 2003-5. The screen on the iMac is black. Can anyone tell me the cable I need to do this please. I have music and photos on the iMac I cannot access. Many thanks. Jax

    I bought a MacBook Air and wish to communicate with old iMac G5 2003-5 (sorry can't remember the year). The screen on the iMac is blank and will not come on but the hard drive still works. Can anyone tell me the cable I need to with the iMac & how to do it. I have music and photos on the iMac I cannot access.
    Also, do I need to special CD/DVD external drive/burner to import music CD's into iTunes? I have tried and it keeps coming up with formatting problems.
    Many thanks. Jax

    dwb
    I have looked for what you said and come up with these 2 cables. Are these the correct ones I need?
    http://store.apple.com/us/product/HA833ZM/A/belkin-firewire-800400-9-pin6-pin-ca ble-2-m66-ft?fnode=51&fs=s%3DpriceLH
    http://www.tekserve.com/store/networking-cables-adapters/cables-adapters/apple-t hunderbolt-to-firewire-adapter.html
    Many tx again.
    JAx

  • Can anyone tell me the field name, table name for the following scenario?

    Hi All,
    Can anyone tell me the field name and the respective table name for the following scenario's?
    1. A report to list all the materials to which Invoice is done and delivery is pending.
    2. A report for Order tracking.
    3. A report, which gives PO(Purchase Order),  Pricing details.
    4. A report, which calculates the MATERIAL COST. It will select all the material issued for the entered service order number from  stock.
    Thanks & Regards,
    P.Gowrishanker
    Edited by: Gowrishanker pari on Jun 1, 2008 8:58 AM

    I believe that OmniVision Technologies has the contract for the 3gs.

  • I want to create an app.  Can you tell me the difference between iOS developer program and the mac developer program?

    I want to create an app.  Can you tell me the difference between iOS developer program and the mac developer program?
    Is the difference the device you're creating your app on, or for?

    iOS Developer Program is only for those who wish to develop iDevice apps. Mac program is for those only developing Mac applications. If you wish to do both, then you need to enroll in both programs.

  • Can anyone tell me the naming conventions for PSa tables

    hi all,
    After the data is loaded into the psa. how to look at the records that are there in psa. And can anyone tell me the naming conventions for psa tables.
    like BIC/????
    thanxs in advance
    regds
    hari

    Hi Hari,
    You want to know the naming convention of PSA table. For that there is a simple technique try this.
    Go to - T code SE11
    In the database table check box give  /BI*  and click search
    next window  in the Description Text box give the r data source name(master)  like
    YIO_ID_ATTR which is assigned to infosource. then click OK.
    then you get the psa table structure.
    You can take structure and check in the T code SE 11
    Hope this is fine.
    Regards
    Sreekanth

  • Can anyone Explain me the difference between Batch Input, Direct  input met

    Can anyone Explain me the difference between Batch Input Method and Direct Input Method.

    hi
    good
    Direct input method                     Batch Input Method
    1) We cannot send the fields   | 1) We can send fields as per 
       according to our requirement|    requirement.
    2) validations are done based
    2) validations are done based
       on pre-defined function
    on applications.
       modules
    Batch Input Session:
    - It is a sequence of transactions, which is generated when user run a particular program. 
    - It contains the accounting documents that are to be created. The SAP system stores these transactions until you decide to process them online. 
    - It does not update transaction figures until the session has been processed.  Using this technique, you can transfer large amounts of data to the SAP system in a short time.
    Three processing modes of executing Batch Input Session :-
    (1) Run Visibly : You can correct faulty transactions online & work step-by-step through  the transactions not yet executed. 
    (2) Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    (3) Run in Background : Recommended by SAP.                          
    thanks
    mrutyun^

  • I have migrated from London to New Delhi and i am facing some problem with my iPhone 4s and i am not able to setup a repair .My phone is in under warranty too. Can anyone tell whats the matter?

    I have migrated from London to New Delhi and i am facing some problem with my iPhone 4s and i am not able to setup a repair .My phone is in under warranty too. Can anyone tell whats the matter?

    The warranty is NOT international. You must take it back to the country of origin if it needs repair. The E.U. is considered a single country for warranty purposes.

  • Can anyone tell me the launch date for Apple ipad mini cellular in India...

    Can anyone tell me the launch date for Apple ipad mini cellular in India...

    I want Apple ipad mini Cellular in india. what should i do.
    I am buying apple product for fist time.

  • Can anyone tell me the class diagrams of a simple java notepad

    hi,
    Can anyone tell me the class diagrams of a simple java notepad.
    i'm a very beginner in UML.
    thanks in advance.
    Moazzam

    Don't worry too much about that. Figure out what it needs to do. Then grab JUnit and start writing tests & code.
    On xprogramming.com there is a series of articles developing a notepad type app in C#. That might be of some help.
    Dave

Maybe you are looking for

  • Error message:500 internal service error

    I am working on jsp in jdeveloper (10.1.3) on windows xp professional. I create emp.jsp and run it. i have an error message. I guess it is related with jsp:UseBean. jsp:UseBean can not call the class(database connection). would you help me? <!DOCTYPE

  • DVD WILL NOT BURN IN IDVD

    Trying to burn a project in IDVD, goes through the entire process up to "Writing Lead-In" and about 6 minutes left, the disk is ejected automatically. When put back in process gets hung up. Have also saved as a "Disk Image on my desktop and plays wit

  • Squares appearing over game screens

    I have been running code using a Graphics object for over 2 years now without any problems. I havent used any Graphics2d objects and I use double buffering to paint the objects to the screen. I use Netbeans and the game can be launched from the web s

  • Jobs for ABAP Certified Person

    Hi All, I am planning to do certification in ABAP through E- Learning from a authorized but not so popular institute , which I have doubt could help me out in placement . I am working in a big SAP End user company and giving support for functional mo

  • Managed server startup issue!!!

    hi all, i am facing managedserver startup issue i am start the managed server it will up take the 6 min how to reduce the time 1)i am trying differnt ways 1)threaddump 2)GCparamets but no usee can u see the log and give me suugestions below log one p