mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
649 B
Plaintext
35 lines
649 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# iwctl
|
|
|
|
> Control the `iwd` network supplicant.
|
|
> See also: `nmcli`, `iw`.
|
|
> More information: <https://manned.org/iwctl>.
|
|
|
|
- Run `iwctl` in interactive mode:
|
|
|
|
`iwctl`
|
|
|
|
- Display Wi-Fi stations:
|
|
|
|
`iwctl station list`
|
|
|
|
- Look for networks with a station:
|
|
|
|
`iwctl station {{station}} scan`
|
|
|
|
- Display the networks found by a station:
|
|
|
|
`iwctl station {{station}} get-networks`
|
|
|
|
- Connect to a network with a station, if credentials are needed they will be asked:
|
|
|
|
`iwctl station {{station}} connect {{network_name}}`
|
|
|
|
- Display help:
|
|
|
|
`iwctl {{[-h|--help]}}`
|