wgengine/magicsock: clarify pre-disco 'tailscale ping' error message

This change clarifies the error message when a user pings a peer that is using an outdated version of Tailscale.
pull/767/head
Christina Wen 4 years ago committed by GitHub
parent 96fd20e3c0
commit 48fbe93e72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -648,8 +648,8 @@ func (c *Conn) Ping(ip netaddr.IP, cb func(*ipnstate.PingResult)) {
}
dk, ok := c.discoOfNode[peer.Key]
if !ok {
res.Err = "no discovery key for peer (pre 0.100?)"
if !ok { // peer is using outdated Tailscale version (pre-0.100)
res.Err = "no discovery key for peer (pre Tailscale 0.100 version?). Try: ping 100.x.y.z"
cb(res)
return
}

Loading…
Cancel
Save