You are reading a single comment by @aggi and its replies. Click here to read the full conversation.
  • All I'm meant to be doing here is typing 192.168.2.230 in a web browser aren't I?

    Yup. Are you trying from a LAN cabled machine on a different subnet? If so, try from another wifi device

  • Tried a few different machines and some are definitely on the same subnet.

    Sometimes run into issues with things that don't like the multiple APs and SSIDs on the network but haven't had that issue with a pi before.

  • Check the pi MAC address against other Pi MAC addresses on the network (even on different subnets).

    They may not be unique, and router hate that.

  • For finding an open ssh port on your network

    for i in {1,10,20,30,40}; do sudo nmap 192.168.$i.* -p 22 --open; done
    

    (Change the 1, 10 etc... to reflect what subnets you have)

    For ports in use on localhost:

    lsof -Pn +M -i4
    

    also this, which I use to track down ports that are open & blocking something else :

    netstat -anlp | grep -w "Proto\|LISTEN"
    
About

Avatar for aggi @aggi started