Software /
code /
prosody-modules
Comparison
mod_dnsupdate/README.md @ 6209:d611ed13df7e draft
Merge
author | Trần H. Trung <xmpp:trần.h.trung@trung.fun> |
---|---|
date | Tue, 18 Mar 2025 00:16:25 +0700 |
parent | 4762:mod_dnsupdate/README.markdown@ba312cd7907f |
comparison
equal
deleted
inserted
replaced
6208:e20901443eae | 6209:d611ed13df7e |
---|---|
1 Generate a DNS UPDATE order in format suitable for `nsupdate` based on | |
2 current port configuration. | |
3 | |
4 Example output: | |
5 | |
6 ``` | |
7 $ prosodyctl mod_dnsupdate -d example.com -t xmpp.example.com example.com | |
8 zone example.com | |
9 server ns1.example.com | |
10 ttl 3600 | |
11 add _xmpp-client._tcp.example.com IN SRV 1 1 5222 | |
12 add _xmpp-server._tcp.example.com IN SRV 1 1 5269 | |
13 ``` | |
14 |