fix(vpn): disable --accept-routes on home-server
This caused some issues for me when trying to access home-server services from other devices in my LAN that aren't in the Tailnet.
This commit is contained in:
parent
ac00b5153e
commit
1043b12ec9
|
@ -42,6 +42,7 @@
|
|||
};
|
||||
|
||||
services.tailscale.extraUpFlags = [
|
||||
"--accept-routes"
|
||||
"--operator=felschr"
|
||||
"--advertise-routes=192.168.1.0/24"
|
||||
];
|
||||
|
|
|
@ -129,7 +129,7 @@ in
|
|||
};
|
||||
|
||||
services.tailscale.extraUpFlags = [
|
||||
"--advertise-routes=192.168.1.0/24"
|
||||
# "--accept-routes" # breaks incoming connections from outside Tailnet
|
||||
"--advertise-tags=tag:felschr-com"
|
||||
"--advertise-connector"
|
||||
];
|
||||
|
|
|
@ -22,7 +22,6 @@ in
|
|||
useRoutingFeatures = "both";
|
||||
extraUpFlags = [
|
||||
"--reset"
|
||||
"--accept-routes"
|
||||
"--exit-node-allow-lan-access"
|
||||
"--exit-node=de-dus-wg-001.mullvad.ts.net"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue