nmcli con up Wired\ connection\ 1
Error: Connection activation failed: No suitable device found for this connection
(device eno1 not available because profile is not compatible with device (permanent MAC address doesn't match)).
$ ping google.com
PING google.com (142.251.33.14) 56(84) bytes of data.
64 bytes from dfw25s44-in-f14.1e100.net (142.251.33.14): icmp_seq=1 ttl=58 time=28.9 ms
64 bytes from dfw25s44-in-f14.1e100.net (142.251.33.14): icmp_seq=2 ttl=58 time=32.9 ms
$ ping -c4 archive.canonical.com
PING archive.canonical.com (185.125.188.12) 56(84) bytes of data.
64 bytes from canonical-archive-0.canonical.com (185.125.188.12): icmp_seq=1 ttl=47 time=121 ms
64 bytes from canonical-archive-0.canonical.com (185.125.188.12): icmp_seq=2 ttl=47 time=122 ms
$ ping6 -c4 archive.canonical.com
$ ping6: connect: Network is unreachable
試してみましたsudo apt-get update
がsudo apt-get upgrade
、問題は解決しませんでした。
イーサネット コントローラ: Intel Corporation Ethernet Connection I217-LM (rev 04)
答え1
nmcli con up Wired\ connection\ 1
Error: Connection activation failed: No suitable device found for this connection
(device eno1 not available because profile is not compatible with device (permanent MAC address doesn't match)).
プロパティethernet.mac-address
が間違っているようです。
nmcli connection show "$PROFILE"
または--を使用してプロファイルの内容を確認します。nmcli -o connection show "$PROFILE"
ここで、"$PROFILE" は です'Wired connection 1'
。
次に、ethernet.mac-address
適切な値に調整します。 場合によっては、設定を解除してconnection.interface-name
代わりに設定することもできます。
nmcli connection modify "Wired connection 1" ethernet.mac-address '' connection.interface-name eno1
。
次に、 でプロファイルを再アクティブ化しますnmcli connection up Wired\ connection\ 1
。
man nm-settings
接続プロファイルのプロパティの意味については、を参照してください。