web-dev-qa-db-ja.com

nmcli接続の検証に失敗しました

答え このSO質問 に従って、デスクトップUbuntu 18.04 NetworkManagerを構成するために実行しようとしているコマンドのシーケンスを貼り付けます。ステップを実行すると 答え になります「エラー:接続検証に失敗しました」

nmcli connection show --active

NAME          UUID                                  TYPE  DEVICE
LINKSYS99999  ...                                   wifi  wlp4s0

nmcli接続の編集

Valid connection types: adsl, bluetooth, bond, bridge, cdma, dummy, generic, gsm, infiniband, ip-tunnel, macsec, macvlan, 802-11-olpc-mesh (olpc-mesh), ovs-bridge, ovs-interface, ovs-port, pppoe, team, tun, vlan, vpn, vxlan, wimax, 802-3-ethernet (ethernet), 802-11-wireless (wifi), bond-slave, bridge-slave, team-slave

接続タイプを入力:wifi

nmcli> remove ipv4.dns  
nmcli> set ipv4.ignore-auto-dns yes
nmcli> set ipv4.dns 8.8.8.8 8.8.4.4
nmcli> save

エラー:接続の検証に失敗しました:802-11-wireless.ssid:プロパティがありませんエラーを修正するために 'verify fix'を実行してみてください。

nmcli>修正を確認

接続の確認:802-11-wireless.ssid:プロパティがありませんエラーは自動的に修正できません。

何が起こっており、どうすれば修正できますか? this SO guide に従って、すべてのワイヤレスの詳細を投稿する必要がありますか?

1
stackinator

既存の接続スクリプトを変更するには接続IDまたは名前を指定するか、新しい接続スクリプトを作成する場合はSSID情報を追加する必要があります...

man nmcli

   edit {[id | uuid | path] ID | [type type] [con-name name] }
       Edit an existing connection or add a new one, using an interactive
       editor.

       The existing connection is identified by its name, UUID or D-Bus
       path. If ID is ambiguous, a keyword id, uuid, or path can be used.
       See connection show above for the description of the ID-specifying
       keywords. Not providing an ID means that a new connection will be
       added.

       The interactive editor will guide you through the connection
       editing and allow you to change connection parameters according to
       your needs by means of a simple menu-driven interface. The editor
       indicates what settings and properties can be modified and provides
       in-line help.

       Available options:

       type
           type of the new connection; valid types are the same as for
           connection add command.

       con-name
           name for the new connection. It can be changed later in the
           editor.

ポストノート:これがUbuntu Desktopインストールの場合、NetworkManager GUIを使用してこれらの設定をセットアップする方が簡単です。

3
heynnema