Advertisement
kevin25

TCP

Mar 23rd, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. #
  2. # /etc/sysctl.conf - Configuration file for setting system variables
  3. # See /etc/sysctl.d/ for additional system variables
  4. # See sysctl.conf (5) for information.
  5. #
  6.  
  7. #kernel.domainname = example.com
  8.  
  9. # Uncomment the following to stop low-level messages on console
  10. #kernel.printk = 3 4 1 3
  11.  
  12. ##############################################################3
  13. # Functions previously found in netbase
  14. #
  15.  
  16. # Uncomment the next two lines to enable Spoof protection (reverse-path filter)
  17. # Turn on Source Address Verification in all interfaces to
  18. # prevent some spoofing attacks
  19. #net.ipv4.conf.default.rp_filter=1
  20. #net.ipv4.conf.all.rp_filter=1
  21.  
  22. # Uncomment the next line to enable TCP/IP SYN cookies
  23. # See http://lwn.net/Articles/277146/
  24. # Note: This may impact IPv6 TCP sessions too
  25. #net.ipv4.tcp_syncookies=1
  26.  
  27. # Uncomment the next line to enable packet forwarding for IPv4
  28. #net.ipv4.ip_forward=1
  29.  
  30. # Uncomment the next line to enable packet forwarding for IPv6
  31. # Enabling this option disables Stateless Address Autoconfiguration
  32. # based on Router Advertisements for this host
  33. #net.ipv6.conf.all.forwarding=1
  34.  
  35.  
  36. kernel.shmall = 4294967296
  37. kernel.shmmax = 68719476736
  38. #net.core.somaxconn=165535
  39.  
  40. net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait = 1
  41. net.ipv4.ip_local_port_range = 2000 65000
  42. net.ipv4.tcp_window_scaling = 1
  43. net.ipv4.tcp_max_syn_backlog = 3240000
  44. # increase socket listen backlog
  45. net.core.somaxconn = 3240000
  46. net.ipv4.tcp_max_tw_buckets = 1440000
  47.  
  48.  
  49. # Increase TCP buffer sizes
  50. net.core.rmem_default = 8388608
  51. net.core.rmem_max = 16777216
  52. net.core.wmem_max = 16777216
  53. net.ipv4.tcp_rmem = 4096 87380 16777216
  54. net.ipv4.tcp_wmem = 4096 65536 16777216
  55. net.ipv4.tcp_congestion_control = cubic
  56.  
  57. net.ipv4.tcp_fin_timeout = 35
  58. net.ipv4.tcp_keepalive_time = 1800
  59. net.ipv4.tcp_keepalive_intvl = 2
  60. net.ipv4.tcp_keepalive_probes = 2
  61. net.ipv4.tcp_tw_recycle = 1
  62. net.ipv4.tcp_tw_reuse = 1
  63. fs.file-max = 65535
  64.  
  65. net.ipv4.tcp_slow_start_after_idle=0
  66. net.netfilter.nf_conntrack_tcp_timeout_established=600
  67. net.ipv4.netfilter.ip_conntrack_max=524288
  68. fs.file-max=1000000
  69. net.ipv4.ip_local_port_range = 1024 65535
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement