プライベートノードが開始コマンドに記載されているピアに接続していません
-
-
`--rpc-addr=localhost`を使用してプライベートノードを実行し、(プライベートノードと同じマシン上で)実行の出力を提供できますか?`tezos-client rpcget/network/points/public_node_ip:9732`?could you run your private node with `--rpc-addr=localhost` and give the output of running (on the same machine as your private node) `tezos-client rpc get /network/points/public_node_ip:9732` ?
- 0
- 2019-03-08
- Julien
-
新しいマシンをセットアップし、起動直後からプライベートモードでノードを起動しました(パブリックモードでノードを起動したことはありません).これで、-peerオプションに記載されているパブリックノードに接続できるようになりました.I have setup a new machine and started my node in private mode right from starting (never started my node in public mode) now it is able to connect to my public node mentioned in --peer option.
- 0
- 2019-03-14
- Sachin Tomar
-
1 回答
- 投票
-
- 2019-03-18
incoming connection rejected due to untrusted source
は、同じIPでの以前の非プライベート実行が原因であることが最も確実です.IPは潜在的なピアとして知られているため、他のノードが接続を試みます.問題ではありません.ノードはこれらの接続を拒否するだけです.パブリックノードが飽和状態になっている可能性があります. パブリックノードの信頼できるピアにプライベートノードもあることが重要です. したがって、 パブリックノード はまた
--peer=
private_node_ip:port
またはconfig.jsonファイルのプライベートノードIPを使用します.パブリックノードがプライベートノードを信頼できると見なすことが非常に重要です.そうでない場合、接続のメンテナンスフェーズ中にプライベートノードがキックされる可能性があります.
The
incoming connection rejected due to untrusted source
is most certainly due to a previous non-private run on the same IP. Your IP is known as a potential peer, so other nodes try to connect. It is not a problem, your node will simply reject these connections.Maybe your public node was saturated. It is important that your public node also has your private node in its trusted peers. So your public node should also be run with
--peer=
private_node_ip:port
or with your private node IP in the config.json file.It is very important that the public node consider the private node as trusted. If not, the private node might be kicked during connections maintenance phase.
-
プライベートノードのIPをパブリックノードの信頼できるIPアドレスに追加しました.パブリックノードがすでに接続でいっぱいになっていて、プライベートノードに接続できなかった可能性があります.I had added the private-node ip to public-node trusted ip addresses. It could be the case my public-node was already full with the connections that it could not connect with my private node.
- 0
- 2019-03-19
- Sachin Tomar
以下のコマンドを使用してプライベートノードを起動しました:
public_nodeはすでにピアへの接続で実行されています.
プライベートノードのログに「信頼できないソースが原因で着信接続が拒否されました」と表示されるようになり、プライベートノードがパブリックノードに接続しなくなりました.
config.jsonファイルも確認しましたが、public_node_ipが「bootstrapped-peers」キーに対して存在していました.
プライベートノードをパブリックノードに接続するには、他に何をすべきですか?