Adicione uma segunda ponte a uma máquina virtual [fechada]

3

Temos um host ubuntu-12.04 executando outra máquina virtual ubuntu-12.04 com virtualização kvm e interface de rede em ponte no eth4. Essa rede permite o acesso da máquina virtual ao mundo externo. Eu quero adicionar outra ponte (br0) para a máquina virtual para que ele possa acessar a rede local. Mas toda vez que eu tento isso, a primeira ponte "colapsa" de alguma forma, como em não consigo acessar a máquina virtual via ssh ou mesmo pingar.

O seguinte é o arquivo /etc/network/interfaces no host que estou tentando trabalhar

# 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

auto eth4
iface eth4 inet manual

auto br4
iface br4 inet static
     address 10.52.4.247
     netmask 255.255.255.0
     gateway 10.52.4.1
     dns-nameservers 10.27.3.2 10.25.3.2
     broadcast 10.52.4.255
     bridge_ports eth4
     bridge_stp off
     bridge_maxwait 5
     metric 0

# Local network
auto eth0
iface eth0 inet manual

auto br0
iface br0 inet static
    address 192.168.0.21
    netmask 255.255.255.0
    broadcast 192.168.0.255
    bridge_ports eth0
    bridge_stp off
    bridge_maxwait 5
    metric 0

O que estou perdendo aqui? Qualquer ajuda muito apreciada!

    
por krishna 24.04.2015 / 17:20

0 respostas