ns2 0.2.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ns2/__init__.py +0 -0
- ns2/core.py +0 -0
- ns2/dbus/__init__.py +0 -0
- ns2/dbus/dbus.py +13 -0
- ns2/lib/__init__.py +0 -0
- ns2/lib/accounts.py +130 -0
- ns2/lib/commands.py +32 -0
- ns2/lib/firewalld.py +167 -0
- ns2/lib/introspection/org.fedoraproject.FirewallD1.config.xml +3 -0
- ns2/lib/introspection/org.fedoraproject.FirewallD1.xml +763 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.AccessPoint.xml +106 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.AgentManager.xml +43 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Checkpoint.xml +36 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Connection.Active.xml +185 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP4Config.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DHCP6Config.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Adsl.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bluetooth.xml +36 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bond.xml +40 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Bridge.xml +41 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Dummy.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Generic.xml +27 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Hsr.xml +51 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.IPTunnel.xml +107 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Infiniband.xml +31 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml +38 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Loopback.xml +8 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Lowpan.xml +27 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macsec.xml +109 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Macvlan.xml +39 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Modem.xml +62 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OlpcMesh.xml +34 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsBridge.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsInterface.xml +11 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.OvsPort.xml +21 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Ppp.xml +11 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Statistics.xml +35 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Team.xml +48 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Tun.xml +65 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Veth.xml +18 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vlan.xml +45 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vrf.xml +18 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Vxlan.xml +139 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WiMax.xml +109 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WifiP2P.xml +76 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.WireGuard.xml +38 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wired.xml +53 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wireless.xml +131 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.Wpan.xml +20 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Device.xml +407 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.DnsManager.xml +40 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.IP4Config.xml +125 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.IP6Config.xml +95 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.PPP.xml +34 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.SecretAgent.xml +94 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.Connection.xml +224 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.Settings.xml +233 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml +42 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.VPN.Plugin.xml +204 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.WiMax.Nsp.xml +35 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.WifiP2PPeer.xml +91 -0
- ns2/lib/introspection/org.freedesktop.NetworkManager.xml +598 -0
- ns2/lib/lib.py +0 -0
- ns2/lib/network_delay.py +92 -0
- ns2/lib/networking.py +528 -0
- ns2/lib/ntl.py +188 -0
- ns2/lib/pam_client.py +37 -0
- ns2/lib/ping_data_collector.py +37 -0
- ns2/lib/snmp.py +511 -0
- ns2/lib/socket.py +132 -0
- ns2/lib/socket_client.py +62 -0
- ns2/lib/systemd.py +151 -0
- ns2/lib/test.py +374 -0
- ns2/lib/udp_client.py +227 -0
- ns2/lib/udp_server.py +167 -0
- ns2/snmp/__init__.py +0 -0
- ns2/snmp/ns_dbus_service.py +38 -0
- ns2/snmp/pam_interface.py +19 -0
- ns2/snmp/snmp_interface.py +66 -0
- ns2/ui/__init__.py +0 -0
- ns2/ui/assets/NOVUS_LOGO.svg +105 -0
- ns2/ui/assets/favicon.png +0 -0
- ns2/ui/firewalld_page.py +375 -0
- ns2/ui/fpga_page.py +24 -0
- ns2/ui/login.py +65 -0
- ns2/ui/main.py +200 -0
- ns2/ui/networking_page.py +406 -0
- ns2/ui/ntp.py +105 -0
- ns2/ui/root.py +31 -0
- ns2/ui/snmp_page.py +353 -0
- ns2/ui/terminal.py +65 -0
- ns2/ui/tests_page.py +116 -0
- ns2/ui/theme.py +25 -0
- ns2/utils.py +5 -0
- ns2-0.2.6.dist-info/METADATA +78 -0
- ns2-0.2.6.dist-info/RECORD +98 -0
- ns2-0.2.6.dist-info/WHEEL +4 -0
- ns2-0.2.6.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.AccessPoint:
|
|
5
|
+
@short_description: Wi-Fi Access Point.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.AccessPoint">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Flags:
|
|
12
|
+
|
|
13
|
+
Flags describing the capabilities of the access point.
|
|
14
|
+
|
|
15
|
+
Returns: <link linkend="NM80211ApFlags">NM80211ApFlags</link>
|
|
16
|
+
-->
|
|
17
|
+
<property name="Flags" type="u" access="read"/>
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
WpaFlags:
|
|
21
|
+
|
|
22
|
+
Flags describing the access point's capabilities according to WPA (Wifi
|
|
23
|
+
Protected Access).
|
|
24
|
+
|
|
25
|
+
Returns: <link linkend="NM80211ApSecurityFlags">NM80211ApSecurityFlags</link>
|
|
26
|
+
-->
|
|
27
|
+
<property name="WpaFlags" type="u" access="read"/>
|
|
28
|
+
|
|
29
|
+
<!--
|
|
30
|
+
RsnFlags:
|
|
31
|
+
|
|
32
|
+
Flags describing the access point's capabilities according to the RSN
|
|
33
|
+
(Robust Secure Network) protocol.
|
|
34
|
+
|
|
35
|
+
Returns: <link linkend="NM80211ApSecurityFlags">NM80211ApSecurityFlags</link>
|
|
36
|
+
-->
|
|
37
|
+
<property name="RsnFlags" type="u" access="read"/>
|
|
38
|
+
|
|
39
|
+
<!--
|
|
40
|
+
Ssid:
|
|
41
|
+
|
|
42
|
+
The Service Set Identifier identifying the access point.
|
|
43
|
+
-->
|
|
44
|
+
<property name="Ssid" type="ay" access="read">
|
|
45
|
+
<!-- gdbus-codegen assumes that "ay" means "non-UTF-8 string" and
|
|
46
|
+
won't deal with '\0' bytes correctly.
|
|
47
|
+
-->
|
|
48
|
+
<annotation name="org.gtk.GDBus.C.ForceGVariant" value="1"/>
|
|
49
|
+
</property>
|
|
50
|
+
|
|
51
|
+
<!--
|
|
52
|
+
Frequency:
|
|
53
|
+
|
|
54
|
+
The radio channel frequency in use by the access point, in MHz.
|
|
55
|
+
-->
|
|
56
|
+
<property name="Frequency" type="u" access="read"/>
|
|
57
|
+
|
|
58
|
+
<!--
|
|
59
|
+
HwAddress:
|
|
60
|
+
|
|
61
|
+
The hardware address (BSSID) of the access point.
|
|
62
|
+
-->
|
|
63
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
64
|
+
|
|
65
|
+
<!--
|
|
66
|
+
Mode:
|
|
67
|
+
|
|
68
|
+
Describes the operating mode of the access point.
|
|
69
|
+
|
|
70
|
+
Returns: <link linkend="NM80211Mode">NM80211Mode</link>
|
|
71
|
+
-->
|
|
72
|
+
<property name="Mode" type="u" access="read"/>
|
|
73
|
+
|
|
74
|
+
<!--
|
|
75
|
+
MaxBitrate:
|
|
76
|
+
|
|
77
|
+
The maximum bitrate this access point is capable of, in kilobits/second
|
|
78
|
+
(Kb/s).
|
|
79
|
+
-->
|
|
80
|
+
<property name="MaxBitrate" type="u" access="read"/>
|
|
81
|
+
|
|
82
|
+
<!--
|
|
83
|
+
Bandwidth:
|
|
84
|
+
|
|
85
|
+
The bandwidth announced by the access point in MHz.
|
|
86
|
+
-->
|
|
87
|
+
<property name="Bandwidth" type="u" access="read"/>
|
|
88
|
+
|
|
89
|
+
<!--
|
|
90
|
+
Strength:
|
|
91
|
+
|
|
92
|
+
The current signal quality of the access point, in percent.
|
|
93
|
+
-->
|
|
94
|
+
<property name="Strength" type="y" access="read"/>
|
|
95
|
+
|
|
96
|
+
<!--
|
|
97
|
+
LastSeen:
|
|
98
|
+
|
|
99
|
+
The timestamp (in CLOCK_BOOTTIME seconds) for the last time the access
|
|
100
|
+
point was found in scan results. A value of -1 means the access point has
|
|
101
|
+
never been found in scan results.
|
|
102
|
+
-->
|
|
103
|
+
<property name="LastSeen" type="i" access="read"/>
|
|
104
|
+
|
|
105
|
+
</interface>
|
|
106
|
+
</node>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/org/freedesktop/NetworkManager/AgentManager">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.AgentManager:
|
|
5
|
+
@short_description: Secret Agent Manager.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.AgentManager">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Register:
|
|
12
|
+
@identifier: Identifies this agent; only one agent in each user session may use the same identifier. Identifier formatting follows the same rules as D-Bus bus names with the exception that the ':' character is not allowed. The valid set of characters is "[A-Z][a-z][0-9]_-." and the identifier is limited in length to 255 characters with a minimum of 3 characters. An example valid identifier is 'org.gnome.nm-applet' (without quotes).
|
|
13
|
+
|
|
14
|
+
Called by secret Agents to register their ability to provide and save
|
|
15
|
+
network secrets.
|
|
16
|
+
-->
|
|
17
|
+
<method name="Register">
|
|
18
|
+
<arg name="identifier" type="s" direction="in"/>
|
|
19
|
+
</method>
|
|
20
|
+
|
|
21
|
+
<!--
|
|
22
|
+
RegisterWithCapabilities:
|
|
23
|
+
@identifier: See the Register() method's identifier argument.
|
|
24
|
+
@capabilities: (<link linkend="NMSecretAgentCapabilities">NMSecretAgentCapabilities</link>) Indicates various agent capabilities to NetworkManager.
|
|
25
|
+
|
|
26
|
+
Like Register() but indicates agent capabilities to NetworkManager.
|
|
27
|
+
-->
|
|
28
|
+
<method name="RegisterWithCapabilities">
|
|
29
|
+
<arg name="identifier" type="s" direction="in"/>
|
|
30
|
+
<arg name="capabilities" type="u" direction="in"/>
|
|
31
|
+
</method>
|
|
32
|
+
|
|
33
|
+
<!--
|
|
34
|
+
Unregister:
|
|
35
|
+
|
|
36
|
+
Called by secret Agents to notify NetworkManager that they will no longer
|
|
37
|
+
handle requests for network secrets. Agents are automatically unregistered
|
|
38
|
+
when they disconnect from D-Bus.
|
|
39
|
+
-->
|
|
40
|
+
<method name="Unregister"/>
|
|
41
|
+
|
|
42
|
+
</interface>
|
|
43
|
+
</node>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
|
|
4
|
+
<!--
|
|
5
|
+
org.freedesktop.NetworkManager.Checkpoint:
|
|
6
|
+
@short_description: Configuration and State Snapshot.
|
|
7
|
+
|
|
8
|
+
A snapshot of NetworkManager state for a given device list
|
|
9
|
+
-->
|
|
10
|
+
<interface name="org.freedesktop.NetworkManager.Checkpoint">
|
|
11
|
+
<annotation name="org.gtk.GDBus.C.Name" value="Checkpoint"/>
|
|
12
|
+
|
|
13
|
+
<!--
|
|
14
|
+
Devices:
|
|
15
|
+
|
|
16
|
+
Array of object paths for devices which are part of this
|
|
17
|
+
checkpoint.
|
|
18
|
+
-->
|
|
19
|
+
<property name="Devices" type="ao" access="read"/>
|
|
20
|
+
|
|
21
|
+
<!--
|
|
22
|
+
Created:
|
|
23
|
+
|
|
24
|
+
The timestamp (in CLOCK_BOOTTIME milliseconds) of checkpoint creation.
|
|
25
|
+
-->
|
|
26
|
+
<property name="Created" type="x" access="read"/>
|
|
27
|
+
|
|
28
|
+
<!--
|
|
29
|
+
RollbackTimeout:
|
|
30
|
+
|
|
31
|
+
Timeout in seconds for automatic rollback, or zero.
|
|
32
|
+
-->
|
|
33
|
+
<property name="RollbackTimeout" type="u" access="read"/>
|
|
34
|
+
|
|
35
|
+
</interface>
|
|
36
|
+
</node>
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
|
|
4
|
+
<!--
|
|
5
|
+
org.freedesktop.NetworkManager.Connection.Active:
|
|
6
|
+
@short_description: Active Connection.
|
|
7
|
+
|
|
8
|
+
Objects that implement the Connection.Active interface represent an
|
|
9
|
+
attempt to connect to a network using the details provided by a Connection
|
|
10
|
+
object. The Connection.Active object tracks the life-cycle of the
|
|
11
|
+
connection attempt and if successful indicates whether the connected
|
|
12
|
+
network is the "default" or preferred network for access. NetworkManager
|
|
13
|
+
has the concept of connections, which can be thought of as settings, a
|
|
14
|
+
profile or a configuration that can be applied on a networking device.
|
|
15
|
+
Such settings-connections are exposed as D-Bus object and the
|
|
16
|
+
active-connection expresses this relationship between device and
|
|
17
|
+
settings-connection. At any time a settings-connection can only be
|
|
18
|
+
activated on one device and vice versa. However, during activation and
|
|
19
|
+
deactivation multiple active-connections can reference the same device or
|
|
20
|
+
settings-connection as they are waiting to be activated or to be
|
|
21
|
+
deactivated.
|
|
22
|
+
-->
|
|
23
|
+
<interface name="org.freedesktop.NetworkManager.Connection.Active">
|
|
24
|
+
<annotation name="org.gtk.GDBus.C.Name" value="ActiveConnection"/>
|
|
25
|
+
|
|
26
|
+
<!--
|
|
27
|
+
Connection:
|
|
28
|
+
|
|
29
|
+
The path of the connection.
|
|
30
|
+
-->
|
|
31
|
+
<property name="Connection" type="o" access="read"/>
|
|
32
|
+
|
|
33
|
+
<!--
|
|
34
|
+
SpecificObject:
|
|
35
|
+
|
|
36
|
+
A specific object associated with the active connection. This property
|
|
37
|
+
reflects the specific object used during connection activation, and will
|
|
38
|
+
not change over the lifetime of the ActiveConnection once set.
|
|
39
|
+
-->
|
|
40
|
+
<property name="SpecificObject" type="o" access="read"/>
|
|
41
|
+
|
|
42
|
+
<!--
|
|
43
|
+
Id:
|
|
44
|
+
|
|
45
|
+
The ID of the connection, provided as a convenience so that clients do not
|
|
46
|
+
have to retrieve all connection details.
|
|
47
|
+
-->
|
|
48
|
+
<property name="Id" type="s" access="read"/>
|
|
49
|
+
|
|
50
|
+
<!--
|
|
51
|
+
Uuid:
|
|
52
|
+
|
|
53
|
+
The UUID of the connection, provided as a convenience so that clients do
|
|
54
|
+
not have to retrieve all connection details.
|
|
55
|
+
-->
|
|
56
|
+
<property name="Uuid" type="s" access="read"/>
|
|
57
|
+
|
|
58
|
+
<!--
|
|
59
|
+
Type:
|
|
60
|
+
|
|
61
|
+
The type of the connection, provided as a convenience so that clients do
|
|
62
|
+
not have to retrieve all connection details.
|
|
63
|
+
-->
|
|
64
|
+
<property name="Type" type="s" access="read"/>
|
|
65
|
+
|
|
66
|
+
<!--
|
|
67
|
+
Devices:
|
|
68
|
+
|
|
69
|
+
Array of object paths representing devices which are part of this active
|
|
70
|
+
connection.
|
|
71
|
+
-->
|
|
72
|
+
<property name="Devices" type="ao" access="read"/>
|
|
73
|
+
|
|
74
|
+
<!--
|
|
75
|
+
State:
|
|
76
|
+
|
|
77
|
+
The state of this active connection.
|
|
78
|
+
|
|
79
|
+
Returns: <link linkend="NMActiveConnectionState">NMActiveConnectionState</link>
|
|
80
|
+
-->
|
|
81
|
+
<property name="State" type="u" access="read"/>
|
|
82
|
+
|
|
83
|
+
<!--
|
|
84
|
+
StateFlags:
|
|
85
|
+
|
|
86
|
+
The state flags of this active connection.
|
|
87
|
+
|
|
88
|
+
Returns: <link linkend="NMActivationStateFlags">NMActivationStateFlags</link>
|
|
89
|
+
-->
|
|
90
|
+
<property name="StateFlags" type="u" access="read"/>
|
|
91
|
+
|
|
92
|
+
<!--
|
|
93
|
+
StateChanged:
|
|
94
|
+
@state: (<link linkend="NMActiveConnectionState">NMActiveConnectionState</link>) The new state of the active connection.
|
|
95
|
+
@reason: (<link linkend="NMActiveConnectionStateReason">NMActiveConnectionStateReason</link>) Reason code describing the change to the new state.
|
|
96
|
+
@since: 1.8
|
|
97
|
+
|
|
98
|
+
Emitted when the state of the active connection has changed.
|
|
99
|
+
|
|
100
|
+
-->
|
|
101
|
+
<signal name="StateChanged">
|
|
102
|
+
<arg name="state" type="u"/>
|
|
103
|
+
<arg name="reason" type="u"/>
|
|
104
|
+
</signal>
|
|
105
|
+
|
|
106
|
+
<!--
|
|
107
|
+
Default:
|
|
108
|
+
|
|
109
|
+
Whether this active connection is the default IPv4 connection, i.e.
|
|
110
|
+
whether it currently owns the default IPv4 route.
|
|
111
|
+
-->
|
|
112
|
+
<property name="Default" type="b" access="read"/>
|
|
113
|
+
|
|
114
|
+
<!--
|
|
115
|
+
Ip4Config:
|
|
116
|
+
|
|
117
|
+
Object path of the Ip4Config object describing the configuration of the
|
|
118
|
+
connection. Only valid when the connection is in the
|
|
119
|
+
NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
|
|
120
|
+
-->
|
|
121
|
+
<property name="Ip4Config" type="o" access="read"/>
|
|
122
|
+
|
|
123
|
+
<!--
|
|
124
|
+
Dhcp4Config:
|
|
125
|
+
|
|
126
|
+
Object path of the Dhcp4Config object describing the DHCP options returned
|
|
127
|
+
by the DHCP server (assuming the connection used DHCP). Only valid when
|
|
128
|
+
the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
|
|
129
|
+
-->
|
|
130
|
+
<property name="Dhcp4Config" type="o" access="read"/>
|
|
131
|
+
|
|
132
|
+
<!--
|
|
133
|
+
Default6:
|
|
134
|
+
|
|
135
|
+
Whether this active connection is the default IPv6 connection, i.e.
|
|
136
|
+
whether it currently owns the default IPv6 route.
|
|
137
|
+
-->
|
|
138
|
+
<property name="Default6" type="b" access="read"/>
|
|
139
|
+
|
|
140
|
+
<!--
|
|
141
|
+
Ip6Config:
|
|
142
|
+
|
|
143
|
+
Object path of the Ip6Config object describing the configuration of the
|
|
144
|
+
connection. Only valid when the connection is in the
|
|
145
|
+
NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
|
|
146
|
+
-->
|
|
147
|
+
<property name="Ip6Config" type="o" access="read"/>
|
|
148
|
+
|
|
149
|
+
<!--
|
|
150
|
+
Dhcp6Config:
|
|
151
|
+
|
|
152
|
+
Object path of the Dhcp6Config object describing the DHCP options returned
|
|
153
|
+
by the DHCP server (assuming the connection used DHCP). Only valid when
|
|
154
|
+
the connection is in the NM_ACTIVE_CONNECTION_STATE_ACTIVATED state.
|
|
155
|
+
-->
|
|
156
|
+
<property name="Dhcp6Config" type="o" access="read"/>
|
|
157
|
+
|
|
158
|
+
<!--
|
|
159
|
+
Vpn:
|
|
160
|
+
|
|
161
|
+
Whether this active connection is also a VPN connection.
|
|
162
|
+
-->
|
|
163
|
+
<property name="Vpn" type="b" access="read"/>
|
|
164
|
+
|
|
165
|
+
<!--
|
|
166
|
+
Controller:
|
|
167
|
+
@Since: 1.44
|
|
168
|
+
|
|
169
|
+
The path to the controller device if the connection is a port. This
|
|
170
|
+
property replaces the deprecated 'Master' property.
|
|
171
|
+
-->
|
|
172
|
+
<property name="Controller" type="o" access="read"/>
|
|
173
|
+
|
|
174
|
+
<!--
|
|
175
|
+
Master:
|
|
176
|
+
|
|
177
|
+
The path to the controller device if the connection is a port.
|
|
178
|
+
|
|
179
|
+
DEPRECATED. This property is deprecated in favor of the 'Controller'
|
|
180
|
+
property since 1.44.
|
|
181
|
+
-->
|
|
182
|
+
<property name="Master" type="o" access="read"/>
|
|
183
|
+
|
|
184
|
+
</interface>
|
|
185
|
+
</node>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
|
|
4
|
+
<!--
|
|
5
|
+
org.freedesktop.NetworkManager.DHCP4Config:
|
|
6
|
+
@short_description: IPv4 DHCP Client State.
|
|
7
|
+
|
|
8
|
+
Options and configuration returned by the IPv4 DHCP server.
|
|
9
|
+
-->
|
|
10
|
+
<interface name="org.freedesktop.NetworkManager.DHCP4Config">
|
|
11
|
+
<annotation name="org.gtk.GDBus.C.Name" value="Dhcp4Config"/>
|
|
12
|
+
|
|
13
|
+
<!--
|
|
14
|
+
Options:
|
|
15
|
+
|
|
16
|
+
Configuration options returned by a DHCP server, if any.
|
|
17
|
+
-->
|
|
18
|
+
<property name="Options" type="a{sv}" access="read"/>
|
|
19
|
+
|
|
20
|
+
</interface>
|
|
21
|
+
</node>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
|
|
4
|
+
<!--
|
|
5
|
+
org.freedesktop.NetworkManager.DHCP6Config:
|
|
6
|
+
@short_description: IPv6 DHCP Client State.
|
|
7
|
+
|
|
8
|
+
Options and configuration returned by the IPv6 DHCP server.
|
|
9
|
+
-->
|
|
10
|
+
<interface name="org.freedesktop.NetworkManager.DHCP6Config">
|
|
11
|
+
<annotation name="org.gtk.GDBus.C.Name" value="Dhcp6Config"/>
|
|
12
|
+
|
|
13
|
+
<!--
|
|
14
|
+
Options:
|
|
15
|
+
|
|
16
|
+
Configuration options returned by a DHCP server, if any.
|
|
17
|
+
-->
|
|
18
|
+
<property name="Options" type="a{sv}" access="read"/>
|
|
19
|
+
</interface>
|
|
20
|
+
</node>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Adsl:
|
|
5
|
+
@short_description: ADSL Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Adsl">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Carrier:
|
|
12
|
+
|
|
13
|
+
Indicates whether the physical carrier is found.
|
|
14
|
+
|
|
15
|
+
DEPRECATED: check for the "carrier" flag in the "InterfaceFlags"
|
|
16
|
+
property on the "org.freedesktop.NetworkManager.Device" interface.
|
|
17
|
+
-->
|
|
18
|
+
<property name="Carrier" type="b" access="read"/>
|
|
19
|
+
|
|
20
|
+
</interface>
|
|
21
|
+
</node>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Bluetooth:
|
|
5
|
+
@short_description: Bluetooth Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Bluetooth">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
Bluetooth hardware address of the device.
|
|
14
|
+
|
|
15
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
16
|
+
-->
|
|
17
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
Name:
|
|
21
|
+
|
|
22
|
+
Bluetooth name of the device.
|
|
23
|
+
-->
|
|
24
|
+
<property name="Name" type="s" access="read"/>
|
|
25
|
+
|
|
26
|
+
<!--
|
|
27
|
+
BtCapabilities:
|
|
28
|
+
|
|
29
|
+
Bluetooth capabilities of the device (either DUN or NAP).
|
|
30
|
+
|
|
31
|
+
Returns: <link linkend="NMBluetoothCapabilities">NMBluetoothCapabilities</link>
|
|
32
|
+
-->
|
|
33
|
+
<property name="BtCapabilities" type="u" access="read"/>
|
|
34
|
+
|
|
35
|
+
</interface>
|
|
36
|
+
</node>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Bond:
|
|
5
|
+
@short_description: Bonding Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Bond">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
Hardware address of the device.
|
|
14
|
+
n
|
|
15
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
16
|
+
-->
|
|
17
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
Carrier:
|
|
21
|
+
|
|
22
|
+
Indicates whether the physical carrier is found (e.g. whether a cable is
|
|
23
|
+
plugged in or not).
|
|
24
|
+
|
|
25
|
+
DEPRECATED: check for the "lower-up" flag in the "InterfaceFlags"
|
|
26
|
+
property on the "org.freedesktop.NetworkManager.Device" interface.
|
|
27
|
+
-->
|
|
28
|
+
<property name="Carrier" type="b" access="read"/>
|
|
29
|
+
|
|
30
|
+
<!--
|
|
31
|
+
Slaves:
|
|
32
|
+
|
|
33
|
+
DEPRECATED. Use the "Ports" property in
|
|
34
|
+
"org.freedesktop.NetworkManager.Device" instead which exists since
|
|
35
|
+
version NetworkManager 1.34.0.
|
|
36
|
+
-->
|
|
37
|
+
<property name="Slaves" type="ao" access="read"/>
|
|
38
|
+
|
|
39
|
+
</interface>
|
|
40
|
+
</node>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Bridge:
|
|
5
|
+
@short_description: Bridging Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Bridge">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
Hardware address of the device.
|
|
14
|
+
n
|
|
15
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
16
|
+
-->
|
|
17
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
Carrier:
|
|
21
|
+
|
|
22
|
+
Indicates whether the physical carrier is found (e.g. whether a cable is
|
|
23
|
+
plugged in or not).
|
|
24
|
+
|
|
25
|
+
DEPRECATED: check for the "carrier" flag in the "InterfaceFlags"
|
|
26
|
+
property on the "org.freedesktop.NetworkManager.Device" interface.
|
|
27
|
+
-->
|
|
28
|
+
<property name="Carrier" type="b" access="read"/>
|
|
29
|
+
|
|
30
|
+
<!--
|
|
31
|
+
Slaves:
|
|
32
|
+
|
|
33
|
+
DEPRECATED. Use the "Ports" property in
|
|
34
|
+
"org.freedesktop.NetworkManager.Device" instead which exists since
|
|
35
|
+
version NetworkManager 1.34.0.
|
|
36
|
+
|
|
37
|
+
-->
|
|
38
|
+
<property name="Slaves" type="ao" access="read"/>
|
|
39
|
+
|
|
40
|
+
</interface>
|
|
41
|
+
</node>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Dummy:
|
|
5
|
+
@short_description: Dummy Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Dummy">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
Hardware address of the device.
|
|
14
|
+
n
|
|
15
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
16
|
+
-->
|
|
17
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
18
|
+
|
|
19
|
+
</interface>
|
|
20
|
+
</node>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Generic:
|
|
5
|
+
@short_description: Unrecognized Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Generic">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
Hardware address of the device.
|
|
14
|
+
n
|
|
15
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
16
|
+
-->
|
|
17
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
TypeDescription:
|
|
21
|
+
|
|
22
|
+
A (non-localized) description of the interface type, if known.
|
|
23
|
+
-->
|
|
24
|
+
<property name="TypeDescription" type="s" access="read"/>
|
|
25
|
+
|
|
26
|
+
</interface>
|
|
27
|
+
</node>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Hsr:
|
|
5
|
+
@short_description: HSR Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Hsr">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Port1:
|
|
12
|
+
@since: 1.46
|
|
13
|
+
|
|
14
|
+
The device's port1 device.
|
|
15
|
+
-->
|
|
16
|
+
<property name="Port1" type="o" access="read"/>
|
|
17
|
+
|
|
18
|
+
<!--
|
|
19
|
+
Port2:
|
|
20
|
+
@since: 1.46
|
|
21
|
+
|
|
22
|
+
The device's port2 device.
|
|
23
|
+
-->
|
|
24
|
+
<property name="Port2" type="o" access="read"/>
|
|
25
|
+
|
|
26
|
+
<!--
|
|
27
|
+
SupervisionAddress:
|
|
28
|
+
@since: 1.46
|
|
29
|
+
|
|
30
|
+
The supervision MAC address.
|
|
31
|
+
-->
|
|
32
|
+
<property name="SupervisionAddress" type="s" access="read"/>
|
|
33
|
+
|
|
34
|
+
<!--
|
|
35
|
+
MulticastSpec:
|
|
36
|
+
@since: 1.46
|
|
37
|
+
|
|
38
|
+
The last byte of the supervision address.
|
|
39
|
+
-->
|
|
40
|
+
<property name="MulticastSpec" type="y" access="read"/>
|
|
41
|
+
|
|
42
|
+
<!--
|
|
43
|
+
Prp:
|
|
44
|
+
@since: 1.46
|
|
45
|
+
|
|
46
|
+
Whether the PRP protocol is used or not.
|
|
47
|
+
-->
|
|
48
|
+
<property name="Prp" type="b" access="read"/>
|
|
49
|
+
|
|
50
|
+
</interface>
|
|
51
|
+
</node>
|