如何使用 netplan 将标签设置为辅助 IP 地址

如何使用 netplan 将标签设置为辅助 IP 地址

直到 Ubuntu 16.04,我都使用eth0:1以下命令将标签(例如:)设置为辅助 IP 地址/etc/network/interfaces

# primary address
auto eth0
iface eth0 inet static
  address  192.0.2.100
  netmask  255.255.255.0
  gateway  192.0.2.1

# secodary address with label "eth0:1"
auto  eth0:1
iface eth0:1 inet static
  address 192.0.2.20
  netmask 255.255.255.0

如何eth0:1使用 Ubuntu 18.04 和 netplan 设置标签(例如:)?

我读https://netplan.io/reference但找不到。

答案1

Netplan 不支持接口别名(这里称之为“标签”)。惯例是为接口分配多个地址。

答案2

相关内容