Changes between Version 1 and Version 2 of HowTo/ForwardVideoOverSSH


Ignore:
Timestamp:
07/24/14 23:33:51 (10 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/ForwardVideoOverSSH

    v1 v2  
     1= Forward Video from a Node =
    12
     3Assuming you have a server running
    24
    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 1. Create an `~/.ssh/config` contain the following (or append the following to an existing config):
    56{{{
    67Host vlc-client
     
    910  # The SSH port of the client you want to view the video from
    1011  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
     12  # Your SSH username
     13  User jdoe
     14  # Pick a port to forward from your local machine; IP address and port of the data plane address of the server you are trying to connect to
    1315  LocalForward 6080 10.10.1.1:80
    1416  # The private ssh key you want to use to connect
    1517  IdentityFile /home/jdoe/.ssh/id_geni_ssh_rsa
    1618}}}
    17  1. On your local machine:
     19 1. On your local machine, run:
    1820{{{
    1921ssh vlc-client
    2022}}}
    2123 1. Leave the SSH connection open
    22  1. On your local machine, open browser to:
     24 1. On your local machine, browse to:
    2325{{{
    2426http://localhost:6080