Bitcoin Forum
December 24, 2025, 04:34:16 PM *
News: Latest Bitcoin Core release: 30.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Node Paused with 0 Connections , unable to connect Bitcoin core thru tor  (Read 162 times)
xmrhopium (OP)
Member
**
Offline Offline

Activity: 194
Merit: 80

If not now, when?


View Profile
October 30, 2025, 12:02:13 AM
Merited by ABCbits (1)
 #1

Hi, I recently updated to Bitcoin Core v29.1 on my new windows 11, but I’m now having a problem setting it up with Tor.

The problem is that my node isn’t connected to any Tor peers even though I set onlynet=onion, correctly?

I holds this data in the networkinfo, you please check those details.

Code:

{
  "version": 290100,
  "subversion": "/Satoshi:29.1.0/",
  "protocolversion": 70016,
  "localservices": "0000000000000c08",
  "localservicesnames": [
    "WITNESS",
    "NETWORK_LIMITED",
    "P2P_V2"
  ],
  "localrelay": true,
  "timeoffset": 0,
  "networkactive": true,
  "connections": 0,
  "connections_in": 0,
  "connections_out": 0,
  "networks": [
    {
      "name": "ipv4",
      "limited": true,
      "reachable": false,
      "proxy": "127.0.0.1:9050",
      "proxy_randomize_credentials": true
    },
    {
      "name": "ipv6",
      "limited": true,
      "reachable": false,
      "proxy": "127.0.0.1:9050",
      "proxy_randomize_credentials": true
    },
    {
      "name": "onion",
      "limited": false,
      "reachable": true,
      "proxy": "127.0.0.1:9050",
      "proxy_randomize_credentials": true
    },
    {
      "name": "i2p",
      "limited": true,
      "reachable": false,
      "proxy": "",
      "proxy_randomize_credentials": false
    },
    {
      "name": "cjdns",
      "limited": true,
      "reachable": false,
      "proxy": "127.0.0.1:9050",
      "proxy_randomize_credentials": true
    }
  ],
  "relayfee": 0.00000100,
  "incrementalfee": 0.00000100,
  "localaddresses": [
  ],
  "warnings": [
  ]
}   now


Both inbound and outbound connections showing 0, its been nearly an hour and getpeerinfo shows almost no data which I was expecting some outbound connections to sync my bitcoin core node over the tor network, but unfortunately, the sync has been paused for the past hour.

Code:
 
[
]

Any clue how can I solve this issues right now?

I love it ∞/21,000,000.
BlackHatCoiner
Legendary
*
Offline Offline

Activity: 1876
Merit: 9193


Bitcoin is ontological repair


View Profile
October 30, 2025, 12:11:15 PM
Merited by LoyceV (4), ABCbits (2)
 #2

Bitcoin Core thinks the Tor SOCKS proxy is at 127.0.0.1:9050. Check if Tor is actually listening on that port:
Code:
Test-NetConnection 127.0.0.1 -Port 9050

If it does not return true, then you might be listening on another port (e.g., 9150). Test the same command under 9150. If that does not work, the debug.log might be helpful.



▄▄▄▄▄▄▄▄▄▄▄░▄▄▄▄▄███▄▄▄▄▄▄▄▄▄███▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▄▄▄▄▄▄░▄▄▄▄▄▄░░▄▄▄▄▄▄▄▄▄▄▄▄▄▄░▄▄▄▄▄░▄▄▄▄▄▄▄░███████████████████░░████████▄▄░███████████████████████████████
▄█████████████████████████████████████████████████████████████░░██████████▄█████████████████▀▀███████████▀
████████████████████████████████████████████████████████████░░█████████████████████████▀████▄███████▀░░
████▄▄███████████████████████████████▄▄██████████████████████░▄██████████████████████████▄███▄███████░░░░
▀█████████████████████████████████████████████████████▀██████████████████▀▀████████████████▄▄▄█████████▄░░
██████████░▀███▀█████████████▀░▀████▀███████▀█████████████▀████████████████░░▀▀████████░▀█████████████████▄
█████████████▀███████▀▀▀████▀████▀████▀░░▀██████████████████
█████████████████████████████████████████████████████████████████████████████████▀▀▀▀▀▀
███████████████████████████████████████████████▀███▀
.
..100% WELCOME BONUS  NO KYC  UP TO 15% CASHBACK....PLAY NOW...
nc50lc
Legendary
*
Offline Offline

Activity: 2996
Merit: 8171


Self-proclaimed Genius


View Profile
October 31, 2025, 05:42:32 AM
 #3

Hi, I recently updated to Bitcoin Core v29.1 on my new windows 11, but I’m now having a problem setting it up with Tor.

The problem is that my node isn’t connected to any Tor peers even though I set onlynet=onion, correctly?
Please clarify; was your previous setup isn't configured with Tor onion service?
If so, you should tell the related config that you've added to your bitcoin.conf file.

And, is Tor service already setup and running in your Windows 11 PC? (you can check if it's running in your services named "Tor Win32 Service")
Because with the correct proxy and Tor-related settings in Bitcoin Core, it will already show as "limited": false, "reachable": true, even if it can't find a running Tor service.
It'll just result with zero peers with onlynet=onion if Tor isn't available.

xmrhopium (OP)
Member
**
Offline Offline

Activity: 194
Merit: 80

If not now, when?


View Profile
October 31, 2025, 08:19:32 AM
Merited by nc50lc (1)
 #4

Bitcoin Core thinks the Tor SOCKS proxy is at 127.0.0.1:9050. Check if Tor is actually listening on that port:
Code:
Test-NetConnection 127.0.0.1 -Port 9050

If it does not return true, then you might be listening on another port (e.g., 9150). Test the same command under 9150. If that does not work, the debug.log might be helpful.
Thanks and sorry for the late reply. Yeah, I changed the proxy from 9050 to 9150 like you recommended and it's connected to 10 peers right away. It’s now fully online without any error.

Code:

{
      "name": "onion",
      "limited": false,
      "reachable": true,
      "proxy": "127.0.0.1:9150",
      "proxy_randomize_credentials": true
    },

  ],

  "relayfee": 0.00000100,
  "incrementalfee": 0.00000100,
  "localaddresses": [
  ],
  "warnings": [
  ]
}




-snip-
Please clarify; was your previous setup isn't configured with Tor onion service?
If so, you should tell the related config that you've added to your bitcoin.conf file.

And, is Tor service already setup and running in your Windows 11 PC?
Because with the correct proxy and Tor-related settings in Bitcoin Core, it will already show as "limited": false, "reachable": true, even if it can't find a running Tor service.

It'll just result with zero peers with onlynet=onion if Tor isn't available.
Yes, actually my previous setup was not properly configured with the TOS which I had set the Tor proxy to port 9050 but it wasn't connecting (that was the only problem), then switching to 9150 right after @BlackHatCoiner's suggestions, I updated the bitcoin.conf, it's now working perfectly.

I do have this set up for the tor proxy settings in my config file.

Code:
proxy=127.0.0.1:9150
onlynet=onion
listen=1
discover=0

Thanks.

I love it ∞/21,000,000.
nc50lc
Legendary
*
Offline Offline

Activity: 2996
Merit: 8171


Self-proclaimed Genius


View Profile
November 01, 2025, 04:43:22 AM
 #5

Yes, actually my previous setup was not properly configured with the TOS which I had set the Tor proxy to port 9050 but it wasn't connecting (that was the only problem), then switching to 9150 right after @BlackHatCoiner's suggestions, I updated the bitcoin.conf, it's now working perfectly.
Okay, so you're using "Tor Browser Bundle" instead of a stand-alone background process "Tor service" since their default SOCKS Port are different.
No wonder that the previous proxy settings didn't work.

Since you didn't mentioned that, others who have the same issue and found this thread should take note of it.

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!