blob: b86a10ef3d775a33b9c3a3f86d41276b51a7ce54 [file] [log] [blame]
Ratan Gupta4c8247b2017-03-16 16:23:06 +05301description: >
2 This defines an ethernet interface.
3 An object implementing this interface must implement
4 xyz.openbmc_project.State.OperationalStatus.
5
Ratan Gupta4c8247b2017-03-16 16:23:06 +05306properties:
7 - name: InterfaceName
8 type: string
9 description: >
10 Name of the ethernet interface.
Ratan Gupta4c8247b2017-03-16 16:23:06 +053011 - name: Speed
12 type: uint32
13 description: >
14 Current speed of the ethernet interface, in Mbps.
15 - name: AutoNeg
16 type: boolean
17 description: >
18 This indicates if the speed and duplex are automatically negotiated
19 and configured on this ethernet interface.
Tejas Patil0ef46c12021-07-19 17:34:57 +053020 - name: MTU
21 type: size
22 default: 0
23 description: >
24 This indicates the size in bytes of largest protocol data unit,
25 which can be passed in an Ethernet frame on the interface.
Ratan Gupta4c8247b2017-03-16 16:23:06 +053026 - name: DomainName
27 type: array[string]
28 description: >
29 Domain names of the ethernet interface.
30 - name: DHCPEnabled
Johnathan Mantey19770592020-06-16 09:25:19 -070031 type: enum[self.DHCPConf]
Ratan Gupta4c8247b2017-03-16 16:23:06 +053032 description: >
33 Address mode of the ethernet interface.
34 - name: Nameservers
35 type: array[string]
36 description: >
Manojkiran Eda496741a2019-10-13 18:46:11 +053037 DNS servers that are currently in use on this interface.
Manojkiran Eda83968c32019-08-22 11:59:13 +053038 errors:
Manojkiran Eda262ac242019-08-08 14:35:06 +053039 - xyz::openbmc_project.Common.Error.NotAllowed
Manojkiran Eda496741a2019-10-13 18:46:11 +053040 - name: StaticNameServers
41 type: array[string]
42 description: >
43 A statically defined set of DNS server IP addresses to be used when
44 DHCP provisioning is not enabled for name server configuration. As
45 an implementation option this may also be used in addition to DHCP
46 provided addresses, or in cases where the DHCP server provides no DNS
47 assigments.
48 errors:
Patrick Williams8da396c2022-03-14 14:21:02 -050049 - xyz.openbmc_project.Common.Error.InvalidArgument
Ratan Guptaa51dea72017-08-23 18:13:33 +053050 - name: NTPServers
51 type: array[string]
52 description: >
53 This property describes the NTP Servers on the interface.
54 Implementation of this Dbus-interface is required to implement this property.
55 This property supports read/write operation.
56 Configure the NTP servers on the system during write operation.
Ravi Teja0edc82d2019-04-24 00:57:20 -050057 - name: LinkLocalAutoConf
58 type: enum[self.LinkLocalConf]
59 description: >
60 This indicates link local auto configuration on this ethernet
61 interface and configured on this ethernet interface.
Johnathan Mantey8d6cb9b2019-06-25 09:20:50 -070062 - name: IPv6AcceptRA
63 type: boolean
64 description: >
Johnathan Mantey8db5d8d2021-12-22 14:40:37 -080065 Boolean for accepting router advertisements in IPv6. This control is
66 being deprecated in favor of the DHCPConf enumerations
67 below. Removal of this entry is deferred.
Johnathan Manteyb43056f2019-10-29 16:15:18 -070068 - name: NICEnabled
69 type: boolean
70 description: >
71 Boolean for to enabling or disabling the ethernet port
Johnathan Mantey97b51292020-01-08 10:56:19 -080072 - name: LinkUp
73 type: boolean
74 flags:
75 - const
76 description: >
77 This property reports the link status for the NIC. The read-only
78 boolean value is TRUE when the network cable is inserted, or there
79 is a carrier signal. It is FALSE when the cable is unplugged, or the
80 carrier signal is missing.
Ravi Teja0f572912020-07-06 09:37:59 -050081 - name: DefaultGateway
82 type: string
83 description: >
84 Default IPv4 gateway of the ethernet interface.
85 errors:
Patrick Williams8da396c2022-03-14 14:21:02 -050086 - xyz.openbmc_project.Common.Error.InvalidArgument
Ravi Teja0f572912020-07-06 09:37:59 -050087 - name: DefaultGateway6
88 type: string
89 description: >
90 Default IPv6 gateway of the ethernet interface.
91 For supported address formats refer RFC 2373.
92 Refer below man page for both v4 and v6 address format details
93 https://man7.org/linux/man-pages/man3/inet_pton.3.html
94 errors:
Patrick Williams8da396c2022-03-14 14:21:02 -050095 - xyz.openbmc_project.Common.Error.InvalidArgument
Ravi Teja0edc82d2019-04-24 00:57:20 -050096
97enumerations:
98 - name: LinkLocalConf
99 description: >
100 Possible link local auto configuration values.
101 values:
Patrick Williams8da396c2022-03-14 14:21:02 -0500102 - name: fallback
103 - name: both
104 - name: v4
105 - name: v6
106 - name: none
Andrew Geisslerfcc419b2020-06-04 10:26:16 -0500107
Johnathan Mantey19770592020-06-16 09:25:19 -0700108 - name: DHCPConf
109 description: >
Johnathan Mantey8db5d8d2021-12-22 14:40:37 -0800110 High level definitions of available DHCP states.
111 These definitions do not have a 1:1 correlation to the
112 systemd.network configuration file contents.
113 both: Enable IPv4 DHCP and IPv6 Stateful DHCP
114 v4v6stateless: Enable IPv4 DHCP and IPv6 SLAAC
115 v6: Enable IPv6 Stateful DHCP
116 v6stateless: Enable IPv6 SLAAC
117 v4: Enable IPv4 DHCP
118 none: Disable DHCP for IPv4 and IPv6
Johnathan Mantey19770592020-06-16 09:25:19 -0700119 values:
Patrick Williams8da396c2022-03-14 14:21:02 -0500120 - name: both
Johnathan Mantey8db5d8d2021-12-22 14:40:37 -0800121 - name: v4v6stateless
Patrick Williams8da396c2022-03-14 14:21:02 -0500122 - name: v6
Johnathan Mantey8db5d8d2021-12-22 14:40:37 -0800123 - name: v6stateless
124 - name: v4
Patrick Williams8da396c2022-03-14 14:21:02 -0500125 - name: none