aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tg19/dhcp/templates/dhcpd6.conf
blob: 01bca44037b7ca758fe8f88605a26a1c5ab9837a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Autogenerated dhcpd6.conf from gondul

{% for (network, n) in objects["read/networks"].networks|dictsort %}
{% if n != None and n.subnet6 != None %}
# {{network}}
subnet6 {{ n.subnet6|networkId }}/{{ n.subnet6|cidr }} {
	range6 {{ n.subnet6|networkId }}1000 {{ n.subnet6|networkId }}9999;
	option domain-name "{{network}}.tg19.gathering.org";
}

zone {{network}}.tg19.gathering.org {
	primary 127.0.0.1;
	key DHCP_UPDATER;
}

{% endif %}
{% endfor %}