Question: How do I set up VLANs in Proxmox?
Answer: Follow these steps
How to Create VLAN
Step 1: Create Bridge with VLAN
- Go to Datacenter → Network
- Click Create → Linux Bridge
- Enter Name: vmbr0.100
- Enter Bridge ports: vmbr0.100
- Set VLAN ID: 100
Step 2: Using CLI
# Add VLAN interface
ip link add link vmbr0 name vmbr0.100 type vlan id 100
# Or use web interface (easier)
How to Assign VLAN to VM
Step 1: Edit VM Network
- Select VM → Hardware → Network
- Modify VLAN tag: 100
Step 2: Via CLI
qm set 100 --net0 virtio,bridge=vmbr0.100
Keywords
vlan how-to beginner network
Related Articles
Back to Proxmox VE