0

I tried to follow the instructions here to set up a WLAN repeater on my pi 3 B+. wlan repeater

After I set up I was able to connect through SSH with my pi only through making a WLAN connection to my pi, until I restarted my Pi. Afterwards I was not able to SSH my pi through WLAN nor was I able to do so through the usual Ethernet cable or through the local WIFI network. I find connecting through WLAN to be convenient as there are less cables involved, how can I get that to work again? The error message for the WLAN connection is

ssh pi@192.168.4.165
ssh: connect to host 192.168.4.165 port 22: Connection refused

and for the others:

ssh pi@10.42.0.253
ssh: connect to host 10.42.0.253 port 22: No route to host

I tried to touch SSH in boot but I still cant connect. only way curretly for me to edit my pi is by taking the microSD card.

maxsieg
  • 90
  • 1
  • 3
  • 8

1 Answers1

1

I would check to see if it's connecting to your wifi network. You can go to your router admin page and view a list of clients.

enter image description here

If the device is listed there then you could try connect using the listed IP as well as the host name raspberrypi.local

I usually connect with

ssh pi@raspberrypi.local

Default password is "raspberry"

But likely it's not connecting to the network.

Tim Moody
  • 26
  • 2