ethernet não detectando

0

Ethernet não é detectada no ubuntu14.04. Ele é detectado somente depois de executar "sudo ethtool -s eth0 autoneg off speed 100" e depois disso funciona sem nenhum problema. Tem que ser feito depois de cada inicialização. Como consertar isto? saída de ethtool eth0 é:

Settings for eth0:
Supported ports: 
Supported link modes:   10baseT/Half 10baseT/Full 
                        100baseT/Half 100baseT/Full 
                        1000baseT/Half 1000baseT/Full 
Supported pause frame use: No
Supports auto-negotiation: Yes
Advertised link modes:  Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Speed: 100Mb/s
Duplex: Half
Port: 
PHYAD: 0
Transceiver: ]
Auto-negotiation: off
Cannot get wake-on-lan settings: Operation not permitted
Current message level: 
Link detected: yes

saída do sudo lshw -C a rede é:

*-network               
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: 
   logical name: eth0
   version: 10
   serial: 
   size: 100Mbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: 
   configuration: autonegotiation=off broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8168g-3_0.0.1 04/23/13  latency=0 link=yes multicast=yes port= speed=100Mbit/s
    
por Saket Jhunjhunwala 31.05.2016 / 07:25

1 resposta

0

Sugiro que você adicione a linha desejada em /etc/rc.local:

gksudo gedit /etc/rc.local

Use nano ou kate ou leafpad se você não tiver o editor de texto gedit. Adicione uma única linha logo acima da saída 0:

ethtool -s eth0 autoneg off speed 100

Revise cuidadosamente, salve e feche o editor de texto. Você deveria estar tudo pronto.

    
por chili555 16.06.2016 / 02:42