nmcli*: update pages (#10544)

pull/23/head
Lena 2023-08-02 07:26:52 +02:00 committed by GitHub
parent cc5486d66e
commit 7b54c62b5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 34 additions and 31 deletions

View File

@ -1,17 +1,17 @@
# nmcli agent
> Run nmcli as a NetworkManager secret agent or polkit agent.
> Run `nmcli` as a NetworkManager secret agent or polkit agent.
> This subcommand can also be called with `nmcli a`.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
- Register nmcli as a secret agent and listen for secret requests:
- Register `nmcli` as a secret agent and listen for secret requests:
`nmcli agent secret`
- Register nmcli as a polkit agent and listen for authorization requests:
- Register `nmcli` as a polkit agent and listen for authorization requests:
`nmcli agent polkit`
- Register nmcli as a secret agent and a polkit agent:
- Register `nmcli` as a secret agent and a polkit agent:
`nmcli agent all`

View File

@ -1,6 +1,6 @@
# nmcli connection
> Connection management with NetworkManager.
> Manage connections with NetworkManager.
> This subcommand can also be called with `nmcli c`.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
@ -8,7 +8,7 @@
`nmcli connection`
- Activate a connection by specifying a UUID:
- Activate a connection:
`nmcli connection up uuid {{uuid}}`
@ -28,6 +28,6 @@
`nmcli connection add ifname {{interface_name}} type {{ethernet}} ip4 {{10.0.0.7/8}} gw4 {{10.0.0.1}} ipv4.dns {{10.0.0.1}} ipv6.method {{ignore}}`
- Create a VPN connection using OpenVPN from a OVPN file:
- Create a VPN connection using OpenVPN from an OVPN file:
`nmcli connection import type {{openvpn}} file {{path/to/vpn_config.ovpn}}`

View File

@ -1,6 +1,6 @@
# nmcli device
> Hardware device management with NetworkManager.
> Manage network interfaces and establish new Wi-Fi connections using NetworkManager.
> This subcommand can also be called with `nmcli d`.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
@ -12,10 +12,10 @@
`nmcli device wifi`
- Connect to the Wi-Fi network with a specified name and password:
- Connect to a Wi-Fi network with the specified SSID (you will be prompted for a password):
`nmcli device wifi connect {{ssid}} password {{password}}`
`nmcli --ask device wifi connect {{ssid}}`
- Print password and QR code for the current Wi-Fi network:
- Print the password and QR code for the current Wi-Fi network:
`nmcli device wifi show-password`

View File

@ -1,29 +1,29 @@
# nmcli radio
> Show radio switches status or enable and disable switches.
> Show the status of radio switches or enable/disable them using NetworkManager.
> This subcommand can also be called with `nmcli r`.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
- Show status of Wi-Fi in NetworkManager:
- Show status of Wi-Fi:
`nmcli radio wifi`
- Turn Wi-Fi on or off in NetworkManager:
- Turn Wi-Fi on or off:
`nmcli radio wifi {{on|off}}`
- Show status of WWAN in NetworkManager:
- Show status of WWAN:
`nmcli radio wwan`
- Turn WWAN on or off in NetworkManager:
- Turn WWAN on or off:
`nmcli radio wwan {{on|off}}`
- Show status of both switches in NetworkManager:
- Show status of both switches:
`nmcli radio all`
- Turn both switches on or off in NetworkManager:
- Turn both switches on or off:
`nmcli radio all {{on|off}}`

View File

@ -1,29 +1,32 @@
# nmcli
> Manage the network configuration using NetworkManager.
> Some subcommands such as `nmcli monitor` have their own usage documentation.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
- List all available wifi networks:
- View documentation for running `nmcli` as a NetworkManager secret/polkit agent:
`nmcli device wifi`
`tldr nmcli agent`
- Connect to a wifi network:
- View documentation for managing network connections:
`nmcli dev wifi connect {{SSID}}`
`tldr nmcli connection`
- Run an `nmcli` subcommand:
- View documentation for managing network interfaces and establishing new Wi-Fi connections:
`nmcli {{agent|connection|device|general|help|monitor|networking|radio}} {{command_options}}`
`tldr nmcli device`
- Display the current version of NetworkManager:
- View documentation for managing general settings of NetworkManager:
`nmcli --version`
`tldr nmcli general`
- Display help:
- View documentation for NetworkManager's activity monitor:
`nmcli --help`
`tldr nmcli monitor`
- Display help for a subcommand:
- View documentation for enabling/disabling and checking the status of networking:
`nmcli {{subcommand}} --help`
`tldr nmcli networking`
- View documentation for managing radio switches:
`tldr nmcli radio`