Guest User

Untitled

a guest
Nov 24th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # Kernel sysctl configuration file for Red Hat Linux
  2. #
  3. # For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
  4. # sysctl.conf(5) for more details.
  5.  
  6. # Controls IP packet forwarding
  7. net.ipv4.ip_forward = 1
  8.  
  9. # Controls source route verification
  10. net.ipv4.conf.default.rp_filter = 1
  11.  
  12. # Do not accept source routing
  13. net.ipv4.conf.default.accept_source_route = 0
  14.  
  15. # Controls the System Request debugging functionality of the kernel
  16. kernel.sysrq = 0
  17.  
  18. # Controls whether core dumps will append the PID to the core filename
  19. # Useful for debugging multi-threaded applications
  20. kernel.core_uses_pid = 1
  21.  
  22. # Controls the use of TCP syncookies
  23. net.ipv4.tcp_syncookies = 1
  24.  
  25. # Controls the maximum size of a message, in bytes
  26. kernel.msgmnb = 65536
  27.  
  28. # Controls the default maxmimum size of a mesage queue
  29. kernel.msgmax = 65536
  30.  
  31. # Controls the maximum shared segment size, in bytes
  32. kernel.shmmax = 68719476736
  33.  
  34. # Controls the maximum number of shared memory segments, in pages
  35. kernel.shmall = 4294967296
Add Comment
Please, Sign In to add comment