在以前,/etc/network/interfaces
我可以定义一个虚拟接口:
auto enp7s0f0
iface enp7s0f0 inet static
address aaa.aaa.aaa.aaa
netmask 255.255.255.0
gateway aaa.aaa.aaa.1
auto enp7s0f0:0
iface enp7s0f0:0 inet static
address bbb.bbb.bbb.bbb
netmask 255.255.255.0
在Ubuntu Server 17.10上使用netplan如何实现?
现在我有:
network:
version: 2
renderer: networkd
ethernets:
enp7s0f0:
addresses: [aaa.aaa.aaa.aaa/24]
gateway4: aaa.aaa.aaa.1
如何添加虚拟接口的地址bbb.bbb.bbb.bbb
?