You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you add a null route using ip route add ... to auth on a node then attempt to tsh ssh into that node, it will take a very long time to run (about 6 minutes). The following appears in the logs indicating that session establishment may be hung on attempting to create an active session.
Failed to create new session: Post "https://teleport.cluster.local/v2/namespaces/default/sessions":
dial tcp w.x.y.z:3025: connect: connection timed out
The text was updated successfully, but these errors were encountered:
Neither ip route add -host $auth_ip reject or ip route add -host $auth_ip blackhole cause latency issues with tsh ssh. I was only able to reproduce this with ip route add $auth_ip dev lo.
NewHTTPClient was not calling CheckAndSetDefault on the provided client.Config which
allowed the DialTimeout to be 0. This allowed dialing auth to hang forever if
auth is unreachable.
Fixes#8866
NewHTTPClient was not calling CheckAndSetDefault on the provided client.Config which
allowed the DialTimeout to be 0. This allowed dialing auth to hang forever if
auth is unreachable.
Fixes#8866
NewHTTPClient was not calling CheckAndSetDefault on the provided client.Config which
allowed the DialTimeout to be 0. This allowed dialing auth to hang forever if
auth is unreachable.
Fixes#8866
If you add a null route using
ip route add ...
to auth on a node then attempt totsh ssh
into that node, it will take a very long time to run (about 6 minutes). The following appears in the logs indicating that session establishment may be hung on attempting to create an active session.The text was updated successfully, but these errors were encountered: