web-dev-qa-db-ja.com

Debianで10%の容量で動作するイーサネット

最近、AMD64デスクトップにDebianをインストールしました。イーサネットを介したインターネットは非常に非常に遅く、私はそれを修正することができませんでした。同じマシンのWindowsで高速になっているので、これは私のネットワークではありません。

lspci:

Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)

問題があると言われているので、8169ドライバーの代わりにr8168ドライバーをインストールしようとしましたが、実際にはインターネットの速度が低下しました。

Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
    Subsystem: Dell RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
    Flags: bus master, fast devsel, latency 0, IRQ 53
    I/O ports at 3000 [size=256]
    Memory at f0b04000 (64-bit, non-prefetchable) [size=4K]
    Memory at f0b00000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: r8169
    Kernel modules: r8169

イーサネットは箱から出してすぐに機能しましたが、非常に低速です。

別のドライバーがないのですか、それとも別の問題ですか?ありがとう

編集:

Eth0はありませんがenp1s0です:

enp1s0: negotiated 1000baseT-FD flow-control, link ok
  product info: vendor 00:07:32, model 0 rev 0
  basic mode:   autonegotiation enabled
  basic status: autonegotiation complete, link ok
  capabilities: 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD
  advertising:  1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
  link partner: 1000baseT-HD 1000baseT-FD 100baseTx-FD 100baseTx-HD 10baseT-FD 10baseT-HD flow-control
2
William

オートネゴシエーションが失敗した可能性があります。 ArchLinuxのRealtekカードでも同様の問題が発生しました。 ethtoolコマンド(apt経由でインストール)が役立つ場合があります。

Sudo ethtool -s enp1s0 speed N duplex M

ここで、Nは10、100、または1000であり、Mはハードウェアがサポートするものに応じて「half」または「full」です。 DebianのNetworkManagerGUIからこれらを設定することも可能かもしれません。

現在、全二重で1000を実行しているようです。半分試してください。

1
Alex Reinking