# Modules that require GossipRedis can refer to us with this Identifier Identifier gossip-redis
# See all message details. Debug
Secret
is an optional parameter that
enables encryption and decryption of Gossip messages.
Secret
does not store the key in an encrypted format
and using EncryptedSecret
is preferred. For more
information, see Section 3.13.4. EncryptedSecret.
n,value
where: n
is key index. The valid values are from
1
and 65535
. The key index cannot be
0
, it is a reserved value and an error is logged if
0
is used.value
is the keySecret
requires the following Perl
modules:Secret
parameters can be successfully parsed, Gossip does not work and logs an
error.Secret
:<GossipUDP> # Secret also works with GossipREDIS clause Secret 1,fred1 Secret 2,fred2 Secret 3,fred3 </GossipUDP>
EncryptedSecret
is an optional parameter
that enables encryption and decryption of Gossip messages.
EncryptedSecret
stores the key in an encrypted format
and thus it is preferable to use it instead of
Secret
.n,{method}encrypted-value
where: n
is key index. The valid values are from
1
and 65535
. The key index cannot be
0
, it is a reserved value and an error is logged if
0
is used.method
is the encryption method. Currently,
there is one supported method, rcrypt
encrypted-value
is the key encrypted with the
encryption methodEncryptedSecret
requires the
following Perl modules:EncryptedSecret
parameters can be successfully parsed
and decrypted, Gossip does not work and logs an error.EncryptedSecret
:<GossipUDP> # EncryptedSecret also works with GossipREDIS clause EncryptedSecret 1,{rcrypt}OjJXcK4bIA8sJERMzD2R0/Gx EncryptedSecret 2,{rcrypt}GyqZa52CYTRwsFqYQvsHNWbc EncryptedSecret 3,{rcrypt}I1vIkmow6FgLJyg5/pMfOOv2 </GossipUDP>