mirror of
https://github.com/ChristopherA/Learning-Bitcoin-from-the-Command-Line.git
synced 2025-06-08 00:16:26 +00:00
Update 12_1_Verifying_Your_Tor_Setup.md
This commit is contained in:
parent
e5a3882af7
commit
0f7543aaa3
@ -16,3 +16,73 @@ Configuration was valid
|
||||
|
||||
~$
|
||||
```
|
||||
## Verify bitcoind Tor setup
|
||||
|
||||
You should see something like this in your debug log file to verify your ID onion address.
|
||||
|
||||
```
|
||||
$ grep -e "tor: " debug.log
|
||||
```
|
||||
Output
|
||||
|
||||
```
|
||||
2020-06-25T18:16:44Z tor: Thread interrupt
|
||||
2020-06-25T19:11:12Z tor: Got service ID [YOUR_ONION_ID], advertising service your_onion_id.onion:8333
|
||||
```
|
||||
Using bitcoin-cli you should use:
|
||||
|
||||
```
|
||||
$ bitcoin-cli getnetworkinfo
|
||||
```
|
||||
Output
|
||||
|
||||
```
|
||||
{
|
||||
"version": 200000,
|
||||
"subversion": "/Satoshi:0.20.0/",
|
||||
"protocolversion": 70015,
|
||||
"localservices": "0000000000000409",
|
||||
"localservicesnames": [
|
||||
"NETWORK",
|
||||
"WITNESS",
|
||||
"NETWORK_LIMITED"
|
||||
],
|
||||
"localrelay": true,
|
||||
"timeoffset": 0,
|
||||
"networkactive": true,
|
||||
"connections": 5,
|
||||
"networks": [
|
||||
{
|
||||
"name": "ipv4",
|
||||
"limited": false,
|
||||
"reachable": true,
|
||||
"proxy": "",
|
||||
"proxy_randomize_credentials": false
|
||||
},
|
||||
{
|
||||
"name": "ipv6",
|
||||
"limited": false,
|
||||
"reachable": true,
|
||||
"proxy": "",
|
||||
"proxy_randomize_credentials": false
|
||||
},
|
||||
{
|
||||
"name": "onion",
|
||||
"limited": false,
|
||||
"reachable": true,
|
||||
"proxy": "127.0.0.1:9050",
|
||||
"proxy_randomize_credentials": true
|
||||
}
|
||||
],
|
||||
"relayfee": 0.00001000,
|
||||
"incrementalfee": 0.00001000,
|
||||
"localaddresses": [
|
||||
{
|
||||
"address": "your_onion_id.onion",
|
||||
"port": 8333,
|
||||
"score": 4
|
||||
}
|
||||
],
|
||||
"warnings": ""
|
||||
}
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user