Is it possible to set the Arduino Yun up as an ssh client? If so, how?
Asked
Active
Viewed 4,332 times
1 Answers
1
You need to install package openssh-client: it's available in the package list. See this tutorial about how to install optional packages.
You can call ssh on the Linux side using Process from the Bridge Arduino library.
Best is when you execute single or grouped commands using a syntax as:
ssh user@your_other_host 'echo 1; echo 2'
Managing an open ssh session is possible but I think may be troublesome, so avoid it if you can.
Federico Fissore
- 1,281
- 7
- 10