Saltstack Official Linux Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

38 行
897B

  1. # 3.5.3 Ensure RDS is disabled
  2. #
  3. # Description
  4. # ===========
  5. # The Reliable Datagram Sockets (RDS) protocol is a transport layer protocol
  6. # designed to provide low-latency, high-bandwidth communications between
  7. # cluster nodes. It was developed by the Oracle Corporation.
  8. #
  9. # Rationale
  10. # =========
  11. # If the protocol is not being used, it is recommended that kernel module
  12. # not be loaded, disabling the service to reduce the potential attack surface.
  13. #
  14. # Audit
  15. # =====
  16. # Run the following commands and verify the output is as indicated:
  17. #
  18. # # modprobe -n -v rds
  19. # install /bin/true
  20. # # lsmod | grep rds
  21. # <No output>
  22. #
  23. # Remediation
  24. # ===========
  25. # Edit or create the file /etc/modprobe.d/CIS.conf and add the following line:
  26. #
  27. # install rds /bin/true
  28. #
  29. parameters:
  30. linux:
  31. system:
  32. kernel:
  33. module:
  34. rds:
  35. install:
  36. command: /bin/true