derp: allow self node when verifying clients

Fixes #2408

Signed-off-by: Maddie Zhan <maddie.zhan@cynovan.com>
pull/2396/head
maddie 3 years ago committed by Brad Fitzpatrick
parent 05da2691a5
commit d976a84d7e

@ -797,6 +797,9 @@ func (s *Server) verifyClient(clientKey key.Public, info *clientInfo) error {
if err != nil {
return fmt.Errorf("failed to query local tailscaled status: %w", err)
}
if clientKey == status.Self.PublicKey {
return nil
}
if _, exists := status.Peer[clientKey]; !exists {
return fmt.Errorf("client %v not in set of peers", clientKey)
}

Loading…
Cancel
Save