> ## Documentation Index
> Fetch the complete documentation index at: https://docs.siderolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

> DHCPv6Config is a config document to configure DHCPv6 on a network link.

# DHCPv6Config

```yaml theme={null}
apiVersion: v1alpha1
kind: DHCPv6Config
name: enp0s2 # Name of the link (interface).

# # Raw value of the DUID to use as client identifier.
# duidRaw: 00:01:00:01:23:45:67:89:ab:cd:ef:01:23:45
```

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Value(s)</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>`name`</td>
      <td>string</td>
      <td>Name of the link (interface).</td>

      <td />
    </tr>

    <tr>
      <td>`routeMetric`</td>
      <td>uint32</td>
      <td>An optional metric for the routes received from the DHCP server.<br /><br />Lower values indicate higher priority.<br />Default value is 1024.</td>

      <td />
    </tr>

    <tr>
      <td>`ignoreHostname`</td>
      <td>bool</td>
      <td>Ignore hostname received from the DHCP server.</td>

      <td />
    </tr>

    <tr>
      <td>`clientIdentifier`</td>
      <td>ClientIdentifier</td>
      <td>Client identifier to use when communicating with DHCP servers.<br /><br />Defaults to 'mac' if not set.</td>
      <td>`none`<br />`mac`<br />`duid`<br /></td>
    </tr>

    <tr>
      <td>`duidRaw`</td>
      <td>HardwareAddr</td>
      <td>Raw value of the DUID to use as client identifier.<br /><br />This field is only used if 'clientIdentifier' is set to 'duid'.</td>

      <td />
    </tr>
  </tbody>
</table>
