You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I am connected to Wi-Fi, I want a list of devices on my network so I can connect to them, I wanted to build a shortcut that would get a list of all devices in my network and control them using SSH commands. This would also be useful when your local ip address changes and for whatever reason you can not assign a static one. There are apps that do this (Fing, iNet) but they do not seem to provide an action for this.
The text was updated successfully, but these errors were encountered:
I looked into this extensively yesterday. It seems like all the methods to do this are deprecated and the new replacement API does not support this use-case. Scanning the network on iOS would also require special entitlement that Apple has to manually approve. So I'm unfortunately unlikely to do this. But I'll leave it open in case anyone wants to work on this.
Some technical info. NWBrowser is the modern way to discover devices, but it does not support wildcard searching (you have to specify a type), and it's also not able to resolve the IP address without actually connecting to the devices. This leaves us with NetService, which is deprecated, or the archaic low-level <dns_sd.h> API, which I would not want to touch.
Description
When I am connected to Wi-Fi, I want a list of devices on my network so I can connect to them, I wanted to build a shortcut that would get a list of all devices in my network and control them using SSH commands. This would also be useful when your local ip address changes and for whatever reason you can not assign a static one. There are apps that do this (Fing, iNet) but they do not seem to provide an action for this.
The text was updated successfully, but these errors were encountered: