Interfaces de ponte e KVM

7

Eu tenho um servidor Ubuntu com e uma VM usando o KVM. O plano é que o servidor e a VM tenham um endereço IP estático. Eu tentei mudar / etc / network / interfaces combinando alguns dos exemplos disponíveis para isso

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.50
netmask 255.255.255.0
gateway 192.168.0.1

auto br0
iface br0 inet static
address 192.168.0.51
network 192.168.0.0
netmask 255.255.255.0
gateway 192.168.0.1
bridge_ports eth0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off

Se eu reiniciar a rede, o eth0 não tem endereço IP, mas o br0 tem um. Isso é parte da solução, mas não é o que eu preciso, já que não consigo mais alcançar o host. A VM já está configurada para usar br0 e essa parte é "mais ou menos funcional" ...

Qualquer ajuda é muito apreciada.

Obrigado!

    
por auhorn 04.05.2011 / 11:27

1 resposta

6

Seu ip deve estar na br0, eth0 não terá ip. Algo parecido com isto:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
    address xxx.xxx.xxx.xxx
    netmask xxx.xxx.xxx.xxx
    gateway xxx.xxx.xxx.xxx
    bridge_ports eth0
    bridge_stp off
    bridge_fd 0
    bridge_maxwait 0
    
por shiny 06.05.2011 / 15:25