Which of the following options are valid in /etc/exports? (Choose two.)
Which of the following options are valid in /etc/exports? (Choose two.)
In the file /etc/exports, the valid options for specifying access permissions are 'rw' for read-write access and 'ro' for read-only access. These options are commonly used and documented as standard options for defining access control in NFS exports.
A & B are correct
Mentioned answers are correct. https://www.thegeekdiary.com/understanding-the-etc-exports-file/
Note that root_squash and no_root_squash should have the underscore to be valid options. So the only valid options are ro and rw. https://linux.die.net/man/5/exports
A & B are correct