From d82f8524972086862f64750f325ba067ea993d86 Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Mon, 3 Jul 2017 09:46:42 +0200 Subject: fastd working --- roles/install_radvd/templates/radvd.conf.j2 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 roles/install_radvd/templates/radvd.conf.j2 (limited to 'roles/install_radvd/templates') 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 %} -- cgit v1.2.3-54-g00ecf