From d7a1ab25503ed0f372aea4f70c024ce4fb5f967b Mon Sep 17 00:00:00 2001 From: pydo Date: Mon, 16 Oct 2017 07:41:31 -0400 Subject: [PATCH] nmcli: add page (#1547) --- pages/linux/nmcli.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/linux/nmcli.md diff --git a/pages/linux/nmcli.md b/pages/linux/nmcli.md new file mode 100644 index 0000000000..db771c2fce --- /dev/null +++ b/pages/linux/nmcli.md @@ -0,0 +1,19 @@ +# nmcli + +> A command line tool for controlling NetworkManager. + +- List all NetworkManager connections (shows name, uuid, type and device): + +`nmcli connection` + +- Activate a connection by specifying an uuid: + +`nmcli connection up uuid {{uuid}}` + +- Deactivate a connection: + +`nmcli connection down uuid {{uuid}}` + +- Print statuses of network interfaces: + +`nmcli device status`