1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
=======
iwctl
=======
---------------------------------
Internet wireless control utility
---------------------------------
:Author: Marcel Holtmann <marcel@holtmann.org>
:Copyright: 2013-2019 Intel Corporation
:Version: iwctl
:Date: 22 September 2019
:Manual section: 1
:Manual group: Linux Connectivity
SYNOPSIS
========
**iwctl** [*options* ...] [*commands* ...]
DESCRIPTION
===========
Tool for configuring **iwd** daemon via D-Bus interface. It supports both an
interactive mode and command line mode.
OPTIONS
=======
--username, -u Provide username.
--password, -p Provide password.
--passphrase, -P Provide passphrase.
--dont-ask, -v Don't ask for missing credentials.
--help, -h Show help message and exit.
EXAMPLES
========
Interactive mode
----------------
To start an interactive mode and list all available commands do:
.. code-block::
$ iwctl
[iwd]# help
To connect to a network:
.. code-block::
[iwd]# device list
[iwd]# station DEVICE scan
[iwd]# station DEVICE get-networks
[iwd]# station DEVICE connect SSID
Command line mode
-----------------
To list all available commands in command line mode and exit do:
.. code-block::
$ iwctl --help
To connect to a network:
.. code-block::
$ iwctl device list
$ iwctl station DEVICE scan
$ iwctl station DEVICE get-networks
$ iwctl --passphrase=PASSPHRASE station DEVICE connect SSID
SEE ALSO
========
iwd(8)
|