eth0 r8169 はスタンバイモードで起動すると終了します。

eth0 r8169 はスタンバイモードで起動すると終了します。

スタンバイモードで起動すると、ネットワーク(eth0)は停止したままになります。 eth0カードはr8169です。

私は試した:

  • ifconfig eth0 up
    動作しません
  • ifconfig eth0 up; dhcpcd eht0
    うまくいきますが、固定IPをどのように設定しますか?プロキシはIPにバインドされています。

これは働きます:

このコマンドは、既存のネットワーク管理者を使用してネットワークを起動します。
modprobe -r r8169; modprobe r8169; service network-manager restart

しかし、これを自動化したり、最初からmodprobeを必要としないようにacpiスクリプトを変更する方法はありますか?

構成の詳細:

オペレーティングシステム:Debian-squeeze(6.0)

ethtool eth0出力:

Supported ports: [ TP MII ]
Supported link modes:   10baseT/Half 10baseT/Full 
                        100baseT/Half 100baseT/Full 
Supports auto-negotiation: Yes
Advertised link modes:  10baseT/Half 10baseT/Full 
                        100baseT/Half 100baseT/Full 
Advertised pause frame use: No
Advertised auto-negotiation: Yes
Link partner advertised link modes:  10baseT/Half 10baseT/Full 
                                     100baseT/Half 100baseT/Full 
Link partner advertised pause frame use: No
Link partner advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Full
Port: MII
PHYAD: 0
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: pumbg
Wake-on: g
Current message level: 0x00000033 (51)
Link detected: yes

文書/etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
#NetworkManager#iface eth0 inet dhcp

ベストアンサー1

デバイスを取り外して復元する必要があるモジュールは、スリープ/ウェイクアップ機能が正しく処理されないことを示します。ディストリビューションに最新のカーネルがあることを確認するか、直接コンパイルしてください。

おすすめ記事