geth add peers static-nodes.json
如果要組成一個私人網路,同樣按照上面的流程建立其他節點。如果沒有下–nodiscover參數的話,最後節點應該會找到彼此。如果有下的話就必須用手動的方式加入其他節點,加入的方式有三種:
一是在geth指令加入–bootnodes參數;
二是進到console裡使用 admin.addPeer();
三是存成static-nodes.json檔,讓geth自動連線。
不管是使用哪一種,我們都要先知道要連到
static-nodes.json 裡面使用domain,可能會有問題,要自行更換ip
Example:
geth --data ~/data
cp static-nodes.json ~/data/geth/static-nodes.json
static-nodes.json like this
[
"enode://53999cc519079c5190798b1114bd16a05a8d5190796cc51907988a4e80ebda7b6c519079e56b0b161da3475c4dc62f6b51907967a6e327e46aa56329c519079f@192.168.0.10:30303"
]