Compare commits

...

5 Commits

Author SHA1 Message Date
610513edb7 change extraUpFlags to extraSetFlags across the board 2025-11-04 23:18:56 -06:00
f49978d587 add extraSetFlags to tailscale config 2025-11-04 23:15:39 -06:00
cb4234630b ts test 2025-11-04 23:13:05 -06:00
992616c1ca testing ts 2025-11-04 23:12:19 -06:00
7b39e418c9 add advertisement to snowbelle itself 2025-11-04 23:08:21 -06:00
2 changed files with 5 additions and 2 deletions

View File

@@ -17,10 +17,13 @@ in {
openFirewall = true; openFirewall = true;
useRoutingFeatures = "both"; useRoutingFeatures = "both";
authKeyFile = authkey_file; authKeyFile = authkey_file;
extraUpFlags = [ extraSetFlags = [
"--advertise-routes=10.10.0.10/32" # advertise self
"--accept-routes=false" # true is equilivant to useRoutingFeatures = "client" (breaks shit) "--accept-routes=false" # true is equilivant to useRoutingFeatures = "client" (breaks shit)
"--accept-dns=true" # explicitly allow resolved "--accept-dns=true" # explicitly allow resolved
]; ];
extraUpFlags = [
];
}; };
# network config # network config

View File

@@ -16,7 +16,7 @@ in {
enable = true; enable = true;
useRoutingFeatures = "both"; useRoutingFeatures = "both";
#authKeyFile = authkey_file; #authKeyFile = authkey_file;
extraUpFlags = [ extraSetFlags = [
"--accept-routes=true" # true is equilivant to useRoutingFeatures = "client" (breaks shit) "--accept-routes=true" # true is equilivant to useRoutingFeatures = "client" (breaks shit)
"--accept-dns=true" # explicitly allow resolved "--accept-dns=true" # explicitly allow resolved
]; ];