I'm running an openvpn server and I want to use SELinux. When it's activated I see a few "denied" events in the logs. I've used audit2allow to create a '.te' file. My question is about these lines in the file.
#============= openvpn_t ==============
#!!!! This avc can be allowed using the boolean 'nis_enabled'
allow openvpn_t unreserved_port_t:tcp_socket name_bind;
I understand 'nis_enabled' boolean will allow this and other context requests.
Where can I find exactly what this boolean will allow?
What would you choose to do, enable the boolean or the policy?
EDIT: Thank you @Michael Hampton.
semanage port -a -t openvpn_t -p tcp <myVpnPort>