summaryrefslogtreecommitdiff
path: root/roles/install_radvd/templates
diff options
context:
space:
mode:
authorNiklas Yann Wettengel <niyawe@niyawe.de>2017-07-03 09:46:42 +0200
committerNiklas Yann Wettengel <niyawe@niyawe.de>2017-07-03 09:46:42 +0200
commitd82f8524972086862f64750f325ba067ea993d86 (patch)
treeaa7634db168da40d108e43c7c30fbce299bdc7ab /roles/install_radvd/templates
parent90a8a597eaa3a008eac946460b5c621eafa8ec62 (diff)
fastd working
Diffstat (limited to 'roles/install_radvd/templates')
-rw-r--r--roles/install_radvd/templates/radvd.conf.j226
1 files changed, 26 insertions, 0 deletions
diff --git a/roles/install_radvd/templates/radvd.conf.j2 b/roles/install_radvd/templates/radvd.conf.j2
new file mode 100644
index 0000000..0774189
--- /dev/null
+++ b/roles/install_radvd/templates/radvd.conf.j2
@@ -0,0 +1,26 @@
+{% for site in sites %}
+interface bat{{ site.name }}
+{
+ AdvSendAdvert on;
+ IgnoreIfMissing on;
+ MinRtrAdvInterval 3;
+ MaxRtrAdvInterval 900;
+
+ AdvDefaultPreference low;
+ AdvHomeAgentFlag off;
+
+ prefix {{ site.net6 }}
+ {
+ AdvOnLink on;
+ AdvAutonomous on;
+ AdvRouterAddr off;
+ };
+
+ RDNSS {{ site.bat_ipv6 }}
+ {
+ AdvRDNSSLifetime 30;
+ };
+
+};
+
+{% endfor %}