修复与 nmcli 的连接,我需要编辑/删除 IP4.ADDRESS[2] 和 IP4.GATEWAY 值

修复与 nmcli 的连接,我需要编辑/删除 IP4.ADDRESS[2] 和 IP4.GATEWAY 值

我已经切换了我的主路由器,IP 地址范围从 10.xxx 到 192.xxx,并且我有一个运行 Raspbian 的 Raspberry Pi,其中旧数据与新数据混合在一起,导致一些连接问题。

经过一些研究后,我发现在这些情况下 nmcli 工具可以修复它,但有一些具体的问题我不知道如何修复。

运行时,nmcli connection show "Wired connection 1"我得到以下结果(我省略了一些行只是为了使其更短):

connection.id:                          Wired connection 1
connection.uuid:                        c47d1c75-5247-34c7-869f-1baee7a13914
connection.stable-id:                   --
connection.interface-name:              --
connection.type:                        802-3-ethernet
connection.autoconnect:                 yes
...
ipv4.method:                            manual
ipv4.dns:                               192.168.1.1
ipv4.dns-search:
ipv4.dns-options:                       (default)
ipv4.dns-priority:                      0
ipv4.addresses:                         192.168.1.205/24
ipv4.gateway:                           192.168.1.1
ipv4.routes:
ipv4.route-metric:                      -1
ipv4.ignore-auto-routes:                no
ipv4.ignore-auto-dns:                   no
ipv4.dhcp-client-id:                    --
ipv4.dhcp-timeout:                      0
ipv4.dhcp-send-hostname:                yes
ipv4.dhcp-hostname:                     --
ipv4.dhcp-fqdn:                         --
ipv4.never-default:                     no
ipv4.may-fail:                          yes
ipv4.dad-timeout:                       -1 (default)
...
GENERAL.NAME:                           Wired connection 1
GENERAL.UUID:                           c47d1c75-5247-34c7-869f-1baee7a13914
GENERAL.DEVICES:                        eth0
GENERAL.STATE:                          activated
GENERAL.DEFAULT:                        yes
GENERAL.DEFAULT6:                       no
GENERAL.VPN:                            no
GENERAL.ZONE:                           --
GENERAL.DBUS-PATH:                      /org/freedesktop/NetworkManager/ActiveConnection/1
GENERAL.CON-PATH:                       /org/freedesktop/NetworkManager/Settings/1
GENERAL.SPEC-OBJECT:                    --
GENERAL.MASTER-PATH:                    --
IP4.ADDRESS[1]:                         192.168.1.205/24
IP4.ADDRESS[2]:                         10.0.0.18/8
IP4.GATEWAY:                            10.0.0.1
IP4.DNS[1]:                             192.168.1.1
IP6.ADDRESS[1]:                         fe80::42bd:52af:ff83:fa15/64
IP6.GATEWAY:                            --

所以你可以看到:

  • ipv4.addresses 有正确的 IP
  • ipv4.gateway 有正确的网关

但然后在文件的底部我得到:

IP4.ADDRESS[2]:                         10.0.0.18/8
IP4.GATEWAY:                            10.0.0.1

那些是旧的,我无法删除它们。

如果我运行,nmcli con mod "Wired connection 1" -ipv4.addresses "10.0.0.18"我会得到一个响应:Error: failed to remove a value from ipv4.addresses: the property doesn't contain IP address '10.0.0.18'.我认为这是正确的,因为它不在 ipv4.addresses 属性下。

我该如何修改该部分?

答案1

在网上做了更多研究后,缺少的是修改连接后我必须做一个nmcli connection up.完成此操作后,IP4 设置更新为我设置的新设置。

解决方案就在这里https://unix.stackexchange.com/a/306283

相关内容