HELP!!! Config de red del Proxmox

roylancorzo

New Member
Apr 10, 2023
3
0
1
Saludos Comunidad...
Tengo un proxmox con una sola targeta de red donde ese puerto en el switch esta en access q solo me pertime pasar una vlan, hasta este momento todo estaba bien.
El problema es cuando necesite tener 2 vlan para drindar servicios a otra red pero para eso tengo que cambiar de modo access a trunks y pierdo comunicacion en el proxmox. como soluciono este problema


Greetings Community...
I have a proxmox with a single network card where that port on the switch is in access that only allows me to pass a vlan, until now everything was fine.
The problem is when I need to have 2 vlans to provide services to another network but for that I have to change the access mode to trunks and I lose communication in the proxmox. how do i solve this problem
 
I would recommend using a single vlan-aware bridge. You can then edit the VMs virtio NICs and set a "VLAN Tag" there.
In case your PVE webUI/SSH should also be part of a VLAN you might want to add another interface like this:

Example if PVE webUI/SSH/gateway should be part of VLAN5:
Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

auto vmbr0.5
iface vmbr0.5 inet static
        address  10.10.10.2/24
        gateway  10.10.10.1

auto vmbr0
iface vmbr0 inet manual
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094

Also see the wiki:
https://pve.proxmox.com/wiki/Network_Configuration#sysadmin_network_vlan
 
I would recommend using a single vlan-aware bridge. You can then edit the VMs virtio NICs and set a "VLAN Tag" there.
In case your PVE webUI/SSH should also be part of a VLAN you might want to add another interface like this:

Example if PVE webUI/SSH/gateway should be part of VLAN5:
Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

auto vmbr0.5
iface vmbr0.5 inet static
        address  10.10.10.2/24
        gateway  10.10.10.1

auto vmbr0
iface vmbr0 inet manual
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094

Also see the wiki:
https://pve.proxmox.com/wiki/Network_Configuration#sysadmin_network_vlan
Gracias mens