cloud-init-nonet

1

Eu tenho o problema que alguém apontou no fórum. Mas vejo que todos têm esse problema com máquinas de VM. No meu caso é com bare metal:

Quando eu inicio a máquina, vejo o cloud-init-nonet esperando pela rede.

--------------------------------
cloud-init-nonet[164.54]: gave up waiting for a network device.
Cloud-init v. 0.7.5 running 'init' at Sat, 11 Oct 2014 22:23:38 +0000. Up 164.77     seconds.
ci-info: +++++++++++++++++++++++Net device info+++++++++++++++++++++++
ci-info: +--------+------+-----------+-----------+-------------------+
ci-info: | Device |  Up  |  Address  |    Mask   |     Hw-Address    |
ci-info: +--------+------+-----------+-----------+-------------------+
ci-info: |   lo   | True | 127.0.0.1 | 255.0.0.0 |         .         |
ci-info: |  eth1  | True |     .     |     .     | 68:XX:ca:YY:09:50 |
ci-info: |  eth0  | True |     .     |     .     | 00:XX:8c:YY:c7:00 |
ci-info: +--------+------+-----------+-----------+-------------------+
ci-info: !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Route info failed!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2014-10-12 00:25:44,469 - DataSourceMAAS.py[CRITICAL]: Giving up on md from ['http://172.16.0.40/MAAS/metadata//2012-03-01/meta-data/instance-id'] after 126 seconds
2014-10-12 00:25:44,469 - util.py[WARNING]: No instance datasource found! Likely bad things to come!
--------------------------------

É quase a mesma coisa que visto aqui:

link

Eu também tentei explicar neste bug:

link

Como eu disse no bug, parece-me que openvswitch não é iniciado em ordem. Mas eu não sei. Talvez seja apenas a minha configuração de rede que está transmitindo no openvswitch db.

Minha configuração é um pouco simples / etc / network / interfaces:

### This does nothing, but left here for future reference. It should work. It's supposed to be openvswitch support on startup
allow-ovs br-ext
iface br-ext inet manual
        ovs_type OVSBridge
        ovs_ports eth0


# The primary network interface
auto eth0
iface eth0 inet manual
        up ifconfig $IFACE 0.0.0.0 up
        up ip link set $IFACE promisc on
        down ip link set $IFACE promisc off
        down ifconfig $IFACE down

auto eth1
iface eth1 inet manual 
        up ifconfig $IFACE 0.0.0.0 up
        down ifconfig $IFACE down


#This also does nothing as br-int is not created when this script is executed
auto br-int
iface br-int inet dhcp

Alguma ajuda sobre como resolver isso? Isso realmente atrapalha minha startup tanto que estou pensando em remover o MAAS e reinstalar sem o material cloud-init.

    
por Gonzalo Aguilar Delgado 12.10.2014 / 02:02

1 resposta

0

Isso funciona para mim:

  1. faça o login com: gui por login / pass: vagrant / vagrant
  2. modificar o arquivo /etc/rc.local para incluir a linha sh /etc/init.d/networking restart antes de exit 0
  3. desativar: gui
  4. recarregamento vagrant up ou vagrant

link

    
por julthep 10.01.2016 / 17:07