Ubuntu

如何為 Ubuntu PC 分配域

  • November 2, 2021

我想將域名分配給 Ubuntu 20 伺服器。我已手動將 ip 分配給伺服器。尋找免費的免費 dns,我發現了這個連結https://freedns.afraid.org/ 我完全困惑如何進行事情以及什麼是必備條件。我必須在 ubuntu 20.04 上使用 apache 或 nginx 嗎?

您可以使用hostnamectl set-hostname xxxx為了設置您的伺服器的名稱。但是,您的伺服器不需要知道它在網路中的呼叫方式。如果要強製本地解析,可以檢查/etc/hosts文件,或使用 netplan 以使用帶有search參數的特定 DNS:

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

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

引用自:https://serverfault.com/questions/1082379