diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-04-19 23:16:59 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-04-22 15:33:07 +0000 |
commit | 39e35ee4caae7dc40f7270b3dc5e4161d64dac1b (patch) | |
tree | bdfd29682606ad9ef742aaff34dc417a1ca05c47 /data/templates/dhcp-server | |
parent | d32ee4ad297c8754d0841b84b958a12a926cfef9 (diff) | |
download | vyos-1x-39e35ee4caae7dc40f7270b3dc5e4161d64dac1b.tar.gz vyos-1x-39e35ee4caae7dc40f7270b3dc5e4161d64dac1b.zip |
dhcpv6: T4357: Add dhcpv6 options for cisco VoIP tftp
Add vendor specific options for DHCPv6-server for working with
cisco VoIP phone provisioning over IPv6
Diffstat (limited to 'data/templates/dhcp-server')
-rw-r--r-- | data/templates/dhcp-server/dhcpdv6.conf.j2 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/templates/dhcp-server/dhcpdv6.conf.j2 b/data/templates/dhcp-server/dhcpdv6.conf.j2 index 284b7f269..43327859e 100644 --- a/data/templates/dhcp-server/dhcpdv6.conf.j2 +++ b/data/templates/dhcp-server/dhcpdv6.conf.j2 @@ -11,6 +11,11 @@ option dhcp6.preference {{ preference }}; {% if global_parameters.name_server is vyos_defined %} option dhcp6.name-servers {{ global_parameters.name_server | join(', ') }}; {% endif %} +{% if vsio_cisco_tftp %} +option space cisco; +option cisco.tftp-servers code 1 = array of ip6-address; +option vsio.cisco code 9 = encapsulate cisco; +{% endif %} # Shared network configration(s) {% if shared_network_name is vyos_defined %} @@ -113,6 +118,9 @@ shared-network {{ network }} { } {% endfor %} {% endif %} +{% if subnet_config.vsio.cisco.tftp_server is vyos_defined %} + option cisco.tftp-servers {{ subnet_config.vsio.cisco.tftp_server | join(', ') }}; +{% endif %} } {% endfor %} {% endif %} |