Hi all. Currently I have Proxmox VE 6.0-4 running with two physical network interfaces. The first is a 1 Gigabit management interface on 10.0.10.x network. The other is a 10 Gigabit VLAN trunk for the various VMs.
What I need to achieve is add a CIFS storage pool however the CIFS/SMB server sits over on the 10.0.17.0 network and I need to be able access it via the 10 Gigabit interface (not via the 1 Gigabit management port which it's trying to do).
What's the best way to make this happen? I've tried a few things, but none seem to work, so I'm just taking stabs in the dark. The following is the contents of /etc/network/interfaces
	
	
	
		
				
			What I need to achieve is add a CIFS storage pool however the CIFS/SMB server sits over on the 10.0.17.0 network and I need to be able access it via the 10 Gigabit interface (not via the 1 Gigabit management port which it's trying to do).
What's the best way to make this happen? I've tried a few things, but none seem to work, so I'm just taking stabs in the dark. The following is the contents of /etc/network/interfaces
		Code:
	
	auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto ens1f0
iface ens1f0 inet manual
iface ens1f1 inet manual
iface enp0s29f0u2c2 inet manual
auto vmbr0
iface vmbr0 inet static
        address  10.0.10.15
        netmask  24
        gateway  10.0.10.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0
#Proxmox Management Network
auto vmbr1
iface vmbr1 inet manual
        bridge-ports ens1f0
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094
#10Gbit VM Trunk 
	 
	 
 
		