好的,所以我想要做的是在远程机器上设置远程端口,这样我就可以通过互联网访问它。我正在学习教程,但我并不是这方面的专家。我尝试从这里复制粘贴命令:
https://goteleport.com/teleport/docs/quickstart/
第1c节:
certbot certonly \
--manual \
--preferred-challenges=dns \
--agree-tos \
--manual-public-ip-logging-ok \
--email foo@example.com \
-d "teleport.example.com, *.teleport.example.com"正如教程中所说,我更改了电子邮件和域名,但它要求我:
Please deploy a DNS TXT record under the name
_acme-challenge.teleport.example.com with the following value:
XXXX我该怎么改变这一点?在哪里呢?
谢谢!
发布于 2021-01-13 16:41:04
当选择--preferred-challenges时,certbot将要求您通过放置TXT记录来确认您拥有该域名。如果您拥有域并且可以访问该配置,则可以执行此操作。
你想创建你自己的域名(查看Freenom获得一个免费的域名),你有完全的控制权,你可以添加TXT记录。
下面是微软在Freenom上对Create DNS records的引用
https://stackoverflow.com/questions/65684699
复制相似问题