NetworkManager::Device Class

class NetworkManager::Device

This class represents a common device interface. More...

Public Types

flags Capabilities
enum Capability { IsManageable, SupportsCarrierDetect }
enum Interfaceflag { None, Up, LowerUp, Carrier }
flags Interfaceflags
List
enum MeteredStatus { UnknownStatus, Yes, No, GuessYes, GuessNo }
Ptr
enum State { UnknownState, Unmanaged, Unavailable, Disconnected, Preparing, …, Failed }
enum StateChangeReason { UnknownReason, NoReason, NowManagedReason, NowUnmanagedReason, ConfigFailedReason, …, Reserved }
enum Type { UnknownType, Ethernet, Wifi, Unused1, Unused2, …, Loopback }
flags Types

Properties

Public Functions

Device(const QString &path, QObject *parent = nullptr)
virtual ~Device() override
NetworkManager::ActiveConnection::Ptr activeConnection() const
DevIface *as()
const DevIface *as() const
bool autoconnect() const
NetworkManager::Connection::List availableConnections()
NetworkManager::Device::Capabilities capabilities() const
QVariant capabilitiesV() const
(since 5.8.0) QDBusPendingReply<> deleteInterface()
int designSpeed() const
NetworkManager::DeviceStatistics::Ptr deviceStatistics() const
NetworkManager::Dhcp4Config::Ptr dhcp4Config() const
NetworkManager::Dhcp6Config::Ptr dhcp6Config() const
QDBusPendingReply<> disconnectInterface()
QString driver() const
QString driverVersion() const
bool firmwareMissing() const
QString firmwareVersion() const
NetworkManager::Device::Interfaceflags interfaceFlags() const
QString interfaceName() const
QString ipInterfaceName() const
NetworkManager::IpConfig ipV4Config() const
NetworkManager::IpConfig ipV6Config() const
bool isActive() const
bool isValid() const
bool managed() const
(since 5.14.0) NetworkManager::Device::MeteredStatus metered() const
(since 0.9.9.0) uint mtu() const
(since 5.14.0) bool nmPluginMissing() const
(since 0.9.9.0) QString physicalPortId() const
QDBusPendingReply<> reapplyConnection(const NMVariantMapMap &connection, qulonglong version_id, uint flags)
void setAutoconnect(bool autoconnect)
NetworkManager::Device::State state() const
NetworkManager::DeviceStateReason stateReason() const
virtual NetworkManager::Device::Type type() const
QString udi() const
QString uni() const

Signals

void activeConnectionChanged()
void autoconnectChanged()
void availableConnectionAppeared(const QString &connection)
void availableConnectionChanged()
void availableConnectionDisappeared(const QString &connection)
void capabilitiesChanged()
void connectionStateChanged()
void dhcp4ConfigChanged()
void dhcp6ConfigChanged()
void driverChanged()
void driverVersionChanged()
void firmwareMissingChanged()
void firmwareVersionChanged()
(since 1.22) void interfaceFlagsChanged()
void interfaceNameChanged()
void ipInterfaceChanged()
void ipV4AddressChanged()
void ipV4ConfigChanged()
void ipV6ConfigChanged()
void managedChanged()
(since 5.14.0) void meteredChanged(NetworkManager::Device::MeteredStatus metered)
(since 0.9.9.0) void mtuChanged()
(since 5.14.0) void nmPluginMissingChanged(bool nmPluginMissing)
(since 0.9.9.0) void physicalPortIdChanged()
void stateChanged(NetworkManager::Device::State newstate, NetworkManager::Device::State oldstate, NetworkManager::Device::StateChangeReason reason)
void stateReasonChanged()
void udiChanged()

Detailed Description

Member Type Documentation

enum Device::Capability
flags Device::Capabilities

Possible device capabilities

ConstantValueDescription
NetworkManager::Device::IsManageable0x1denotes that the device can be controlled by this API
NetworkManager::Device::SupportsCarrierDetect0x2the device informs us when it is plugged in to the medium

The Capabilities type is a typedef for QFlags<Capability>. It stores an OR combination of Capability values.

enum Device::Interfaceflag
flags Device::Interfaceflags

Possible device interfaceflags

ConstantValueDescription
NetworkManager::Device::NoneNM_DEVICE_INTERFACE_FLAG_NONEno flags set
NetworkManager::Device::UpNM_DEVICE_INTERFACE_FLAG_UPCorresponds to kernel IFF_UP
NetworkManager::Device::LowerUpNM_DEVICE_INTERFACE_FLAG_LOWER_UPCorresponds to kernel IFF_LOWER_UP
NetworkManager::Device::CarrierNM_DEVICE_INTERFACE_FLAG_CARRIERthe interface has carrier

The Interfaceflags type is a typedef for QFlags<Interfaceflag>. It stores an OR combination of Interfaceflag values.

Device::List

enum Device::MeteredStatus

ConstantValueDescription
NetworkManager::Device::UnknownStatus0The device metered status is unknown.
NetworkManager::Device::Yes1The device is metered and the value was statically set.
NetworkManager::Device::No2The device is not metered and the value was statically set.
NetworkManager::Device::GuessYes3The device is metered and the value was guessed.
NetworkManager::Device::GuessNo4The device is not metered and the value was guessed.

Device::Ptr

enum Device::State

Device connection states describe the possible states of a network connection from the user's point of view. For simplicity, states from several different layers are present - this is a high level view

ConstantValueDescription
NetworkManager::Device::UnknownState0The device is in an unknown state
NetworkManager::Device::Unmanaged10The device is recognized but not managed by NetworkManager
NetworkManager::Device::Unavailable20The device cannot be used (carrier off, rfkill, etc)
NetworkManager::Device::Disconnected30The device is not connected
NetworkManager::Device::Preparing40The device is preparing to connect
NetworkManager::Device::ConfiguringHardware50The device is being configured
NetworkManager::Device::NeedAuth60The device is awaiting secrets necessary to continue connection
NetworkManager::Device::ConfiguringIp70The IP settings of the device are being requested and configured
NetworkManager::Device::CheckingIp80The device's IP connectivity ability is being determined
NetworkManager::Device::WaitingForSecondaries90The device is waiting for secondary connections to be activated
NetworkManager::Device::Activated100The device is active
NetworkManager::Device::Deactivating110The device's network connection is being torn down
NetworkManager::Device::Failed120The device is in a failure state following an attempt to activate it

enum Device::StateChangeReason

Enums describing the reason for a connection state change

Note: StateChangeReasons NewActivation, ParentChanged, ParentManagedChanged are available in runtime NM >= 1.0.4

ConstantValue
NetworkManager::Device::UnknownReason0
NetworkManager::Device::NoReason1
NetworkManager::Device::NowManagedReason2
NetworkManager::Device::NowUnmanagedReason3
NetworkManager::Device::ConfigFailedReason4
NetworkManager::Device::ConfigUnavailableReason5
NetworkManager::Device::ConfigExpiredReason6
NetworkManager::Device::NoSecretsReason7
NetworkManager::Device::AuthSupplicantDisconnectReason8
NetworkManager::Device::AuthSupplicantConfigFailedReason9
NetworkManager::Device::AuthSupplicantFailedReason10
NetworkManager::Device::AuthSupplicantTimeoutReason11
NetworkManager::Device::PppStartFailedReason12
NetworkManager::Device::PppDisconnectReason13
NetworkManager::Device::PppFailedReason14
NetworkManager::Device::DhcpStartFailedReason15
NetworkManager::Device::DhcpErrorReason16
NetworkManager::Device::DhcpFailedReason17
NetworkManager::Device::SharedStartFailedReason18
NetworkManager::Device::SharedFailedReason19
NetworkManager::Device::AutoIpStartFailedReason20
NetworkManager::Device::AutoIpErrorReason21
NetworkManager::Device::AutoIpFailedReason22
NetworkManager::Device::ModemBusyReason23
NetworkManager::Device::ModemNoDialToneReason24
NetworkManager::Device::ModemNoCarrierReason25
NetworkManager::Device::ModemDialTimeoutReason26
NetworkManager::Device::ModemDialFailedReason27
NetworkManager::Device::ModemInitFailedReason28
NetworkManager::Device::GsmApnSelectFailedReason29
NetworkManager::Device::GsmNotSearchingReason30
NetworkManager::Device::GsmRegistrationDeniedReason31
NetworkManager::Device::GsmRegistrationTimeoutReason32
NetworkManager::Device::GsmRegistrationFailedReason33
NetworkManager::Device::GsmPinCheckFailedReason34
NetworkManager::Device::FirmwareMissingReason35
NetworkManager::Device::DeviceRemovedReason36
NetworkManager::Device::SleepingReason37
NetworkManager::Device::ConnectionRemovedReason38
NetworkManager::Device::UserRequestedReason39
NetworkManager::Device::CarrierReason40
NetworkManager::Device::ConnectionAssumedReason41
NetworkManager::Device::SupplicantAvailableReason42
NetworkManager::Device::ModemNotFoundReason43
NetworkManager::Device::BluetoothFailedReason44
NetworkManager::Device::GsmSimNotInserted45
NetworkManager::Device::GsmSimPinRequired46
NetworkManager::Device::GsmSimPukRequired47
NetworkManager::Device::GsmSimWrong48
NetworkManager::Device::InfiniBandMode49
NetworkManager::Device::DependencyFailed50
NetworkManager::Device::Br2684Failed51
NetworkManager::Device::ModemManagerUnavailable52
NetworkManager::Device::SsidNotFound53
NetworkManager::Device::SecondaryConnectionFailed54
NetworkManager::Device::DcbFcoeFailed55
NetworkManager::Device::TeamdControlFailed56
NetworkManager::Device::ModemFailed57
NetworkManager::Device::ModemAvailable58
NetworkManager::Device::SimPinIncorrect59
NetworkManager::Device::NewActivation60
NetworkManager::Device::ParentChanged61
NetworkManager::Device::ParentManagedChanged62
NetworkManager::Device::Reserved65536

enum Device::Type
flags Device::Types

Device type

ConstantValueDescription
NetworkManager::Device::UnknownTypeNM_DEVICE_TYPE_UNKNOWNUnknown device type
NetworkManager::Device::EthernetNM_DEVICE_TYPE_ETHERNETIeee8023 wired ethernet
NetworkManager::Device::WifiNM_DEVICE_TYPE_WIFIthe Ieee80211 family of wireless networks
NetworkManager::Device::Unused1NM_DEVICE_TYPE_UNUSED1Currently unused
NetworkManager::Device::Unused2NM_DEVICE_TYPE_UNUSED2Currently unused
NetworkManager::Device::BluetoothNM_DEVICE_TYPE_BTnetwork bluetooth device (usually a cell phone)
NetworkManager::Device::OlpcMeshNM_DEVICE_TYPE_OLPC_MESHOLPC Mesh networking device
NetworkManager::Device::WimaxNM_DEVICE_TYPE_WIMAXWiMax WWAN technology
NetworkManager::Device::ModemNM_DEVICE_TYPE_MODEMPOTS, GSM, CDMA or LTE modems
NetworkManager::Device::InfiniBandNM_DEVICE_TYPE_INFINIBANDInfiniband network device
NetworkManager::Device::BondNM_DEVICE_TYPE_BONDBond virtual device
NetworkManager::Device::VlanNM_DEVICE_TYPE_VLANVlan virtual device
NetworkManager::Device::AdslNM_DEVICE_TYPE_ADSLADSL modem device
NetworkManager::Device::BridgeNM_DEVICE_TYPE_BRIDGEBridge virtual device
NetworkManager::Device::GenericNM_DEVICE_TYPE_GENERICGeneric device
NetworkManager::Device::TeamNM_DEVICE_TYPE_TEAMTeam master device
NetworkManager::Device::Gre16Gre virtual device. Deprecated, use IpTunnel instead
NetworkManager::Device::MacVlan17MacVlan virtual device
NetworkManager::Device::Tun18Tun virtual device
NetworkManager::Device::Veth19Veth virtual device
NetworkManager::Device::IpTunnel20IP Tunneling Device
NetworkManager::Device::VxLan21Vxlan Device
NetworkManager::Device::MacSec22MacSec Device
NetworkManager::Device::Dummy23Dummy Device
NetworkManager::Device::Ppp24Ppp Device
NetworkManager::Device::OvsInterface25OvsInterface Device
NetworkManager::Device::OvsPort26OvsPort Device
NetworkManager::Device::OvsBridge27OvsBridge Device
NetworkManager::Device::Wpan28Wpan Device
NetworkManager::Device::Lowpan29Lowpan Device
NetworkManager::Device::WireGuard30WireGuard Device
NetworkManager::Device::WifiP2P31WifiP2P Device
NetworkManager::Device::VRF32VRF (Virtual Routing and Forwarding) Device
NetworkManager::Device::Loopback33Loopback Device

The Types type is a typedef for QFlags<Type>. It stores an OR combination of Type values.

Property Documentation

[read-only] InterfaceFlags : const Interfaceflags

Access functions:

NetworkManager::Device::Interfaceflags interfaceFlags() const

autoconnect : bool

Access functions:

bool autoconnect() const
void setAutoconnect(bool autoconnect)

[read-only] deviceStatistics : const NetworkManager::DeviceStatistics::Ptr

Access functions:

NetworkManager::DeviceStatistics::Ptr deviceStatistics() const

[read-only] driver : const QString

Access functions:

QString driver() const

[read-only] driverVersion : const QString

Access functions:

QString driverVersion() const

[read-only] firmwareMissing : const bool

Access functions:

bool firmwareMissing() const

[read-only] firmwareVersion : const QString

Access functions:

QString firmwareVersion() const

[read-only] genericCapabilities : const QVariant

Access functions:

QVariant capabilitiesV() const

[read-only] interfaceName : const QString

Access functions:

QString interfaceName() const

[read-only] ipInterfaceName : const QString

Access functions:

QString ipInterfaceName() const

[read-only] ipV4Address : const QHostAddress

[read-only] managed : const bool

Access functions:

bool managed() const

[read-only] metered : const MeteredStatus

Access functions:

NetworkManager::Device::MeteredStatus metered() const

[read-only] mtu : const uint

Access functions:

uint mtu() const

[read-only] nmPluginMissing : const bool

Access functions:

bool nmPluginMissing() const

[read-only] state : const State

Access functions:

NetworkManager::Device::State state() const

[read-only] stateReason : const DeviceStateReason

Access functions:

NetworkManager::DeviceStateReason stateReason() const

[read-only] udi : const QString

Access functions:

QString udi() const

[read-only] uni : const QString

Access functions:

QString uni() const

Member Function Documentation

[explicit] Device::Device(const QString &path, QObject *parent = nullptr)

Creates a new device object.

path UNI of the device

[override virtual noexcept] Device::~Device()

Destroys a device object.

NetworkManager::ActiveConnection::Ptr Device::activeConnection() const

The current active connection for this device

Returns A valid ActiveConnection object or NULL if no active connection was found

[signal] void Device::activeConnectionChanged()

Emitted when the autoconnect of this network has changed.

template <typename DevIface> DevIface *Device::as()

Retrieves a specialized interface to interact with the device corresponding to a given device interface.

Returns a pointer to the device interface if it exists, 0 otherwise

template <typename DevIface> const DevIface *Device::as() const

Retrieves a specialized interface to interact with the device corresponding to a given device interface.

Returns a pointer to the device interface if it exists, 0 otherwise

bool Device::autoconnect() const

If the device is allowed to autoconnect.

Note: Getter function for property autoconnect.

See also setAutoconnect().

[signal] void Device::autoconnectChanged()

Emitted when the autoconnect of this network has changed.

[signal] void Device::availableConnectionAppeared(const QString &connection)

Emitted when a new connection is available

[signal] void Device::availableConnectionChanged()

Emitted when the list of avaiable connections of this network has changed.

[signal] void Device::availableConnectionDisappeared(const QString &connection)

Emitted when the connection is no longer available

NetworkManager::Connection::List Device::availableConnections()

Returns available connections for this device

Returns List of availables connection

NetworkManager::Device::Capabilities Device::capabilities() const

Retrieves the capabilities supported by this device.

Returns the capabilities of the device

[signal] void Device::capabilitiesChanged()

Emitted when the capabilities of this network has changed.

QVariant Device::capabilitiesV() const

Note: Getter function for property genericCapabilities.

[signal] void Device::connectionStateChanged()

Emitted when the connection state of this network has changed.

[since 5.8.0] QDBusPendingReply<> Device::deleteInterface()

Deletes a software device from NetworkManager and removes the interface from the system. The method returns an error when called for a hardware device.

This function was introduced in 5.8.0.

int Device::designSpeed() const

Retrieves the maximum speed as reported by the device. Note that this is only a design related piece of information, and that the device might not reach this maximum.

Returns the device's maximum speed

NetworkManager::DeviceStatistics::Ptr Device::deviceStatistics() const

Returns Device Statistics interface

Note: Getter function for property deviceStatistics.

NetworkManager::Dhcp4Config::Ptr Device::dhcp4Config() const

Get the DHCP options returned by the DHCP server or a null pointer if the device is not Activated or does not use DHCP configuration.

[signal] void Device::dhcp4ConfigChanged()

Emitted when the DHCP configuration for IPv4 of this network has changed.

NetworkManager::Dhcp6Config::Ptr Device::dhcp6Config() const

Get the DHCP options returned by the DHCP server or a null pointer if the device is not Activated or does not use DHCP configuration.

[signal] void Device::dhcp6ConfigChanged()

Emitted when the DHCP configuration for IPv6 of this network has changed.

QDBusPendingReply<> Device::disconnectInterface()

Disconnects a device and prevents the device from automatically activating further connections without user intervention.

QString Device::driver() const

Handle for the system driver controlling this network interface

Note: Getter function for property driver.

[signal] void Device::driverChanged()

Emitted when the driver of this network has changed.

QString Device::driverVersion() const

The driver version.

Note: Getter function for property driverVersion.

[signal] void Device::driverVersionChanged()

Emitted when the driver version of this network has changed.

bool Device::firmwareMissing() const

Is the firmware needed by the device missing?

Note: Getter function for property firmwareMissing.

[signal] void Device::firmwareMissingChanged()

Emitted when the firmware missing state of this network has changed.

QString Device::firmwareVersion() const

The firmware version.

Note: Getter function for property firmwareVersion.

[signal] void Device::firmwareVersionChanged()

Emitted when the firmware version of this network has changed.

NetworkManager::Device::Interfaceflags Device::interfaceFlags() const

The up or down flag for the device

Note: Getter function for property InterfaceFlags.

[signal, since 1.22] void Device::interfaceFlagsChanged()

Emitted when the up or down state of the device

Note: will always return NM_DEVICE_INTERFACE_FLAG_NONE when runtime NM < 1.22

This function was introduced in 1.22.

QString Device::interfaceName() const

The system name for the network device

Note: Getter function for property interfaceName.

[signal] void Device::interfaceNameChanged()

Emitted when the interface name of this network has changed.

[signal] void Device::ipInterfaceChanged()

Emitted when the ip interface name of this network has changed.

QString Device::ipInterfaceName() const

The name of the device's data interface when available. This property may not refer to the actual data interface until the device has successfully established a data connection, indicated by the device's state() becoming ACTIVATED.

Note: Getter function for property ipInterfaceName.

[signal] void Device::ipV4AddressChanged()

Emitted when the IPv4 address of this network has changed.

NetworkManager::IpConfig Device::ipV4Config() const

Get the current IPv4 configuration of this device. Only valid when device is Activated.

[signal] void Device::ipV4ConfigChanged()

Emitted when the IPv4 configuration of this network has changed.

NetworkManager::IpConfig Device::ipV6Config() const

Get the current IPv6 configuration of this device. Only valid when device is Activated.

[signal] void Device::ipV6ConfigChanged()

Emitted when the IPv6 configuration of this network has changed.

bool Device::isActive() const

Retrieves the activation status of this network interface.

Returns true if this network interface is active, false otherwise

bool Device::isValid() const

Retrieves the device is valid.

Returns true if this device interface is valid, false otherwise

bool Device::managed() const

Is the device currently being managed by NetworkManager?

Note: Getter function for property managed.

[signal] void Device::managedChanged()

Emitted when the managed state of this network has changed.

[since 5.14.0] NetworkManager::Device::MeteredStatus Device::metered() const

Returns Whether the amount of traffic flowing through the device is subject to limitations, for example set by service providers.

Note: Getter function for property metered.

This function was introduced in 5.14.0.

[signal, since 5.14.0] void Device::meteredChanged(NetworkManager::Device::MeteredStatus metered)

Emitted when metered property has changed

This function was introduced in 5.14.0.

See also metered.

[since 0.9.9.0] uint Device::mtu() const

The device MTU (maximum transmission unit)

Note: Getter function for property mtu.

This function was introduced in 0.9.9.0.

[signal, since 0.9.9.0] void Device::mtuChanged()

Emitted when the maximum transmission unit has changed

This function was introduced in 0.9.9.0.

[since 5.14.0] bool Device::nmPluginMissing() const

Returns If TRUE, indicates the NetworkManager plugin for the device is likely missing or misconfigured.

Note: Getter function for property nmPluginMissing.

This function was introduced in 5.14.0.

[signal, since 5.14.0] void Device::nmPluginMissingChanged(bool nmPluginMissing)

Emitted when NmPluginMissing property has changed

This function was introduced in 5.14.0.

See also nmPluginMissing.

[since 0.9.9.0] QString Device::physicalPortId() const

Returns If non-empty, an (opaque) indicator of the physical network port associated with the device. This can be used to recognize when two seemingly-separate hardware devices are actually just different virtual interfaces to the same physical port.

This function was introduced in 0.9.9.0.

[signal, since 0.9.9.0] void Device::physicalPortIdChanged()

Emitted when the physical port ID changes.

This function was introduced in 0.9.9.0.

See also physicalPortId().

QDBusPendingReply<> Device::reapplyConnection(const NMVariantMapMap &connection, qulonglong version_id, uint flags)

Reapplies connection settings on the interface.

void Device::setAutoconnect(bool autoconnect)

If true, indicates the device is allowed to autoconnect. If false, manual intervention is required before the device will automatically connect to a known network, such as activating a connection using the device, or setting this property to true.

Note: Setter function for property autoconnect.

See also autoconnect().

NetworkManager::Device::State Device::state() const

Retrieves the current state of the device. This is a high level view of the device. It is user oriented, so actually it provides state coming from different layers.

Returns the current connection state

Note: Getter function for property state.

See also Device::State.

[signal] void Device::stateChanged(NetworkManager::Device::State newstate, NetworkManager::Device::State oldstate, NetworkManager::Device::StateChangeReason reason)

This signal is emitted when the device's link status changed.

newstate the new state of the connection

oldstate the previous state of the connection

reason the reason for the state change, if any. ReasonNone where the backend provides no reason.

See also Device::State and Device::StateChangeReason.

NetworkManager::DeviceStateReason Device::stateReason() const

The current state and reason for changing to that state.

Note: Getter function for property stateReason.

[signal] void Device::stateReasonChanged()

Emitted when the state reason of this network has changed.

[virtual] NetworkManager::Device::Type Device::type() const

Retrieves the interface type. This is a virtual function that will return the proper type of all sub-classes.

Returns the NetworkManager::Device::Type that corresponds to this device.

QString Device::udi() const

Retrieves the Unique Device Identifier (UDI) of the device. This identifier is unique for each device in the system.

Note: Getter function for property udi.

[signal] void Device::udiChanged()

Emitted when the Unique Device Identifier of this device has changed.

QString Device::uni() const

Retrieves the Unique Network Identifier (UNI) of the device. This identifier is unique for each network and network interface in the system.

Returns the Unique Network Identifier of the current device

Note: Getter function for property uni.