Created
April 28, 2026 14:38
-
-
Save haydenk/fa7b16f18f787a777a9497e530a36349 to your computer and use it in GitHub Desktop.
[Networking] Sample radvd.conf for making Pi-hole the IPv6 router-advertisement / RDNSS authority on a LAN (eth0). Includes a /64 prefix and an RDNSS entry.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Sample radvd.conf for making Pi-hole the IPv6 router-advertisement / RDNSS | |
| # authority on a LAN. Replace the prefix and RDNSS address with your own /64 | |
| # prefix and the Pi-hole's IPv6 address. | |
| interface eth0 { | |
| AdvSendAdvert on; | |
| AdvLinkMTU 3600; | |
| AdvHomeAgentFlag off; | |
| AdvManagedFlag off; | |
| AdvOtherConfigFlag off; | |
| MinRtrAdvInterval 30; | |
| MaxRtrAdvInterval 100; | |
| prefix 2600:1700:7d48:b210::/64 { | |
| AdvOnLink on; | |
| AdvAutonomous on; | |
| AdvRouterAddr on; | |
| }; | |
| RDNSS 2600:1700:7d48:b210:9858:17e0:6e9c:9e8 { | |
| AdvRDNSSLifetime 3600; | |
| }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment