Ratan Gupta | 4c8247b | 2017-03-16 16:23:06 +0530 | [diff] [blame] | 1 | description: > |
| 2 | This defines an ethernet interface. |
| 3 | An object implementing this interface must implement |
| 4 | xyz.openbmc_project.State.OperationalStatus. |
| 5 | |
| 6 | |
| 7 | properties: |
| 8 | - name: InterfaceName |
| 9 | type: string |
| 10 | description: > |
| 11 | Name of the ethernet interface. |
Ratan Gupta | 4c8247b | 2017-03-16 16:23:06 +0530 | [diff] [blame] | 12 | - name: Speed |
| 13 | type: uint32 |
| 14 | description: > |
| 15 | Current speed of the ethernet interface, in Mbps. |
| 16 | - name: AutoNeg |
| 17 | type: boolean |
| 18 | description: > |
| 19 | This indicates if the speed and duplex are automatically negotiated |
| 20 | and configured on this ethernet interface. |
| 21 | - name: DomainName |
| 22 | type: array[string] |
| 23 | description: > |
| 24 | Domain names of the ethernet interface. |
| 25 | - name: DHCPEnabled |
| 26 | type: boolean |
| 27 | description: > |
| 28 | Address mode of the ethernet interface. |
| 29 | - name: Nameservers |
| 30 | type: array[string] |
| 31 | description: > |
| 32 | DNS servers on the interface. |
Manojkiran Eda | 83968c3 | 2019-08-22 11:59:13 +0530 | [diff] [blame] | 33 | errors: |
| 34 | - xyz.openbmc_project.Common.Error.InvalidArgument |
Manojkiran Eda | 262ac24 | 2019-08-08 14:35:06 +0530 | [diff] [blame] | 35 | - xyz::openbmc_project.Common.Error.NotAllowed |
Ratan Gupta | a51dea7 | 2017-08-23 18:13:33 +0530 | [diff] [blame] | 36 | - name: NTPServers |
| 37 | type: array[string] |
| 38 | description: > |
| 39 | This property describes the NTP Servers on the interface. |
| 40 | Implementation of this Dbus-interface is required to implement this property. |
| 41 | This property supports read/write operation. |
| 42 | Configure the NTP servers on the system during write operation. |
Ravi Teja | 0edc82d | 2019-04-24 00:57:20 -0500 | [diff] [blame] | 43 | - name: LinkLocalAutoConf |
| 44 | type: enum[self.LinkLocalConf] |
| 45 | description: > |
| 46 | This indicates link local auto configuration on this ethernet |
| 47 | interface and configured on this ethernet interface. |
Johnathan Mantey | 8d6cb9b | 2019-06-25 09:20:50 -0700 | [diff] [blame] | 48 | - name: IPv6AcceptRA |
| 49 | type: boolean |
| 50 | description: > |
| 51 | Boolean for accepting router advertisements in IPv6 |
Ravi Teja | 0edc82d | 2019-04-24 00:57:20 -0500 | [diff] [blame] | 52 | |
| 53 | enumerations: |
| 54 | - name: LinkLocalConf |
| 55 | description: > |
| 56 | Possible link local auto configuration values. |
| 57 | values: |
| 58 | - name: both |
| 59 | - name: v4 |
| 60 | - name: v6 |
| 61 | - name: none |
| 62 | |