derp: allow self node when verifying clients
Fixes #2408 Signed-off-by: Maddie Zhan <maddie.zhan@cynovan.com>
This commit is contained in:
parent
05da2691a5
commit
d976a84d7e
|
@ -797,6 +797,9 @@ func (s *Server) verifyClient(clientKey key.Public, info *clientInfo) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to query local tailscaled status: %w", err)
|
return fmt.Errorf("failed to query local tailscaled status: %w", err)
|
||||||
}
|
}
|
||||||
|
if clientKey == status.Self.PublicKey {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
if _, exists := status.Peer[clientKey]; !exists {
|
if _, exists := status.Peer[clientKey]; !exists {
|
||||||
return fmt.Errorf("client %v not in set of peers", clientKey)
|
return fmt.Errorf("client %v not in set of peers", clientKey)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue