Information
The Reliable Datagram Sockets (RDS) protocol is a transport layer protocol designed to provide low-latency, high-bandwidth communications between cluster nodes. It was developed by the Oracle Corporation.
Removing support for unneeded protocols reduces the local attack surface of the system. If this protocol is not needed, disable it.
Solution
Unload and disable the rds kernel module.
- Run the following commands to unload the rds kernel module:
# modprobe -r rds 2>/dev/null
# rmmod rds 2>/dev/null
- Perform the following to disable the rds kernel module:
Create a file ending in .conf with install rds /bin/false in the /etc/modprobe.d/ directory
Example:
# printf '\n%s\n' "install rds /bin/false" >> /etc/modprobe.d/60-rds.conf
Create a file ending in .conf with blacklist rds in the /etc/modprobe.d/ directory
Example:
# printf '\n%s\n' "blacklist rds" >> /etc/modprobe.d/60-rds.conf