有人可以提供受信任的基础节点列表吗?
4 个回答
- 投票数
-
- 2019-03-08
命令以将可信节点添加到配置
这是配置节点以使用这些"受信任节点"的方式.我添加了命令以打开多达500个连接,这些连接当然可以忽略:
./tezos-node config update \ --peer="dubnodes.tzbeta.net:9732" \ --peer="franodes.tzbeta.net:9732" \ --peer="sinnodes.tzbeta.net:9732" \ --peer="nrtnodes.tzbeta.net:9732" \ --peer="pdxnodes.tzbeta.net:9732" \ --connections 500
Command to add trusted nodes to config
This is how I configure the node to use these "trusted nodes". I added the command to open up to 500 connections which can be left out of course:
./tezos-node config update \ --peer="dubnodes.tzbeta.net:9732" \ --peer="franodes.tzbeta.net:9732" \ --peer="sinnodes.tzbeta.net:9732" \ --peer="nrtnodes.tzbeta.net:9732" \ --peer="pdxnodes.tzbeta.net:9732" \ --connections 500
-
请注意,这不会使所有单个节点都位于这些DNS名称的后面.请参阅我的答案.Please note that this will not get all the individual nodes behind those DNS names. See my answer for an alternative.
- 0
- 2020-01-23
- Phlogi
-
-
- 2019-03-08
这是基础节点的维护者给出的完整列表:
dubnodes.tzbeta.net franodes.tzbeta.net sinnodes.tzbeta.net nrtnodes.tzbeta.net pdxnodes.tzbeta.net
我主要使用这些.
Here is the full list given by the maintainer of the foundation nodes:
dubnodes.tzbeta.net franodes.tzbeta.net sinnodes.tzbeta.net nrtnodes.tzbeta.net pdxnodes.tzbeta.net
I use those mainly.
-
- 2020-01-23
在已知DNS地址后面是带有节点的几个单独IP.因此,您应该使用dig(来自debian上的dnsutils软件包)来连接所有这些.
以private 模式运行节点时,还需要首先信任该地址.
另外,将这些节点放入默认配置也是一个好主意.请参阅注释的替代行.
# get foundation nodes for i in dubnodes franodes sinnodes nrtnodes pdxnodes; do for j in `dig $i.tzbeta.net +short`; do # assume default port address="[$j]:9732" # trust new address if in private mode tezos-admin-client -A localhost trust address "${address}" tezos-admin-client -A localhost connect address "${address}" # alternative: Add to node config # tezos-node config update --peer="${address}" done done
Behind the known DNS addresses are several individual IPs with the nodes. Therefore you should use dig (from package dnsutils on debian) to connect to all of them.
When running a node in private mode, you also need to trust the address first.
Also it might be a good idea to put these nodes into your default config. See the commented alternative line.
# get foundation nodes for i in dubnodes franodes sinnodes nrtnodes pdxnodes; do for j in `dig $i.tzbeta.net +short`; do # assume default port address="[$j]:9732" # trust new address if in private mode tezos-admin-client -A localhost trust address "${address}" tezos-admin-client -A localhost connect address "${address}" # alternative: Add to node config # tezos-node config update --peer="${address}" done done
我有我的私有节点,该节点一直与我的公共节点断开连接.因此,我需要列出可以连接到我的私有节点的受信任基础节点的列表,这样,如果1个或2个连接中断,我的私有节点的正常运行时间就不会受到影响.