One NIC can I setup VMBR & use Jumbo Frames for the SAN?

herdingcats

New Member
Mar 7, 2013
1
0
1
I did a silly thing and purchased a bunch of systems after reading a few threads on here from unixsurplus. Great price -but... the 2nd NIC on all 4 servers in this Dell system ( 4 boards made by Supermicro - go figure) do not work.There is no MAC address in the bios either... So I am stuck with 1 NIC for each system within this 2 U case Is it possible to use JumboFrames and use the Bridge? My hope is that the virtual serves can talk out and serve data at 1500mtu (normal) while I can use 9000 for the storage array. Sadly I cannot find the expansion cards for these units. can someone give me the For a dummy setup ? I am not a linux admin - but learning . . .
 
this should works:

/etc/network/interfaces
Code:
auto eth0
iface eth0 inet static
        address X.X.X.X
        netmask X.X.X.X
        mtu 9000


iface vmbr0 inet manual
       bridge_ports eth0
       bridge_stp off
       bridge_fd 0
       post-up  ifconfig vmbr0 mtu 9000
 
FYI, I tried this approach and it didn't work well for me. My OpenVZ image worked OK, but a KVM vm didn't.

From reading other threads, I set it up like this, and it works:

auto lo
iface lo inet loopback


auto eth0
iface eth0 inet manual


auto vmbr0
iface vmbr0 inet static
address 192.168.240.99
netmask 255.255.252.0
gateway 192.168.243.36
bridge_ports eth0
bridge_stp off
bridge_fd 0
pre-up ifconfig eth0 mtu 9000

When I do an ifconfig, I see MTU of 9000 on both eth0 and vbmr0.
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!