I'm wanting to create an SSH tunnel to use for talking securely with a remote legacy application, but I don't want other local applications to be able to use it. Is this possible with Python and/or Ruby, perhaps using an in-memory handle to the tunnel that can be written to and read from like a normal socket handle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Latest versions of OpenSSH support the
I don't know in Python or Ruby, but in Perl you can easyly use this feature with Net::OpenSSH. For instance:
|
|||||||
|
iptables: iptables/pf rule to only allow XY application/user? – Pedro Romano Nov 18 '12 at 23:31paramikois also an option for doing it programmatically in Python. – Pedro Romano Nov 18 '12 at 23:37