2019-03-08 20:47:06 +02:00
Name = "RFC2136"
Description = '' '' ''
2021-10-22 21:26:08 +02:00
URL = "https://www.rfc-editor.org/rfc/rfc2136.html"
2019-03-08 20:47:06 +02:00
Code = "rfc2136"
2019-04-17 21:32:38 +02:00
Since = "v0.3.0"
2019-03-08 20:47:06 +02:00
2020-12-19 17:48:31 +02:00
Example = '' '
RFC2136_NAMESERVER = 127.0 . 0.1 \
2024-11-09 23:46:22 +02:00
RFC2136_TSIG_KEY = example . com \
2020-12-19 17:48:31 +02:00
RFC2136_TSIG_ALGORITHM = hmac-sha256 . \
RFC2136_TSIG_SECRET = YWJjZGVmZGdoaWprbG1ub3BxcnN0dXZ3eHl6MTIzNDU = \
2024-11-08 00:55:04 +02:00
lego --email you @ example . com --dns rfc2136 -d '*.example.com' -d example . com run
2020-12-19 17:48:31 +02:00
## ---
2024-11-09 23:46:22 +02:00
keyname = example . com ; keyfile = example . com . key ; tsig-keygen $ keyname > $ keyfile
2020-12-19 17:48:31 +02:00
RFC2136_NAMESERVER = 127.0 . 0.1 \
2024-11-09 23:46:22 +02:00
RFC2136_TSIG_FILE = "$keyfile" \
lego --email you @ example . com --dns rfc2136 -d '*.example.com' -d example . com run
2020-12-19 17:48:31 +02:00
'' '
2019-03-08 20:47:06 +02:00
[ Configuration ]
[ Configuration . Credentials ]
2024-11-09 23:46:22 +02:00
RFC2136_TSIG_KEY = "Name of the secret key as defined in DNS server configuration. To disable TSIG authentication, leave the `RFC2136_TSIG_KEY` variable unset."
RFC2136_TSIG_SECRET = "Secret key payload. To disable TSIG authentication, leave the `RFC2136_TSIG_SECRET` variable unset."
RFC2136_TSIG_ALGORITHM = "TSIG algorithm. See [miekg/dns#tsig.go](https://github.com/miekg/dns/blob/master/tsig.go) for supported values. To disable TSIG authentication, leave the `RFC2136_TSIG_KEY` or `RFC2136_TSIG_SECRET` variables unset."
2019-03-08 20:47:06 +02:00
RFC2136_NAMESERVER = 'Network address in the form "host" or "host:port"'
[ Configuration . Additional ]
2024-11-09 23:46:22 +02:00
RFC2136_TSIG_FILE = "Path to a key file generated by tsig-keygen"
2019-03-08 20:47:06 +02:00
RFC2136_POLLING_INTERVAL = "Time between DNS propagation check"
RFC2136_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
RFC2136_TTL = "The TTL of the TXT record used for the DNS challenge"
RFC2136_DNS_TIMEOUT = "API request timeout"
2021-04-25 11:51:37 +02:00
RFC2136_SEQUENCE_INTERVAL = "Time between sequential requests"
2019-03-08 20:47:06 +02:00
[ Links ]
2021-10-22 21:26:08 +02:00
API = "https://www.rfc-editor.org/rfc/rfc2136.html"