Before start I need to mention that I have searched for a fix on Google and here for several weeks. But nothing found. For the moment I do not want to start with a fresh install.
I have a RPiB+ with Diet OS configured as DHCP (using Wi-fi with local IP 192.168.0.150) and I cannot access it through local network even that I can ping it with success and I can see it when I’m scanning the network with Advanced IP Scanner.
I have NextCloud installed and I want to access it via port 80. SSH the same is not available on local network.
One thing to mention (maybe this is the problem) : I have Remote.it account installed and guess what HTTP and SSH is working (on their links).
basically your system should be available on local network as well because you have dropbear SSH server (port 22) as well as lighttpd web server (port 80) listen on all interfaces. It’s not blocked or used by something else.
C:\Users\user>telnet 192.168.0.150 22
Connecting To 192.168.0.150...Could not open connection to the host, on port 22: Connect failed
C:\Users\user>telnet 192.168.0.150 80
Connecting To 192.168.0.150...Could not open connection to the host, on port 80: Connect failed
and with ping
C:\Users\user>ping 192.168.0.150
Pinging 192.168.0.150 with 32 bytes of data:
Reply from 192.168.0.150: bytes=32 time=5ms TTL=64
Reply from 192.168.0.150: bytes=32 time=4ms TTL=64
Reply from 192.168.0.150: bytes=32 time=5ms TTL=64
Reply from 192.168.0.150: bytes=32 time=5ms TTL=64
Ping statistics for 192.168.0.150:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 4ms, Maximum = 5ms, Average = 4ms
Well DietPi is basically a Raspbian lite. Just with reduced amount of packages and some scripts on top. And local access is working fine on all my RPi. So something special on your system.
As I have seen, you are running rpcbind service. Not sure if this could have any impact
Hi. I am from remote.it. Good to hear remote.it connections are working but odd you cannot connect from the LAN even though Ping is working fine on the LAN? I noticed you used port 22 for Telnet. I thought Telnet is on 23? Anyway if you still have the problem … I am not expert on dietpi but the command to ssh to a pi running Raspbian (a.ka Raspberry OS) is “ssh -l pi 192.168.0.150 -p 22” for default port 22. You might have to give the username in the command? Also if you explicitly type the port number I think you need the “-p” operator.