誰かが信頼できる基盤ノードのリストを提供できますか?
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があります.したがって、(debianのパッケージdnsutilsから)digを使用してそれらすべてに接続する必要があります.
ノードをプライベートモードで実行する場合は、最初にアドレスを信頼する必要もあります.
また、これらのノードをデフォルトの構成に入れることをお勧めします.コメント付きの代替行を参照してください.
# 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つの接続が切断されてもプライベートノードの稼働時間が妨げられないように、プライベートノードに接続できる信頼できる基盤ノードのリストが必要です.