# ------------------------------------------------------ # INCREASE MAX BUFFER SIZE IF YOU ARE ON A NETWORK THAT IS FASTER THAN 10Mbps # Provides NO improvement for most home DSL, Cable modem, etc, users) # More info (and the below example is referenced from): # http://www.onlamp.com/pub/a/onlamp/2005/11/17/tcp_tuning.html # # More information on TCP tunning: # http://dsd.lbl.gov/TCP-tuning/TCP-tuning.html # # TCP maximum buffer size # 16MB max buffer in the example below #net.core.rmem_max = 16777216 #net.core.wmem_max = 16777216 # # Linux autotuning TCP buffer limits # (x = 'min' 'default' 'maximum' number of bytes to use - 16MB max buffer in # the example below) #net.ipv4.tcp_rmem = 4096 87380 16777216 #net.ipv4.tcp_wmem = 4096 65536 16777216 # ------------------------------------------------------