VLAN Tag management - Proxmox 3.0

ritter.rs

New Member
Dec 8, 2013
1
0
1
Hi,

Probably, there is solution, but I didn't find it, so, I would appreciate any help.

Situation I have:
- two eth. adapters (eth0 & eth1)
- one bond0 interface (eth0, eth1)
- one vmbr0 (static IP address, for server management, example 403 VLAN)

Goal(s):
- VMs within different VLANs (success when put switch ports in trunk)
- VLAN TAG for management VLAN (here is my problem)

Question(s):
How to make a vlan for management interface?

I have read this: http://pve.proxmox.com/wiki/Network_Model#Create_VLAN

I can create VLAN only in /etc/network/interface, after that there is vlan visible in Network config. graphic, but not active.

Here is my net. config.

# network interface settings
auto lo
iface lo inet loopback

iface eth0 inet manual

iface eth1 inet manual

auto bond0
iface bond0 inet manual
slaves eth0 eth1
bond_miimon 100
bond_mode 802.3ad

auto vlan403
iface vlan403 inet manual
vlan_raw_device bond0

auto vmbr0
iface vmbr0 inet static
address 192.168.3.10
netmask 255.255.255.0
gateway 192.168.3.1
bridge_ports bond0
bridge_stp off
bridge_fd 0

Any help?
(Thank you)