diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-10-10 20:29:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 20:29:13 +0200 |
| commit | 9baf8c83d1e680173386560c7116acf1bf49737a (patch) | |
| tree | 8b428bee376c1e5c8a32a0754b41f4a459b03611 /data | |
| parent | f35c980de595ee6adc8b5b28b913224564ee2d94 (diff) | |
| parent | fb9f2f3e95036b75863c184e64aae14d086a32ba (diff) | |
| download | vyos-1x-9baf8c83d1e680173386560c7116acf1bf49737a.tar.gz vyos-1x-9baf8c83d1e680173386560c7116acf1bf49737a.zip | |
Merge pull request #4693 from nvandamme/fix-pppoe-ipv-na
T7485: ia-na ipv6 for PPPoE link
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/dhcp-client/ipv6.j2 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/data/templates/dhcp-client/ipv6.j2 b/data/templates/dhcp-client/ipv6.j2 index 00df7a0e9..07faeb91c 100644 --- a/data/templates/dhcp-client/ipv6.j2 +++ b/data/templates/dhcp-client/ipv6.j2 @@ -6,8 +6,12 @@ interface {{ ifname }} { send client-id {{ dhcpv6_options.duid }}; {% endif %} {% if address is vyos_defined and 'dhcpv6' in address %} +{% if dhcpv6_options.no_request_dns is not vyos_defined %} request domain-name-servers; +{% endif %} +{% if dhcpv6_options.no_request_domain_name is not vyos_defined %} request domain-name; +{% endif %} {% if dhcpv6_options.parameters_only is vyos_defined %} information-only; {% endif %} |
