1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Julius Rickert 6f9e2797b7 DOCS: Fix examples in documentation (#1435)
* Add example include

* Replace example includes

* Remove old example includes
2022-03-04 07:49:03 -05:00

687 B

name parameters
SSHFP
name
algorithm
type
value
modifiers...

SSHFP contains a fingerprint of a SSH server which can be validated before SSH clients are establishing the connection.

Algorithm (type of the key)

ID Algorithm
0 reserved
1 RSA
2 DSA
3 ECDSA
4 ED25519

Type (fingerprint format)

ID Algorithm
0 reserved
1 SHA-1
2 SHA-256

value is the fingerprint as a string.

{% capture example %}

SSHFP('@', 1, 1, '00yourAmazingFingerprint00'),

{% endcapture %}

{% include example.html content=example %}