Changes between Initial Version and Version 1 of HowTo/ForwardVideoOverSSH


Ignore:
Timestamp:
07/24/14 22:56:52 (10 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/ForwardVideoOverSSH

    v1 v1  
     1
     2
     3 1. Run an apache server o
     4 1. Create an `~/.ssh/config` contain a following (or append the following to an existing config):
     5{{{
     6Host vlc-client
     7  # The IP or hostname of the client you want to view the video from
     8  HostName pc2.instageni.ku.gpeni.net
     9  # The SSH port of the client you want to view the video from
     10  Port 34106
     11  User sedwards
     12  # Pick a port to forward on to your local machine; IP address and port of the data plane address of the server you are trying to connect to
     13  LocalForward 6080 10.10.1.1:80
     14  # The private ssh key you want to use to connect
     15  IdentityFile /home/jdoe/.ssh/id_geni_ssh_rsa
     16}}}
     17 1. On your local machine:
     18{{{
     19ssh vlc-client
     20}}}
     21 1. Leave the SSH connection open
     22 1. On your local machine, open browser to:
     23{{{
     24http://localhost:6080
     25}}}