Я добавил сетевой интерфейс в файл "/etc/network/interfaces":
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
#iface eth0 inet static
# address 192.168.19.82
# gateway 192.168.19.154
# VirtualBox NAT bridge
#auto vnet0
iface vnet0 inet static
address 172.16.0.1
netmask 255.255.255.0
bridge_ports none
bridge_maxwait 0
bridge_fd 1
Сетевой менеджер активен, я попытался активировать managed
флаг и отключить его, но перезапуск сетевого сервиса не создает интерфейс vnet0
.
Что может блокировать создание этого интерфейса?