VM not starting in routed configuration

David DOS SANTOS

New Member
Sep 10, 2018
2
0
1
45
Paris (France)
Hi everybody,

I'm new to Proxmox, and trying to set up a "simple" architecture : I followed the wiki on network Model in order to set a routed configuration.
Whenever I try to start a vm i have the following error : no physical interface on bridge 'vmbr0'

Here is my config :

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

#iface eno1 inet manual
auto eno1
iface eno1 inet static
address 195.154.XX.XXX
netmask 255.255.255.0
gateway 195.154.XX.1
post-up echo 1 > /proc/sys/net/ipv4/conf/eno1/proxy_arp​

auto vmbr0
iface vmbr0 inet static
address 10.10.10.1
netmask 255.255.255.0
bridge_ports none
bridge_stp off
bridge_fd 0​

-----
Thanks for your help !
 
That error usually happens when you try to use VLANs on a non-vlan-aware bridge without physical interfaces.
Try enabling vlan filtering on the bridge.
 
  • Like
Reactions: mishagli