Hi,
I need to set up a VLAN on one of my Proxmox hosts. I've looked at the "Network Model" on the wiki. However, I'm still a bit confused. It says to 'Simply add the VLAN number to the ethernet device name, seperated by a period. For example "eth0.50."'
Below is my current /etc/network/interfaces config. Can someone tell me how I need to change it to make 192.168.1.0/24 my VLAN?
Thanks in advance!
I need to set up a VLAN on one of my Proxmox hosts. I've looked at the "Network Model" on the wiki. However, I'm still a bit confused. It says to 'Simply add the VLAN number to the ethernet device name, seperated by a period. For example "eth0.50."'
Below is my current /etc/network/interfaces config. Can someone tell me how I need to change it to make 192.168.1.0/24 my VLAN?
Code:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet static
address 192.168.1.2
netmask 255.255.255.0
auto vmbr0
iface vmbr0 inet static
address 192.168.0.2
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports eth0
bridge_stp off
bridge_fd 0