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

장치를 제거하고 복원해야 하는 모듈은 잠자기/깨우기 기능을 제대로 처리하지 못한다는 것을 나타냅니다. 배포판에 최신 커널이 있는지 확인하거나 직접 컴파일하십시오.

답변2

이는 Realtek 카드의 일반적인 IRQ 문제입니다. 로그를 살펴보세요. 다음과 같은 내용이 표시됩니다.

Jul 10 08:47:34 xxx systemd-logind[861]: Operation 'sleep' finished.
Jul 10 08:47:34 xxx NetworkManager[845]: <info>  [1531205254.1392] manager: sleep: wake requested (sleeping: yes  enabled: yes)
Jul 10 08:47:34 xxx NetworkManager[845]: <info>  [1531205254.1394] device (enp24s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'managed')
Jul 10 08:47:34 xxx kernel: IPv6: ADDRCONF(NETDEV_UP): enp24s0: link is not ready
Jul 10 08:47:34 xxx gnome-shell[3792]: _st_paint_shadow_with_opacity: assertion 'shadow_pipeline != NULL' failed
Jul 10 08:47:34 xxx NetworkManager[845]: <info>  [1531205254.1965] manager: NetworkManager state is now DISCONNECTED
Jul 10 08:47:34 xxx kernel: do_IRQ: 13.36 No irq handler for vector
Jul 10 08:47:34 xxx kernel: r8169 0000:18:00.0 enp24s0: link down

관련 정보