イーサネット カードはソフト リブート後にのみ動作します (Xubuntu 18.04 の 82579V)

イーサネット カードはソフト リブート後にのみ動作します (Xubuntu 18.04 の 82579V)

Xubuntu 18.04 を使用していますが、ネットワーク カードに問題があります。

PC を起動すると、ネットワーク カードが使用できません。 に表示されませんifconfigしかしソフトリブートするとすべて正常になります

Xubuntu 16.04では問題はありませんでした。

この奇妙な動作を修正するにはどうすればいいでしょうか?

私のlspci出力は次のとおりです:

00:19.0 Ethernet controller: Intel Corporation 82579V Gigabit Network Connection (rev 04)

ネットワークがダウンしたときlshw:

  *-network UNCLAIMED
       description: Ethernet controller
       product: 82579V Gigabit Network Connection
  *-network:0
       description: Ethernet interface
       capabilities: ethernet physical
  *-network:1 DISABLED
       description: Ethernet interface
       capabilities: ethernet physical

何かアイデアはありますか? ありがとうございます!

編集 2019-06-14 15.20:

ネットワークが機能しているときlshw:

  *-network                 
       description: Ethernet interface
       product: 82579V Gigabit Network Connection
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       logical name: eno1
       version: 04
       serial: 00:22:4d:7f:db:ca
       size: 100Mbit/s
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=3.2.6-k duplex=full firmware=0.13-5 ip=10.19.85.167 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
       resources: irq:28 memory:f7c00000-f7c1ffff memory:f7c39000-f7c39fff ioport:f080(size=32)
  *-network:0
       description: Ethernet interface
       physical id: 1
       logical name: virbr0
       serial: 52:54:00:5a:c2:c1
       capabilities: ethernet physical
       configuration: broadcast=yes driver=bridge driverversion=2.3 firmware=N/A ip=192.168.122.1 link=no multicast=yes
  *-network:1 DISABLED
       description: Ethernet interface
       physical id: 2
       logical name: virbr0-nic
       serial: 52:54:00:5a:c2:c1
       size: 10Mbit/s
       capabilities: ethernet physical
       configuration: autonegotiation=off broadcast=yes driver=tun driverversion=1.6 duplex=full link=no multicast=yes port=twisted pair speed=10Mbit/s

/etc/network/interfaces単純に言えば:

# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

そして、出力は次のようになりますcat /etc/netplan/*.yaml:

# Let NetworkManager manage all devices on this system
network:
  version: 2
  renderer: NetworkManager

答え1

Ubuntu 18.04 には、新しいネットワーク構成ツール netplan があります。Netplan では、タイミングの問題が発生することがあります。

ログインして入力してみてください

sudo netplan apply

ifconfig または IP アドレスを確認します。

ネットワークが現在設定されている場合は、このタイミングの問題があります。その場合は、おそらくこれを読む必要があります。 Netplanは起動時には適用されません

関連情報