mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
DOCS: Migrated documentation website to Gitbook (#1809)
This commit is contained in:
committed by
GitHub
parent
f4388dd6ad
commit
f912b15adc
41
documentation/functions/domain/SSHFP.md
Normal file
41
documentation/functions/domain/SSHFP.md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
name: SSHFP
|
||||
parameters:
|
||||
- name
|
||||
- algorithm
|
||||
- type
|
||||
- value
|
||||
- modifiers...
|
||||
parameter_types:
|
||||
name: string
|
||||
algorithm: 0 | 1 | 2 | 3 | 4
|
||||
type: 0 | 1 | 2
|
||||
value: string
|
||||
"modifiers...": RecordModifier[]
|
||||
---
|
||||
|
||||
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.
|
||||
|
||||
```javascript
|
||||
SSHFP('@', 1, 1, '00yourAmazingFingerprint00'),
|
||||
```
|
Reference in New Issue
Block a user