Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/system_overview/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ ca_certificate_path
verify_server
: Defines the level of server certificate authentication to perform. The following values are supported: none, cert, hostname. When set to "none", authentication is skipped. When set to "cert", the server will verify that the certificate was signed by a trusted CA. When set to "hostname", the server will do everything defined by the "cert" level and then verify that the FQDN of the iRODS server matches either the common name or one of the subjectAltNames in the certificate.

#### Implement `acPreConnect` in core rulebase

TLS usage is controlled in the server via the `acPreConnect` policy. For iRODS Native Rule Engine Plugin users, this rule should return `CS_NEG_REQUIRE` in its out variable if the server requires TLS communications with clients. This should be placed in the server's `core.re` file:
```
acPreConnect(*OUT) { *OUT="CS_NEG_REQUIRE"; }
Expand Down
Loading