Conexão de rede não vinculando permanentemente

0

Estou usando o Ubuntu 16.04. Eu tentei de tudo para manter minha conexão ethernet funcionando, mas não estou tendo muita sorte. A única coisa que funcionou até agora é

sudo ethtool --change enp1s0 speed 100 duplex full autoneg off

No entanto, não é uma correção permanente.

    
por chris mahn 18.11.2016 / 16:44

1 resposta

0

Coloque isso em /etc/rc.local

#!/bin/sh -e 
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other 
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

ethtool --change enp1s0 speed 100 duplex full autoneg off
exit 0

Por curiosidade: você tem alguma idéia de por que você tem que forçar suas configurações de ethernet? A outra extremidade do cabo não negocia automaticamente? É uma placa de rede ruim?

    
por Solar.gy 18.11.2016 / 17:26