From 76819e7432a193bd7e9c752b4d08cb4ac3cb1759 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 18 Feb 2020 13:15:15 -0800 Subject: [PATCH] tailscaled: call the network interface tailscale0, not ts0. Signed-off-by: David Anderson --- cmd/tailscaled/tailscaled.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tailscaled/tailscaled.go b/cmd/tailscaled/tailscaled.go index 9125c04a1..917d05fcd 100644 --- a/cmd/tailscaled/tailscaled.go +++ b/cmd/tailscaled/tailscaled.go @@ -35,7 +35,7 @@ const globalStateKey = "_daemon" func main() { fake := getopt.BoolLong("fake", 0, "fake tunnel+routing instead of tuntap") debug := getopt.StringLong("debug", 0, "", "Address of debug server") - tunname := getopt.StringLong("tun", 0, "ts0", "tunnel interface name") + tunname := getopt.StringLong("tun", 0, "tailscale0", "tunnel interface name") listenport := getopt.Uint16Long("port", 'p', magicsock.DefaultPort, "WireGuard port (0=autoselect)") statepath := getopt.StringLong("state", 0, "", "Path of state file") socketpath := getopt.StringLong("socket", 's', "/run/tailscale/tailscaled.sock", "Path of the service unix socket")