Hi
I'm new to Proxmox and I'm discovering. Until today I was on kvm-qemu / virsh on CentOS 7.
My test server is in Virtual Environment 6.2-4.
Here is how I work on my current setup:
- I've N VLAN (1, 2 and 3 for example)
- I've my physical interfaces with configuration to bonding :
Same to the second interface.
- I've a bond0 base configuration :
- I've a sub bond for each VLAN associate to each bridge:
VLAN 1 :
VLAN 2 :
VLAN 3 :
- And the bridge for each VLAN except VLAN 1 :
VLAN 2 :
VLAN 3 :
Only my bond0.1 have an IP because it's the hypervisor admin network. Others bond or bridges doesn't have IP because it's dedicated VLAN admin for several VM environment.
I tried to reproduce this on Proxmox but I can't create multiples bond0.X based on esclave bond0 or physical interfaces.
Could you help me ?
Thanks
Edit : I think I find how to .
I create a bond0 interface bond, Linux VLAN interface for each bond0.N, Linux Bridge for each bridge based on bond0.N. I try it and come back
I'm new to Proxmox and I'm discovering. Until today I was on kvm-qemu / virsh on CentOS 7.
My test server is in Virtual Environment 6.2-4.
Here is how I work on my current setup:
- I've N VLAN (1, 2 and 3 for example)
- I've my physical interfaces with configuration to bonding :
Code:
TYPE="Ethernet"
BOOTPROTO=none
DEVICE="em1"
NAME="em1"
ONBOOT="yes"
MASTER="bond0"
SLAVE=yes
Same to the second interface.
- I've a bond0 base configuration :
Code:
DEVICE="bond0"
NAME="bond0"
TYPE="Bond"
BONDING_MASTER="yes"
ONBOOT=yes
BOOTPROTO=none
BONDING_OPTS="mode=1 miimon=100"
- I've a sub bond for each VLAN associate to each bridge:
VLAN 1 :
Code:
DEVICE="bond0.1"
NAME="bond0.1"
IPADDR=10.0.0.1
GATEWAY=10.0.0.254
PREFIX=24
BOOTPROTO=none
ONBOOT=yes
VLAN=yes
VLAN 2 :
Code:
DEVICE="bond0.2"
BRIDGE="br2"
BOOTPROTO=none
ONBOOT=yes
VLAN=yes
VLAN 3 :
Code:
DEVICE="bond0.3"
BRIDGE="br3"
BOOTPROTO=none
ONBOOT=yes
VLAN=yes
- And the bridge for each VLAN except VLAN 1 :
VLAN 2 :
Code:
DEVICE="br2"
TYPE=Bridge
ONBOOT=yes
BOOTPROTO=none
VLAN 3 :
Code:
DEVICE="br3"
TYPE=Bridge
ONBOOT=yes
BOOTPROTO=none
Only my bond0.1 have an IP because it's the hypervisor admin network. Others bond or bridges doesn't have IP because it's dedicated VLAN admin for several VM environment.
I tried to reproduce this on Proxmox but I can't create multiples bond0.X based on esclave bond0 or physical interfaces.
Could you help me ?
Thanks
Edit : I think I find how to .
I create a bond0 interface bond, Linux VLAN interface for each bond0.N, Linux Bridge for each bridge based on bond0.N. I try it and come back
Last edited: