Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. net.ipv4.ip_forward = 0
  2.  
  3. # Controls source route verification
  4. net.ipv4.conf.default.rp_filter = 1
  5.  
  6. # Do not accept source routing
  7. net.ipv4.conf.default.accept_source_route = 0
  8.  
  9. # Controls the System Request debugging functionality of the kernel
  10. kernel.sysrq = 0
  11.  
  12. # Controls whether core dumps will append the PID to the core filename
  13. # Useful for debugging multi-threaded applications
  14. kernel.core_uses_pid = 1
  15.  
  16. # Controls the use of TCP syncookies
  17. net.ipv4.tcp_syncookies = 1
  18.  
  19. # Controls the maximum size of a message, in bytes
  20. kernel.msgmnb = 65536
  21.  
  22. # Controls the default maxmimum size of a mesage queue
  23. kernel.msgmax = 65536
  24.  
  25. # Controls the maximum shared segment size, in bytes
  26. kernel.shmmax = 68719476736
  27.  
  28. # Controls the maximum number of shared memory segments, in pages
  29. kernel.shmall = 4294967296
  30. ~
  31. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement