This file is indexed.

/usr/share/doc/xymon-client/README.encryption is in xymon-client 4.3.28-3build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Encypting the Traffic between Xymon Client and Server
=====================================================

If you want to encrypt the reporting traffic between Xymon client and
server, you can use stunnel (Debian package `stunnel4`).

Stunnel Configuration
---------------------

Besides the normal stunnel configuration, you need the according
tunnel entries in `/etc/stunnel/stunnel.conf`.

(If you like, you can also use a different names for the connection,
e.g. `xymons` or a differnt port number, but 1983 seems the proper
"not yet 1984" port number. Of course, the port number should be the
same on client and server side.)

### Stunnel Client Side Configuration

    [bbs]
    accept  = 127.0.0.1:1984
    connect = <your-xymon-server>:1983
    client = yes

### Stunnel Server Side Configuration

    [bbs]
    accept = 1983
    connect = 1984

### Further documentation

See the section
[Encryption and Tunnelling](https://en.wikibooks.org/wiki/System_Monitoring_with_Xymon/Administration_Guide#Encryption_and_Tunnelling)
in the
[Administration Guide for System Monitoring with Xymon](https://en.wikibooks.org/wiki/System_Monitoring_with_Xymon/Administration_Guide)
at Wikibooks for a more detailed (and not Debian-specific)
documentation.