比特幣(Bitcoin) RPC Network API中addnode的用法及代碼示例。
用法:
addnode "node" "command"
嘗試在addnode列表中添加或刪除節點。
或嘗試一次連接到節點。
使用addnode(或-connect)添加的節點可以防止DoS斷開連接,並且不需要像其他出站對等方一樣是完整節點/支持SegWit(盡管此類對等方不會進行同步)。
參數1 - node
類型:字符串,必填
節點(有關節點,請參見getpeerinfo)
參數2 - command
類型:字符串,必填
‘add’將節點添加到列表,‘remove’從列表中刪除節點,‘onetry’嘗試一次與該節點的連接
示例
bitcoin-cli addnode "192.168.0.6:8333" "onetry"
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "addnode", "params": ["192.168.0.6:8333", "onetry"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相關用法
- Bitcoin clearbanned用法及代碼示例
- Bitcoin disconnectnode用法及代碼示例
- Bitcoin getaddednodeinfo用法及代碼示例
- Bitcoin getconnectioncount用法及代碼示例
- Bitcoin getnettotals用法及代碼示例
- Bitcoin getnetworkinfo用法及代碼示例
- Bitcoin getnodeaddresses用法及代碼示例
- Bitcoin getpeerinfo用法及代碼示例
- Bitcoin listbanned用法及代碼示例
- Bitcoin ping用法及代碼示例
- Bitcoin setban用法及代碼示例
注:本文由純淨天空篩選整理自bitcoin.org大神的英文原創作品 Bitcoin addnode。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。