diff options
author | Alan Pearce | 2024-06-24 17:10:11 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-24 17:10:11 +0200 |
commit | 0cda5a1404890ef92ccf31c8adabf35528671032 (patch) | |
tree | e0332ca03fa793f9622ba3fe8c6cad5050ef615e | |
parent | 2eba4fd114d966da14e91ce6945cfa9a69238649 (diff) | |
download | nixfiles-0cda5a1404890ef92ccf31c8adabf35528671032.tar.lz nixfiles-0cda5a1404890ef92ccf31c8adabf35528671032.tar.zst nixfiles-0cda5a1404890ef92ccf31c8adabf35528671032.zip |
nanopi: only use ULAs for LAN DNS lookups
-rwxr-xr-x | system/nanopi.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/nanopi.nix b/system/nanopi.nix index 6ee61e69..5083f9e7 100755 --- a/system/nanopi.nix +++ b/system/nanopi.nix @@ -538,7 +538,8 @@ in dhcp-rapid-commit = true; dhcp-range = [ "10.0.1.0,10.0.1.250,12h" - "::,constructor:bridge0,ra-stateless,ra-names,48h" + "fd12:d04f:65d:42::,slaac,ra-names,48h" + "::,constructor:bridge0,ra-stateless,48h" ]; dhcp-host = [ "00:a0:de:b3:0c:01,10.0.0.50,wxa-50" |