Leaf cluster in status offline #52961
-
I have two clusters: root and leaf, a both version 16.3.0. I want to test trusted clusters, but when I try to connect leaf cluster to root, I have leaf cluster in status offline.
And in logs of proxy in leaf cluster I have this errors:
Config of root/leaf auth service:
Config of root/leaf proxy service:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Also config of trusted_cluster:
|
Beta Was this translation helpful? Give feedback.
-
You shouldn't need to set You should also set a public address for your cluster - it will need to be a DNS name (with an A record pointing to your root cluster's IP address): version: v3
teleport:
nodename: teleport-proxy
data_dir: /var/lib/teleport
auth_server: :3025
auth_token: "super-secret-token"
log:
output: stderr
severity: INFO
auth_service:
enabled: no
proxy_service:
enabled: yes
web_listen_addr: 0.0.0.0:443
+ public_addr: teleport.example.com:443
- tunnel_listen_addr: 0.0.0.0:3024
ssh_service:
enabled: no You will also need a valid TLS certificate for Once this is all set, restart Teleport on your root cluster. Then, delete the trusted cluster config from your leaf cluster (either via |
Beta Was this translation helpful? Give feedback.
You shouldn't need to set
tunnel_listen_addr
in either your root or leaf's proxy service configs. Try removing that.You should also set a public address for your cluster - it will need to be a DNS name (with an A record pointing to your root cluster's IP address):
You will also need a valid TLS certificate for
teleport.exam…