如何为 Ubuntu PC 分配域

如何为 Ubuntu PC 分配域

我想为 Ubuntu 20 服务器分配域名。我已经手动为服务器分配了 IP。在寻找免费的 DNS 时,我发现了这个链接https://freedns.afraid.org/ 我完全搞不清楚该如何进行,以及先决条件是什么。我必须在 ubuntu 20.04 上使用 apache 或 nginx 吗?

答案1

您可以使用hostnamectl set-hostname xxxx来设置服务器的名称。但是,您的服务器不需要知道它在网络中是如何调用的。/etc/hosts如果您想强制本地解析,可以检查文件,或者使用 netplan 来使用带有参数的特定 DNS search

network:
  version: 2
  renderer: networkd
  ethernets:
    int001:
        addresses:
        gateway4: 
        nameservers:
            addresses:

            #here the line
            search: ['subdomain.domain.de', 'otherdomain.nl']

相关内容