<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
On master cluster node :<br>
<pre># network interface settings
auto lo
iface lo inet loopback

iface eth0 inet manual

auto vmbr0
iface vmbr0 inet static
    address  192.168.100.4
    netmask  255.255.255.0
    gateway  192.168.100.1
    bridge_ports eth0
    bridge_stp off
    bridge_fd 0

auto vmbr1
iface vmbr1 inet manual
    bridge_ports eth0.200
    bridge_stp off
    bridge_fd 0</pre>
On slave cluster node :<br>
<pre># network interface settings
auto lo
iface lo inet loopback

iface eth0 inet manual

auto vmbr0
iface vmbr0 inet manual
    bridge_ports eth0.100
    bridge_stp off
    bridge_fd 0

auto vmbr1
iface vmbr1 inet static
    address  192.168.200.220
    netmask  255.255.255.0
    gateway  192.168.200.1
    bridge_ports eth0
    bridge_stp off
    bridge_fd 0
</pre>
<br>
Dietmar Maurer a écrit :
<blockquote
 cite="mid:90D306BE6EBC8D428A824FBBA7A3113D016318C61C@ronja.maurer-it.com"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">This error is certainly due to the fact that vmbr0 does not have any
defined gateway : as stated in Cluster.pm line 182, $localip is defined
like this :
    my $localip = $ifaces->{vmbr0}->{address} || $ifaces->{eth0}-
    </pre>
    <blockquote type="cite">
      <pre wrap="">{address};
      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->
So what network config do you use now? (/etc/network/interfaces)


  </pre>
</blockquote>
<br>
</body>
</html>