Hello! I have freshly installed and update proxmox system.
my /etc/network/interfaces file is
If I reboot the server - nothing goes up, no ip adresses etc! if I restart the networking via /etc/init.d - everything is fine.
Any ideas?
my /etc/network/interfaces file is
Code:
auto lo
iface lo inet loopback
#auto vlan101
#iface vlan101 inet manual
#vlan-raw-device eth1
#iface vlan2762
#auto vmbr0
#iface vmbr0 inet static
# address 10.111.1.31
# netmask 255.255.255.0
# gateway 10.111.1.1
# bridge_ports vlan101
# bridge_stp off
# bridge_fd 0
allow-ovs vmbr0
allow-vmbr0 eth0
iface eth0 inet manual
ovs_type OVSPort
ovs_bridge vmbr0
iface eth0 inet manual
allow-vmbr0 vlan101
iface vlan101 inet static
address 10.111.1.44
netmask 255.255.255.0
gateway 10.111.1.1
ovs_type OVSIntPort
ovs_bridge vmbr0
ovs_options tag=101
ovs_extra set interface ${IFACE} external-ids:iface-id=$(hostname -s)-${IFACE}-vif
allow-vmbr1 eth1
iface eth1 inet manual
ovs_type OVSPort
ovs_bridge vmbr1
auto vmbr0
iface vmbr0 inet manual
ovs_type OVSBridge
ovs_ports eth0 vlan101
auto vmbr1
iface vmbr1 inet manual
ovs_type OVSBridge
ovs_ports eth1
Any ideas?