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,107 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.IPTunnel:
|
|
5
|
+
@short_description: IP Tunneling Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.IPTunnel">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Mode:
|
|
12
|
+
|
|
13
|
+
The tunneling mode.
|
|
14
|
+
-->
|
|
15
|
+
<property name="Mode" type="u" access="read"/>
|
|
16
|
+
|
|
17
|
+
<!--
|
|
18
|
+
Parent:
|
|
19
|
+
|
|
20
|
+
The object path of the parent device.
|
|
21
|
+
-->
|
|
22
|
+
<property name="Parent" type="o" access="read"/>
|
|
23
|
+
|
|
24
|
+
<!--
|
|
25
|
+
Local:
|
|
26
|
+
|
|
27
|
+
The local endpoint of the tunnel.
|
|
28
|
+
-->
|
|
29
|
+
<property name="Local" type="s" access="read"/>
|
|
30
|
+
|
|
31
|
+
<!--
|
|
32
|
+
Remote:
|
|
33
|
+
|
|
34
|
+
The remote endpoint of the tunnel.
|
|
35
|
+
-->
|
|
36
|
+
<property name="Remote" type="s" access="read"/>
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
Ttl:
|
|
40
|
+
|
|
41
|
+
The TTL assigned to tunneled packets. 0 is a special value meaning that
|
|
42
|
+
packets inherit the TTL value
|
|
43
|
+
-->
|
|
44
|
+
<property name="Ttl" type="y" access="read"/>
|
|
45
|
+
|
|
46
|
+
<!--
|
|
47
|
+
Tos:
|
|
48
|
+
|
|
49
|
+
The type of service (IPv4) or traffic class (IPv6) assigned to tunneled
|
|
50
|
+
packets.
|
|
51
|
+
-->
|
|
52
|
+
<property name="Tos" type="y" access="read"/>
|
|
53
|
+
|
|
54
|
+
<!--
|
|
55
|
+
PathMtuDiscovery:
|
|
56
|
+
|
|
57
|
+
Whether path MTU discovery is enabled on this tunnel.
|
|
58
|
+
-->
|
|
59
|
+
<property name="PathMtuDiscovery" type="b" access="read"/>
|
|
60
|
+
|
|
61
|
+
<!--
|
|
62
|
+
InputKey:
|
|
63
|
+
|
|
64
|
+
The key used for incoming packets.
|
|
65
|
+
-->
|
|
66
|
+
<property name="InputKey" type="s" access="read"/>
|
|
67
|
+
|
|
68
|
+
<!--
|
|
69
|
+
OutputKey:
|
|
70
|
+
|
|
71
|
+
The key used for outgoing packets.
|
|
72
|
+
-->
|
|
73
|
+
<property name="OutputKey" type="s" access="read"/>
|
|
74
|
+
|
|
75
|
+
<!--
|
|
76
|
+
EncapsulationLimit:
|
|
77
|
+
|
|
78
|
+
How many additional levels of encapsulation are permitted to be prepended
|
|
79
|
+
to packets. This property applies only to IPv6 tunnels.
|
|
80
|
+
-->
|
|
81
|
+
<property name="EncapsulationLimit" type="y" access="read"/>
|
|
82
|
+
|
|
83
|
+
<!--
|
|
84
|
+
FlowLabel:
|
|
85
|
+
|
|
86
|
+
The flow label to assign to tunnel packets. This property applies only to
|
|
87
|
+
IPv6 tunnels.
|
|
88
|
+
-->
|
|
89
|
+
<property name="FlowLabel" type="u" access="read"/>
|
|
90
|
+
|
|
91
|
+
<!--
|
|
92
|
+
FwMark:
|
|
93
|
+
|
|
94
|
+
The fwmark value to assign to tunnel packets. This property applies only to
|
|
95
|
+
VTI tunnels.
|
|
96
|
+
-->
|
|
97
|
+
<property name="FwMark" type="u" access="read"/>
|
|
98
|
+
|
|
99
|
+
<!--
|
|
100
|
+
Flags:
|
|
101
|
+
|
|
102
|
+
Tunnel flags.
|
|
103
|
+
-->
|
|
104
|
+
<property name="Flags" type="u" access="read"/>
|
|
105
|
+
|
|
106
|
+
</interface>
|
|
107
|
+
</node>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Infiniband:
|
|
5
|
+
@short_description: Infiniband Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Infiniband">
|
|
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
|
+
</interface>
|
|
31
|
+
</node>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Ipvlan:
|
|
5
|
+
@short_description: IPVLAN Device.
|
|
6
|
+
-->
|
|
7
|
+
<interface name="org.freedesktop.NetworkManager.Device.Ipvlan">
|
|
8
|
+
|
|
9
|
+
<!--
|
|
10
|
+
Parent:
|
|
11
|
+
@since: 1.52
|
|
12
|
+
The object path of the parent device.
|
|
13
|
+
-->
|
|
14
|
+
<property name="Parent" type="o" access="read"/>
|
|
15
|
+
|
|
16
|
+
<!--
|
|
17
|
+
Vepa:
|
|
18
|
+
@since: 1.52
|
|
19
|
+
The IPVLAN VEPA flag.
|
|
20
|
+
-->
|
|
21
|
+
<property name="Vepa" type="b" access="read"/>
|
|
22
|
+
|
|
23
|
+
<!--
|
|
24
|
+
Mode:
|
|
25
|
+
@since: 1.52
|
|
26
|
+
The IPVLAN mode, one of "l2", "l3", "l3s".
|
|
27
|
+
-->
|
|
28
|
+
<property name="Mode" type="s" access="read"/>
|
|
29
|
+
|
|
30
|
+
<!--
|
|
31
|
+
Private:
|
|
32
|
+
@since: 1.52
|
|
33
|
+
The IPVLAN private flag.
|
|
34
|
+
-->
|
|
35
|
+
<property name="Private" type="b" access="read"/>
|
|
36
|
+
|
|
37
|
+
</interface>
|
|
38
|
+
</node>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Lowpan:
|
|
5
|
+
@short_description: 6LoWPAN Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Lowpan">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
The active 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
|
+
Parent:
|
|
21
|
+
|
|
22
|
+
The object path of the parent device.
|
|
23
|
+
-->
|
|
24
|
+
<property name="Parent" type="o" access="read"/>
|
|
25
|
+
|
|
26
|
+
</interface>
|
|
27
|
+
</node>
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Macsec:
|
|
5
|
+
@short_description: MACSec Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Macsec">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Parent:
|
|
12
|
+
|
|
13
|
+
The object path of the parent device.
|
|
14
|
+
-->
|
|
15
|
+
<property name="Parent" type="o" access="read"/>
|
|
16
|
+
|
|
17
|
+
<!--
|
|
18
|
+
Sci:
|
|
19
|
+
|
|
20
|
+
The Secure Channel Identifier in use.
|
|
21
|
+
-->
|
|
22
|
+
<property name="Sci" type="t" access="read"/>
|
|
23
|
+
|
|
24
|
+
<!--
|
|
25
|
+
IcvLength:
|
|
26
|
+
|
|
27
|
+
The length of ICV (Integrity Check Value).
|
|
28
|
+
-->
|
|
29
|
+
<property name="IcvLength" type="y" access="read"/>
|
|
30
|
+
|
|
31
|
+
<!--
|
|
32
|
+
CipherSuite:
|
|
33
|
+
|
|
34
|
+
The set of cryptographic algorithms in use
|
|
35
|
+
(e.g. 0x0080020001000001 for GCM-AES-128).
|
|
36
|
+
-->
|
|
37
|
+
<property name="CipherSuite" type="t" access="read"/>
|
|
38
|
+
|
|
39
|
+
<!--
|
|
40
|
+
Window:
|
|
41
|
+
|
|
42
|
+
The size of the replay window.
|
|
43
|
+
-->
|
|
44
|
+
<property name="Window" type="u" access="read"/>
|
|
45
|
+
|
|
46
|
+
<!--
|
|
47
|
+
EncodingSa:
|
|
48
|
+
|
|
49
|
+
The value of the Association Number (0..3) for the Security
|
|
50
|
+
Association in use.
|
|
51
|
+
-->
|
|
52
|
+
<property name="EncodingSa" type="y" access="read"/>
|
|
53
|
+
|
|
54
|
+
<!--
|
|
55
|
+
Validation:
|
|
56
|
+
|
|
57
|
+
The validation mode for incoming packets (strict, check,
|
|
58
|
+
disabled).
|
|
59
|
+
-->
|
|
60
|
+
<property name="Validation" type="s" access="read"/>
|
|
61
|
+
|
|
62
|
+
<!--
|
|
63
|
+
Encrypt:
|
|
64
|
+
|
|
65
|
+
Whether encryption of transmitted frames is enabled.
|
|
66
|
+
-->
|
|
67
|
+
<property name="Encrypt" type="b" access="read"/>
|
|
68
|
+
|
|
69
|
+
<!--
|
|
70
|
+
Protect:
|
|
71
|
+
|
|
72
|
+
Whether protection of transmitted frames is enabled.
|
|
73
|
+
-->
|
|
74
|
+
<property name="Protect" type="b" access="read"/>
|
|
75
|
+
|
|
76
|
+
<!--
|
|
77
|
+
IncludeSci:
|
|
78
|
+
|
|
79
|
+
Whether the SCI is always included in SecTAG for transmitted
|
|
80
|
+
frames.
|
|
81
|
+
|
|
82
|
+
-->
|
|
83
|
+
<property name="IncludeSci" type="b" access="read"/>
|
|
84
|
+
|
|
85
|
+
<!--
|
|
86
|
+
Es:
|
|
87
|
+
|
|
88
|
+
Whether the ES (End station) bit is enabled in SecTAG for
|
|
89
|
+
transmitted frames.
|
|
90
|
+
-->
|
|
91
|
+
<property name="Es" type="b" access="read"/>
|
|
92
|
+
|
|
93
|
+
<!--
|
|
94
|
+
Scb:
|
|
95
|
+
|
|
96
|
+
Whether the SCB (Single Copy Broadcast) bit is enabled in
|
|
97
|
+
SecTAG for transmitted frames.
|
|
98
|
+
-->
|
|
99
|
+
<property name="Scb" type="b" access="read"/>
|
|
100
|
+
|
|
101
|
+
<!--
|
|
102
|
+
ReplayProtect:
|
|
103
|
+
|
|
104
|
+
Whether replay protection is enabled.
|
|
105
|
+
-->
|
|
106
|
+
<property name="ReplayProtect" type="b" access="read"/>
|
|
107
|
+
|
|
108
|
+
</interface>
|
|
109
|
+
</node>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Macvlan:
|
|
5
|
+
@short_description: MAC VLAN Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Macvlan">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Parent:
|
|
12
|
+
|
|
13
|
+
The object path of the parent device.
|
|
14
|
+
-->
|
|
15
|
+
<property name="Parent" type="o" access="read"/>
|
|
16
|
+
|
|
17
|
+
<!--
|
|
18
|
+
Mode:
|
|
19
|
+
|
|
20
|
+
The macvlan mode, one of "private", "vepa", "bridge", or "passthru".
|
|
21
|
+
-->
|
|
22
|
+
<property name="Mode" type="s" access="read"/>
|
|
23
|
+
|
|
24
|
+
<!--
|
|
25
|
+
NoPromisc:
|
|
26
|
+
|
|
27
|
+
Whether the device is blocked from going into promiscuous mode.
|
|
28
|
+
-->
|
|
29
|
+
<property name="NoPromisc" type="b" access="read"/>
|
|
30
|
+
|
|
31
|
+
<!--
|
|
32
|
+
Tap:
|
|
33
|
+
|
|
34
|
+
Whether the device is a macvtap.
|
|
35
|
+
-->
|
|
36
|
+
<property name="Tap" type="b" access="read"/>
|
|
37
|
+
|
|
38
|
+
</interface>
|
|
39
|
+
</node>
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Modem:
|
|
5
|
+
@short_description: Modem Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Modem">
|
|
9
|
+
<!--
|
|
10
|
+
ModemCapabilities:
|
|
11
|
+
|
|
12
|
+
The generic family of access technologies the modem supports. Not all
|
|
13
|
+
capabilities are available at the same time however; some modems require a
|
|
14
|
+
firmware reload or other reinitialization to switch between eg CDMA/EVDO
|
|
15
|
+
and GSM/UMTS.
|
|
16
|
+
|
|
17
|
+
Returns: <link linkend="NMDeviceModemCapabilities">NMDeviceModemCapabilities</link>
|
|
18
|
+
-->
|
|
19
|
+
<property name="ModemCapabilities" type="u" access="read"/>
|
|
20
|
+
|
|
21
|
+
<!--
|
|
22
|
+
CurrentCapabilities:
|
|
23
|
+
|
|
24
|
+
The generic family of access technologies the modem currently supports
|
|
25
|
+
without a firmware reload or reinitialization.
|
|
26
|
+
|
|
27
|
+
Returns: <link linkend="NMDeviceModemCapabilities">NMDeviceModemCapabilities</link>
|
|
28
|
+
-->
|
|
29
|
+
<property name="CurrentCapabilities" type="u" access="read"/>
|
|
30
|
+
|
|
31
|
+
<!--
|
|
32
|
+
DeviceId:
|
|
33
|
+
@since: 1.20
|
|
34
|
+
|
|
35
|
+
An identifier used by the modem backend (ModemManager) that aims to
|
|
36
|
+
uniquely identify the a device. Can be used to match a connection to a
|
|
37
|
+
particular device.
|
|
38
|
+
|
|
39
|
+
-->
|
|
40
|
+
<property name="DeviceId" type="s" access="read" />
|
|
41
|
+
|
|
42
|
+
<!--
|
|
43
|
+
OperatorCode:
|
|
44
|
+
@since: 1.20
|
|
45
|
+
|
|
46
|
+
The MCC and MNC (concatenated) of the network the modem is connected to.
|
|
47
|
+
Blank if disconnected or not a 3GPP modem.
|
|
48
|
+
|
|
49
|
+
-->
|
|
50
|
+
<property name="OperatorCode" type="s" access="read" />
|
|
51
|
+
|
|
52
|
+
<!--
|
|
53
|
+
Apn:
|
|
54
|
+
@since: 1.20
|
|
55
|
+
|
|
56
|
+
The access point name the modem is connected to. Blank if disconnected.
|
|
57
|
+
|
|
58
|
+
-->
|
|
59
|
+
<property name="Apn" type="s" access="read" />
|
|
60
|
+
|
|
61
|
+
</interface>
|
|
62
|
+
</node>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.OlpcMesh:
|
|
5
|
+
@short_description: OLPC Wireless Mesh Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.OlpcMesh">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
HwAddress:
|
|
12
|
+
|
|
13
|
+
The 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
|
+
Companion:
|
|
21
|
+
|
|
22
|
+
The object path of the companion device.
|
|
23
|
+
-->
|
|
24
|
+
<property name="Companion" type="o" access="read"/>
|
|
25
|
+
|
|
26
|
+
<!--
|
|
27
|
+
ActiveChannel:
|
|
28
|
+
|
|
29
|
+
The currently active channel.
|
|
30
|
+
-->
|
|
31
|
+
<property name="ActiveChannel" type="u" access="read"/>
|
|
32
|
+
|
|
33
|
+
</interface>
|
|
34
|
+
</node>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.OvsBridge:
|
|
5
|
+
@short_description: OvsBridge Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.OvsBridge">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Slaves:
|
|
12
|
+
@since: 1.14
|
|
13
|
+
|
|
14
|
+
DEPRECATED. Use the "Ports" property in
|
|
15
|
+
"org.freedesktop.NetworkManager.Device" instead which exists since
|
|
16
|
+
version NetworkManager 1.34.0.
|
|
17
|
+
-->
|
|
18
|
+
<property name="Slaves" type="ao" access="read"/>
|
|
19
|
+
|
|
20
|
+
</interface>
|
|
21
|
+
</node>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.OvsInterface:
|
|
5
|
+
@short_description: OvsInterface Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.OvsInterface">
|
|
9
|
+
|
|
10
|
+
</interface>
|
|
11
|
+
</node>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.OvsPort:
|
|
5
|
+
@short_description: OvsPort Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.OvsPort">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Slaves:
|
|
12
|
+
@since: 1.14
|
|
13
|
+
|
|
14
|
+
DEPRECATED. Use the "Ports" property in
|
|
15
|
+
"org.freedesktop.NetworkManager.Device" instead which exists since
|
|
16
|
+
version NetworkManager 1.34.0.
|
|
17
|
+
-->
|
|
18
|
+
<property name="Slaves" type="ao" access="read"/>
|
|
19
|
+
|
|
20
|
+
</interface>
|
|
21
|
+
</node>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Statistics:
|
|
5
|
+
@short_description: Device Statistic Counters.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Statistics">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
RefreshRateMs:
|
|
12
|
+
|
|
13
|
+
Refresh rate of the rest of properties of this interface. The properties
|
|
14
|
+
are guaranteed to be refreshed each RefreshRateMs milliseconds in case
|
|
15
|
+
the underlying counter has changed too.
|
|
16
|
+
If zero, there is no guaranteed refresh rate of the properties.
|
|
17
|
+
-->
|
|
18
|
+
<property name="RefreshRateMs" type="u" access="readwrite"/>
|
|
19
|
+
|
|
20
|
+
<!--
|
|
21
|
+
TxBytes:
|
|
22
|
+
|
|
23
|
+
Number of transmitted bytes
|
|
24
|
+
-->
|
|
25
|
+
<property name="TxBytes" type="t" access="read"/>
|
|
26
|
+
|
|
27
|
+
<!--
|
|
28
|
+
RxBytes:
|
|
29
|
+
|
|
30
|
+
Number of received bytes
|
|
31
|
+
-->
|
|
32
|
+
<property name="RxBytes" type="t" access="read"/>
|
|
33
|
+
|
|
34
|
+
</interface>
|
|
35
|
+
</node>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Team:
|
|
5
|
+
@short_description: Teaming Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Team">
|
|
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
|
+
-->
|
|
38
|
+
<property name="Slaves" type="ao" access="read"/>
|
|
39
|
+
|
|
40
|
+
<!--
|
|
41
|
+
Config:
|
|
42
|
+
|
|
43
|
+
The JSON configuration currently applied on the device.
|
|
44
|
+
-->
|
|
45
|
+
<property name="Config" type="s" access="read" />
|
|
46
|
+
|
|
47
|
+
</interface>
|
|
48
|
+
</node>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<node name="/">
|
|
3
|
+
<!--
|
|
4
|
+
org.freedesktop.NetworkManager.Device.Tun:
|
|
5
|
+
@short_description: Userspace Tunneling Device.
|
|
6
|
+
|
|
7
|
+
-->
|
|
8
|
+
<interface name="org.freedesktop.NetworkManager.Device.Tun">
|
|
9
|
+
|
|
10
|
+
<!--
|
|
11
|
+
Owner:
|
|
12
|
+
|
|
13
|
+
The uid of the tunnel owner, or -1 if it has no owner.
|
|
14
|
+
-->
|
|
15
|
+
<property name="Owner" type="x" access="read"/>
|
|
16
|
+
|
|
17
|
+
<!--
|
|
18
|
+
Group:
|
|
19
|
+
|
|
20
|
+
The gid of the tunnel group, or -1 if it has no owner.
|
|
21
|
+
-->
|
|
22
|
+
<property name="Group" type="x" access="read"/>
|
|
23
|
+
|
|
24
|
+
<!--
|
|
25
|
+
Mode:
|
|
26
|
+
|
|
27
|
+
The tunnel mode, either "tun" or "tap".
|
|
28
|
+
-->
|
|
29
|
+
<property name="Mode" type="s" access="read"/>
|
|
30
|
+
|
|
31
|
+
<!--
|
|
32
|
+
NoPi:
|
|
33
|
+
|
|
34
|
+
The tunnel's "TUN_NO_PI" flag; true if no protocol info is prepended to
|
|
35
|
+
the tunnel packets.
|
|
36
|
+
-->
|
|
37
|
+
<property name="NoPi" type="b" access="read"/>
|
|
38
|
+
|
|
39
|
+
<!--
|
|
40
|
+
VnetHdr:
|
|
41
|
+
|
|
42
|
+
The tunnel's "TUN_VNET_HDR" flag; true if the tunnel packets include a
|
|
43
|
+
virtio network header.
|
|
44
|
+
-->
|
|
45
|
+
<property name="VnetHdr" type="b" access="read"/>
|
|
46
|
+
|
|
47
|
+
<!--
|
|
48
|
+
MultiQueue:
|
|
49
|
+
|
|
50
|
+
The tunnel's "TUN_TAP_MQ" flag; true if callers can connect to the tap
|
|
51
|
+
device multiple times, for multiple send/receive queues.
|
|
52
|
+
-->
|
|
53
|
+
<property name="MultiQueue" type="b" access="read"/>
|
|
54
|
+
|
|
55
|
+
<!--
|
|
56
|
+
HwAddress:
|
|
57
|
+
|
|
58
|
+
Hardware address of the device.
|
|
59
|
+
n
|
|
60
|
+
DEPRECATED. Use the "HwAddress" property in "org.freedesktop.NetworkManager.Device" instead which exists since version NetworkManager 1.24.0.
|
|
61
|
+
-->
|
|
62
|
+
<property name="HwAddress" type="s" access="read"/>
|
|
63
|
+
|
|
64
|
+
</interface>
|
|
65
|
+
</node>
|