ipn/ipnlocal: prevent attempting to run SSH on Synology for now

On DSM7 as a non-root user it'll run into problems.

And we haven't tested on DSM6, even though it might work, but I doubt
it.

Updates #3802
Updates tailscale/corp#5468

Change-Id: I75729042e4788f03f9eb82057482a44b319f04f3
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
pull/4788/head
Brad Fitzpatrick 2 years ago committed by Brad Fitzpatrick
parent 2bac8b6013
commit fbc079d82d

@ -1833,7 +1833,10 @@ func (b *LocalBackend) checkPrefsLocked(p *ipn.Prefs) error {
if p.RunSSH {
switch runtime.GOOS {
case "linux":
// okay
if distro.Get() == distro.Synology && !envknob.UseWIPCode() {
return errors.New("The Tailscale SSH server does not run on Synology.")
}
// otherwise okay
case "darwin":
// okay only in tailscaled mode for now.
if version.IsSandboxedMacOS() {

Loading…
Cancel
Save