我正在按照本教程使用 Samba 制作 Ubuntu 活动目录域控制器。
我遇到的问题是他使用的是 Ubuntu Server 13.10,而我使用的是最新的 18.04。在这两个版本之间的某个地方,Ubuntu 停止使用/etc/network/interfaces
并开始使用netplan
.
因此,当他说要修改时/etc/network/interfaces
,并添加:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.2.100
netmask 255.255.255.0
network 192.168.2.0
broadcast 192.168.2.255
gateway 192.168.2.1
dns-nameservers 192.168.1.100 8.8.8.8
dns-search <domain name>.local
我收到一条错误消息,上面写着:
ifupdown 在此系统上已被 netplan(5) 取代。
我做了一些研究,发现现在应该存储在/etc/netplan/01-netcfg.yaml
. 该文件不存在。我应该创建它吗?此外,他所说的放入文件中的内容相当于什么netplan
?
编辑:ls /etc/netplan
is50-cloud-init.yaml
的输出,而输出cat /etc/netplan/*.yaml
是:
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
ethernets:
enp0s3:
addresses: []
dhcp4: true
optional: true
version: 2