K
kameleon
Guest
Ok, I have 2 servers with only 2 NIC's in them and 1 other one with 4 that I am testing proxmox 2.0 RC1 on. I want to use half of the ports on each strictly for SAN access. So for the two machines that means 1 port and the other machine means 2 ports. On each I want to be able to have full multipath setup. However I am just a little confused how I will accomplish this. Here is what I am wanting:
eth1 in each of the servers to have 4 virtual interfaces (eth1.1, eth1.2, eth1.3, eth1.4 I suppose)
Each of the virtual interfaces to have static IP's and a set MTU of 9000
Only proxmox will see these connections as once I figure out how, I plan to set the VM's disks on the SAN and test HA functions
My current /etc/network/interfaces is as follows:
What confuses me I guess is I already have vlans in there riding on eth0. I just have never attempted this and all my searching gets me not much help. Has anyone else tried this type of setup?
eth1 in each of the servers to have 4 virtual interfaces (eth1.1, eth1.2, eth1.3, eth1.4 I suppose)
Each of the virtual interfaces to have static IP's and a set MTU of 9000
Only proxmox will see these connections as once I figure out how, I plan to set the VM's disks on the SAN and test HA functions
My current /etc/network/interfaces is as follows:
Code:
auto lo
iface lo inet loopback
# interface GigabitEthernet1/0/4 on the IS Rack switch
auto eth0
iface eth0 inet manual
# interface GigabitEthernet1/0/6 on the core switch
#auto eth1
#iface eth1 inet manual
#auto vlan1
#iface vlan1 inet manual
#vlan-raw-device eth0
auto vlan2
iface vlan2 inet manual
vlan-raw-device eth0
auto vlan3
iface vlan3 inet manual
vlan-raw-device eth0
auto vlan4
iface vlan4 inet manual
vlan-raw-device eth0
auto vlan5
iface vlan5 inet manual
vlan-raw-device eth0
auto vlan6
iface vlan6 inet manual
vlan-raw-device eth0
auto vlan7
iface vlan7 inet manual
vlan-raw-device eth0
auto vlan8
iface vlan8 inet manual
vlan-raw-device eth0
auto vlan9
iface vlan9 inet manual
vlan-raw-device eth0
auto vlan10
iface vlan10 inet manual
vlan-raw-device eth0
auto vlan11
iface vlan11 inet manual
vlan-raw-device eth0
auto vlan12
iface vlan12 inet manual
vlan-raw-device eth0
auto vlan13
iface vlan13 inet manual
vlan-raw-device eth0
auto vlan14
iface vlan14 inet manual
vlan-raw-device eth0
auto vlan15
iface vlan15 inet manual
vlan-raw-device eth0
auto eth1.1
iface eth1.1 inet manual
vlan-raw-device eth1
auto vmbr0
iface vmbr0 inet static
address 10.8.1.151
netmask 255.255.255.0
gateway 10.8.1.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
#auto vmbr1
#iface vmbr1 inet manual
#bridge_ports vlan1
#bridge_stp off
#bridge_fd 0
auto vmbr2
iface vmbr2 inet manual
bridge_ports vlan2
bridge_stp off
bridge_fd 0
auto vmbr3
iface vmbr3 inet manual
bridge_ports vlan3
bridge_stp off
bridge_fd 0
auto vmbr4
iface vmbr4 inet manual
bridge_ports vlan4
bridge_stp off
bridge_fd 0
auto vmbr5
iface vmbr5 inet manual
bridge_ports vlan5
bridge_stp off
bridge_fd 0
auto vmbr6
iface vmbr6 inet manual
bridge_ports vlan6
bridge_stp off
bridge_fd 0
auto vmbr7
iface vmbr7 inet manual
bridge_ports vlan7
bridge_stp off
bridge_fd 0
auto vmbr8
iface vmbr8 inet manual
bridge_ports vlan8
bridge_stp off
bridge_fd 0
auto vmbr9
iface vmbr9 inet manual
bridge_ports vlan9
bridge_stp off
bridge_fd 0
auto vmbr10
iface vmbr10 inet manual
bridge_ports vlan10
bridge_stp off
bridge_fd 0
auto vmbr11
iface vmbr11 inet manual
bridge_ports vlan11
bridge_stp off
bridge_fd 0
auto vmbr12
iface vmbr12 inet manual
bridge_ports vlan12
bridge_stp off
bridge_fd 0
auto vmbr13
iface vmbr13 inet manual
bridge_ports vlan13
bridge_stp off
bridge_fd 0
auto vmbr14
iface vmbr14 inet manual
bridge_ports vlan14
bridge_stp off
bridge_fd 0
auto vmbr15
iface vmbr15 inet manual
bridge_ports vlan15
bridge_stp off
bridge_fd 0
What confuses me I guess is I already have vlans in there riding on eth0. I just have never attempted this and all my searching gets me not much help. Has anyone else tried this type of setup?