Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # -- 10gbe tuning from Intel ixgb driver README -- #
  2.  
  3. # turn off selective ACK and timestamps
  4. net.ipv4.tcp_sack = 0
  5. net.ipv4.tcp_timestamps = 0
  6.  
  7. # memory allocation min/pressure/max.
  8. # read buffer, write buffer, and buffer space
  9. net.ipv4.tcp_rmem = 10000000 10000000 10000000
  10. net.ipv4.tcp_wmem = 10000000 10000000 10000000
  11. net.ipv4.tcp_mem = 10000000 10000000 10000000
  12.  
  13. net.core.rmem_max = 524287
  14. net.core.wmem_max = 524287
  15. net.core.rmem_default = 524287
  16. net.core.wmem_default = 524287
  17. net.core.optmem_max = 524287
  18. net.core.netdev_max_backlog = 300000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement