mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-29 17:22:23 +00:00
11 lines
435 B
Ucode
11 lines
435 B
Ucode
{% if (interface.role == 'upstream' && ethernet.has_vlan(interface)): %}
|
|
set network.{{ name }}.ip6table={{ routing_table.get(this_vid) }}
|
|
{% endif %}
|
|
{% if (ipv6_mode == 'static'): %}
|
|
set network.{{ name }}.ip6addr={{ ipv6.subnet }}
|
|
set network.{{ name }}.ip6gw={{ ipv6.gateway }}
|
|
set network.{{ name }}.ip6assign={{ ipv6.prefix_size || '64' }}
|
|
{% else %}
|
|
set network.{{ name }}.reqprefix={{ ipv6.prefix_size || 'auto' }}
|
|
{% endif %}
|