Hi
According to the documentation, Proxmox uses tap devices (layer-2 devices which accept Ethernet frames) along the virtual switch (Vmbr0). I am not understanding why vmbr0 has an IP address, what is it needed for? and what is it used for?
The code below is taken from the documentation for the default mode:
So is the 192.168.10.2 address above is assigned to the first-tap device on the switch if not to what entity it is being assigned?
Assume I have two NICs en0 and en1 with
en0 having the 192.168.10.0 network
en1 having the 193.168.10.0 network
How will the config above changes?
Assume I want to add a 2nd tap-device to the first configuration, Do i need to add an IP address to it? how will the configuration look?
Having the tap device (layer-2 device) with the IP address is throwing me off track, so any feedback is much appreciated.
Thx.
According to the documentation, Proxmox uses tap devices (layer-2 devices which accept Ethernet frames) along the virtual switch (Vmbr0). I am not understanding why vmbr0 has an IP address, what is it needed for? and what is it used for?
The code below is taken from the documentation for the default mode:
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.10.2/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
So is the 192.168.10.2 address above is assigned to the first-tap device on the switch if not to what entity it is being assigned?
Assume I have two NICs en0 and en1 with
en0 having the 192.168.10.0 network
en1 having the 193.168.10.0 network
How will the config above changes?
Assume I want to add a 2nd tap-device to the first configuration, Do i need to add an IP address to it? how will the configuration look?
Having the tap device (layer-2 device) with the IP address is throwing me off track, so any feedback is much appreciated.
Thx.
Last edited: