Hello,In our oVirt hosts, we are using DELL equallogic SAN with each server connecting to SAN via 2 physical interfaces. Since both interfaces share the same network (Equalogic limitation) we must patch the linux kernel to to allow iSCSI multipath with multiple NICs in the same subnet with sysctl :------------------------------------------------------------ ------------------------------ -- net.ipv4.conf.p2p1.arp_ignore=1 net.ipv4.conf.p2p1.arp_ announce=2 net.ipv4.conf.p2p1.rp_filter=2 net.ipv4.conf.p2p2.arp_ignore= 1 net.ipv4.conf.p2p2.arp_ announce=2 net.ipv4.conf.p2p2.rp_filter=2 Hello Nelson,nice to see another environment based on EQL iSCSI SAN.The systctl.conf customized lines above are not what you mean with "we must patch the linux kernel", is it?What do you mean exactly?Sorry, by "patch" I meant "sysctl.conf configuration" indeed.This configuration is what we use to be able to configure 2 network interfaces in the same subnet.
I've read the link you gave and it seems to me that you are using the same physical interface for SAN and vm network.In my setup :- SAN network is using two disctinct physical interfaces (p2pX) on same subnet (therefore the need for sysctl patch)- VM network (p1pX) is using 2 other distinct physical interfaces on "trunk" mode- Administration network (emX) is using 2 distinct bonded network interfacesOur setup, using a total of 6 network interfaces is "simpler" than yours since each interface has a "disctinct" role.To make multipath work with oVirt on this setup, we had to configure SAN network on system before installing oVirt (using sysctl.conf above),- next declare 2 SAN networks on oVirt that are "dragued" to each SAN interface in host network configuration,- and finally, in datacenter listing, chosing a datacenter and selecting "iSCSI Multipathing" tab below I can add a multipath configuration concerning both SAN oVirt networks and relevant iqn storage targets.Hope it's clear, if not, please ask me.It's very strange to me also since this configuration did work great on our labs. But half of production sites have the problem decribed above : second SAN interface stops working uppon host activation because vdsm forces sysctl net.ipv4.conf.p2p2.rp_filter to 1 (strict mode).Still searching for clues as why this behaviour...