Hi I am new to proxmox and I am trying to configure the proxmox network.
My Proxmox has one network device called eth0
I want 2 VLAN's on eth0
VLAN 227 with a public IP 227.10.x.x
VLAN 1 (default) with private IP 10.10.x.x
And Both VLAN's should be useable with virtual machines.
e.g.
vm1 with 2 network devices
vm1/eth0 - 10.10.x.x
vm1/eth1 - 227.10.x.x
Here is my interface
Please help
My Proxmox has one network device called eth0
I want 2 VLAN's on eth0
VLAN 227 with a public IP 227.10.x.x
VLAN 1 (default) with private IP 10.10.x.x
And Both VLAN's should be useable with virtual machines.
e.g.
vm1 with 2 network devices
vm1/eth0 - 10.10.x.x
vm1/eth1 - 227.10.x.x
Here is my interface
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.10.0.144/24
bridge-ports eth0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr0.227
iface vmbr0.227 inet static
address 227.10.x.x/29
gateway 227.10.x.1
bridge-ports eth0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
Please help