Skip to content

Commit

Permalink
docs: completed downward compatibility configuration for file daemon
Browse files Browse the repository at this point in the history
- filedaemon onwards Bareos 18.2
- director and storage before Bareos 18.2
  • Loading branch information
franku committed Feb 11, 2019
1 parent 5ac1ffa commit 2b4fd47
Showing 1 changed file with 44 additions and 6 deletions.
50 changes: 44 additions & 6 deletions docs/manuals/en/new_main_reference/source/bareos-18.2.rst
Expand Up @@ -425,24 +425,53 @@ The following sequence is used to figure out the right protocol version and to s
|bareosFD| 18.2 with Bareos before 18.2
---------------------------------------

|bareosFD| 18.2 onwards can be used on a Bareos system before 18.2.
|bareosFD| 18.2 onwards can be used on a Bareos system before 18.2.

The older |bareosDir| and |bareosSD| connect to |bareosFD| using the cleartext Bareos handshake before they can switch to TLS. If you want transport encryption only TLS with certificates can be used, not PSK as it is possible with Bareos 18.2.
The older |bareosDir| and |bareosSD| connect to |bareosFD| using the cleartext Bareos handshake before they can switch to TLS. If you want transport encryption only TLS with certificates can be used, not PSK as it is possible with Bareos 18.2.

However, it is also possible to disable transport encryption completely and use cleartext transport using the following configuration changes:
However, it is also possible to disable transport encryption and use cleartext transport using the following configuration changes:

|bareosDir| configuration
^^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: ini
:caption: :file:`/etc/bareos/bareos-fd.d/director/bareos-dir.conf`
:caption: :file:`/etc/bareos/bareos-dir.d/client/bareos-fd.conf`
Director {
Client {
...
TlsEnable = no
TlsRequire = no
...
}
.. code-block:: ini
:caption: :file:`/etc/bareos/bareos-dir.d/client/bareos-fd.conf`
:caption: :file:`/etc/bareos/bareos-dir.d/storage/bareos-sd.conf`
Storage {
...
TlsEnable = no
TlsRequire = no
...
}
|bareosSD| configuration
^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: ini
:caption: :file:`/etc/bareos/bareos-sd.d/storage/bareos-sd.conf`
Storage {
...
TlsEnable = no
TlsRequire = no
...
}
|bareosFD| configuration
^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: ini
:caption: :file:`/etc/bareos/bareos-fd.d/client/bareos-fd.conf`
Client {
...
Expand All @@ -451,6 +480,15 @@ However, it is also possible to disable transport encryption completely and use
...
}
.. code-block:: ini
:caption: :file:`/etc/bareos/bareos-fd.d/director/bareos-dir.conf`
Director {
...
TlsEnable = no
TlsRequire = no
...
}
.. _PAMConfigurationChapter:

Expand Down

0 comments on commit 2b4fd47

Please sign in to comment.