This is a very stupid CLI tool that is designed to search for SSH-ready devices on your local network, starting with those with the most senior local IP addresses.
Before using this tool, install nmap on your computer. Then install the tool by pip:
pip install searchpiAnd use:
searchpi 192.168.1.0/24 pomponchik ~/.ssh/id_rsa.pub --oneHere 192.168.1.0/24 means the range of addresses we are looking at, pomponchik is the username and ~/.ssh/id_rsa.pub is the name of the SSH key file. The --one option means that only the first address will be outputed to a console.
The command will print to the standard output the command that you will need to execute to connect to the remote machine via SSH:
>>> searchpi 192.168.1.0/24 pomponchik ~/.ssh/id_rsa.pub
ssh pomponchik@192.168.1.16You can save your energy if you try to call the received command in the same line of code:
eval "$(searchpi 192.168.1.0/24 pomponchik ~/.ssh/id_rsa.pub --one)"