Re: DICOM on SSH?



You use an SSH tunnel.
If Box-1 is running the SSH server, and this med app is listening on
port 104, in Box-2 you do something like:

ssh -C -L 2323:127.0.0.1:104 Box-1

(If you're using putty, that's allow compression and add a local
tunnel).
And leave it running. Then, again in Box-2, (on another Window) you
tell the med app to connect to localhost on port 2323. It's connection
will be caught by SSH, encrypted, and sent to Box-1. In Box-1, the SSH
server will decrypt it and send it to 127.0.0.1 (from Box-1's point of
view, i.e: Box-1) on port 104, so the med app will receive it.

SpreadTooThin wrote:
Hi I have a medical imaging application that I normally communicates
with its peers via TCP/IP.
There is a client and a server portion to this application that listens
on a port and client that
sends to that port. (Typically port 104).

My question is how do I use ssh under this application? ie. What do I
do so that the
communications between the client and server go through ssh.

The only configuration parameters that these applications have (that is
relevant to tcp/ip)
is a host name and port number.

TIA.

.



Relevant Pages

  • Re: ipfw and nmap
    ... > even be correct but I have a bsd box that is simply providing me SSH ... add allow tcp from any to me 22 setup in via fxp0 keep-state ... Note too that there is nothing to prevent port scanners simply setting ... the 'SYN' flag in the probe packets they send to your server. ...
    (freebsd-questions)
  • Re: Remote Desktop directly to another computer on the network
    ... default port... ... And there is no reason for me to believe that ssh ... When I have a multibillion company I will use the key pair, ... WinSCP for that to access my home SSH server. ...
    (microsoft.public.windowsxp.work_remotely)
  • Re: need help for setting SSH Server for Windows XP
    ... In my windows firewall proper ports are opened. ... Changing from port 22 to ports 80, 443 also doesn't give any results. ... static LAN IP of the server PC. ... It is *NOT* a valid test to call the SSH server PC from another ...
    (microsoft.public.windowsxp.work_remotely)
  • Re: Port Forwarding -- Checking to be sure I understand it
    ... They run an ssh ... server and VNC service. ... If you want to run the tunnel over some port other than 22 (the ... restrictive firewalls that deny all incoming connections and block most ...
    (comp.security.ssh)
  • Re: DICOM on SSH?
    ... If Box-1 is running the SSH server, and this med app is listening on ... tell the med app to connect to localhost on port 2323. ...
    (comp.security.ssh)