From e74c568b07b50b97873fb4ee1d776dedefbd54d6 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 1 Oct 2021 23:05:04 +0200 Subject: New upstream version 1.32.12 --- docs/api/html/NetworkManager-dispatcher.html | 330 ++++++++++++++++++ docs/api/html/NetworkManager.conf.html | 236 +++++++++++-- docs/api/html/NetworkManager.devhelp2 | 40 +-- docs/api/html/NetworkManager.html | 274 +-------------- ...org.freedesktop.NetworkManager.AccessPoint.html | 32 +- ...-org.freedesktop.NetworkManager.Checkpoint.html | 32 +- ...eedesktop.NetworkManager.Connection.Active.html | 24 +- ...org.freedesktop.NetworkManager.DHCP4Config.html | 32 +- ...org.freedesktop.NetworkManager.DHCP6Config.html | 32 +- ...org.freedesktop.NetworkManager.Device.Adsl.html | 32 +- ...reedesktop.NetworkManager.Device.Bluetooth.html | 32 +- ...org.freedesktop.NetworkManager.Device.Bond.html | 32 +- ...g.freedesktop.NetworkManager.Device.Bridge.html | 32 +- ...rg.freedesktop.NetworkManager.Device.Dummy.html | 32 +- ....freedesktop.NetworkManager.Device.Generic.html | 32 +- ...freedesktop.NetworkManager.Device.IPTunnel.html | 32 +- ...eedesktop.NetworkManager.Device.Infiniband.html | 32 +- ...g.freedesktop.NetworkManager.Device.Macsec.html | 32 +- ....freedesktop.NetworkManager.Device.Macvlan.html | 32 +- ...rg.freedesktop.NetworkManager.Device.Modem.html | 32 +- ...freedesktop.NetworkManager.Device.OlpcMesh.html | 32 +- ...reedesktop.NetworkManager.Device.OvsBridge.html | 32 +- ...desktop.NetworkManager.Device.OvsInterface.html | 30 +- ....freedesktop.NetworkManager.Device.OvsPort.html | 32 +- ...-org.freedesktop.NetworkManager.Device.Ppp.html | 30 +- ...eedesktop.NetworkManager.Device.Statistics.html | 32 +- ...org.freedesktop.NetworkManager.Device.Team.html | 32 +- ...-org.freedesktop.NetworkManager.Device.Tun.html | 32 +- ...org.freedesktop.NetworkManager.Device.Veth.html | 32 +- ...org.freedesktop.NetworkManager.Device.Vlan.html | 32 +- ...rg.freedesktop.NetworkManager.Device.Vxlan.html | 32 +- ...rg.freedesktop.NetworkManager.Device.Wired.html | 32 +- ...freedesktop.NetworkManager.Device.Wireless.html | 24 +- ...s-org.freedesktop.NetworkManager.IP4Config.html | 32 +- ...s-org.freedesktop.NetworkManager.IP6Config.html | 32 +- ...desktop.NetworkManager.Settings.Connection.html | 24 +- ...us-org.freedesktop.NetworkManager.Settings.html | 24 +- ....freedesktop.NetworkManager.VPN.Connection.html | 24 +- .../html/gdbus-org.freedesktop.NetworkManager.html | 28 +- docs/api/html/index.html | 5 +- docs/api/html/ix01.html | 388 +++++++++------------ docs/api/html/manpages.html | 3 + docs/api/html/nm-cloud-setup.html | 121 +++++-- docs/api/html/nm-dbus-types.html | 30 ++ docs/api/html/nm-initrd-generator.html | 23 ++ docs/api/html/nm-openvswitch.html | 22 +- docs/api/html/nm-settings-dbus.html | 129 ++++--- docs/api/html/nm-settings-ifcfg-rh.html | 117 ++++--- docs/api/html/nm-settings-keyfile.html | 20 +- docs/api/html/nm-settings-nmcli.html | 148 +++++--- docs/api/html/nmcli-examples.html | 40 +-- docs/api/html/nmcli.html | 4 +- docs/api/html/settings-802-11-olpc-mesh.html | 2 +- .../html/settings-802-11-wireless-security.html | 2 +- docs/api/html/settings-802-3-ethernet.html | 6 + docs/api/html/settings-ipv4.html | 6 + docs/api/html/settings-ipv6.html | 6 + docs/api/html/settings-match.html | 2 +- 58 files changed, 1247 insertions(+), 1779 deletions(-) create mode 100644 docs/api/html/NetworkManager-dispatcher.html (limited to 'docs/api/html') diff --git a/docs/api/html/NetworkManager-dispatcher.html b/docs/api/html/NetworkManager-dispatcher.html new file mode 100644 index 00000000..0343fc1b --- /dev/null +++ b/docs/api/html/NetworkManager-dispatcher.html @@ -0,0 +1,330 @@ + + + + +NetworkManager-dispatcher: NetworkManager Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

NetworkManager-dispatcher

+

NetworkManager-dispatcher — Dispatch user scripts for NetworkManager

+
+
+

Synopsis

+

NetworkManager [OPTIONS...]

+
+
+

Description

+

+ NetworkManager-dispatcher service is a D-Bus activated service that + runs user provided scripts upon certain changes in NetworkManager. +

+

+ NetworkManager-dispatcher will execute scripts in the + /{etc,usr/lib}/NetworkManager/dispatcher.d + directory or subdirectories in + alphabetical order in response to network events. Each script should + be a regular executable file owned by root. Furthermore, it must not be + writable by group or other, and not setuid. +

+

+ Each script receives two arguments, the first being the interface name of the + device an operation just happened on, and second the action. For device actions, + the interface is the name of the kernel interface suitable for IP configuration. + Thus it is either VPN_IP_IFACE, DEVICE_IP_IFACE, or DEVICE_IFACE, as applicable. + For the hostname action the device name is always "none" + and for connectivity-change it is empty. +

+

The actions are:

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

pre-up

The interface is connected to the network but is not + yet fully activated. Scripts acting on this event must be placed or + symlinked into the /etc/NetworkManager/dispatcher.d/pre-up.d + directory, and NetworkManager will wait for script execution to complete before + indicating to applications that the interface is fully activated. +

up

The interface has been activated.

pre-down

The interface will be deactivated but has not yet been + disconnected from the network. Scripts acting on this event must be + placed or symlinked into the /etc/NetworkManager/dispatcher.d/pre-down.d + directory, and NetworkManager will wait for script execution to complete + before disconnecting the interface from its network. Note that this + event is not emitted for forced disconnections, like when carrier is + lost or a wireless signal fades. It is only emitted when there is + an opportunity to cleanly handle a network disconnection event. +

down

+ The interface has been deactivated. +

vpn-pre-up

The VPN is connected to the network but is not yet + fully activated. Scripts acting on this event must be placed or + symlinked into the /etc/NetworkManager/dispatcher.d/pre-up.d + directory, and NetworkManager will wait for script execution to complete before + indicating to applications that the VPN is fully activated. +

vpn-up

+ A VPN connection has been activated. +

vpn-pre-down

The VPN will be deactivated but has not yet been + disconnected from the network. Scripts acting on this event must be + placed or symlinked into the /etc/NetworkManager/dispatcher.d/pre-down.d + directory, and NetworkManager will wait for script execution to complete + before disconnecting the VPN from its network. Note that this + event is not emitted for forced disconnections, like when the VPN + terminates unexpectedly or general connectivity is lost. It is only + emitted when there is an opportunity to cleanly handle a VPN + disconnection event. +

vpn-down

+ A VPN connection has been deactivated. +

hostname

+ The system hostname has been updated. Use gethostname(2) to retrieve it. + The interface name (first argument) is empty and no environment variable is + set for this action. +

dhcp4-change

+ The DHCPv4 lease has changed (renewed, rebound, etc). +

dhcp6-change

+ The DHCPv6 lease has changed (renewed, rebound, etc). +

connectivity-change

+ The network connectivity state has changed (no connectivity, went online, etc). +

+

+ The environment contains more information about the interface and the connection. + The following variables are available for the use in the dispatcher scripts: +

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

NM_DISPATCHER_ACTION

+ The dispatcher action like "up" or "dhcp4-change", identical to the first + command line argument. Since NetworkManager 1.12.0. +

CONNECTION_UUID

+ The UUID of the connection profile. +

CONNECTION_ID

+ The name (ID) of the connection profile. +

CONNECTION_DBUS_PATH

+ The NetworkManager D-Bus path of the connection. +

CONNECTION_FILENAME

+ The backing file name of the connection profile (if any). +

CONNECTION_EXTERNAL

+ If "1", this indicates that the connection describes a + network configuration created outside of NetworkManager. +

DEVICE_IFACE

+ The interface name of the control interface of the device. + Depending on the device type, this differs from + DEVICE_IP_IFACE. For example for + ADSL devices, this could be 'atm0' or for WWAN devices + it might be 'ttyUSB0'. +

DEVICE_IP_IFACE

+ The IP interface name of the device. This is the network + interface on which IP addresses and routes will be configured. +

IP4_ADDRESS_N

+ The IPv4 address in the format "address/prefix gateway", where N is a number + from 0 to (# IPv4 addresses - 1). gateway item in this variable is deprecated, + use IP4_GATEWAY instead. +

IP4_NUM_ADDRESSES

+ The variable contains the number of IPv4 addresses the script may expect. +

IP4_GATEWAY

+ The gateway IPv4 address in traditional numbers-and-dots notation. +

IP4_ROUTE_N

+ The IPv4 route in the format "address/prefix next-hop metric", where N is a number + from 0 to (# IPv4 routes - 1). +

IP4_NUM_ROUTES

+ The variable contains the number of IPv4 routes the script may expect. +

IP4_NAMESERVERS

+ The variable contains a space-separated list of the DNS servers. +

IP4_DOMAINS

+ The variable contains a space-separated list of the search domains. +

DHCP4_<dhcp-option-name>

+ If the connection used DHCP for address configuration, the received DHCP + configuration is passed in the environment using standard DHCP + option names, prefixed with "DHCP4_", like "DHCP4_HOST_NAME=foobar". +

IP6_<name> and DHCP6_<name>

+ The same variables as for IPv4 are available for IPv6, but the prefixes are IP6_ + and DHCP6_ instead. +

CONNECTIVITY_STATE

The network connectivity state, which can + take the values defined by the NMConnectivityState type, + from the org.freedesktop.NetworkManager D-Bus API: unknown, + none, portal, limited or full. Note: this variable will only + be set for connectivity-change actions. +

+

+

+

+ In case of VPN, VPN_IP_IFACE is set, and IP4_*, IP6_* variables with VPN prefix are + exported too, like VPN_IP4_ADDRESS_0, VPN_IP4_NUM_ADDRESSES. +

+

+ Dispatcher scripts are run one at a time, but asynchronously from the main + NetworkManager process, and will be killed if they run for too long. If your script + might take arbitrarily long to complete, you should spawn a child process and have the + parent return immediately. Scripts that are symbolic links pointing inside the + /etc/NetworkManager/dispatcher.d/no-wait.d/ + directory are run immediately, without + waiting for the termination of previous scripts, and in parallel. Also beware that + once a script is queued, it will always be run, even if a later event renders it + obsolete. (Eg, if an interface goes up, and then back down again quickly, it is + possible that one or more "up" scripts will be run after the interface has gone down.) +

+
+
+

Bugs

+

+ Please report any bugs you find in NetworkManager at the + NetworkManager issue tracker. +

+
+ +
+ + + \ No newline at end of file diff --git a/docs/api/html/NetworkManager.conf.html b/docs/api/html/NetworkManager.conf.html index 3655be21..e8efb5e7 100644 --- a/docs/api/html/NetworkManager.conf.html +++ b/docs/api/html/NetworkManager.conf.html @@ -7,7 +7,7 @@ - + @@ -17,7 +17,7 @@ Home Up Prev -Next +Next
@@ -72,6 +72,12 @@ Certain settings from the configuration can be reloaded at runtime either by sending SIGHUP signal or via D-Bus' Reload call.

+

+ NetworkManager does not require any configuration in NetworkManager.conf. Depending + on your use case, you may remove all files to restore the default configuration (factory reset). But + note that your distribution or other packages may drop configuration snippets for NetworkManager, such + that they are part of the factory default. +

File Format

@@ -91,7 +97,7 @@ below.

- Minimal system settings configuration file looks like this: + A simple configuration file looks like this:

 [main]
@@ -326,7 +332,9 @@ no-auto-default=*
 

unbound: NetworkManager will talk to unbound and dnssec-triggerd, using "Conditional Forwarding" with DNSSEC support. /etc/resolv.conf - will be managed by dnssec-trigger daemon.

+ will be managed by dnssec-trigger daemon. This option is + deprecated. Note that dnssec-trigger ships a NetworkManager dispatcher + script so this DNS plugin is not necessary.

none: NetworkManager will not modify resolv.conf. This implies rc-manager unmanaged

@@ -456,6 +464,47 @@ no-auto-default=* index).

+ +

firewall-backend

+

+ The firewall backend for configuring masquerading + with shared mode. + Set to either iptables, nftables + or none. + iptables and nftables + require iptables and nft + application, respectively. + none means to skip firewall configuration if + the users wish to manage firewall themselves. + If unspecified, it will be auto detected. +

+ + +

iwd-config-path

+ +

+ If the value is "auto" (the default), IWD is queried for its + current state directory when it appears on D-Bus -- the + directory where IWD keeps its network configuration files -- + usually /var/lib/iwd. NetworkManager will then attempt to + write copies of new or modified Wi-Fi connection profiles, + converted into the IWD format, into this directory thus making + IWD connection properties editable. NM will overwrite existing + files without preserving their contents. +

+

+ The path can also be overriden by pointing to a specific + existing and writable directory. On the other hand setting + this to an empty string or any other value disables the + profile conversion mechanism. +

+

+ This mechanism allows editing connection profile settings such + as the 802.1x configuration using NetworkManager clients. + Without it such changes have no effect in IWD. +

+ +
@@ -489,21 +538,30 @@ no-auto-default=*

unmanaged-devices

-

Set devices that should be ignored by - NetworkManager. -

-

See the section called “Device List Format” for the syntax on how to - specify a device. -

+

Set devices that should be ignored by NetworkManager. +

- Example: + A device unmanaged due to this option is strictly + unmanaged and cannot be overruled by using the API like + nmcli device set $IFNAME managed yes. + Also, a device that is unmanaged for other reasons, like + an udev rule, cannot be made managed with this option (e.g. by + using an except: specifier). + These two points make it different from the device*.managed + option which for that reason may be a better choice. +

+

See the section called “Device List Format” for the syntax on how to + specify a device.

+

+ Example: +

 unmanaged-devices=interface-name:em4
 unmanaged-devices=mac:00:22:68:1c:59:b1;mac:00:1E:65:30:D1:C4;interface-name:eth2
 

-

+

@@ -772,6 +830,10 @@ ipv6.ip6-privacy=0 and 100 for other profiles.

+

ipv4.required-timeout

+ + +

ipv4.route-metric

@@ -815,6 +877,10 @@ ipv6.ip6-privacy=0

+

ipv6.required-timeout

+ + +

ipv6.route-metric

@@ -1005,19 +1071,32 @@ managed=1

carrier-wait-timeout

-

+ +

Specify the timeout for waiting for carrier in milliseconds. + The default is 5000 milliseconds. + This setting exists because certain drivers/hardware can take + a long time to detect whether the cable is plugged in. +

+

When the device loses carrier, NetworkManager does not react immediately. Instead, it waits for this timeout before considering - the link lost. Also, on startup, NetworkManager considers the + the link lost. +

+

+ Also, on startup, NetworkManager considers the device as busy for this time, as long as the device has no carrier. This delays startup-complete signal and NetworkManager-wait-online. Configuring this too high means to block NetworkManager-wait-online - longer then necessary. Configuring it too low, means that NetworkManager - will declare startup-complete, although carrier is about to come - and auto-activation to kick in. - The default is 5000 milliseconds. -

+ longer than necessary when booting with cable unplugged. Configuring + it too low, means that NetworkManager will declare startup-complete too + soon, although carrier is about to come and auto-activation to kick in. + Note that if a profile only has static IP configuration or Layer 3 configuration + disabled, then it can already autoconnect without carrier on the device. + Once such a profile reaches full activated state, startup-complete + is considered as reached even if the device has no carrier yet. +

+

ignore-carrier

@@ -1056,6 +1135,63 @@ managed=1 +

keep-configuration

+ +

+ On startup, NetworkManager tries to not interfere with + interfaces that are already configured. It does so by + generating a in-memory connection based on the interface + current configuration. +

+

+ If this generated connection matches one of the existing + persistent connections, the persistent connection gets + activated. If there is no match, the generated + connection gets activated as "external", which means + that the connection is considered as active, but + NetworkManager doesn't actually touch the interface. +

+

+ It is possible to disable this behavior by setting + keep-configuration to + no. In this way, on startup + NetworkManager always tries to activate the most + suitable persistent connection (the one with highest + autoconnect-priority or, in case of a tie, the one + activated most recently). +

+

+ Note that when NetworkManager gets restarted, it stores + the previous state in + /run/NetworkManager; in particular + it saves the UUID of the connection that was previously + active so that it can be activated again after the + restart. Therefore, + keep-configuration does not have + any effect on service restart. +

+ + + +

allowed-connections

+ +

+ A list of connections that can be activated on the + device. See the section called “Connection List Format” for the + syntax to specify a connection. If this option is not + specified, all connections can be potentially activated + on the device, provided that the connection type and + other settings match. +

+

+ A notable use case for this is to filter which + connections can be activated based on how they were + created; see the origin keyword in + the section called “Connection List Format”. +

+ + +

wifi.scan-rand-mac-address

Configures MAC address randomization of a Wi-Fi device during @@ -1092,7 +1228,7 @@ managed=1 If wifi.backend is iwd, setting this to false forces IWD's autoconnect mechanism to be disabled for this device and connections will only be initiated by NetworkManager whether - commaned by a client or automatically. Leaving it true (default) + commanded by a client or automatically. Leaving it true (default) stops NetworkManager from automatically initiating connections and allows IWD to use its network ranking and scanning logic to decide the best networks to autoconnect to next. Connections' autoconnect-priority, @@ -1573,6 +1709,66 @@ interface-name:vboxnet*,except:interface-name:vboxnet2

+
+
+

Connection List Format

+

+ Connections can be specified using the following format: +

+

+

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +

*

Matches every connection.

uuid:UUID

Match the connection by UUID, for example + "uuid:83037490-1d17-4986-a397-01f1db3a7fc2"

id=ID

Match the connection by name.

origin:ORIGIN

Match the connection by origin, stored in the + org.freedesktop.NetworkManager.origin tag of the user setting. For example, use + "except:origin:nm-initrd-generator" to forbid activation of connections created by the + initrd generator.

except:SPEC

+

Negative match of a connection. A negative match has higher priority then the positive + matches above.

+

If there is a list consisting only of negative matches, the behavior is the same as if there is also + match-all. That means, if none of all the negative matches is satisfied, the overall result is still a + positive match.

+

SPEC[,;]SPEC

+

Multiple specs can be concatenated with commas or semicolons. The order does not matter as + matches are either inclusive or negative (except:), with negative matches having higher + priority.

+

Backslash is supported to escape the separators ';' and ',', and to express special characters such as + newline ('\n'), tabulator ('\t'), whitespace ('\s') and backslash ('\\'). Whitespace is not a separator but + will be trimmed between two specs (unless escaped as '\s').

+
+

+

+

See Also

diff --git a/docs/api/html/NetworkManager.devhelp2 b/docs/api/html/NetworkManager.devhelp2 index 6c7e5d6c..fdb8d01c 100644 --- a/docs/api/html/NetworkManager.devhelp2 +++ b/docs/api/html/NetworkManager.devhelp2 @@ -4,6 +4,7 @@ + @@ -188,7 +189,6 @@ - @@ -229,7 +229,6 @@ - @@ -245,7 +244,6 @@ - @@ -285,30 +283,22 @@ - - - - - - - - @@ -321,12 +311,10 @@ - - @@ -340,33 +328,24 @@ - - - - - - - - - @@ -374,15 +353,12 @@ - - - @@ -409,7 +385,6 @@ - @@ -418,7 +393,6 @@ - @@ -436,7 +410,6 @@ - @@ -453,11 +426,9 @@ - - @@ -471,7 +442,6 @@ - @@ -482,11 +452,8 @@ - - - @@ -507,7 +474,6 @@ - @@ -848,7 +814,9 @@ - + + + diff --git a/docs/api/html/NetworkManager.html b/docs/api/html/NetworkManager.html index 9bfcd4e3..3f5dfac1 100644 --- a/docs/api/html/NetworkManager.html +++ b/docs/api/html/NetworkManager.html @@ -50,274 +50,9 @@

Dispatcher scripts

- NetworkManager will execute scripts in the - /etc/NetworkManager/dispatcher.d - directory or subdirectories in - alphabetical order in response to network events. Each script should - be a regular executable file owned by root. Furthermore, it must not be - writable by group or other, and not setuid. -

-

- Each script receives two arguments, the first being the interface name of the - device an operation just happened on, and second the action. For device actions, - the interface is the name of the kernel interface suitable for IP configuration. - Thus it is either VPN_IP_IFACE, DEVICE_IP_IFACE, or DEVICE_IFACE, as applicable. - For the hostname action the device name is always "none" - and for connectivity-change it is empty. -

-

The actions are:

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

pre-up

The interface is connected to the network but is not - yet fully activated. Scripts acting on this event must be placed or - symlinked into the /etc/NetworkManager/dispatcher.d/pre-up.d - directory, and NetworkManager will wait for script execution to complete before - indicating to applications that the interface is fully activated. -

up

The interface has been activated.

pre-down

The interface will be deactivated but has not yet been - disconnected from the network. Scripts acting on this event must be - placed or symlinked into the /etc/NetworkManager/dispatcher.d/pre-down.d - directory, and NetworkManager will wait for script execution to complete - before disconnecting the interface from its network. Note that this - event is not emitted for forced disconnections, like when carrier is - lost or a wireless signal fades. It is only emitted when there is - an opportunity to cleanly handle a network disconnection event. -

down

- The interface has been deactivated. -

vpn-pre-up

The VPN is connected to the network but is not yet - fully activated. Scripts acting on this event must be placed or - symlinked into the /etc/NetworkManager/dispatcher.d/pre-up.d - directory, and NetworkManager will wait for script execution to complete before - indicating to applications that the VPN is fully activated. -

vpn-up

- A VPN connection has been activated. -

vpn-pre-down

The VPN will be deactivated but has not yet been - disconnected from the network. Scripts acting on this event must be - placed or symlinked into the /etc/NetworkManager/dispatcher.d/pre-down.d - directory, and NetworkManager will wait for script execution to complete - before disconnecting the VPN from its network. Note that this - event is not emitted for forced disconnections, like when the VPN - terminates unexpectedly or general connectivity is lost. It is only - emitted when there is an opportunity to cleanly handle a VPN - disconnection event. -

vpn-down

- A VPN connection has been deactivated. -

hostname

- The system hostname has been updated. Use gethostname(2) to retrieve it. - The interface name (first argument) is empty and no environment variable is - set for this action. -

dhcp4-change

- The DHCPv4 lease has changed (renewed, rebound, etc). -

dhcp6-change

- The DHCPv6 lease has changed (renewed, rebound, etc). -

connectivity-change

- The network connectivity state has changed (no connectivity, went online, etc). -

-

- The environment contains more information about the interface and the connection. - The following variables are available for the use in the dispatcher scripts: -

-
---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

NM_DISPATCHER_ACTION

- The dispatcher action like "up" or "dhcp4-change", identical to the first - command line argument. Since NetworkManager 1.12.0. -

CONNECTION_UUID

- The UUID of the connection profile. -

CONNECTION_ID

- The name (ID) of the connection profile. -

CONNECTION_DBUS_PATH

- The NetworkManager D-Bus path of the connection. -

CONNECTION_FILENAME

- The backing file name of the connection profile (if any). -

CONNECTION_EXTERNAL

- If "1", this indicates that the connection describes a - network configuration created outside of NetworkManager. -

DEVICE_IFACE

- The interface name of the control interface of the device. - Depending on the device type, this differs from - DEVICE_IP_IFACE. For example for - ADSL devices, this could be 'atm0' or for WWAN devices - it might be 'ttyUSB0'. -

DEVICE_IP_IFACE

- The IP interface name of the device. This is the network - interface on which IP addresses and routes will be configured. -

IP4_ADDRESS_N

- The IPv4 address in the format "address/prefix gateway", where N is a number - from 0 to (# IPv4 addresses - 1). gateway item in this variable is deprecated, - use IP4_GATEWAY instead. -

IP4_NUM_ADDRESSES

- The variable contains the number of IPv4 addresses the script may expect. -

IP4_GATEWAY

- The gateway IPv4 address in traditional numbers-and-dots notation. -

IP4_ROUTE_N

- The IPv4 route in the format "address/prefix next-hop metric", where N is a number - from 0 to (# IPv4 routes - 1). -

IP4_NUM_ROUTES

- The variable contains the number of IPv4 routes the script may expect. -

IP4_NAMESERVERS

- The variable contains a space-separated list of the DNS servers. -

IP4_DOMAINS

- The variable contains a space-separated list of the search domains. -

DHCP4_<dhcp-option-name>

- If the connection used DHCP for address configuration, the received DHCP - configuration is passed in the environment using standard DHCP - option names, prefixed with "DHCP4_", like "DHCP4_HOST_NAME=foobar". -

IP6_<name> and DHCP6_<name>

- The same variables as for IPv4 are available for IPv6, but the prefixes are IP6_ - and DHCP6_ instead. -

CONNECTIVITY_STATE

The network connectivity state, which can - take the values defined by the NMConnectivityState type, - from the org.freedesktop.NetworkManager D-Bus API: unknown, - none, portal, limited or full. Note: this variable will only - be set for connectivity-change actions. -

-

-

-

- In case of VPN, VPN_IP_IFACE is set, and IP4_*, IP6_* variables with VPN prefix are - exported too, like VPN_IP4_ADDRESS_0, VPN_IP4_NUM_ADDRESSES. -

-

- Dispatcher scripts are run one at a time, but asynchronously from the main - NetworkManager process, and will be killed if they run for too long. If your script - might take arbitrarily long to complete, you should spawn a child process and have the - parent return immediately. Scripts that are symbolic links pointing inside the - /etc/NetworkManager/dispatcher.d/no-wait.d/ - directory are run immediately, without - waiting for the termination of previous scripts, and in parallel. Also beware that - once a script is queued, it will always be run, even if a later event renders it - obsolete. (Eg, if an interface goes up, and then back down again quickly, it is - possible that one or more "up" scripts will be run after the interface has gone down.) + NetworkManager-dispatcher service can execute scripts for the user + in response to network events. See + NetworkManager-dispatcher(8) manual.

@@ -589,8 +324,9 @@

See Also

- NetworkManager home page, + NetworkManager home page, NetworkManager.conf(5), + NetworkManager-dispatcher(8), nmcli(1), nmcli-examples(7), nm-online(1), diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.AccessPoint.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.AccessPoint.html index 4b3f1a1a..7bd6ac6c 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.AccessPoint.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.AccessPoint.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@

-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Flags       readable   u
 WpaFlags    readable   u
@@ -59,27 +52,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Flags" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Checkpoint.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Checkpoint.html index fd78205f..c8427bf1 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Checkpoint.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Checkpoint.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Devices          readable   ao
 Created          readable   x
@@ -53,27 +46,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Devices" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Connection.Active.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Connection.Active.html index ee122d87..7de2af06 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Connection.Active.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Connection.Active.html @@ -36,9 +36,8 @@

Signals

-StateChanged      (u     state,
-                   u     reason);
-PropertiesChanged (a{sv} properties);
+StateChanged (u state,
+              u reason);
 
@@ -109,25 +108,6 @@ StateChanged (u state,
-
-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-

Property Details

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP4Config.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP4Config.html index f33cfc0e..3c371944 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP4Config.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP4Config.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Options  readable   a{sv}
 
@@ -51,27 +44,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Options" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP6Config.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP6Config.html index e0b70caf..fa80f1ae 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP6Config.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.DHCP6Config.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Options  readable   a{sv}
 
@@ -51,27 +44,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Options" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Adsl.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Adsl.html index 623a76b7..d0642057 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Adsl.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Adsl.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Carrier  readable   b
 
@@ -50,27 +43,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Carrier" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bluetooth.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bluetooth.html index a138c196..e3b2bdf1 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bluetooth.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bluetooth.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress       readable   s
 Name            readable   s
@@ -52,27 +45,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bond.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bond.html index f6705733..941bedef 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bond.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bond.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 Carrier    readable   b
@@ -52,27 +45,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bridge.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bridge.html index 34785c06..c4142b6f 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bridge.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Bridge.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 Carrier    readable   b
@@ -52,27 +45,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Dummy.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Dummy.html index fa9e6dc8..db37e64c 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Dummy.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Dummy.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 
@@ -50,27 +43,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Generic.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Generic.html index 18948664..3b0460ef 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Generic.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Generic.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress        readable   s
 TypeDescription  readable   s
@@ -51,27 +44,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.IPTunnel.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.IPTunnel.html index b0da4a5b..90895a23 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.IPTunnel.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.IPTunnel.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Mode                readable   u
 Parent              readable   o
@@ -61,27 +54,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Mode" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Infiniband.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Infiniband.html index d81e12fb..8f2bcefc 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Infiniband.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Infiniband.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 Carrier    readable   b
@@ -51,27 +44,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macsec.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macsec.html index c248f9fc..434ecbee 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macsec.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macsec.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Parent         readable   o
 Sci            readable   t
@@ -62,27 +55,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Parent" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macvlan.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macvlan.html index a227ff1c..94047cd2 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macvlan.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Macvlan.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Parent     readable   o
 Mode       readable   s
@@ -53,27 +46,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Parent" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Modem.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Modem.html index ae6a3a39..5884a6a7 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Modem.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Modem.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 ModemCapabilities    readable   u
 CurrentCapabilities  readable   u
@@ -54,27 +47,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "ModemCapabilities" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OlpcMesh.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OlpcMesh.html index ec2a78c9..5d26a420 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OlpcMesh.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OlpcMesh.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress      readable   s
 Companion      readable   o
@@ -52,27 +45,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary containing the FIXME: check changed parameters.

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsBridge.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsBridge.html index 04c52154..117372d6 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsBridge.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsBridge.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Slaves  readable   ao
 
@@ -50,27 +43,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Slaves" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsInterface.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsInterface.html index 87c76b54..204bb733 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsInterface.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsInterface.html @@ -15,8 +15,7 @@ @@ -33,36 +32,9 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-

Description

-
-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsPort.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsPort.html index 4f6d8df8..bbae6f4a 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsPort.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.OvsPort.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Slaves  readable   ao
 
@@ -50,27 +43,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Slaves" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Ppp.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Ppp.html index 31e153be..e26e63ae 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Ppp.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Ppp.html @@ -15,8 +15,7 @@ @@ -33,36 +32,9 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-

Description

-
-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Statistics.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Statistics.html index ea3eca7b..a9fdb5f2 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Statistics.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Statistics.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 RefreshRateMs  readwrite  u
 TxBytes        readable   t
@@ -52,27 +45,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "RefreshRateMs" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Team.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Team.html index 208f5a5f..d9780576 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Team.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Team.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 Carrier    readable   b
@@ -53,27 +46,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Tun.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Tun.html index 314b17d1..2df79868 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Tun.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Tun.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Owner       readable   x
 Group       readable   x
@@ -56,27 +49,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Owner" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Veth.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Veth.html index 3913daee..789d46ca 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Veth.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Veth.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Peer  readable   o
 
@@ -50,27 +43,6 @@

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Peer" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vlan.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vlan.html index 8220f53d..99dfb9ee 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vlan.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vlan.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress  readable   s
 Carrier    readable   b
@@ -53,27 +46,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vxlan.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vxlan.html index 2a1067bb..428931b5 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vxlan.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Vxlan.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Parent      readable   o
 HwAddress   readable   s
@@ -66,27 +59,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Parent" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wired.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wired.html index 46f84e37..ff9a9da0 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wired.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wired.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 HwAddress        readable   s
 PermHwAddress    readable   s
@@ -54,27 +47,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "HwAddress" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wireless.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wireless.html index 98d8160b..530a13b0 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wireless.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Device.Wireless.html @@ -44,9 +44,8 @@

Signals

-PropertiesChanged  (a{sv} properties);
-AccessPointAdded   (o     access_point);
-AccessPointRemoved (o     access_point);
+AccessPointAdded   (o access_point);
+AccessPointRemoved (o access_point);
 
@@ -132,25 +131,6 @@ RequestScan (IN a{sv} options);

Signal Details

-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary containing the changed parameters.

-
-
-

The "AccessPointAdded" signal

 AccessPointAdded (o access_point);
diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP4Config.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP4Config.html
index c941c600..9b52d070 100644
--- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP4Config.html
+++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP4Config.html
@@ -16,8 +16,7 @@
 
 Top  | 
                   Description  | 
-                  Properties  | 
-                  Signals
+                  Properties
 
 Home
 Up
@@ -34,13 +33,7 @@
 
 
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Addresses       readable   aau
 AddressData     readable   aa{sv}
@@ -62,27 +55,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Addresses" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP6Config.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP6Config.html index e046dfe0..55aead66 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP6Config.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.IP6Config.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Properties  |  - Signals + Properties Home Up @@ -34,13 +33,7 @@
-

Signals

-
-PropertiesChanged (a{sv} properties);
-
-
-
-

Properties

+

Properties

 Addresses    readable   a(ayuay)
 AddressData  readable   aa{sv}
@@ -59,27 +52,6 @@
 

-

Signal Details

-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

Property Details

The "Addresses" property

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.Connection.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.Connection.html index 8149cdb2..9955af25 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.Connection.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.Connection.html @@ -53,9 +53,8 @@

Signals

-Updated           ();
-Removed           ();
-PropertiesChanged (a{sv} properties);
+Updated ();
+Removed ();
 
@@ -295,25 +294,6 @@ Removed (); longer exists. Also see the Settings.ConnectionRemoved signal.

-
-
-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values.

-

Property Details

diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html index 4fa9a5ec..555315e7 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html @@ -58,9 +58,8 @@

Signals

-PropertiesChanged (a{sv} properties);
-NewConnection     (o     connection);
-ConnectionRemoved (o     connection);
+NewConnection     (o connection);
+ConnectionRemoved (o connection);
 
@@ -325,25 +324,6 @@ SaveHostname (IN s hostname);

Signal Details

-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

The "NewConnection" signal

 NewConnection (o connection);
diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.VPN.Connection.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.VPN.Connection.html
index b8945e00..5999eb50 100644
--- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.VPN.Connection.html
+++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.VPN.Connection.html
@@ -36,9 +36,8 @@
 

Signals

-PropertiesChanged (a{sv} properties);
-VpnStateChanged   (u     state,
-                   u     reason);
+VpnStateChanged (u state,
+                 u reason);
 
@@ -56,25 +55,6 @@

Signal Details

-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

A dictionary mapping property names to variant boxed values

-
-
-

The "VpnStateChanged" signal

 VpnStateChanged (u state,
diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.html
index 8843c3ae..b0e4d095 100644
--- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.html
+++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.html
@@ -81,11 +81,10 @@
 

Signals

-CheckPermissions  ();
-StateChanged      (u     state);
-PropertiesChanged (a{sv} properties);
-DeviceAdded       (o     device_path);
-DeviceRemoved     (o     device_path);
+CheckPermissions ();
+StateChanged     (u state);
+DeviceAdded      (o device_path);
+DeviceRemoved    (o device_path);
 
@@ -699,25 +698,6 @@ StateChanged (u state);

-

The "PropertiesChanged" signal

-
-PropertiesChanged (a{sv} properties);
-
-

DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. -

-
---- - - - - -

a{sv} properties:

The changed properties.

-
-
-

The "DeviceAdded" signal

 DeviceAdded (o device_path);
diff --git a/docs/api/html/index.html b/docs/api/html/index.html
index 2bb33b3d..d9fbb4a1 100644
--- a/docs/api/html/index.html
+++ b/docs/api/html/index.html
@@ -16,7 +16,7 @@
 

- for NetworkManager 1.30.6 + for NetworkManager 1.32.12 The latest version of this documentation can be found on-line at https://developer.gnome.org/NetworkManager/stable/. @@ -76,6 +76,9 @@ NetworkManager.conf — NetworkManager configuration file

+NetworkManager-dispatcher — Dispatch user scripts for NetworkManager +
+
nmcli — command-line tool for controlling NetworkManager
diff --git a/docs/api/html/ix01.html b/docs/api/html/ix01.html index 50def762..289ae66a 100644 --- a/docs/api/html/ix01.html +++ b/docs/api/html/ix01.html @@ -28,27 +28,25 @@
org.freedesktop.NetworkManager.AccessPoint, org.freedesktop.NetworkManager.AccessPoint
-
org.freedesktop.NetworkManager.AccessPoint::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.AccessPoint:Flags, The "Flags" property
-
org.freedesktop.NetworkManager.AccessPoint:Flags, The "Flags" property +
org.freedesktop.NetworkManager.AccessPoint:Frequency, The "Frequency" property
-
org.freedesktop.NetworkManager.AccessPoint:Frequency, The "Frequency" property +
org.freedesktop.NetworkManager.AccessPoint:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.AccessPoint:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.AccessPoint:LastSeen, The "LastSeen" property
-
org.freedesktop.NetworkManager.AccessPoint:LastSeen, The "LastSeen" property +
org.freedesktop.NetworkManager.AccessPoint:MaxBitrate, The "MaxBitrate" property
-
org.freedesktop.NetworkManager.AccessPoint:MaxBitrate, The "MaxBitrate" property +
org.freedesktop.NetworkManager.AccessPoint:Mode, The "Mode" property
-
org.freedesktop.NetworkManager.AccessPoint:Mode, The "Mode" property +
org.freedesktop.NetworkManager.AccessPoint:RsnFlags, The "RsnFlags" property
-
org.freedesktop.NetworkManager.AccessPoint:RsnFlags, The "RsnFlags" property +
org.freedesktop.NetworkManager.AccessPoint:Ssid, The "Ssid" property
-
org.freedesktop.NetworkManager.AccessPoint:Ssid, The "Ssid" property +
org.freedesktop.NetworkManager.AccessPoint:Strength, The "Strength" property
-
org.freedesktop.NetworkManager.AccessPoint:Strength, The "Strength" property -
-
org.freedesktop.NetworkManager.AccessPoint:WpaFlags, The "WpaFlags" property +
org.freedesktop.NetworkManager.AccessPoint:WpaFlags, The "WpaFlags" property
org.freedesktop.NetworkManager.AgentManager, org.freedesktop.NetworkManager.AgentManager
@@ -62,39 +60,31 @@
org.freedesktop.NetworkManager.Device.Adsl, org.freedesktop.NetworkManager.Device.Adsl
-
org.freedesktop.NetworkManager.Device.Adsl::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Adsl:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Adsl:Carrier, The "Carrier" property
org.freedesktop.NetworkManager.Device.Bluetooth, org.freedesktop.NetworkManager.Device.Bluetooth
-
org.freedesktop.NetworkManager.Device.Bluetooth::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Bluetooth:BtCapabilities, The "BtCapabilities" property +
org.freedesktop.NetworkManager.Device.Bluetooth:BtCapabilities, The "BtCapabilities" property
-
org.freedesktop.NetworkManager.Device.Bluetooth:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Bluetooth:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Bluetooth:Name, The "Name" property +
org.freedesktop.NetworkManager.Device.Bluetooth:Name, The "Name" property
org.freedesktop.NetworkManager.Device.Bond, org.freedesktop.NetworkManager.Device.Bond
-
org.freedesktop.NetworkManager.Device.Bond::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Bond:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Bond:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Bond:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Bond:HwAddress, The "HwAddress" property -
-
org.freedesktop.NetworkManager.Device.Bond:Slaves, The "Slaves" property +
org.freedesktop.NetworkManager.Device.Bond:Slaves, The "Slaves" property
org.freedesktop.NetworkManager.Device.Bridge, org.freedesktop.NetworkManager.Device.Bridge
-
org.freedesktop.NetworkManager.Device.Bridge::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Bridge:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Bridge:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Bridge:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Bridge:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Bridge:Slaves, The "Slaves" property +
org.freedesktop.NetworkManager.Device.Bridge:Slaves, The "Slaves" property
org.freedesktop.NetworkManager.Device.Delete(), The Delete() method
@@ -102,55 +92,47 @@
org.freedesktop.NetworkManager.Device.Dummy, org.freedesktop.NetworkManager.Device.Dummy
-
org.freedesktop.NetworkManager.Device.Dummy::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Dummy:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Dummy:HwAddress, The "HwAddress" property
org.freedesktop.NetworkManager.Device.Generic, org.freedesktop.NetworkManager.Device.Generic
-
org.freedesktop.NetworkManager.Device.Generic::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Generic:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Generic:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Generic:TypeDescription, The "TypeDescription" property +
org.freedesktop.NetworkManager.Device.Generic:TypeDescription, The "TypeDescription" property
org.freedesktop.NetworkManager.Device.GetAppliedConnection(), The GetAppliedConnection() method
org.freedesktop.NetworkManager.Device.Infiniband, org.freedesktop.NetworkManager.Device.Infiniband
-
org.freedesktop.NetworkManager.Device.Infiniband::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Infiniband:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Infiniband:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Infiniband:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Infiniband:HwAddress, The "HwAddress" property
org.freedesktop.NetworkManager.Device.IPTunnel, org.freedesktop.NetworkManager.Device.IPTunnel
-
org.freedesktop.NetworkManager.Device.IPTunnel::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.IPTunnel:EncapsulationLimit, The "EncapsulationLimit" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:EncapsulationLimit, The "EncapsulationLimit" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Flags, The "Flags" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Flags, The "Flags" property +
org.freedesktop.NetworkManager.Device.IPTunnel:FlowLabel, The "FlowLabel" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:FlowLabel, The "FlowLabel" property +
org.freedesktop.NetworkManager.Device.IPTunnel:InputKey, The "InputKey" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:InputKey, The "InputKey" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Local, The "Local" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Local, The "Local" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Mode, The "Mode" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Mode, The "Mode" property +
org.freedesktop.NetworkManager.Device.IPTunnel:OutputKey, The "OutputKey" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:OutputKey, The "OutputKey" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Parent, The "Parent" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Parent, The "Parent" property +
org.freedesktop.NetworkManager.Device.IPTunnel:PathMtuDiscovery, The "PathMtuDiscovery" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:PathMtuDiscovery, The "PathMtuDiscovery" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Remote, The "Remote" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Remote, The "Remote" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Tos, The "Tos" property
-
org.freedesktop.NetworkManager.Device.IPTunnel:Tos, The "Tos" property -
-
org.freedesktop.NetworkManager.Device.IPTunnel:Ttl, The "Ttl" property +
org.freedesktop.NetworkManager.Device.IPTunnel:Ttl, The "Ttl" property
org.freedesktop.NetworkManager.Device.Lowpan, org.freedesktop.NetworkManager.Device.Lowpan
@@ -160,149 +142,123 @@
org.freedesktop.NetworkManager.Device.Macsec, org.freedesktop.NetworkManager.Device.Macsec
-
org.freedesktop.NetworkManager.Device.Macsec::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Macsec:CipherSuite, The "CipherSuite" property +
org.freedesktop.NetworkManager.Device.Macsec:CipherSuite, The "CipherSuite" property
-
org.freedesktop.NetworkManager.Device.Macsec:EncodingSa, The "EncodingSa" property +
org.freedesktop.NetworkManager.Device.Macsec:EncodingSa, The "EncodingSa" property
-
org.freedesktop.NetworkManager.Device.Macsec:Encrypt, The "Encrypt" property +
org.freedesktop.NetworkManager.Device.Macsec:Encrypt, The "Encrypt" property
-
org.freedesktop.NetworkManager.Device.Macsec:Es, The "Es" property +
org.freedesktop.NetworkManager.Device.Macsec:Es, The "Es" property
-
org.freedesktop.NetworkManager.Device.Macsec:IcvLength, The "IcvLength" property +
org.freedesktop.NetworkManager.Device.Macsec:IcvLength, The "IcvLength" property
-
org.freedesktop.NetworkManager.Device.Macsec:IncludeSci, The "IncludeSci" property +
org.freedesktop.NetworkManager.Device.Macsec:IncludeSci, The "IncludeSci" property
-
org.freedesktop.NetworkManager.Device.Macsec:Parent, The "Parent" property +
org.freedesktop.NetworkManager.Device.Macsec:Parent, The "Parent" property
-
org.freedesktop.NetworkManager.Device.Macsec:Protect, The "Protect" property +
org.freedesktop.NetworkManager.Device.Macsec:Protect, The "Protect" property
-
org.freedesktop.NetworkManager.Device.Macsec:ReplayProtect, The "ReplayProtect" property +
org.freedesktop.NetworkManager.Device.Macsec:ReplayProtect, The "ReplayProtect" property
-
org.freedesktop.NetworkManager.Device.Macsec:Scb, The "Scb" property +
org.freedesktop.NetworkManager.Device.Macsec:Scb, The "Scb" property
-
org.freedesktop.NetworkManager.Device.Macsec:Sci, The "Sci" property +
org.freedesktop.NetworkManager.Device.Macsec:Sci, The "Sci" property
-
org.freedesktop.NetworkManager.Device.Macsec:Validation, The "Validation" property +
org.freedesktop.NetworkManager.Device.Macsec:Validation, The "Validation" property
-
org.freedesktop.NetworkManager.Device.Macsec:Window, The "Window" property +
org.freedesktop.NetworkManager.Device.Macsec:Window, The "Window" property
org.freedesktop.NetworkManager.Device.Macvlan, org.freedesktop.NetworkManager.Device.Macvlan
-
org.freedesktop.NetworkManager.Device.Macvlan::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Macvlan:Mode, The "Mode" property
-
org.freedesktop.NetworkManager.Device.Macvlan:Mode, The "Mode" property +
org.freedesktop.NetworkManager.Device.Macvlan:NoPromisc, The "NoPromisc" property
-
org.freedesktop.NetworkManager.Device.Macvlan:NoPromisc, The "NoPromisc" property +
org.freedesktop.NetworkManager.Device.Macvlan:Parent, The "Parent" property
-
org.freedesktop.NetworkManager.Device.Macvlan:Parent, The "Parent" property -
-
org.freedesktop.NetworkManager.Device.Macvlan:Tap, The "Tap" property +
org.freedesktop.NetworkManager.Device.Macvlan:Tap, The "Tap" property
org.freedesktop.NetworkManager.Device.Modem, org.freedesktop.NetworkManager.Device.Modem
-
org.freedesktop.NetworkManager.Device.Modem::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Modem:Apn, The "Apn" property +
org.freedesktop.NetworkManager.Device.Modem:Apn, The "Apn" property
-
org.freedesktop.NetworkManager.Device.Modem:CurrentCapabilities, The "CurrentCapabilities" property +
org.freedesktop.NetworkManager.Device.Modem:CurrentCapabilities, The "CurrentCapabilities" property
-
org.freedesktop.NetworkManager.Device.Modem:DeviceId, The "DeviceId" property +
org.freedesktop.NetworkManager.Device.Modem:DeviceId, The "DeviceId" property
-
org.freedesktop.NetworkManager.Device.Modem:ModemCapabilities, The "ModemCapabilities" property +
org.freedesktop.NetworkManager.Device.Modem:ModemCapabilities, The "ModemCapabilities" property
-
org.freedesktop.NetworkManager.Device.Modem:OperatorCode, The "OperatorCode" property +
org.freedesktop.NetworkManager.Device.Modem:OperatorCode, The "OperatorCode" property
org.freedesktop.NetworkManager.Device.OlpcMesh, org.freedesktop.NetworkManager.Device.OlpcMesh
-
org.freedesktop.NetworkManager.Device.OlpcMesh::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.OlpcMesh:ActiveChannel, The "ActiveChannel" property +
org.freedesktop.NetworkManager.Device.OlpcMesh:ActiveChannel, The "ActiveChannel" property
-
org.freedesktop.NetworkManager.Device.OlpcMesh:Companion, The "Companion" property +
org.freedesktop.NetworkManager.Device.OlpcMesh:Companion, The "Companion" property
-
org.freedesktop.NetworkManager.Device.OlpcMesh:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.OlpcMesh:HwAddress, The "HwAddress" property
org.freedesktop.NetworkManager.Device.OvsBridge, org.freedesktop.NetworkManager.Device.OvsBridge
-
org.freedesktop.NetworkManager.Device.OvsBridge::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.OvsBridge:Slaves, The "Slaves" property +
org.freedesktop.NetworkManager.Device.OvsBridge:Slaves, The "Slaves" property
org.freedesktop.NetworkManager.Device.OvsInterface, org.freedesktop.NetworkManager.Device.OvsInterface
-
org.freedesktop.NetworkManager.Device.OvsInterface::PropertiesChanged, The "PropertiesChanged" signal -
org.freedesktop.NetworkManager.Device.OvsPort, org.freedesktop.NetworkManager.Device.OvsPort
-
org.freedesktop.NetworkManager.Device.OvsPort::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.OvsPort:Slaves, The "Slaves" property +
org.freedesktop.NetworkManager.Device.OvsPort:Slaves, The "Slaves" property
org.freedesktop.NetworkManager.Device.Ppp, org.freedesktop.NetworkManager.Device.Ppp
-
org.freedesktop.NetworkManager.Device.Ppp::PropertiesChanged, The "PropertiesChanged" signal -
org.freedesktop.NetworkManager.Device.Reapply(), The Reapply() method
org.freedesktop.NetworkManager.Device.Statistics, org.freedesktop.NetworkManager.Device.Statistics
-
org.freedesktop.NetworkManager.Device.Statistics::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Statistics:RefreshRateMs, The "RefreshRateMs" property
-
org.freedesktop.NetworkManager.Device.Statistics:RefreshRateMs, The "RefreshRateMs" property +
org.freedesktop.NetworkManager.Device.Statistics:RxBytes, The "RxBytes" property
-
org.freedesktop.NetworkManager.Device.Statistics:RxBytes, The "RxBytes" property -
-
org.freedesktop.NetworkManager.Device.Statistics:TxBytes, The "TxBytes" property +
org.freedesktop.NetworkManager.Device.Statistics:TxBytes, The "TxBytes" property
org.freedesktop.NetworkManager.Device.Team, org.freedesktop.NetworkManager.Device.Team
-
org.freedesktop.NetworkManager.Device.Team::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Team:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Team:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Team:Config, The "Config" property +
org.freedesktop.NetworkManager.Device.Team:Config, The "Config" property
-
org.freedesktop.NetworkManager.Device.Team:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Team:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Team:Slaves, The "Slaves" property +
org.freedesktop.NetworkManager.Device.Team:Slaves, The "Slaves" property
org.freedesktop.NetworkManager.Device.Tun, org.freedesktop.NetworkManager.Device.Tun
-
org.freedesktop.NetworkManager.Device.Tun::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Tun:Group, The "Group" property
-
org.freedesktop.NetworkManager.Device.Tun:Group, The "Group" property +
org.freedesktop.NetworkManager.Device.Tun:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Tun:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Tun:Mode, The "Mode" property
-
org.freedesktop.NetworkManager.Device.Tun:Mode, The "Mode" property +
org.freedesktop.NetworkManager.Device.Tun:MultiQueue, The "MultiQueue" property
-
org.freedesktop.NetworkManager.Device.Tun:MultiQueue, The "MultiQueue" property +
org.freedesktop.NetworkManager.Device.Tun:NoPi, The "NoPi" property
-
org.freedesktop.NetworkManager.Device.Tun:NoPi, The "NoPi" property +
org.freedesktop.NetworkManager.Device.Tun:Owner, The "Owner" property
-
org.freedesktop.NetworkManager.Device.Tun:Owner, The "Owner" property -
-
org.freedesktop.NetworkManager.Device.Tun:VnetHdr, The "VnetHdr" property +
org.freedesktop.NetworkManager.Device.Tun:VnetHdr, The "VnetHdr" property
org.freedesktop.NetworkManager.Device.Veth, org.freedesktop.NetworkManager.Device.Veth
-
org.freedesktop.NetworkManager.Device.Veth::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Veth:Peer, The "Peer" property +
org.freedesktop.NetworkManager.Device.Veth:Peer, The "Peer" property
org.freedesktop.NetworkManager.Device.Vlan, org.freedesktop.NetworkManager.Device.Vlan
-
org.freedesktop.NetworkManager.Device.Vlan::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Vlan:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Vlan:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Vlan:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Vlan:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Vlan:Parent, The "Parent" property +
org.freedesktop.NetworkManager.Device.Vlan:Parent, The "Parent" property
-
org.freedesktop.NetworkManager.Device.Vlan:VlanId, The "VlanId" property +
org.freedesktop.NetworkManager.Device.Vlan:VlanId, The "VlanId" property
org.freedesktop.NetworkManager.Device.Vrf, org.freedesktop.NetworkManager.Device.Vrf
@@ -310,41 +266,39 @@
org.freedesktop.NetworkManager.Device.Vxlan, org.freedesktop.NetworkManager.Device.Vxlan
-
org.freedesktop.NetworkManager.Device.Vxlan::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Vxlan:Ageing, The "Ageing" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Ageing, The "Ageing" property +
org.freedesktop.NetworkManager.Device.Vxlan:DstPort, The "DstPort" property
-
org.freedesktop.NetworkManager.Device.Vxlan:DstPort, The "DstPort" property +
org.freedesktop.NetworkManager.Device.Vxlan:Group, The "Group" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Group, The "Group" property +
org.freedesktop.NetworkManager.Device.Vxlan:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Vxlan:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Vxlan:Id, The "Id" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Id, The "Id" property +
org.freedesktop.NetworkManager.Device.Vxlan:L2miss, The "L2miss" property
-
org.freedesktop.NetworkManager.Device.Vxlan:L2miss, The "L2miss" property +
org.freedesktop.NetworkManager.Device.Vxlan:L3miss, The "L3miss" property
-
org.freedesktop.NetworkManager.Device.Vxlan:L3miss, The "L3miss" property +
org.freedesktop.NetworkManager.Device.Vxlan:Learning, The "Learning" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Learning, The "Learning" property +
org.freedesktop.NetworkManager.Device.Vxlan:Limit, The "Limit" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Limit, The "Limit" property +
org.freedesktop.NetworkManager.Device.Vxlan:Local, The "Local" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Local, The "Local" property +
org.freedesktop.NetworkManager.Device.Vxlan:Parent, The "Parent" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Parent, The "Parent" property +
org.freedesktop.NetworkManager.Device.Vxlan:Proxy, The "Proxy" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Proxy, The "Proxy" property +
org.freedesktop.NetworkManager.Device.Vxlan:Rsc, The "Rsc" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Rsc, The "Rsc" property +
org.freedesktop.NetworkManager.Device.Vxlan:SrcPortMax, The "SrcPortMax" property
-
org.freedesktop.NetworkManager.Device.Vxlan:SrcPortMax, The "SrcPortMax" property +
org.freedesktop.NetworkManager.Device.Vxlan:SrcPortMin, The "SrcPortMin" property
-
org.freedesktop.NetworkManager.Device.Vxlan:SrcPortMin, The "SrcPortMin" property +
org.freedesktop.NetworkManager.Device.Vxlan:Tos, The "Tos" property
-
org.freedesktop.NetworkManager.Device.Vxlan:Tos, The "Tos" property -
-
org.freedesktop.NetworkManager.Device.Vxlan:Ttl, The "Ttl" property +
org.freedesktop.NetworkManager.Device.Vxlan:Ttl, The "Ttl" property
org.freedesktop.NetworkManager.Device.WireGuard, org.freedesktop.NetworkManager.Device.WireGuard
@@ -432,57 +386,53 @@
org.freedesktop.NetworkManager.IP4Config, org.freedesktop.NetworkManager.IP4Config
-
org.freedesktop.NetworkManager.IP4Config::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.IP4Config:AddressData, The "AddressData" property +
org.freedesktop.NetworkManager.IP4Config:AddressData, The "AddressData" property
-
org.freedesktop.NetworkManager.IP4Config:Addresses, The "Addresses" property +
org.freedesktop.NetworkManager.IP4Config:Addresses, The "Addresses" property
-
org.freedesktop.NetworkManager.IP4Config:DnsOptions, The "DnsOptions" property +
org.freedesktop.NetworkManager.IP4Config:DnsOptions, The "DnsOptions" property
-
org.freedesktop.NetworkManager.IP4Config:DnsPriority, The "DnsPriority" property +
org.freedesktop.NetworkManager.IP4Config:DnsPriority, The "DnsPriority" property
-
org.freedesktop.NetworkManager.IP4Config:Domains, The "Domains" property +
org.freedesktop.NetworkManager.IP4Config:Domains, The "Domains" property
-
org.freedesktop.NetworkManager.IP4Config:Gateway, The "Gateway" property +
org.freedesktop.NetworkManager.IP4Config:Gateway, The "Gateway" property
-
org.freedesktop.NetworkManager.IP4Config:NameserverData, The "NameserverData" property +
org.freedesktop.NetworkManager.IP4Config:NameserverData, The "NameserverData" property
-
org.freedesktop.NetworkManager.IP4Config:Nameservers, The "Nameservers" property +
org.freedesktop.NetworkManager.IP4Config:Nameservers, The "Nameservers" property
-
org.freedesktop.NetworkManager.IP4Config:RouteData, The "RouteData" property +
org.freedesktop.NetworkManager.IP4Config:RouteData, The "RouteData" property
-
org.freedesktop.NetworkManager.IP4Config:Routes, The "Routes" property +
org.freedesktop.NetworkManager.IP4Config:Routes, The "Routes" property
-
org.freedesktop.NetworkManager.IP4Config:Searches, The "Searches" property +
org.freedesktop.NetworkManager.IP4Config:Searches, The "Searches" property
-
org.freedesktop.NetworkManager.IP4Config:WinsServerData, The "WinsServerData" property +
org.freedesktop.NetworkManager.IP4Config:WinsServerData, The "WinsServerData" property
-
org.freedesktop.NetworkManager.IP4Config:WinsServers, The "WinsServers" property +
org.freedesktop.NetworkManager.IP4Config:WinsServers, The "WinsServers" property
org.freedesktop.NetworkManager.IP6Config, org.freedesktop.NetworkManager.IP6Config
-
org.freedesktop.NetworkManager.IP6Config::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.IP6Config:AddressData, The "AddressData" property
-
org.freedesktop.NetworkManager.IP6Config:AddressData, The "AddressData" property +
org.freedesktop.NetworkManager.IP6Config:Addresses, The "Addresses" property
-
org.freedesktop.NetworkManager.IP6Config:Addresses, The "Addresses" property +
org.freedesktop.NetworkManager.IP6Config:DnsOptions, The "DnsOptions" property
-
org.freedesktop.NetworkManager.IP6Config:DnsOptions, The "DnsOptions" property +
org.freedesktop.NetworkManager.IP6Config:DnsPriority, The "DnsPriority" property
-
org.freedesktop.NetworkManager.IP6Config:DnsPriority, The "DnsPriority" property +
org.freedesktop.NetworkManager.IP6Config:Domains, The "Domains" property
-
org.freedesktop.NetworkManager.IP6Config:Domains, The "Domains" property +
org.freedesktop.NetworkManager.IP6Config:Gateway, The "Gateway" property
-
org.freedesktop.NetworkManager.IP6Config:Gateway, The "Gateway" property +
org.freedesktop.NetworkManager.IP6Config:Nameservers, The "Nameservers" property
-
org.freedesktop.NetworkManager.IP6Config:Nameservers, The "Nameservers" property +
org.freedesktop.NetworkManager.IP6Config:RouteData, The "RouteData" property
-
org.freedesktop.NetworkManager.IP6Config:RouteData, The "RouteData" property +
org.freedesktop.NetworkManager.IP6Config:Routes, The "Routes" property
-
org.freedesktop.NetworkManager.IP6Config:Routes, The "Routes" property -
-
org.freedesktop.NetworkManager.IP6Config:Searches, The "Searches" property +
org.freedesktop.NetworkManager.IP6Config:Searches, The "Searches" property
org.freedesktop.NetworkManager.SecretAgent, org.freedesktop.NetworkManager.SecretAgent
@@ -520,8 +470,6 @@
org.freedesktop.NetworkManager.Settings.Connection.UpdateUnsaved(), The UpdateUnsaved() method
-
org.freedesktop.NetworkManager.Settings.Connection::PropertiesChanged, The "PropertiesChanged" signal -
org.freedesktop.NetworkManager.Settings.Connection::Removed, The "Removed" signal
org.freedesktop.NetworkManager.Settings.Connection::Updated, The "Updated" signal @@ -542,11 +490,9 @@
org.freedesktop.NetworkManager.Settings.SaveHostname(), The SaveHostname() method
-
org.freedesktop.NetworkManager.Settings::ConnectionRemoved, The "ConnectionRemoved" signal +
org.freedesktop.NetworkManager.Settings::ConnectionRemoved, The "ConnectionRemoved" signal
-
org.freedesktop.NetworkManager.Settings::NewConnection, The "NewConnection" signal -
-
org.freedesktop.NetworkManager.Settings::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Settings::NewConnection, The "NewConnection" signal
org.freedesktop.NetworkManager.Settings:CanModify, The "CanModify" property
@@ -559,9 +505,9 @@

A

-
org.freedesktop.NetworkManager.Connection.Active, org.freedesktop.NetworkManager.Connection.Active +
accept-all-mac-addresses, 802-3-ethernet
-
org.freedesktop.NetworkManager.Connection.Active::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Connection.Active, org.freedesktop.NetworkManager.Connection.Active
org.freedesktop.NetworkManager.Connection.Active::StateChanged, The "StateChanged" signal
@@ -629,7 +575,7 @@
app-iscsi-priority, dcb
-
assigned-mac-address, 802-3-ethernet, 802-11-wireless +
assigned-mac-address, 802-3-ethernet, 802-11-wireless
auth-alg, 802-11-wireless-security
@@ -639,7 +585,7 @@
auto-config, gsm
-
auto-negotiate, 802-3-ethernet +
auto-negotiate, 802-3-ethernet
autoconnect, connection
@@ -691,13 +637,11 @@
org.freedesktop.NetworkManager.Checkpoint, org.freedesktop.NetworkManager.Checkpoint
-
org.freedesktop.NetworkManager.Checkpoint::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Checkpoint:Created, The "Created" property +
org.freedesktop.NetworkManager.Checkpoint:Created, The "Created" property
-
org.freedesktop.NetworkManager.Checkpoint:Devices, The "Devices" property +
org.freedesktop.NetworkManager.Checkpoint:Devices, The "Devices" property
-
org.freedesktop.NetworkManager.Checkpoint:RollbackTimeout, The "RollbackTimeout" property +
org.freedesktop.NetworkManager.Checkpoint:RollbackTimeout, The "RollbackTimeout" property
client-cert, 802-1x
@@ -705,7 +649,7 @@
client-cert-password-flags, 802-1x
-
cloned-mac-address, 802-3-ethernet, 802-11-wireless +
cloned-mac-address, 802-3-ethernet, 802-11-wireless
config, team, team-port
@@ -730,17 +674,15 @@
org.freedesktop.NetworkManager.Device.Wired, org.freedesktop.NetworkManager.Device.Wired
-
org.freedesktop.NetworkManager.Device.Wired::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.Device.Wired:Carrier, The "Carrier" property +
org.freedesktop.NetworkManager.Device.Wired:Carrier, The "Carrier" property
-
org.freedesktop.NetworkManager.Device.Wired:HwAddress, The "HwAddress" property +
org.freedesktop.NetworkManager.Device.Wired:HwAddress, The "HwAddress" property
-
org.freedesktop.NetworkManager.Device.Wired:PermHwAddress, The "PermHwAddress" property +
org.freedesktop.NetworkManager.Device.Wired:PermHwAddress, The "PermHwAddress" property
-
org.freedesktop.NetworkManager.Device.Wired:S390Subchannels, The "S390Subchannels" property +
org.freedesktop.NetworkManager.Device.Wired:S390Subchannels, The "S390Subchannels" property
-
org.freedesktop.NetworkManager.Device.Wired:Speed, The "Speed" property +
org.freedesktop.NetworkManager.Device.Wired:Speed, The "Speed" property
org.freedesktop.NetworkManager.Device.Wireless, org.freedesktop.NetworkManager.Device.Wireless
@@ -750,11 +692,9 @@
org.freedesktop.NetworkManager.Device.Wireless.RequestScan(), The RequestScan() method
-
org.freedesktop.NetworkManager.Device.Wireless::AccessPointAdded, The "AccessPointAdded" signal +
org.freedesktop.NetworkManager.Device.Wireless::AccessPointAdded, The "AccessPointAdded" signal
-
org.freedesktop.NetworkManager.Device.Wireless::AccessPointRemoved, The "AccessPointRemoved" signal -
-
org.freedesktop.NetworkManager.Device.Wireless::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager.Device.Wireless::AccessPointRemoved, The "AccessPointRemoved" signal
org.freedesktop.NetworkManager.Device.Wireless:AccessPoints, The "AccessPoints" property
@@ -810,15 +750,11 @@
org.freedesktop.NetworkManager.DHCP4Config, org.freedesktop.NetworkManager.DHCP4Config
-
org.freedesktop.NetworkManager.DHCP4Config::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.DHCP4Config:Options, The "Options" property +
org.freedesktop.NetworkManager.DHCP4Config:Options, The "Options" property
org.freedesktop.NetworkManager.DHCP6Config, org.freedesktop.NetworkManager.DHCP6Config
-
org.freedesktop.NetworkManager.DHCP6Config::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.DHCP6Config:Options, The "Options" property +
org.freedesktop.NetworkManager.DHCP6Config:Options, The "Options" property
dns, ipv4, ipv6
@@ -834,7 +770,7 @@
driver, match
-
duplex, 802-3-ethernet +
duplex, 802-3-ethernet
@@ -881,7 +817,7 @@
gateway-ping-timeout, connection
-
generate-mac-address-mask, 802-3-ethernet, 802-11-wireless +
generate-mac-address-mask, 802-3-ethernet, 802-11-wireless
group, tun, 802-11-wireless-security
@@ -982,7 +918,7 @@
mac-address, bridge, infiniband, wimax, 802-3-ethernet, 802-11-wireless, wpan
-
mac-address-blacklist, 802-3-ethernet, 802-11-wireless +
mac-address-blacklist, 802-3-ethernet, 802-11-wireless
mac-address-randomization, 802-11-wireless
@@ -1028,11 +964,9 @@
org.freedesktop.NetworkManager::CheckPermissions, The "CheckPermissions" signal
-
org.freedesktop.NetworkManager::DeviceAdded, The "DeviceAdded" signal -
-
org.freedesktop.NetworkManager::DeviceRemoved, The "DeviceRemoved" signal +
org.freedesktop.NetworkManager::DeviceAdded, The "DeviceAdded" signal
-
org.freedesktop.NetworkManager::PropertiesChanged, The "PropertiesChanged" signal +
org.freedesktop.NetworkManager::DeviceRemoved, The "DeviceRemoved" signal
org.freedesktop.NetworkManager::StateChanged, The "StateChanged" signal
@@ -1447,13 +1381,15 @@
require-mppe-128, ppp
-
route-data, ipv4, ipv6 +
required-timeout, ipv4, ipv6
-
route-metric, ipv4, ipv6 +
route-data, ipv4, ipv6
-
route-table, ipv4, ipv6 +
route-metric, ipv4, ipv6
-
routes, ipv4, ipv6 +
route-table, ipv4, ipv6 +
+
routes, ipv4, ipv6
rsc, vxlan
@@ -1484,11 +1420,11 @@

S

-
s390-nettype, 802-3-ethernet +
s390-nettype, 802-3-ethernet
-
s390-options, 802-3-ethernet +
s390-options, 802-3-ethernet
-
s390-subchannels, 802-3-ethernet +
s390-subchannels, 802-3-ethernet
secondaries, connection
@@ -1518,7 +1454,7 @@
source-port-min, vxlan
-
speed, 802-3-ethernet +
speed, 802-3-ethernet
ssid, 802-11-olpc-mesh, 802-11-wireless
@@ -1553,7 +1489,7 @@
timestamp, connection
-
token, ipv6 +
token, ipv6
tos, ip-tunnel, vxlan
@@ -1607,9 +1543,7 @@
org.freedesktop.NetworkManager.VPN.Connection, org.freedesktop.NetworkManager.VPN.Connection
-
org.freedesktop.NetworkManager.VPN.Connection::PropertiesChanged, The "PropertiesChanged" signal -
-
org.freedesktop.NetworkManager.VPN.Connection::VpnStateChanged, The "VpnStateChanged" signal +
org.freedesktop.NetworkManager.VPN.Connection::VpnStateChanged, The "VpnStateChanged" signal
org.freedesktop.NetworkManager.VPN.Connection:Banner, The "Banner" property
@@ -1658,9 +1592,9 @@
wait-device-timeout, connection
-
wake-on-lan, 802-3-ethernet +
wake-on-lan, 802-3-ethernet
-
wake-on-lan-password, 802-3-ethernet +
wake-on-lan-password, 802-3-ethernet
wake-on-wlan, 802-11-wireless
diff --git a/docs/api/html/manpages.html b/docs/api/html/manpages.html index 7507854b..d12ec76c 100644 --- a/docs/api/html/manpages.html +++ b/docs/api/html/manpages.html @@ -32,6 +32,9 @@ NetworkManager.conf — NetworkManager configuration file
+NetworkManager-dispatcher — Dispatch user scripts for NetworkManager +
+
nmcli — command-line tool for controlling NetworkManager
diff --git a/docs/api/html/nm-cloud-setup.html b/docs/api/html/nm-cloud-setup.html index fdf78578..b5d6c808 100644 --- a/docs/api/html/nm-cloud-setup.html +++ b/docs/api/html/nm-cloud-setup.html @@ -29,7 +29,7 @@
-

Overview

+

Overview

When running a virtual machine in a public cloud environment, it is desirable to automatically configure the network of that VM. In simple setups, the VM only has one network interface and the public @@ -44,7 +44,7 @@

Multiple cloud providers are supported. See the section called “Supported Cloud Providers”.

-

Use

+

Use

The goal of nm-cloud-setup is to be configuration-less and work automatically. All you need is to opt-in to the desired cloud providers (see the section called “Environment Variables”) and run /usr/libexec/nm-cloud-setup.

@@ -53,7 +53,7 @@ and a NetworkManager dispatcher script.

-

Details

+

Details

nm-cloud-setup configures the network by fetching the configuration from the well-known meta data server of the cloud provider. That means, it already @@ -74,7 +74,7 @@ With this approach, the configuration is not persisted and only preserved until the device disconnects.

-

/usr/libexec/nm-cloud-setup

+

/usr/libexec/nm-cloud-setup

The binary /usr/libexec/nm-cloud-setup does most of the work. It supports no command line arguments but can be configured via environment variables. @@ -94,7 +94,7 @@


-

nm-cloud-setup.service systemd unit

+

nm-cloud-setup.service systemd unit

Usually /usr/libexec/nm-cloud-setup is not run directly, but only by systemctl restart nm-cloud-setup.service. This ensures that the tool only runs once at any time. It also allows to integrate @@ -105,7 +105,7 @@


-

nm-cloud-setup.timer systemd timer

+

nm-cloud-setup.timer systemd timer

/usr/libexec/nm-cloud-setup is intended to run whenever an update is necessary. For example, during boot when when changing the network configuration of the virtual machine via the cloud @@ -115,7 +115,7 @@


-

/usr/lib/NetworkManager/dispatcher.d/90-nm-cloud-setup.sh

+

/usr/lib/NetworkManager/dispatcher.d/90-nm-cloud-setup.sh

There is also a NetworkManager dispatcher script that will run for example when an interface is activated by NetworkManager. Together with the nm-cloud-setup.timer systemd timer this @@ -144,12 +144,45 @@ to no.

  • NM_CLOUD_SETUP_GCP: boolean, whether Google GCP support is enabled. Defaults to no.

  • +
  • NM_CLOUD_SETUP_ALIYUN: boolean, whether Alibaba Cloud (Aliyun) support is enabled. Defaults + to no.

  • +

    Example Setup for Configuring and Predeploying nm-cloud-setup

    +

    As detailed before, nm-cloud-setup needs to be explicitly enabled. As it + runs as a systemd service and timer, that basically means to enable and configure + those. This can be done by dropping the correct files and symlinks to disk. +

    +

    + The following example enables nm-cloud-setup for Amazon EC2 cloud: +

    +
    +dnf install -y NetworkManager-cloud-setup
    +
    +mkdir -p /etc/systemd/system/nm-cloud-setup.service.d
    +cat > /etc/systemd/system/nm-cloud-setup.service.d/10-enable-ec2.conf << EOF
    +[Service]
    +Environment=NM_CLOUD_SETUP_EC2=yes
    +EOF
    +
    +# systemctl enable nm-cloud-setup.service
    +mkdir -p /etc/systemd/system/NetworkManager.service.wants/
    +ln -s /usr/lib/systemd/system/nm-cloud-setup.service /etc/systemd/system/NetworkManager.service.wants/nm-cloud-setup.service
    +
    +# systemctl enable nm-cloud-setup.timer
    +mkdir -p /etc/systemd/system/timers.target.wants/
    +ln -s /etc/systemd/system/timers.target.wants/nm-cloud-setup.timer /usr/lib/systemd/system/nm-cloud-setup.timer
    +
    +# systemctl daemon-reload
    +      
    +

    +

    +
    +

    Supported Cloud Providers

    -

    Amazon EC2 (AWS)

    +

    Amazon EC2 (AWS)

    For AWS, the tools tries to fetch configuration from http://169.254.169.254/. Currently, it only configures IPv4 and does nothing about IPv6. It will do the following.

      @@ -167,22 +200,36 @@ Also, if the device is currently not activated in NetworkManager or if the currently activated profile has a user-data org.freedesktop.nm-cloud-setup.skip=yes, it is skipped.

      -

      Then, the tool will change the runtime configuration of the device. +

      If only one interface and one address is configured, then the tool does nothing + and leaves the automatic configuration that was obtained via DHCP.

      +

      Otherwise, the tool will change the runtime configuration of the device.

      • Add static IPv4 addresses for all the configured addresses from local-ipv4s with prefix length according to subnet-ipv4-cidr-block. For example, we might have here 2 IP addresses like "172.16.5.3/24,172.16.5.4/24".

      • -
      • Choose a route table 30400 + the index of the interface and +

      • +

        Choose a route table 30400 + the index of the interface and add a default route 0.0.0.0/0. The gateway is the first IP address in the CIDR subnet block. For - example, we might get a route "0.0.0.0/0 172.16.5.1 10 table=30401".

      • + example, we might get a route "0.0.0.0/0 172.16.5.1 10 table=30400".

        +

        Also choose a route table 30200 + the interface index. This + contains a direct routes to the subnets of this interface.

        +
      • Finally, add a policy routing rule for each address. For example - "priority 30401 from 172.16.5.3/32 table 30401, priority 30401 from 172.16.5.4/32 table 30401".

      • + "priority 30200 from 172.16.5.3/32 table 30200, priority 30200 from 172.16.5.4/32 table 30200". + and + "priority 30400 from 172.16.5.3/32 table 30400, priority 30400 from 172.16.5.4/32 table 30400" + The 30200+ rules select the table to reach the subnet directly, while the 30400+ rules use the + default route. Also add a rule + "priority 30350 table main suppress_prefixlength 0". This has a priority between + the two previous rules and causes a lookup of routes in the main table while ignoring the default + route. The purpose of this is so that other specific routes in the main table are honored over + the default route in table 30400+.

      With above example, this roughly corresponds for interface eth0 to - nmcli device modify "eth0" ipv4.addresses "172.16.5.3/24,172.16.5.4/24" ipv4.routes "0.0.0.0/0 172.16.5.1 10 table=30401" ipv4.routing-rules "priority 30401 from 172.16.5.3/32 table 30401, priority 30401 from 172.16.5.4/32 table 30401". + nmcli device modify "eth0" ipv4.addresses "172.16.5.3/24,172.16.5.4/24" ipv4.routes "172.16.5.0/24 0.0.0.0 10 table=30200, 0.0.0.0/0 172.16.5.1 10 table=30400" ipv4.routing-rules "priority 30200 from 172.16.5.3/32 table 30200, priority 30200 from 172.16.5.4/32 table 30200, priority 20350 table main suppress_prefixlength 0, priority 30400 from 172.16.5.3/32 table 30400, priority 30400 from 172.16.5.4/32 table 30400". Note that this replaces the previous addresses, routes and rules with the new information. But also note that this only changes the run time configuration of the device. The connection profile on disk is not affected. @@ -192,7 +239,7 @@


    -

    Google Cloud Platform (GCP)

    +

    Google Cloud Platform (GCP)

    For GCP, the meta data is fetched from URIs starting with http://metadata.google.internal/computeMetadata/v1/ with a HTTP header "Metadata-Flavor: Google". @@ -220,7 +267,7 @@


    -

    Microsoft Azure

    +

    Microsoft Azure

    For Azure, the meta data is fetched from URIs starting with http://169.254.169.254/metadata/instance with a URL parameter "?format=text&api-version=2017-04-02" and a HTTP header "Metadata:true". @@ -238,25 +285,49 @@

  • Then, for each IP address index fetch the address at http://169.254.169.254/metadata/instance/network/interface/$IFACE_INDEX/ipv4/ipAddress/$ADDR_INDEX/privateIpAddress?format=text&api-version=2017-04-02. - Also fetch the size of the subnet (the netmask) for the interface from + Also fetch the size of the subnet and prefix for the interface from + http://169.254.169.254/metadata/instance/network/interface/$IFACE_INDEX/ipv4/subnet/0/address/?format=text&api-version=2017-04-02. + and http://169.254.169.254/metadata/instance/network/interface/$IFACE_INDEX/ipv4/subnet/0/prefix/?format=text&api-version=2017-04-02.

  • At this point, we have a list of all interfaces (by MAC address) and their configured IPv4 addresses.

    -

    For each device, we lookup the currently applied connection in NetworkManager. That implies, that the device is currently activated - in NetworkManager. If no such device was in NetworkManager, or if the profile has user-data org.freedesktop.nm-cloud-setup.skip=yes, - we skip the device. Now for each found IP address we add a static address "$ADDR/$SUBNET_PREFIX". Also we configure policy routing - by adding a static route "$ADDR/$SUBNET_PREFIX $GATEWAY 10, table=$TABLE" where $GATEWAY is the first IP address in the subnet and table - is 30400 plus the interface index. Also we add a policy routing rule "priority $TABLE from $ADDR/32 table $TABLE".

    -

    The effect is not unlike calling - nmcli device modify "$DEVICE" ipv4.addresses "$ADDR/$SUBNET [,...]" ipv4.routes "$ADDR/32 $GATEWAY 10 table=$TABLE" ipv4.routing-rules "priority $TABLE from $ADDR/32 table $TABLE" - for all relevant devices and all found addresses.

    +

    Then the tool configures the system like doing for AWS environment. That is, using source based policy routing + with the tables/rules 30200/30400.

    +
  • +
    +
    +
    +
    +

    Alibaba Cloud (Aliyun)

    +

    For Aliyun, the tools tries to fetch configuration from http://100.100.100.200/. Currently, it only + configures IPv4 and does nothing about IPv6. It will do the following.

    +
      +
    • First fetch http://100.100.100.200/2016-01-01/meta-data/ to determine whether the + expected API is present. This determines whether Aliyun environment is detected and whether to proceed + to configure the host using Aliyun meta data.

    • +
    • Fetch http://100.100.100.200/2016-01-01/meta-data/network/interfaces/macs/ to get the list + of available interface. Interfaces are identified by their MAC address.

    • +
    • Then for each interface fetch http://100.100.100.200/2016-01-01/meta-data/network/interfaces/macs/$MAC/vpc-cidr-block, + http://100.100.100.200/2016-01-01/meta-data/network/interfaces/macs/$MAC/private-ipv4s, + http://100.100.100.200/2016-01-01/meta-data/network/interfaces/macs/$MAC/netmask and + http://100.100.100.200/2016-01-01/meta-data/network/interfaces/macs/$MAC/gateway. + Thereby we get a list of private IPv4 addresses, one CIDR subnet block and private IPv4 addresses prefix.

    • +
    • +

      Then nm-cloud-setup iterates over all interfaces for which it could fetch IP configuration. + If no ethernet device for the respective MAC address is found, it is skipped. + Also, if the device is currently not activated in NetworkManager or if the currently + activated profile has a user-data org.freedesktop.nm-cloud-setup.skip=yes, + it is skipped. Also, there is only one interface and one IP address, the tool does nothing.

      +

      Then the tool configures the system like doing for AWS environment. That is, using source based policy routing + with the tables/rules 30200/30400. One difference to AWS is that the gateway is also fetched via metadata instead + of using the first IP address in the subnet.

    -

    See Also

    +

    See Also

    NetworkManager(8) nmcli(1) diff --git a/docs/api/html/nm-dbus-types.html b/docs/api/html/nm-dbus-types.html index af1ee6c1..4d5580fd 100644 --- a/docs/api/html/nm-dbus-types.html +++ b/docs/api/html/nm-dbus-types.html @@ -4809,6 +4809,21 @@ +

    NM_DEVICE_INTERFACE_FLAG_PROMISC

    +

    + + +

    = 0x4

    +

    + + +

    receive all packets. Corresponds to kernel IFF_PROMISC. Since: 1.32.

    +

    + +  + + +

    NM_DEVICE_INTERFACE_FLAG_CARRIER

    @@ -4822,6 +4837,21 @@   + + +

    NM_DEVICE_INTERFACE_FLAG_LLDP_CLIENT_ENABLED

    +

    + + +

    = 0x20000

    +

    + + +

    the flag to indicate device LLDP status. Since: 1.32.

    +

    + +  +
    diff --git a/docs/api/html/nm-initrd-generator.html b/docs/api/html/nm-initrd-generator.html index bef22dca..274c2c41 100644 --- a/docs/api/html/nm-initrd-generator.html +++ b/docs/api/html/nm-initrd-generator.html @@ -91,12 +91,15 @@ bond team vlan +ib.pkey bootdev nameserver rd.peerdns rd.bootif +rd.ethtool rd.net.timeout.dhcp rd.net.timeout.carrier +rd.znet BOOTIF

    Please consult the dracut.cmdline(7) @@ -124,6 +127,26 @@ NetworkManager, hostnames from command line have higher precedence over ones from DHCP, and the last that appears in the command line wins.

    +
  • NetworkManager supports the + ib.pkey=PARENT.PKEY + argument to set up an Infiniband partition on IPoIB parent + device PARENT using the specified + partition key PKEY. The partition + key must be in hexadecimal notation without leading "0x", for + example "ib.pkey=ib0.8004". +

  • +
  • NetworkManager supports the + rd.ethtool=INTERFACE:AUTONEG:SPEED + kernel command line option to set up ethtool NIC configuration parameters + AUTONEG and SPEED. + The INTERFACE being configured must be + specified, and the other parameters are optional and can be left blank. + When SPEED is set, duplex mode is + automatically set to 'full'. INTERFACE + accepts string values, AUTONEG accepts + boolean values (true and false / on or off / 0 or 1), and + SPEED accepts positive integer values. +

  • diff --git a/docs/api/html/nm-openvswitch.html b/docs/api/html/nm-openvswitch.html index 74825fc3..3718e83b 100644 --- a/docs/api/html/nm-openvswitch.html +++ b/docs/api/html/nm-openvswitch.html @@ -29,7 +29,7 @@
    -

    Overview

    +

    Overview

    NetworkManager includes basic Open vSwitch support, good enough to be capable of setting up simple Open vSwitch configurations. It is not extensive and does not expose all functionality of Open vSwitch provides. @@ -64,7 +64,7 @@

    -

    Bridges

    +

    Bridges

    Bridges are represented by connections of ovs-bridge type. Due to the limitations of OVSDB, "empty" Bridges (with no Ports) can't exist. @@ -74,7 +74,7 @@


    -

    Ports

    +

    Ports

    Ports are represented by connections of ovs-port type. Due to the limitations of OVSDB, "empty" Ports (with no Interfaces) can't @@ -84,7 +84,7 @@


    -

    Interfaces

    +

    Interfaces

    Interfaces are represented by a connections enslaved to a Port. The system interfaces (that have a corresponding Linux link) have a respective connection.type @@ -94,9 +94,9 @@

    -

    Examples

    +

    Examples

    -

    Example 18. Creating a Bridge with a single internal Interface

    +

    Example 18. Creating a Bridge with a single internal Interface

    $ nmcli conn add type ovs-bridge conn.interface bridge0
     Connection 'ovs-bridge-bridge0' (d10fc64d-1d48-4394-a1b8-e1aea72f27d5) successfully added.
    @@ -113,7 +113,7 @@ Connection 'ovs-interface-iface0' (3640d2a1-a2fd-4718-92f1-cffadb5b6cdc) success
     

    -

    Example 19. Adding a Linux interface to a Bridge

    +

    Example 19. Adding a Linux interface to a Bridge

    $ nmcli conn add type ovs-port conn.interface port1 master bridge0
     Connection 'ovs-port-port1' (67d041eb-8e7b-4458-afee-a1d07c9c4552) successfully added.
    @@ -124,7 +124,7 @@ Connection 'ovs-slave-eth0' (d459c45c-cf78-4c1c-b4b7-505e71379624) successfully
     

    -

    Example 20. Creating a VLAN

    +

    Example 20. Creating a VLAN

    $ nmcli conn add type ovs-port conn.interface port2 master bridge0 ovs-port.tag 120
     Connection 'ovs-port-port2' (3994c093-4ef7-4549-a4fd-627b831c3cb8) successfully added.
    @@ -135,7 +135,7 @@ Connection 'ovs-slave-eth1' (099be06e-71ad-484d-8d5a-fcadc5f207f5) successfully
     

    -

    Example 21. Creating a Bond

    +

    Example 21. Creating a Bond

    $ nmcli conn add type ovs-port conn.interface bond0 master bridge0
     Connection 'ovs-port-bond0' (d154ebf9-e999-4e1b-a084-a3de53d25d8a) successfully added.
    @@ -153,7 +153,7 @@ Connection 'ovs-slave-eth3' (8dedeecb-ed12-482b-b77a-24a4fb835136) successfully
     
    -

    Bugs

    +

    Bugs

    • Not all Open vSwitch capabilities are supported.

    • Open vSwitch devices don't expose many useful properties on D-Bus.

    • @@ -161,7 +161,7 @@ Connection 'ovs-slave-eth3' (8dedeecb-ed12-482b-b77a-24a4fb835136) successfully

      Probably many more.

    -

    See Also

    +

    See Also

    RFC 7047: The Open vSwitch Database Management Protocol, ovs-vsctl(8), diff --git a/docs/api/html/nm-settings-dbus.html b/docs/api/html/nm-settings-dbus.html index bf21733c..2fab4fd2 100644 --- a/docs/api/html/nm-settings-dbus.html +++ b/docs/api/html/nm-settings-dbus.html @@ -94,7 +94,7 @@

    -

    connection setting

    +

    connection setting

    General Connection Profile Settings.

    @@ -290,7 +290,7 @@
    -

    6lowpan setting

    +

    6lowpan setting

    6LoWPAN Settings.

    @@ -316,7 +316,7 @@
    -

    802-1x setting

    +

    802-1x setting

    IEEE 802.1x Authentication Settings.

    @@ -666,7 +666,7 @@
    -

    adsl setting

    +

    adsl setting

    ADSL Settings.

    @@ -736,7 +736,7 @@
    -

    bluetooth setting

    +

    bluetooth setting

    Bluetooth Settings.

    @@ -771,7 +771,7 @@
    -

    bond setting

    +

    bond setting

    Bonding Settings.

    @@ -806,7 +806,7 @@
    -

    bridge setting

    +

    bridge setting

    Bridging Settings.

    @@ -1023,7 +1023,7 @@
    -

    bridge-port setting

    +

    bridge-port setting

    Bridge Port Settings.

    @@ -1072,7 +1072,7 @@
    -

    cdma setting

    +

    cdma setting

    CDMA-based Mobile Broadband Settings.

    @@ -1128,7 +1128,7 @@
    -

    dcb setting

    +

    dcb setting

    Data Center Bridging Settings.

    @@ -1254,7 +1254,7 @@
    -

    dummy setting

    +

    dummy setting

    Dummy Link Settings.

    @@ -1274,7 +1274,7 @@
    -

    ethtool setting

    +

    ethtool setting

    Ethtool Ethernet Settings.

    @@ -1294,7 +1294,7 @@
    -

    generic setting

    +

    generic setting

    Generic Link Settings.

    @@ -1314,7 +1314,7 @@
    -

    gsm setting

    +

    gsm setting

    GSM-based Mobile Broadband Settings.

    @@ -1433,7 +1433,7 @@
    -

    infiniband setting

    +

    infiniband setting

    Infiniband Settings.

    @@ -1489,7 +1489,7 @@
    -

    ipv4 setting

    +

    ipv4 setting

    IPv4 Settings.

    @@ -1661,6 +1661,13 @@ + + + + + + @@ -1692,7 +1699,7 @@
    -

    ipv6 setting

    +

    ipv6 setting

    IPv6 Settings.

    +required-timeoutint32-1The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).
    route-data array of vardict  
    @@ -1871,6 +1878,13 @@ + + + + + + @@ -1909,7 +1923,7 @@
    -

    ip-tunnel setting

    +

    ip-tunnel setting

    IP Tunneling Settings.

    +required-timeoutint32-1The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).
    route-data array of vardict  
    @@ -2021,7 +2035,7 @@
    -

    macsec setting

    +

    macsec setting

    MACSec Settings.

    @@ -2105,7 +2119,7 @@
    -

    macvlan setting

    +

    macvlan setting

    MAC VLAN Settings.

    @@ -2154,7 +2168,7 @@
    -

    match setting

    +

    match setting

    Match settings.

    @@ -2189,7 +2203,7 @@ kernel-command-line - +
    array of string  A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or if prefixed with the exclamation mark unset). The argument must either be a single word, or an assignment (i.e. two words, separated "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\\' are used for optional and mandatory matches and inverting the pattern.A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or unset, if prefixed with the exclamation mark). The argument must either be a single word, or an assignment (i.e. two words, joined by "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. Wildcard patterns are not supported. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\\' are used for optional and mandatory matches and inverting the match.
    @@ -2203,7 +2217,7 @@
    -

    802-11-olpc-mesh setting

    +

    802-11-olpc-mesh setting

    OLPC Wireless Mesh Settings.

    @@ -2231,7 +2245,7 @@ dhcp-anycast-address - +
    byte array  Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request.Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request. This is currently only implemented by dhclient DHCP plugin.
    @@ -2245,7 +2259,7 @@
    -

    ovs-bridge setting

    +

    ovs-bridge setting

    OvsBridge Link Settings.

    @@ -2301,7 +2315,7 @@
    -

    ovs-dpdk setting

    +

    ovs-dpdk setting

    OvsDpdk Link Settings.

    @@ -2327,7 +2341,7 @@
    -

    ovs-interface setting

    +

    ovs-interface setting

    Open vSwitch Interface Settings.

    @@ -2353,7 +2367,7 @@
    -

    ovs-patch setting

    +

    ovs-patch setting

    OvsPatch Link Settings.

    @@ -2379,7 +2393,7 @@
    -

    ovs-port setting

    +

    ovs-port setting

    OvsPort Link Settings.

    @@ -2442,7 +2456,7 @@
    -

    ppp setting

    +

    ppp setting

    Point-to-Point Protocol Settings.

    @@ -2589,7 +2603,7 @@
    -

    pppoe setting

    +

    pppoe setting

    PPP-over-Ethernet Settings.

    @@ -2645,7 +2659,7 @@
    -

    proxy setting

    +

    proxy setting

    WWW Proxy Settings.

    @@ -2694,7 +2708,7 @@
    -

    serial setting

    +

    serial setting

    Serial Link Settings.

    @@ -2750,7 +2764,7 @@
    -

    sriov setting

    +

    sriov setting

    SR-IOV settings.

    @@ -2792,7 +2806,7 @@
    -

    tc setting

    +

    tc setting

    Linux Traffic Control Settings.

    @@ -2827,7 +2841,7 @@
    -

    team setting

    +

    team setting

    Teaming Settings.

    @@ -2967,7 +2981,7 @@
    -

    team-port setting

    +

    team-port setting

    Team Port Settings.

    @@ -3037,7 +3051,7 @@
    -

    tun setting

    +

    tun setting

    Tunnel Settings.

    @@ -3100,7 +3114,7 @@
    -

    user setting

    +

    user setting

    General User Profile Settings.

    @@ -3126,7 +3140,7 @@
    -

    vlan setting

    +

    vlan setting

    VLAN Settings.

    @@ -3189,7 +3203,7 @@
    -

    vpn setting

    +

    vpn setting

    VPN Settings.

    @@ -3252,7 +3266,7 @@
    -

    vrf setting

    +

    vrf setting

    VRF settings.

    @@ -3278,7 +3292,7 @@
    -

    vxlan setting

    +

    vxlan setting

    VXLAN Settings.

    @@ -3411,7 +3425,7 @@
    -

    wifi-p2p setting

    +

    wifi-p2p setting

    Wi-Fi P2P Settings.

    @@ -3453,7 +3467,7 @@
    -

    wimax setting

    +

    wimax setting

    WiMax Settings.

    @@ -3488,7 +3502,7 @@
    -

    802-3-ethernet setting

    +

    802-3-ethernet setting

    Wired Ethernet Settings.

    @@ -3506,6 +3520,13 @@ + + + + + + @@ -3614,7 +3635,7 @@
    -

    wireguard setting

    +

    wireguard setting

    WireGuard Settings.

    +accept-all-mac-addressesNMTernary (int32) When TRUE, setup the interface to accept packets for all MAC addresses. This is enabling the kernel interface flag IFF_PROMISC. When FALSE, the interface will only accept the packets with the interface destination mac address or broadcast.
    assigned-mac-address string  
    @@ -3698,7 +3719,7 @@
    -

    802-11-wireless setting

    +

    802-11-wireless setting

    Wi-Fi Settings.

    @@ -3859,7 +3880,7 @@
    -

    802-11-wireless-security setting

    +

    802-11-wireless-security setting

    Wi-Fi Security Settings.

    @@ -3901,7 +3922,7 @@ key-mgmt - + - + diff --git a/docs/api/html/settings-802-11-wireless-security.html b/docs/api/html/settings-802-11-wireless-security.html index 7e915e48..61fc285d 100644 --- a/docs/api/html/settings-802-11-wireless-security.html +++ b/docs/api/html/settings-802-11-wireless-security.html @@ -75,7 +75,7 @@ - + diff --git a/docs/api/html/settings-802-3-ethernet.html b/docs/api/html/settings-802-3-ethernet.html index 1533c60d..28eeeb1b 100644 --- a/docs/api/html/settings-802-3-ethernet.html +++ b/docs/api/html/settings-802-3-ethernet.html @@ -54,6 +54,12 @@ + + + + + + diff --git a/docs/api/html/settings-ipv4.html b/docs/api/html/settings-ipv4.html index 2152a9e5..4f91166b 100644 --- a/docs/api/html/settings-ipv4.html +++ b/docs/api/html/settings-ipv4.html @@ -186,6 +186,12 @@ + + + + + + diff --git a/docs/api/html/settings-ipv6.html b/docs/api/html/settings-ipv6.html index 1680a5a2..62a1be5a 100644 --- a/docs/api/html/settings-ipv6.html +++ b/docs/api/html/settings-ipv6.html @@ -192,6 +192,12 @@ + + + + + + diff --git a/docs/api/html/settings-match.html b/docs/api/html/settings-match.html index e1afd6a8..2a326ed8 100644 --- a/docs/api/html/settings-match.html +++ b/docs/api/html/settings-match.html @@ -69,7 +69,7 @@ - + -- cgit 1.3.0-6-gf8a5
    string  Key management used for the connection. One of "none" (WEP), "ieee8021x" (Dynamic WEP), "wpa-psk" (infrastructure WPA-PSK), "sae" (SAE), "owe" (Opportunistic Wireless Encryption), "wpa-eap" (WPA-Enterprise) or "wpa-eap-suite-b-192" (WPA3-Enterprise Suite B). This property must be set for any Wi-Fi connection that uses security.Key management used for the connection. One of "none" (WEP or no password protection), "ieee8021x" (Dynamic WEP), "owe" (Opportunistic Wireless Encryption), "wpa-psk" (WPA2 + WPA3 personal), "sae" (WPA3 personal only), "wpa-eap" (WPA2 + WPA3 enterprise) or "wpa-eap-suite-b-192" (WPA3 enterprise only). This property must be set for any Wi-Fi connection that uses security.
    @@ -4020,7 +4041,7 @@
    -

    wpan setting

    +

    wpan setting

    IEEE 802.15.4 (WPAN) MAC Settings.

    @@ -4076,7 +4097,7 @@
    -

    hostname setting

    +

    hostname setting

    Hostname settings.

    @@ -4125,7 +4146,7 @@
    -

    ovs-external-ids setting

    +

    ovs-external-ids setting

    OVS External IDs Settings.

    @@ -4151,7 +4172,7 @@
    -

    veth setting

    +

    veth setting

    Veth Settings.

    diff --git a/docs/api/html/nm-settings-ifcfg-rh.html b/docs/api/html/nm-settings-ifcfg-rh.html index 73ef3c45..0315a5eb 100644 --- a/docs/api/html/nm-settings-ifcfg-rh.html +++ b/docs/api/html/nm-settings-ifcfg-rh.html @@ -209,10 +209,10 @@ DEVICETYPE=TeamPort

    - + @@ -251,7 +256,7 @@ DEVICETYPE=TeamPort are NetworkManager specific extensions not understood by traditional initscripts.

    -

    Table 11. 6lowpan setting

    +

    Table 11. 6lowpan setting

    Semantic change of variables

    Semantic change of variables and differences

    - NetworkManager had to slightly change the semantic for a few variables. + NetworkManager changes the semantics for a few variables and there are other behavioral differences.

    • PEERDNS - @@ -234,6 +234,11 @@ DEVICETYPE=TeamPort

    • HWADDR - initscripts compare the currently set hardware address of a device, while NetworkManager considers the permanent one.

    • +
    • NOZEROCONF - + initscripts add an on-link route to 169.254.0.0/16 for ethernet profiles that don't + explicitly opt-out by setting NOZEROCONF variable. NetworkManager does + not do that. Instead a static, manual route with scope=253 (link) should be added to get + that behavior.

    @@ -269,7 +274,7 @@ DEVICETYPE=TeamPort

    -

    Table 12. 802-1x setting

    +

    Table 12. 802-1x setting

    @@ -597,7 +602,7 @@ Example: IEEE_8021X_PRIVATE_KEY=/home/joe/mykey.p12

    -

    Table 13. bond setting

    +

    Table 13. bond setting

    @@ -622,7 +627,7 @@ Example: BONDING_OPTS="miimon=100 mode=broadcast"

    -

    Table 14. bridge-port setting

    +

    Table 14. bridge-port setting

    @@ -671,7 +676,7 @@ Example: BRIDGE_PORT_VLANS="1 pvid untagged,20,300-400 untagged"

    -

    Table 15. bridge setting

    +

    Table 15. bridge setting

    @@ -910,7 +915,7 @@ Example: BRIDGING_OPTS="multicast_startup_query_interval=4000"
    -

    Table 16. connection setting

    +

    Table 16. connection setting

    @@ -1128,7 +1133,7 @@ Allowed values: a valid URL that points to recommended policy fo

    -

    Table 17. dcb setting

    +

    Table 17. dcb setting

    @@ -1263,7 +1268,7 @@ Example: DCB_PG_UP2TC=01623701 used explicitly to enable DCB so that the rest of the DCB_* variables can apply.

    -

    Table 18. ethtool setting

    +

    Table 18. ethtool setting

    @@ -1281,7 +1286,7 @@ Example: DCB_PG_UP2TC=01623701

    -

    Table 19. hostname setting

    +

    Table 19. hostname setting

    @@ -1336,7 +1341,7 @@ Example: HOSTNAME_ONLY_FROM_DEFAULT=0,1

    -

    Table 20. infiniband setting

    +

    Table 20. infiniband setting

    @@ -1391,7 +1396,7 @@ Example: PHYSDEV=ib0

    -

    Table 21. ipv4 setting

    +

    Table 21. ipv4 setting

    @@ -1568,7 +1573,7 @@ Example: DHCP_VENDOR_CLASS_IDENTIFIER=foo

    -

    Table 22. ipv6 setting

    +

    Table 22. ipv6 setting

    @@ -1654,12 +1659,18 @@ Example: IPV6_DEFAULTGW=abbe::1 Example: IPV6_DHCP_TIMEOUT=10 + + + + + + - + @@ -1751,7 +1762,7 @@ Example: DHCPV6_DUID=LL; DHCPV6_DUID=0301deadbeef0001; DHCPV6_DU
    dhcp-hostname-flagsDHCPV6_HOSTNAME_FLAGS flags for the DHCP hostname property + +Example: DHCPV6_HOSTNAME_FLAGS=5
    never-default IPV6_DEFROUTE(+), (and IPV6_DEFAULTGW, IPV6_DEFAULTDEV in /etc/sysconfig/network) IPV6_DEFROUTE=yes (when no variable specified)IPV6_DEFROUTE=no tells NetworkManager that this connection should not be assigned the default IPv6 route. IPV6_DEFROUTE has the opposite meaning as 'never-default' property. - -Example: DHCPV6_HOSTNAME_FLAGS=5 */ IPV6_DEFROUTE=no tells NetworkManager that this connection should not be assigned the default IPv6 route. IPV6_DEFROUTE has the opposite meaning as 'never-default' property.
    may-fail

    -

    Table 23. match setting

    +

    Table 23. match setting

    @@ -1776,7 +1787,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 24. ovs-bridge setting

    +

    Table 24. ovs-bridge setting

    @@ -1794,7 +1805,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 25. ovs-dpdk setting

    +

    Table 25. ovs-dpdk setting

    @@ -1812,7 +1823,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 26. ovs-external-ids setting

    +

    Table 26. ovs-external-ids setting

    @@ -1830,7 +1841,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 27. ovs-interface setting

    +

    Table 27. ovs-interface setting

    @@ -1848,7 +1859,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 28. ovs-patch setting

    +

    Table 28. ovs-patch setting

    @@ -1866,7 +1877,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 29. ovs-port setting

    +

    Table 29. ovs-port setting

    @@ -1884,7 +1895,7 @@ Example: MATCH_PATH="pci-0000:01:00.0 pci-0000:0c:00.0"

    -

    Table 30. proxy setting

    +

    Table 30. proxy setting

    @@ -1937,7 +1948,7 @@ Example: PAC_SCRIPT=/home/joe/proxy.pac

    -

    Table 31. sriov setting

    +

    Table 31. sriov setting

    @@ -1982,7 +1993,7 @@ Example: SRIOV_AUTOPROBE_DRIVERS=0,1

    -

    Table 32. tc setting

    +

    Table 32. tc setting

    @@ -2019,7 +2030,7 @@ Example: FILTER1="parent ffff: matchall action simple sdata Inpu

    -

    Table 33. team-port setting

    +

    Table 33. team-port setting

    @@ -2042,7 +2053,7 @@ Example: FILTER1="parent ffff: matchall action simple sdata Inpu

    -

    Table 34. team setting

    +

    Table 34. team setting

    @@ -2065,7 +2076,7 @@ Example: FILTER1="parent ffff: matchall action simple sdata Inpu

    -

    Table 35. user setting

    +

    Table 35. user setting

    @@ -2090,7 +2101,7 @@ Example: NM_USER_FOO__BAR=something

    -

    Table 36. veth setting

    +

    Table 36. veth setting

    @@ -2108,7 +2119,7 @@ Example: NM_USER_FOO__BAR=something

    -

    Table 37. vlan setting

    +

    Table 37. vlan setting

    @@ -2131,9 +2142,9 @@ Example: NM_USER_FOO__BAR=something - + - + @@ -2171,7 +2182,7 @@ Example: PHYSDEV=eth0, VLAN_ID=12; or DEVICE=eth0.12
    idVLAN_ID or DEVICEVLAN_ID, DEVICE.  VLAN identifier.VLAN identifier. If VLAN_ID is not set, it is attempted to be detected from the suffix of DEVICE=. Note that older versions of NetworkManager had a bug where they would prefer the detected ID from the DEVICE over VLAN_ID.
    flags

    -

    Table 38. vrf setting

    +

    Table 38. vrf setting

    @@ -2189,7 +2200,7 @@ Example: PHYSDEV=eth0, VLAN_ID=12; or DEVICE=eth0.12

    -

    Table 39. wifi-p2p setting

    +

    Table 39. wifi-p2p setting

    @@ -2207,7 +2218,7 @@ Example: PHYSDEV=eth0, VLAN_ID=12; or DEVICE=eth0.12

    -

    Table 40. 802-3-ethernet setting

    +

    Table 40. 802-3-ethernet setting

    @@ -2304,11 +2315,31 @@ Allowed values: "qeth", "lcs" or "ctc" + + + + + + + + + + + + + + + + + +
      S390 device options. All options go to OPTIONS, except for "portname" and "ctcprot" that have their own variables.
    wake-on-lanETHTOOL_OPTS, ETHTOOL_WAKE_ON_LAN Wake on Lan mode for ethernet. The setting "ignore" is expressed with "ETHTOOL_WAKE_ON_LAN=ignore". Otherwise, the "ETHTOOL_OPTS" variable is set with the value "wol" and several of the characters "p|u|m|b|a|g|s|f|d" as explained in the ethtool manual page.
    wake-on-lan-passwordETHTOOL_OPTS Password for secure-on based Wake-on-Lan. It is added as "sopass" parameter in the ETHTOOL_OPTS variable. + +Example: ETHTOOL_OPTS="wol gs sopass 00:11:22:33:44:55"
    accept-all-mac-addressesACCEPT_ALL_MAC_ADDRESSES Enforce the interface to accept all the packets.

    -

    Table 41. wireguard setting

    +

    Table 41. wireguard setting

    @@ -2326,7 +2357,7 @@ Allowed values: "qeth", "lcs" or "ctc"

    -

    Table 42. 802-11-wireless-security setting

    +

    Table 42. 802-11-wireless-security setting

    @@ -2346,9 +2377,9 @@ Allowed values: "qeth", "lcs" or "ctc" - +Allowed values: none, ieee8021x, owe, wpa-psk, sae, wpa-eap, wpa-eap-suite-b-192 @@ -2508,7 +2539,7 @@ Allowed values: default, disable, optional, required
    KEY_MGMT(+)  Key management menthod. +Key management method. -Allowed values: IEEE8021X, WPA-PSK, WPA-EAP, WPA-EAP-SUITE-B-192
    wep-tx-keyidx

    -

    Table 43. 802-11-wireless setting

    +

    Table 43. 802-11-wireless setting

    @@ -2665,7 +2696,7 @@ Allowed values: "yes", "no"

    -

    Table 44. wpan setting

    +

    Table 44. wpan setting

    diff --git a/docs/api/html/nm-settings-keyfile.html b/docs/api/html/nm-settings-keyfile.html index a2a0799a..67754ad9 100644 --- a/docs/api/html/nm-settings-keyfile.html +++ b/docs/api/html/nm-settings-keyfile.html @@ -189,7 +189,7 @@ id=4
    802-11-wireless-security = wifi-security
    -

    Table 1. bridge setting (section)

    +

    Table 1. bridge setting (section)

    @@ -214,7 +214,7 @@ Example: mac-address=00:22:68:12:79:A2 mac-address=0;34;104;18;1

    -

    Table 2. infiniband setting (section)

    +

    Table 2. infiniband setting (section)

    @@ -239,7 +239,7 @@ Example: mac-address= 80:00:00:6d:fe:80:00:00:00:00:00:00:00:02:

    -

    Table 3. ipv4 setting (section)

    +

    Table 3. ipv4 setting (section)

    @@ -290,7 +290,7 @@ Example: route1=8.8.8.0/24,10.1.1.1,77 route2=7.7.0.0/16

    -

    Table 4. ipv6 setting (section)

    +

    Table 4. ipv6 setting (section)

    @@ -341,7 +341,7 @@ Example: route1=2001:4860:4860::/64,2620:52:0:2219:222:68ff:fe11

    -

    Table 5. serial setting (section)

    +

    Table 5. serial setting (section)

    @@ -366,7 +366,7 @@ Example: parity=n

    -

    Table 6. vpn setting (section)

    +

    Table 6. vpn setting (section)

    @@ -401,7 +401,7 @@ Example: password=Popocatepetl

    -

    Table 7. wifi-p2p setting (section)

    +

    Table 7. wifi-p2p setting (section)

    @@ -424,7 +424,7 @@ Example: password=Popocatepetl

    -

    Table 8. 802-3-ethernet setting (section)

    +

    Table 8. 802-3-ethernet setting (section)

    @@ -463,7 +463,7 @@ Example: mac-address-blacklist= 00:22:68:12:79:A6;00:22:68:12:79

    -

    Table 9. 802-11-wireless setting (section)

    +

    Table 9. 802-11-wireless setting (section)

    @@ -510,7 +510,7 @@ Example: mac-address-blacklist= 00:22:68:12:79:A6;00:22:68:12:79

    -

    Table 10. wpan setting (section)

    +

    Table 10. wpan setting (section)

    diff --git a/docs/api/html/nm-settings-nmcli.html b/docs/api/html/nm-settings-nmcli.html index a869ef2b..1ce647f7 100644 --- a/docs/api/html/nm-settings-nmcli.html +++ b/docs/api/html/nm-settings-nmcli.html @@ -67,7 +67,7 @@ property.

    -

    connection setting

    +

    connection setting

    General Connection Profile Settings.

    Properties: @@ -295,7 +295,7 @@


    -

    6lowpan setting

    +

    6lowpan setting

    6LoWPAN Settings.

    Properties: @@ -319,7 +319,7 @@


    -

    802-1x setting

    +

    802-1x setting

    IEEE 802.1x Authentication Settings.

    Properties: @@ -729,7 +729,7 @@


    -

    adsl setting

    +

    adsl setting

    ADSL Settings.

    Properties: @@ -811,7 +811,7 @@


    -

    bluetooth setting

    +

    bluetooth setting

    Bluetooth Settings.

    Properties: @@ -847,7 +847,7 @@


    -

    bond setting

    +

    bond setting

    Bonding Settings.

    Properties: @@ -869,7 +869,7 @@


    -

    bridge setting

    +

    bridge setting

    Bridging Settings.

    Properties: @@ -1119,7 +1119,7 @@


    -

    bridge-port setting

    +

    bridge-port setting

    Bridge Port Settings.

    Properties: @@ -1173,7 +1173,7 @@


    -

    cdma setting

    +

    cdma setting

    CDMA-based Mobile Broadband Settings.

    Properties: @@ -1235,7 +1235,7 @@


    -

    dcb setting

    +

    dcb setting

    Data Center Bridging Settings.

    Properties: @@ -1371,7 +1371,7 @@


    -

    ethtool setting

    +

    ethtool setting

    Ethtool Ethernet Settings.

    Properties: @@ -1703,6 +1703,18 @@

    + + + + + + + + + + + + @@ -1723,7 +1735,7 @@
    -

    gsm setting

    +

    gsm setting

    GSM-based Mobile Broadband Settings.

    Properties: @@ -1861,7 +1873,7 @@


    -

    infiniband setting

    +

    infiniband setting

    Infiniband Settings.

    Properties: @@ -1927,7 +1939,7 @@


    -

    ipv4 setting

    +

    ipv4 setting

    IPv4 Settings.

    Properties: @@ -1943,9 +1955,9 @@

    @@ -2111,6 +2123,14 @@ + + + + @@ -2143,7 +2163,7 @@
    -

    ipv6 setting

    +

    ipv6 setting

    IPv6 Settings.

    Properties: @@ -2167,9 +2187,9 @@

    @@ -2319,6 +2339,14 @@ + + + + @@ -2691,7 +2719,7 @@
    -

    802-11-olpc-mesh setting

    +

    802-11-olpc-mesh setting

    Alias: olpc-mesh

    OLPC Wireless Mesh Settings.

    @@ -2719,7 +2747,7 @@
    @@ -2739,7 +2767,7 @@
    -

    ovs-bridge setting

    +

    ovs-bridge setting

    OvsBridge Link Settings.

    Properties: @@ -2795,7 +2823,7 @@


    -

    ovs-dpdk setting

    +

    ovs-dpdk setting

    OvsDpdk Link Settings.

    Properties: @@ -2817,7 +2845,7 @@


    -

    ovs-interface setting

    +

    ovs-interface setting

    Open vSwitch Interface Settings.

    Properties: @@ -2839,7 +2867,7 @@


    -

    ovs-patch setting

    +

    ovs-patch setting

    OvsPatch Link Settings.

    Properties: @@ -2861,7 +2889,7 @@


    -

    ovs-port setting

    +

    ovs-port setting

    OvsPort Link Settings.

    Properties: @@ -2925,7 +2953,7 @@


    -

    ppp setting

    +

    ppp setting

    Point-to-Point Protocol Settings.

    Properties: @@ -3085,7 +3113,7 @@


    -

    pppoe setting

    +

    pppoe setting

    PPP-over-Ethernet Settings.

    Properties: @@ -3151,7 +3179,7 @@


    -

    proxy setting

    +

    proxy setting

    WWW Proxy Settings.

    Properties: @@ -3207,7 +3235,7 @@


    -

    serial setting

    +

    serial setting

    Serial Link Settings.

    Properties: @@ -3263,7 +3291,7 @@


    -

    sriov setting

    +

    sriov setting

    SR-IOV settings.

    Properties: @@ -3303,7 +3331,7 @@


    -

    tc setting

    +

    tc setting

    Linux Traffic Control Settings.

    Properties: @@ -3335,7 +3363,7 @@


    -

    team setting

    +

    team setting

    Teaming Settings.

    Properties: @@ -3481,7 +3509,7 @@


    -

    team-port setting

    +

    team-port setting

    Team Port Settings.

    Properties: @@ -3555,7 +3583,7 @@


    -

    tun setting

    +

    tun setting

    Tunnel Settings.

    Properties: @@ -3631,7 +3659,7 @@


    -

    vlan setting

    +

    vlan setting

    VLAN Settings.

    Properties: @@ -3697,7 +3725,7 @@


    -

    vpn setting

    +

    vpn setting

    VPN Settings.

    Properties: @@ -3765,7 +3793,7 @@


    -

    vrf setting

    +

    vrf setting

    VRF settings.

    Properties: @@ -3789,7 +3817,7 @@


    -

    vxlan setting

    +

    vxlan setting

    VXLAN Settings.

    Properties: @@ -3947,7 +3975,7 @@


    -

    wifi-p2p setting

    +

    wifi-p2p setting

    Wi-Fi P2P Settings.

    Properties: @@ -3989,7 +4017,7 @@


    -

    wimax setting

    +

    wimax setting

    WiMax Settings.

    Properties: @@ -4025,7 +4053,7 @@


    -

    802-3-ethernet setting

    +

    802-3-ethernet setting

    Alias: ethernet

    Wired Ethernet Settings.

    @@ -4039,6 +4067,14 @@
    + + + + @@ -4599,7 +4635,7 @@
    -

    wpan setting

    +

    wpan setting

    IEEE 802.15.4 (WPAN) MAC Settings.

    Properties: @@ -4665,7 +4701,7 @@


    -

    hostname setting

    +

    hostname setting

    Hostname settings.

    Properties: @@ -4713,7 +4749,7 @@


    -

    veth setting

    +

    veth setting

    Veth Settings.

    Properties: diff --git a/docs/api/html/nmcli-examples.html b/docs/api/html/nmcli-examples.html index ad56ea79..1ea0c026 100644 --- a/docs/api/html/nmcli-examples.html +++ b/docs/api/html/nmcli-examples.html @@ -33,7 +33,7 @@

    nmcli [OPTIONS...]

    -

    Description

    +

    Description

    nmcli is a command-line client for NetworkManager. It allows controlling NetworkManager and reporting its status. For more information @@ -46,9 +46,9 @@

    -

    Examples

    +

    Examples

    -

    Example 1. Listing available Wi-Fi APs

    +

    Example 1. Listing available Wi-Fi APs

    $ nmcli device wifi list
     *  SSID               MODE    CHAN  RATE       SIGNAL  BARS  SECURITY
    @@ -71,14 +71,14 @@
     

    -

    Example 2. Connect to a password-protected wifi network

    +

    Example 2. Connect to a password-protected wifi network

    $ nmcli device wifi connect "$SSID" password "$PASSWORD"
    $ nmcli --ask device wifi connect "$SSID"

    -

    Example 3. Showing general information and properties for a Wi-Fi interface

    +

    Example 3. Showing general information and properties for a Wi-Fi interface

    $ nmcli -p -f general,wifi-properties device show wlan0
     ===========================================================================
    @@ -120,7 +120,7 @@ WIFI-PROPERTIES.ADHOC:    yes
     

    -

    Example 4. Listing NetworkManager polkit permissions

    +

    Example 4. Listing NetworkManager polkit permissions

    $ nmcli general permissions
     PERMISSION                                                VALUE
    @@ -153,7 +153,7 @@ org.freedesktop.NetworkManager.reload                     auth

    -

    Example 5. Listing NetworkManager log level and domains

    +

    Example 5. Listing NetworkManager log level and domains

    $ nmcli general logging
     LEVEL  DOMAINS
    @@ -167,7 +167,7 @@ B,DISPATCH

    -

    Example 6. Changing NetworkManager logging

    +

    Example 6. Changing NetworkManager logging

    $ nmcli g log level DEBUG domains CORE,ETHER,IP
     $ nmcli g log level INFO domains DEFAULT
    @@ -180,7 +180,7 @@ B,DISPATCH

    -

    Example 7. Activating a VPN connection profile requiring interactive password input

    +

    Example 7. Activating a VPN connection profile requiring interactive password input

    $ nmcli --ask con up my-vpn-con

    @@ -195,7 +195,7 @@ B,DISPATCH


    -

    Example 8. Adding a bonding master and two slave connection profiles

    +

    Example 8. Adding a bonding master and two slave connection profiles

    $ nmcli con add type bond ifname mybond0 mode active-backup
     $ nmcli con add type ethernet ifname eth1 master mybond0
    @@ -211,7 +211,7 @@ B,DISPATCH

    -

    Example 9. Adding a team master and two slave connection profiles

    +

    Example 9. Adding a team master and two slave connection profiles

    $ nmcli con add type team con-name Team1 ifname Team1 config team1-master-json.conf
     $ nmcli con add type ethernet con-name Team1-slave1 ifname em1 master Team1
    @@ -239,7 +239,7 @@ B,DISPATCH

    -

    Example 10. Adding a bridge and two slave profiles

    +

    Example 10. Adding a bridge and two slave profiles

    $ nmcli con add type bridge con-name TowerBridge ifname TowerBridge
     $ nmcli con add type ethernet con-name br-slave-1 ifname ens3 master TowerBridge
    @@ -258,7 +258,7 @@ B,DISPATCH

    -

    Example 11. Adding an ethernet connection profile with manual IP configuration

    +

    Example 11. Adding an ethernet connection profile with manual IP configuration

    $ nmcli con add con-name my-con-em1 ifname em1 type ethernet \
       ip4 192.168.100.100/24 gw4 192.168.100.1 ip4 1.2.3.4 ip6 abbe::cafe
    @@ -281,7 +281,7 @@ B,DISPATCH

    -

    Example 12. Convenient field values retrieval for scripting

    +

    Example 12. Convenient field values retrieval for scripting

    $ nmcli -g ip4.address connection show my-con-eth0
     192.168.1.12/24
    @@ -301,7 +301,7 @@ IP4:192.168.1.12/24:192.168.1.1::192.168.1.1::

    -

    Example 13. Adding an Ethernet connection and configuring SR-IOV VFs

    +

    Example 13. Adding an Ethernet connection and configuring SR-IOV VFs

    $ nmcli con add type ethernet con-name EthernetPF ifname em1
     $ nmcli con modify EthernetPF sriov.total-vfs 3 sriov.autoprobe-drivers false
    @@ -321,7 +321,7 @@ IP4:192.168.1.12/24:192.168.1.1::192.168.1.1::

    -

    Example 14. Escaping colon characters in tabular mode

    +

    Example 14. Escaping colon characters in tabular mode

    $ nmcli -t -f general -e yes -m tab dev show eth0
     GENERAL:eth0:ethernet:Intel Corporation:82567LM Gigabit Network Connection:
    @@ -336,7 +336,7 @@ nager/ActiveConnection/9

    -

    Example 15. nmcli usage in a NetworkManager dispatcher script to make Ethernet and Wi-Fi mutually exclusive

    +

    Example 15. nmcli usage in a NetworkManager dispatcher script to make Ethernet and Wi-Fi mutually exclusive

     #!/bin/bash
    @@ -374,7 +374,7 @@ fi
     

    Example sessions of interactive connection editor

    -

    Example 16. Adding an ethernet connection profile in interactive editor (a)

    +

    Example 16. Adding an ethernet connection profile in interactive editor (a)

    $ nmcli connection edit type ethernet
     
    @@ -610,7 +610,7 @@ Connection 'ethernet-4' (de89cdeb-a3e1-4d53-8fa0-c22546c775f4) successfully
     

    -

    Example 17. Bluetooth connection profiles

    +

    Example 17. Bluetooth connection profiles

    NetworkManger supports both connecting to NAP and DUN devices as a client. It also supports sharing the network via a NAP server. @@ -636,7 +636,7 @@ Connection 'ethernet-4' (de89cdeb-a3e1-4d53-8fa0-c22546c775f4) successfully

    -

    See Also

    +

    See Also

    nmcli(1), NetworkManager(8), diff --git a/docs/api/html/nmcli.html b/docs/api/html/nmcli.html index caed6f7b..5e10c868 100644 --- a/docs/api/html/nmcli.html +++ b/docs/api/html/nmcli.html @@ -6,7 +6,7 @@ - + @@ -16,7 +16,7 @@

    - +

    pause-autoneg

    Whether to automatically negotiate on pause frame of flow control mechanism defined by IEEE 802.3x standard.

    pause-rx

    Whether RX pause should be enabled. Only valid when automatic negotiation is disabled

    pause-tx

    Whether TX pause should be enabled. Only valid when automatic negotiation is disabled

    ring-rx

    Alias: ip4

    -

    Array of IP addresses.

    +

    A list of IPv4 addresses and their prefix length. Multiple addresses can be separated by comma. For example "192.168.1.5/24, 10.1.0.5/24". The addresses are listed in decreasing priority, meaning the first address will be the primary address.

    - Format: array of array of uint32

    + Format: a comma separated list of addresses

    required-timeout

    +

    The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).

    +

    + Format: int32

    +

    route-metric

    The default metric for routes that don't explicitly specify a metric. The default value -1 means that the metric is chosen automatically based on the device type. The metric applies to dynamic routes, manual (static) routes that don't have an explicit metric setting, address prefix routes, and the default route. Note that for IPv6, the kernel accepts zero (0) but coerces it to 1024 (user default). Hence, setting this property to zero effectively mean setting it to 1024. For IPv4, zero is a regular value for the metric.

    @@ -2129,9 +2149,9 @@

    routes

    -

    Array of IP routes.

    +

    A list of IPv4 destination addresses, prefix length, optional IPv4 next hop addresses, optional route metric, optional attribute. The valid syntax is: "ip[/prefix] [next-hop] [metric] [attribute=val]...[,ip[/prefix]...]". For example "192.0.2.0/24 10.1.1.1 77, 198.51.100.0/24".

    - Format: array of array of uint32

    + Format: a comma separated list of routes

    Alias: ip6

    -

    Array of IP addresses.

    +

    A list of IPv6 addresses and their prefix length. Multiple addresses can be separated by comma. For example "2001:db8:85a3::8a2e:370:7334/64, 2001:db8:85a3::5/64". The addresses are listed in increasing priority, meaning the last address will be the primary address.

    - Format: array of legacy IPv6 address struct

    + Format: a comma separated list of addresses

    required-timeout

    +

    The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).

    +

    + Format: int32

    +

    route-metric

    The default metric for routes that don't explicitly specify a metric. The default value -1 means that the metric is chosen automatically based on the device type. The metric applies to dynamic routes, manual (static) routes that don't have an explicit metric setting, address prefix routes, and the default route. Note that for IPv6, the kernel accepts zero (0) but coerces it to 1024 (user default). Hence, setting this property to zero effectively mean setting it to 1024. For IPv4, zero is a regular value for the metric.

    @@ -2359,7 +2387,7 @@
    -

    ip-tunnel setting

    +

    ip-tunnel setting

    IP Tunneling Settings.

    Properties: @@ -2487,7 +2515,7 @@


    -

    macsec setting

    +

    macsec setting

    MACSec Settings.

    Properties: @@ -2589,7 +2617,7 @@


    -

    macvlan setting

    +

    macvlan setting

    MAC VLAN Settings.

    Properties: @@ -2643,7 +2671,7 @@


    -

    match setting

    +

    match setting

    Match settings.

    Properties: @@ -2673,7 +2701,7 @@

    kernel-command-line

    -

    A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or if prefixed with the exclamation mark unset). The argument must either be a single word, or an assignment (i.e. two words, separated "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\' are used for optional and mandatory matches and inverting the pattern.

    +

    A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or unset, if prefixed with the exclamation mark). The argument must either be a single word, or an assignment (i.e. two words, joined by "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. Wildcard patterns are not supported. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\' are used for optional and mandatory matches and inverting the match.

    Format: array of string

    Alias: dhcp-anycast

    -

    Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request.

    +

    Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request. This is currently only implemented by dhclient DHCP plugin.

    Format: byte array

    accept-all-mac-addresses

    +

    When TRUE, setup the interface to accept packets for all MAC addresses. This is enabling the kernel interface flag IFF_PROMISC. When FALSE, the interface will only accept the packets with the interface destination mac address or broadcast.

    +

    + Format: NMTernary (int32)

    +

    auto-negotiate

    When TRUE, enforce auto-negotiation of speed and duplex mode. If "speed" and "duplex" properties are both specified, only that single mode will be advertised and accepted during the link auto-negotiation process: this works only for BASE-T 802.3 specifications and is useful for enforcing gigabits modes, as in these cases link negotiation is mandatory. When FALSE, "speed" and "duplex" properties should be both set or link configuration will be skipped.

    @@ -4161,7 +4197,7 @@
    -

    wireguard setting

    +

    wireguard setting

    WireGuard Settings.

    Properties: @@ -4243,7 +4279,7 @@


    -

    802-11-wireless setting

    +

    802-11-wireless setting

    Alias: wifi

    Wi-Fi Settings.

    @@ -4415,7 +4451,7 @@

    -

    802-11-wireless-security setting

    +

    802-11-wireless-security setting

    Alias: wifi-sec

    Wi-Fi Security Settings.

    @@ -4455,7 +4491,7 @@

    key-mgmt

    -

    Key management used for the connection. One of "none" (WEP), "ieee8021x" (Dynamic WEP), "wpa-psk" (infrastructure WPA-PSK), "sae" (SAE), "owe" (Opportunistic Wireless Encryption), "wpa-eap" (WPA-Enterprise) or "wpa-eap-suite-b-192" (WPA3-Enterprise Suite B). This property must be set for any Wi-Fi connection that uses security.

    +

    Key management used for the connection. One of "none" (WEP or no password protection), "ieee8021x" (Dynamic WEP), "owe" (Opportunistic Wireless Encryption), "wpa-psk" (WPA2 + WPA3 personal), "sae" (WPA3 personal only), "wpa-eap" (WPA2 + WPA3 enterprise) or "wpa-eap-suite-b-192" (WPA3 enterprise only). This property must be set for any Wi-Fi connection that uses security.

    Format: string

    Home UpPrevPrev Next
    diff --git a/docs/api/html/settings-802-11-olpc-mesh.html b/docs/api/html/settings-802-11-olpc-mesh.html index 7ff80ef6..2056a462 100644 --- a/docs/api/html/settings-802-11-olpc-mesh.html +++ b/docs/api/html/settings-802-11-olpc-mesh.html @@ -63,7 +63,7 @@
    dhcp-anycast-address
    byte array
    Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request.Anycast DHCP MAC address used when requesting an IP address via DHCP. The specific anycast address used determines which DHCP server class answers the request. This is currently only implemented by dhclient DHCP plugin.
    ssid
    key-mgmt
    string
    Key management used for the connection. One of "none" (WEP), "ieee8021x" (Dynamic WEP), "wpa-psk" (infrastructure WPA-PSK), "sae" (SAE), "owe" (Opportunistic Wireless Encryption), "wpa-eap" (WPA-Enterprise) or "wpa-eap-suite-b-192" (WPA3-Enterprise Suite B). This property must be set for any Wi-Fi connection that uses security.Key management used for the connection. One of "none" (WEP or no password protection), "ieee8021x" (Dynamic WEP), "owe" (Opportunistic Wireless Encryption), "wpa-psk" (WPA2 + WPA3 personal), "sae" (WPA3 personal only), "wpa-eap" (WPA2 + WPA3 enterprise) or "wpa-eap-suite-b-192" (WPA3 enterprise only). This property must be set for any Wi-Fi connection that uses security.
    leap-password
    accept-all-mac-addresses
    NMTernary (int32)
    When TRUE, setup the interface to accept packets for all MAC addresses. This is enabling the kernel interface flag IFF_PROMISC. When FALSE, the interface will only accept the packets with the interface destination mac address or broadcast.
    assigned-mac-address
    string
    If TRUE, this connection will never be the default connection for this IP type, meaning it will never be assigned the default route by NetworkManager.
    required-timeout
    int32
    -1
    The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).
    route-data
    array of vardict
    A timeout for waiting Router Advertisements in seconds. If zero (the default), a globally configured default is used. If still unspecified, the timeout depends on the sysctl settings of the device. Set to 2147483647 (MAXINT32) for infinity.
    required-timeout
    int32
    -1
    The minimum time interval in milliseconds for which dynamic IP configuration should be tried before the connection succeeds. This property is useful for example if both IPv4 and IPv6 are enabled and are allowed to fail. Normally the connection succeeds as soon as one of the two address families completes; by setting a required timeout for e.g. IPv4, one can ensure that even if IP6 succeeds earlier than IPv4, NetworkManager waits some time for IPv4 before the connection becomes active. Note that if "may-fail" is FALSE for the same address family, this property has no effect as NetworkManager needs to wait for the full DHCP timeout. A zero value means that no required timeout is present, -1 means the default value (either configuration ipvx.required-timeout override or zero).
    route-data
    array of vardict
    kernel-command-line
    array of string
    A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or if prefixed with the exclamation mark unset). The argument must either be a single word, or an assignment (i.e. two words, separated "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\\' are used for optional and mandatory matches and inverting the pattern.A list of kernel command line arguments to match. This may be used to check whether a specific kernel command line option is set (or unset, if prefixed with the exclamation mark). The argument must either be a single word, or an assignment (i.e. two words, joined by "="). In the former case the kernel command line is searched for the word appearing as is, or as left hand side of an assignment. In the latter case, the exact assignment is looked for with right and left hand side matching. Wildcard patterns are not supported. See NMSettingMatch:interface-name for how special characters '|', '&', '!' and '\\' are used for optional and mandatory matches and inverting the match.
    path