Send SSH commands from iOS?

The application that I plan to develop includes sending SSH commands from the phone to a server that supports SSH. Is there a library that will help me connect and send commands to the SSH server? Thank you I looked at libssh, but many of the things he used are deprecated in iOS6. ~ Carpetfizz

+4
source share
2 answers

NMSSH works great! I was able to successfully implement this in an iOS project and get everything to work.

https://github.com/Lejdborg/NMSSH

+9
source

You can look at this : I expect that you still have to do a non-trivial bit of work to fit into your application, but this should work.

0
source

Source: https://habr.com/ru/post/1483268/


All Articles