Sem conexão com a internet após a reinicialização

1

Eu reiniciei meu vServer (Debian 8) e ele não voltou. Bem, eu usei o console de resgate no meu servidor e o servidor parece estar funcionando bem, exceto que a rede estava quebrada. Então eu tentei 'ifconfig' mas nada apareceu. Então eu tentei ativar minha interface com 'ip link set venet0 up' e 'ifup venet0: 0' e agora aparece na minha lista ifconfig:

root@i67svof:/# ifconfig
venet0    Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          UP BROADCAST POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1
          RX packets:65 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:5008 (4.8 KiB)  TX bytes:0 (0.0 B)

venet0:0  Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          inet addr:MYIPV4ADDR  P-t-P:addr:MYIPV4ADDR  Bcast:addr:MYIPV4ADDR  Mask:255.255.255.255
          UP BROADCAST POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1

Meu HWaddr não parece tão bem :) 'ip addr' imprime esse resultado:

root@i67svof:/# ip addr
1: lo: <LOOPBACK> mtu 65536 qdisc noop state DOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: venet0: <BROADCAST,POINTOPOINT,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN 
    link/void 
    inet MYIPV4ADDR/32 brd MYIPV4ADDR scope global venet0:0

Estas são as últimas linhas em / var / log / syslog:

root@i67svof:/var/www# tail /var/log/syslog
Feb 20 11:34:16 i67svof systemd[1]: Stopping memcached daemon...
Feb 20 11:34:16 i67svof systemd[1]: Stopping Network Name Resolution...
Feb 20 11:34:16 i67svof systemd[1]: Stopping Regular background program processing daemon...
Feb 20 11:34:16 i67svof systemd[1]: Stopping Login Prompts.
Feb 20 11:34:16 i67svof systemd[1]: Stopped target Login Prompts.
Feb 20 11:34:16 i67svof rsyslogd: [origin software="rsyslogd" swVersion="8.4.2" x-pid="22100" x-info="http://www.rsyslog.com"] exiting on signal 15.
Feb 20 12:17:12 i67svof rsyslogd: [origin software="rsyslogd" swVersion="8.4.2" x-pid="129" x-info="http://www.rsyslog.com"] start
Feb 20 12:17:32 i67svof postmulti[222]: warning: /etc/postfix/main.cf, line 18: overriding earlier entry: myorigin=/etc/mailname
Feb 20 12:17:32 i67svof postmulti[222]: fatal: could not find any active network interfaces
Feb 20 12:17:34 i67svof rsyslogd: [origin software="rsyslogd" swVersion="8.4.2" x-pid="129" x-info="http://www.rsyslog.com"] exiting on signal 15.

E finalmente minha configuração de rede em / etc / network / interfaces

# Auto generated lo interface
auto lo
iface lo inet loopback

# Auto generated venet0 interface
auto venet0
iface venet0 inet manual
        up ifconfig venet0 up
        up ifconfig venet0 127.0.0.2
        up route add default dev venet0
        down route del default dev venet0
        down ifconfig venet0 down


iface venet0 inet6 manual
        up ifconfig venet0 add MYIPV6ADDR/64
        down ifconfig venet0 del MYIPV6ADDR/64
        up route -A inet6 add default dev venet0
        down route -A inet6 del default dev venet0

auto venet0:0
iface venet0:0 inet static
        address MYIPV4ADDR
        netmask 255.255.255.255

Alguém pode me ajudar com isso? Obrigado antecipadamente!

    
por IceCoala 21.02.2016 / 09:00

1 resposta

0

Tente configurar as interfaces de rede antes de configurá-las. Por exemplo, no AlpineLinux, isso pode ser feito adicionando essas linhas a /etc/init.d/networking :

for iface in $(find_ifaces); do
    ifdown $iface > /dev/null 2>&1
done
    
por 29.04.2017 / 21:57