Nmcli

ip4和ipv4地址的區別,nmcli?

  • June 5, 2019

使用 nmcli 創建新介面時,可以使用 ipv4.addresses 和 ip4 參數設置 IP 地址。

這些有區別嗎?

例子

nmcli con add ifname ens192 con-name ens192 type ethernet ipv4.addresses 192.168.0.10/24

對比

nmcli con add ifname ens192 con-name ens192 type ethernet ip4 192.168.0.10/24

nmcli手冊:

Table 25. IPv4 options
┌──────┬────────────────┬────────────────────────┐
│Alias │ Property       │ Note                   │
├──────┼────────────────┼────────────────────────┤
│ip4   │ ipv4.addresses │ The alias is           │
│      │ ipv4.method    │ equivalent to the      │
│      │                │ +ipv4.addresses syntax │
│      │                │ and also sets          │
│      │                │ ipv4.method to manual. │
│      │                │ It can be specified    │
│      │                │ multiple times.        │
├──────┼────────────────┼────────────────────────┤
│gw4   │ ipv4.gateway   │                        │
└──────┴────────────────┴────────────────────────┘

引用自:https://unix.stackexchange.com/questions/523020