aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/knot-misc/files/etc
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2018-09-23 01:09:44 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2018-09-23 01:09:44 +0200
commit07a7b0f0a380f8d18d8efc1b4c602015b51a49ef (patch)
tree349aeb73130fce1fe39e46e47881ee428adf4d66 /ansible/roles/knot-misc/files/etc
parentf400516745aee13ee55e59623717e82619818c10 (diff)
downloadinfra-07a7b0f0a380f8d18d8efc1b4c602015b51a49ef.tar.gz
infra-07a7b0f0a380f8d18d8efc1b4c602015b51a49ef.tar.bz2
infra-07a7b0f0a380f8d18d8efc1b4c602015b51a49ef.tar.xz
infra-07a7b0f0a380f8d18d8efc1b4c602015b51a49ef.zip
o Adding radvd config to knot.
Diffstat (limited to 'ansible/roles/knot-misc/files/etc')
-rw-r--r--ansible/roles/knot-misc/files/etc/radvd.conf20
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible/roles/knot-misc/files/etc/radvd.conf b/ansible/roles/knot-misc/files/etc/radvd.conf
new file mode 100644
index 0000000..2305cc2
--- /dev/null
+++ b/ansible/roles/knot-misc/files/etc/radvd.conf
@@ -0,0 +1,20 @@
+interface br0
+{
+ AdvSendAdvert on;
+ MinRtrAdvInterval 5;
+ MaxRtrAdvInterval 10;
+ MinDelayBetweenRAs 1;
+
+ AdvDefaultPreference medium;
+ AdvLinkMTU 1500;
+
+ prefix 2a01:7e00:e000:272::/64
+ {
+ AdvOnLink on;
+ AdvAutonomous on;
+
+ AdvValidLifetime 14400;
+ AdvPreferredLifetime 3600;
+ AdvRouterAddr on;
+ };
+};