hi all...
ok.. so i have 3 proxmox nodes..
I have one NAS for storage of VMS, templates and so on..
I have another NAS for backup...
When doing backup i don't want to use the same network as used for storage nas... I want to conserve that nic for only reading and writing to the storage nas..
So i have my Storage nas on 10.10.99.0/24
I have my backup NAS on 10.10.98.0/24
10.10.99.0 is my management network aswell..
I want eth 1 which i don't use for anything to be able to talk to 10.10.98.0 - how do i do that? im not allowed to make a GW on the eth1 interface cause im only allowed one GW on a proxmox node.. so do i do it?
here is my network interface file..
ok.. so i have 3 proxmox nodes..
I have one NAS for storage of VMS, templates and so on..
I have another NAS for backup...
When doing backup i don't want to use the same network as used for storage nas... I want to conserve that nic for only reading and writing to the storage nas..
So i have my Storage nas on 10.10.99.0/24
I have my backup NAS on 10.10.98.0/24
10.10.99.0 is my management network aswell..
I want eth 1 which i don't use for anything to be able to talk to 10.10.98.0 - how do i do that? im not allowed to make a GW on the eth1 interface cause im only allowed one GW on a proxmox node.. so do i do it?
here is my network interface file..
Code:
root@proxmox00:~# cat /etc/network/interfaces
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
auto eth1
iface eth1 inet static
address 10.10.98.20
netmask 255.255.255.0
iface eth2 inet manual
iface eth3 inet manual
auto bond0
iface bond0 inet manual
slaves eth2 eth3
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet static
address 10.10.99.20
netmask 255.255.255.0
gateway 10.10.99.1
bridge_ports bond0
bridge_stp off
bridge_fd 0
bridge_maxage 0
bridge_ageing 0
bridge_maxwait 0
pre-up ifconfig eth2 mtu 9000
pre-up ifconfig eth3 mtu 9000
auto vmbr1
iface vmbr1 inet manual
bridge_ports bond0.2
bridge_stp off
bridge_fd 0
bridge_maxage 0
bridge_ageing 0
bridge_maxwait 0
root@proxmox00:~#