Os comandos de rede não funcionam; O que devo fazer?

0

Comandos que experimentei no Ubuntu Server 12.04:

#sudo /etc/init.d/networking start

Rather than invoking init scripts through '/etc/init.d', use the service(8)
utility, e.g. service networking start

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start networking
networking stop/waiting


#service networking status
networking stop/waiting

#service networking start
networking stop/waiting
    
por manish 26.05.2013 / 10:52

1 resposta

0

Você pode tentar colocar a rede com um IP estático usando ifconfig quando estiver se conectando diretamente ao seu servidor. Por exemplo:

sudo ifconfig eth0 up 192.168.0.100 netmask 255.255.255.0

Depois, verifique com:

service networking status
    
por Radu Rădeanu 26.05.2013 / 12:16