Nmcli:修订间差异

来自三线的随记
无编辑摘要
无编辑摘要
第1行: 第1行:
=== 安装 ===
===安装===
network-manager
network-manager


=== 相关命令 ===
===相关命令===
  nmcli[ OPTIONS ] OBJECT { COMMAND | help }</nowiki>
  nmcli[ OPTIONS ] OBJECT { COMMAND | help }</nowiki>
   
   
第11行: 第11行:
  nmcli device {disconnect|connect|show|status}
  nmcli device {disconnect|connect|show|status}


=== 例子1[新增连接 Add] ===
===例子1[新增连接 Add]===
==== Define a new connection named "default" which will autoconnect as Ethern connection on the eth0 device using DHCP ====
====Define a new connection named "default" which will autoconnect as Ethern connection on the eth0 device using DHCP====
  nmcli connection add con-name "default" type ethernet ifname eth0
  nmcli connection add con-name "default" type ethernet ifname eth0
==== Create a new connection named "static" and specify the IP address and gateway.Do not autoconnect ====
====Create a new connection named "static" and specify the IP address and gateway.Do not autoconnect====
  nmcli connection add con-name "static" ifname eth0 autoconnect no type ethernet ip4 172.25.x.x/24 gw4 172.25.x.254
  nmcli connection add con-name "static" ifname eth0 autoconnect no type ethernet ip4 172.25.x.x/24 gw4 172.25.x.254
==== The system will autoconnected with the DHCP connection at boot.Change to the static connection ====
====The system will autoconnected with the DHCP connection at boot.Change to the static connection====
  nmcli connection up "static"
  nmcli connection up "static"
==== Change back to the DHCP connection ====
====Change back to the DHCP connection====
  nmcli con up "default"
  nmcli con up "default"


=== 例子2[修改连接 Modify] ===
===例子2[修改连接 Modify]===


==== Turn off autoconnect ====
====Turn off autoconnect====
  nmcli connection mod "static" connection.autoconnect no
  nmcli connection mod "static" connection.autoconnect no


==== Specify a DNS server ====
====Specify a DNS server====
  nmcli connection mod "static" ipv4.dns 114.114.114.114
  nmcli connection mod "static" ipv4.dns 114.114.114.114


==== Some configuration arguments may have values added or removed.Add a +/- symbol in front of the argument.Add a secondary DNS server ====
====Some configuration arguments may have values added or removed.Add a +/- symbol in front of the argument.Add a secondary DNS server====
  nmcli con mod "static" +ipv4.dns 8.8.8.8
  nmcli con mod "static" +ipv4.dns 8.8.8.8
<br />


=== 热点 ===
nmcli device wifi hotspot ifname wlx14cf92d7f77d con-name myHotspot ssid test password 1234567890
[[category:Linux]]
[[category:Linux]]

2020年4月25日 (六) 16:23的版本

安装

network-manager

相关命令

nmcli[ OPTIONS ] OBJECT { COMMAND | help }</nowiki>

nmcli connection show

nmcli connection show  --active

nmcli device {disconnect|connect|show|status}

例子1[新增连接 Add]

Define a new connection named "default" which will autoconnect as Ethern connection on the eth0 device using DHCP

nmcli connection add con-name "default" type ethernet ifname eth0

Create a new connection named "static" and specify the IP address and gateway.Do not autoconnect

nmcli connection add con-name "static" ifname eth0 autoconnect no type ethernet ip4 172.25.x.x/24 gw4 172.25.x.254

The system will autoconnected with the DHCP connection at boot.Change to the static connection

nmcli connection up "static"

Change back to the DHCP connection

nmcli con up "default"

例子2[修改连接 Modify]

Turn off autoconnect

nmcli connection mod "static" connection.autoconnect no

Specify a DNS server

nmcli connection mod "static" ipv4.dns 114.114.114.114

Some configuration arguments may have values added or removed.Add a +/- symbol in front of the argument.Add a secondary DNS server

nmcli con mod "static" +ipv4.dns 8.8.8.8


热点

nmcli device wifi hotspot ifname wlx14cf92d7f77d con-name myHotspot ssid test password 1234567890