diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2017-11-07 16:27:49 +0100 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2017-11-12 14:56:32 +0100 |
commit | e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84 (patch) | |
tree | 41ba5163cf6f110521f2ebc9035f77d2754796a0 /roles/space_server/files/radvd | |
download | labitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.tar.gz labitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.tar.xz labitat-ansible-e8cdba85c48dcbbd42e6fcb5be3aa2912008cb84.zip |
initial commit
Diffstat (limited to 'roles/space_server/files/radvd')
-rw-r--r-- | roles/space_server/files/radvd/radvd.conf | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/roles/space_server/files/radvd/radvd.conf b/roles/space_server/files/radvd/radvd.conf new file mode 100644 index 0000000..02749f3 --- /dev/null +++ b/roles/space_server/files/radvd/radvd.conf @@ -0,0 +1,68 @@ +# Wired +interface lan11 { + AdvSendAdvert on; + MinRtrAdvInterval 3; + MaxRtrAdvInterval 6; + AdvLinkMTU 1500; + RDNSS 2a01:4260:1ab:: {}; + + prefix 2a01:4260:1ab:b::1/64 { + #AdvValidLifetime 0; + #AdvPreferredLifetime 0; + }; +}; + +# Private Wifi +interface lan12 { + AdvSendAdvert on; + MinRtrAdvInterval 3; + MaxRtrAdvInterval 6; + AdvLinkMTU 1500; + RDNSS 2a01:4260:1ab:: {}; + + prefix 2a01:4260:1ab:c::1/64 { + #AdvValidLifetime 0; + #AdvPreferredLifetime 0; + }; +}; + +## Free Wifi +#interface lan13 { +# AdvSendAdvert on; +# MinRtrAdvInterval 3; +# MaxRtrAdvInterval 6; +# AdvLinkMTU 1500; +# RDNSS 2a01:4260:1ab:: {}; +# +# prefix 2a01:4260:1ab:d::1/64 { +# #AdvValidLifetime 0; +# #AdvPreferredLifetime 0; +# }; +#}; + +# Password protected wifi +interface lan14 { + AdvSendAdvert on; + MinRtrAdvInterval 3; + MaxRtrAdvInterval 6; + AdvLinkMTU 1500; + RDNSS 2a01:4260:1ab:: {}; + + prefix 2a01:4260:1ab:e::1/64 { + #AdvValidLifetime 0; + #AdvPreferredLifetime 0; + }; +}; + +interface lan15 { + AdvSendAdvert on; + MinRtrAdvInterval 3; + MaxRtrAdvInterval 6; + AdvLinkMTU 1500; + RDNSS 2a01:4260:1ab:: {}; + + prefix 2a01:4260:1ab:f::1/64 { + #AdvValidLifetime 0; + #AdvPreferredLifetime 0; + }; +}; |