VMware iSCSI enable Jumbo Frames & multi-path
Assuming your starting off with a brand new install you most likely have only one vSwitch configured. We’re going to create a second vSwitch to use for our iSCSI nics --------------------------------------------- esxcfg-vswitch -a vSwitch1 esxcfg-vswitch -l --------------------------------------------- The last command lists all the current switches created. You should vSwitch1 has nothing configure at this point. Before we go any further we need to set the MTU of the switch to 9000 to allow us to use jumbo frames --------------------------------------------- esxcfg-vswitch -m 9000 vSwitch1 --------------------------------------------- Next up we need to create two vmKernel ports which we’ll later bind to our two dedicated nics. This is a two part process, first you create port groups (-A) for the switch and then you add an interface to each port group with a unique ip address within you iSCSI subnet. You’ll also notice we set the MTU of each interface to 9000 (-m) -----...