I need to connect via TCP to a port that's behind a firewall, accessible through an SSH tunnel. I can achieve connection by opening a tunnel and hittting that port, but I want to build this tunneling in to my application.

Additionally, I want to be able to provide automatic login by use of having authorized keys on the server

This must work on the following platforms (in order of importance)

  • iOS (trickiest because I can't fork an ssh tunnel like I can on other platforms)
  • OS X
  • Linux
  • Windows

What's the easy way to do this? I don't want to spend a great deal of effort obviously since this isn't the meat of my application. But I'll reuse it so I may care enough to "do things right"

link|improve this question

Have you looked at: stackoverflow.com/questions/992374/… ? This looks pretty close to an exact duplicate... – Jerry Coffin Feb 15 '11 at 18:16
1  
@Jerry Coffin: Well, Nektarios is asking for an SSH tunnel, whereas the other one is just asking for an SSH library. :) – Helgi Hrafn Gunnarsson Feb 15 '11 at 18:30
feedback

3 Answers

up vote 4 down vote accepted

But libssh2 is BSD-licensed and appears to have the functionality needed

Looks like: libssh2_channel_direct_tcpip_ex will be the call

Note that the LGPL'd libssh is a problem because on iOS apps you MUST statically link and CANNOT dynamically link to libraries. Therefore, using an LGPL'd library means my source becomes open source.

link|improve this answer
If you look at the (probably biased) comparison (libssh2.org/libssh2-vs-libssh.html), libssh2 might be a better choice. – sstn Feb 15 '11 at 19:59
I also agree that libssh2 even for non-blocking is best. – Nektarios Feb 15 '11 at 21:22
feedback

There is a commercial LIB if you want to have a look at, www.chilkatsoft.com/, it is a genric C++ lib for all languages, in it there is a support for SSH tunneling for IOS.

link|improve this answer
feedback

Does the LGPL differentiate between linking dynamically and statically? I don't think so.

The library code (i.e. embedding your own SSH implementation) looks most versatile to me. Except the fact that you might inherit security problems.

On MacOSX/Linux/Unix, you can simply invoke 'ssh' and assume it exists (or make it as a precondition). On Windows, you would rely on putty and friends. I don't think that's a good idea.

link|improve this answer
2  
The LPGL does differentiate between linking dynamically and statically. – Jörgen Sigvardsson Feb 15 '11 at 20:44
@Jörgen - Oh, I see, I wasn't aware of that at all and could have sworn the opposite - I'm not a GPL/LGPL license specialist at all. So, LGPL'ed libraries are usually not a problem (on a desktop/server) because most programs are used dynamically. – sstn Feb 15 '11 at 20:49
2  
Well, the LGPL doesn't say it out loud, but if you put pieces together, it hints at it. Also, here are some words from Moglen (FSF's legal top dog): spinics.net/lists/xf/msg02311.html (scroll down a little, or search for "Code statically linked to other"). He says "Code statically linked to other code is a derivative work of the code with which it is linked, as far as we are concerned.". This gives me the chills, because the LGPL requires you to disclose derivative works. – Jörgen Sigvardsson Feb 15 '11 at 20:59
@Jörgen Okay, thanks for the info. I'll read through that. – sstn Feb 15 '11 at 21:16
The LGPL link referenced above is horrible period seeing as how 2 top experts from the FSF say almost completely different things. I have in the past released under GPL and never again want anything to do with it if at all possible. I wonder how many iPhone/iPad apps are in violation of these licenses and have no idea (you MUST statically link on iOS devices to be accepted to app store) – Nektarios Feb 15 '11 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.