Full Node Not Taking Incoming Connections

1

I set up an RPi3 with Bitcoin full node 13.2. It is running Raspbian the latest version and is up to date.

My router has a static IP on the public internet. My RPi3 is behind NAT.

I configured my router to port forward 8333 to my RPi3.

The RPi3 is pretty much stock, so I don't think there is a firewall running. If there is I don't know about it or how to configure it.

The bitnodes site says my RPi3 is not accepting incoming connections.

Any ideas?

user856232

Posted 2017-07-08T04:01:21.853

Reputation: 123

Does your node respond to RPC commands? Does it have outgoing connections?Pieter Wuille 2017-07-09T09:23:05.293

try to use 'netcat' from another machine connected to the internet. You must know your routers IP, and then try: $ nc <your_router-ip> 8333 - see if it replies. You can use netcat against webservers in the internet with IP address and port 80, to get a bit familiar. This will tell you if your port is really open or not. Some network skills and experience is beneficial :-)pebwindkraft 2017-07-09T19:32:11.950

Are you familiar with Linux/Debian? Know how to search for processes, that might run a firewall?pebwindkraft 2017-07-09T19:35:29.860

I went to a port scanner and it said port 8333 was replying, but when I went to the bitcoin node testing site it said it wasn't responding. Maybe it is because the blockchain is not downloaded yet?user856232 2017-07-10T12:46:35.317

As far as I can tell there is no firewall running.user856232 2017-07-10T12:47:18.380

No answers