配置參數(shù)的三種寫法:
nmcli con mod team0 ipv4.addresses 192.168.121.10/24 ipv4.gateway 192.168.121.1 +ipv4.dns 8.8.8.8 +ipv4.dns 114.114.114.114 ipv4.method manual
nmcli con mod team0 ipv4.addresses 192.168.121.10/24 ipv4.gateway 192.168.121.1 ipv4.dns "8.8.8.8 114.114.114.114" ipv4.method manual
nmcli con mod team0 ip4 192.168.121.10/24 gw4 192.168.121.1 ipv4.dns "8.8.8.8 114.114.114.114" ipv4.method manual
直接參數(shù)的三種寫法
nmcli connection show
nmcli con show
nmcli c show
只顯示NAME一列,-g 顯示不包含頭
nmcli -g NAME c show
nmcli -f NAME c show

image.png
顯示結(jié)果以冒號分割,去掉所有空格
nmcli -t c show

image.png