Ubuntu 16.04では、次の情報を含むinterfacesファイルがありました。
Sudo nano /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# Public Interface (Static IP)
auto enp2s0
iface enp2s0 inet static
address 192.168.88.13
gateway 192.168.88.1
netmask 255.255.255.0
broadcast 192.168.88.255
dns-nameservers 8.8.8.8 8.8.4.4
dns-search 8.8.8.8 8.8.4.4
dns-domain 8.8.8.8 8.8.4.4
# Local Network Interface (Static IP)
auto enp2s1
iface enp2s1 inet static
address 192.168.0.10
netmask 255.255.255.0
broadcast 192.168.0.255
network 192.168.0.0
そして、うまくいきます。今Ubuntu 18.04を更新し、enp2s0(最初のインターフェースは公開)で動作しません
ifconfig
enp2s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.88.13 netmask 255.255.255.0 broadcast 192.168.88.255
ether 94:18:82:0c:00:01 txqueuelen 1000 (Ethernet)
RX packets 570 bytes 53571 (53.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 79 bytes 11201 (11.2 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 16
Dhcpでのみ機能します。
auto enp2s0
iface enp2s0 inet dhcp
以前の構成を受け入れない新しいバージョンで何が変更されましたか?ありがとう
Ubuntu 18サーバーの新規インストールでは、Ubuntu 16サーバーで使用したのと同じネットワーク構成を/ etc/network/interfacesで使用できます。
Sudo apt install ifupdown
cd /etc/netplan/
その後 mv 50-cloud-init.yaml 50-cloud-init.yaml.old
Ubuntu 16サーバーからUbuntu 18サーバーへのアップデートでも機能すると思います。