Configurando o networking em ponte com o KVM

0

Estou tentando instalar o KVM. Eu fiz a instalação e agora estou seguindo a segunda parte do guia para fazer com que a rede em ponte funcione . No entanto, estou preso na parte em que preciso modificar o arquivo /etc/network/interfaces .

(Nota: não tenho o X instalado).

Estou no servidor Ubuntu 15.04:

$ uname -a
Linux boson 3.19.0-21-generic #21-Ubuntu SMP Sun Jun 14 18:31:11 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

:

$ ifconfig
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:72 errors:0 dropped:0 overruns:0 frame:0
          TX packets:72 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:11098 (11.0 KB)  TX bytes:11098 (11.0 KB)

p17p1     Link encap:Ethernet  HWaddr bc:5f:f4:ea:0e:28
          inet addr:10.0.1.220  Bcast:10.0.1.255  Mask:255.255.255.0
          inet6 addr: fe80::be5f:f4ff:feea:e28/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:173566 errors:0 dropped:0 overruns:0 frame:0
          TX packets:219213 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:18152992 (18.1 MB)  TX bytes:208778324 (208.7 MB)
          Interrupt:16

virbr0    Link encap:Ethernet  HWaddr 52:54:00:82:25:dd
          inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

O arquivo atualmente é assim:

$ cat /etc/network/interfaces
# 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 p17p1
iface p17p1 inet dhcp

#auto virbr0
#iface virbr0 inet dhcp
#        bridge_ports p17p1
#        bridge_stp off
#        bridge_fd 0
#        bridge_maxwait 0

Se eu descomentar as últimas linhas e fizer systemctl restart networking , a conexão de rede em p17p1 será perdida. ifconfig mostra que p17p1 e virbr0 têm o mesmo endereço IP.

Devo usar as configurações estáticas?

    
por Mausy5043 28.06.2015 / 11:51

1 resposta

1

Você não precisa usar configurações estáticas.
Além disso, vejo que você já encontrou esta resposta

Para uma solução de endereço IP dinâmico, você deve configurar uma ponte real e usá-la. Seu arquivo de interfaces deve se tornar:

# 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 br0
iface br0 inet dhcp
   bridge_ports p17p1
   bridge_fd 9
   bridge_hello 2
   bridge_maxage 12
   bridge_stp off

Observação: recebi algumas das configurações do guia do servidor Ubuntu

    
por Doug Smythies 28.06.2015 / 17:11