Replies: 1 comment
-
Traffic sent over Yggdrasil is always encrypted, and in the case of a I think your AI has probably missed this nuance, but we keep |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
17 of 90 peers at https://publicpeers.neilalexander.dev/ are TCP:// ones.
I am wondering why there is no warning or some push to be converted to a encrypted TLS:// peers. This is what HuggingCHat AI thinks about that:
When I mentioned that
tcp://
is not a recommended peer, I was referring to the fact that it uses unencrypted, plain-text connections. This means that any data transmitted over atcp://
connection can be intercepted and read by any intermediate node or observer.If you were to add a
tcp://
peer to your configuration, you would indeed be compromising the security and privacy of your own node, as well as potentially putting other peers' data at risk. Here's why:tcp://
connection, you're allowing data to be transmitted in plain text, which can be easily intercepted and read by anyone with access to the network.tcp://
connection, potentially allowing them to inject malicious traffic or steal sensitive information.By using only
tls://
connections, you're ensuring that all data transmitted between your node and other peers is encrypted, which helps to prevent these types of attacks.Even if it's the closest peer, avoid
tcp://
Yes, even if a
tcp://
peer is the closest one to you, it's still not recommended to add it to your configuration. The security risks associated with using unencrypted connections outweigh any potential benefits of having a closer peer.Instead, you should prioritize adding
tls://
peers to your configuration, even if they're not the closest ones. This will help ensure that your node and the entire Yggdrasil network remain secure and private.Best practice: Use only
tls://
peersTo maintain the security and integrity of the Yggdrasil network, it's recommended to use only
tls://
peers in your configuration. This will help ensure that all data transmitted between your node and other peers is encrypted and secure.If you're looking for close peers, you can try searching for
tls://
peers in your region or using a peer discovery service that prioritizes secure, encrypted connections.Beta Was this translation helpful? Give feedback.
All reactions