Skip to content

Ethernet add duplex and link speed option #4973

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions components/ethernet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,15 @@ Advanced common configuration variables:
- **domain** (*Optional*, string): Set the domain of the node hostname used for uploading.
For example, if it's set to ``.local``, all uploads will be sent to ``<HOSTNAME>.local``.
Defaults to ``.local``.
- **duplex** (*Optional*, string): Set the duplex mode and disables auto negotiation. Must be one of the following values:

- ``DUPLEX_HALF`` - Half Duplex Mode
- ``DUPLEX_FULL`` - Full Duplex Mode
- **speed** (*Optional*, string): Set the link speed and disables auto negotiation. Must be one of the following values:

- ``SPEED_10M`` - 10Mbps
- ``SPEED_100M`` - 100Mbps

- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.


Expand Down