Forum Discussion

nullck_120095's avatar
nullck_120095
Icon for Nimbostratus rankNimbostratus
Sep 27, 2013

Slowing Upload my application http behind F5 Big IP

Hi,

 

Please I need your help, my application contains one area upload the small files, size between 200k and 600k. When we acessed behind F5 Big IP vip , upload area is slowing, but direct access in webserver application (backend) this area upload is more fast.

 

I changed configuration the tcp profile but not function for me =/

 

Was disabled Nagle Algorithm, Bandwidth Delay, Slow start and Limited Transmit Recovery.

 

My BigIP is in version BIG-IP 9.4.5 Build 1086.1 Hotfix HF2.

 

Thank's for any help.

 

2 Replies

  • Hi Nullck, There various reason why this could be slow. Can you post your vip and profile settings associated. Perhaps someone in the forumn can spot a setting which maybe slowing you down.

     

    I hope this helps

     

    -=Bhattman=-

     

  • Hi Bhatmman =D

    Thanks for quickly reply, below is my setup

    virtual vs_saosilvestre_homologacao {
       snat automap
       pool pool_saosilvestre_homologacao
       destination 201.33.98.35:https
       ip protocol tcp
       profiles
          profile_http_ss
          profile_ssl_saosilvestre_homologacao
          profile_tcp_ss
       persist profile_persist_source_addr
    }
    
    

    Profiles: profile_http_ss and profile_tcp_ss

    profile http profile_http_ss {
       defaults from http
       oneconnect transformations disable
       compress enable
       compress prefer gzip
       compress min size 512
       compress buffer size 4096
       compress vary header enable
       compress http 1.0 disable
       compress gzip memory level 8k
       compress gzip window size 16k
       compress gzip level 1
       compress keep accept encoding enable
       compress browser workarounds enable
       compress cpu saver enable
       compress cpu saver high 90
       compress cpu saver low 75
       response preserve chunk
       lws width 80
       lws separator none
       redirect rewrite none
       max header size 32768
       max requests 0
       pipelining disable
       insert xforwarded for enable
       compress content type include
          "text/"
          "application/(xml|x-javascript)"
          "text/html"
          "text/css"
          "image/jpeg"
          "image/png"
    }
    
    
    profile tcp profile_tcp_ss {
       defaults from profile_tcp
       reset on timeout enable
       time wait recycle enable
       delayed acks enable
       proxy mss enable
       proxy options enable
       selective acks enable
       dsack disable
       ecn disable
       limited transmit disable
       rfc1323 enable
       slow start disable
       bandwidth delay disable
       nagle disable
       abc disable
       cmetrics cache disable
       md5 sign passphrase none
       proxy buffer low 98304
       proxy buffer high 131072
       idle timeout 300
       time wait 2K
       fin wait 5
       close wait 5
       send buffer 344898
       recv window 344898
       keep alive interval 1800
       max retrans syn 3
       max retrans 8
       ip tos pass
       link qos pass
       congestion control none
    }
    
    

    Thanks !!