누군가 신뢰할 수있는 기반 노드 목록을 제공 할 수 있습니까?
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 (데비안의 dnsutils 패키지에서)를 사용하여 모두에 연결해야합니다.
비공개 모드에서 노드를 실행할 때 먼저 주소를 신뢰해야합니다.
또한 이러한 노드를 기본 구성에 넣는 것이 좋습니다.주석 처리 된 대체 줄을 참조하십시오.
# 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 개의 연결이 끊어져도 개인 노드 가동 시간이 방해받지 않도록 개인 노드에 연결할 수있는 신뢰할 수있는 기반 노드 목록이 필요합니다.