summaryrefslogtreecommitdiffstats
path: root/roles/gateway/templates/radvd.conf.j2
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-07-08 03:15:11 +0200
committerAhmed Abdelhalim <[email protected]>2026-07-08 03:15:11 +0200
commitbb0abab8308256c028c29e3732e53ef211cad613 (patch)
treeb17b2b27eb8757f510f4daa2b45562b28a932061 /roles/gateway/templates/radvd.conf.j2
parent4a421249a8972c35cc6728cef7eed10e79419bbf (diff)
Implement a working ipv6 on gateway
Diffstat (limited to 'roles/gateway/templates/radvd.conf.j2')
-rw-r--r--roles/gateway/templates/radvd.conf.j212
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/gateway/templates/radvd.conf.j2 b/roles/gateway/templates/radvd.conf.j2
new file mode 100644
index 00000000..49b3047d
--- /dev/null
+++ b/roles/gateway/templates/radvd.conf.j2
@@ -0,0 +1,12 @@
+interface {{ gateway_router_interface }} {
+ AdvSendAdvert on;
+ AdvManagedFlag off;
+ AdvOtherConfigFlag on;
+ AdvDefaultPreference high;
+
+ prefix {{ gateway_local_ipv6_subnet }} {
+ AdvOnLink on;
+ AdvAutonomous on;
+ AdvRouterAddr on;
+ };
+};