Skip to content

Commit 88276ce

Browse files
committed
add documentation for mbedtls driver
1 parent 0849085 commit 88276ce

File tree

4 files changed

+58
-3
lines changed

4 files changed

+58
-3
lines changed

source/concepts/netstrm_drvr.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ Current Network Stream Drivers
1919
ns_ptcp
2020
ns_gtls
2121
ns_ossl
22+
ns_mbedtls

source/concepts/ns_mbedtls.rst

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
*****************************
2+
mbedtls Network Stream Driver
3+
*****************************
4+
5+
=========================== ===========================================================================
6+
**Driver Name:**  **mbedtls**
7+
**Author:** Stéphane Adenot <[email protected]>
8+
**Available since:**
9+
=========================== ===========================================================================
10+
11+
12+
Purpose
13+
=======
14+
15+
This network stream driver implements a TLS protected transport
16+
via the `MbedTLS library <https://www.trustedfirmware.org/projects/mbed-tls/>`_.
17+
18+
19+
Supported Driver Modes
20+
======================
21+
22+
- **0** - unencrypted transmission (just like `ptcp <ns_ptcp.html>`_ driver)
23+
- **1** - TLS-protected operation
24+
25+
.. note::
26+
27+
Mode 0 does not provide any benefit over the ptcp driver. This
28+
mode exists for technical reasons, but should not be used. It may be
29+
removed in the future.
30+
31+
32+
Supported Authentication Modes
33+
==============================
34+
35+
- **anon** - anonymous authentication as described in IETF's
36+
draft-ietf-syslog-transport-tls-12 Internet draft
37+
38+
- **x509/certvalid** - certificate validation only. x509/certvalid is
39+
a nonstandard mode. It validates the remote peers certificate, but
40+
does not check the subject name. This is weak authentication that may
41+
be useful in scenarios where multiple devices are deployed and it is
42+
sufficient proof of authenticity when their certificates are signed by
43+
the CA the server trusts. This is better than anon authentication, but
44+
still not recommended. **Known Problems**
45+
46+
- **x509/name** - certificate validation and subject name authentication as
47+
described in IETF's draft-ietf-syslog-transport-tls-12 Internet draft
48+
49+
.. note::
50+
51+
"anon" does not permit to authenticate the remote peer. As such,
52+
this mode is vulnerable to man in the middle attacks as well as
53+
unauthorized access. It is recommended NOT to use this mode.
54+
A certificate / key does not need to be configured in this authmode.

source/configuration/modules/omfwd.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Protocol
8686
Type of protocol to use for forwarding. Note that \`\`tcp'' means
8787
both legacy plain tcp syslog as well as RFC5425-based TLS-encrypted
8888
syslog. Which one is selected depends on the StreamDriver parameter.
89-
If StreamDriver is set to "ossl" or "gtls" it will use TLS-encrypted syslog.
89+
If StreamDriver is set to "ossl", "gtls" or "mbedtls", it will use TLS-encrypted syslog.
9090

9191

9292
NetworkNamespace
@@ -443,7 +443,7 @@ StreamDriver
443443
"word", "none", "no", "``$ActionSendStreamDriver``"
444444

445445
Choose the stream driver to be used. Default is plain tcp, but
446-
you can also choose "ossl" or "gtls" for TLS encryption.
446+
you can also choose "ossl" "gtls" or "mbedtls" for TLS encryption.
447447

448448

449449
StreamDriverMode

source/rainerscript/global.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The following parameters can be set:
110110

111111
- **defaultNetstreamDriver**
112112

113-
Set it to "ossl" or "gtls" to enable TLS.
113+
Set it to "ossl", "gtls" or "mbedtls" to enable TLS.
114114
This `guide <http://www.rsyslog.com/doc/rsyslog_secure_tls.html>`_
115115
shows how to use TLS.
116116

0 commit comments

Comments
 (0)