Meta-magical SSH tunnels for remote developers behind firewalls.
Project description
Meta-magical SSH tunnels for remote developers behind firewalls.
Ever tried to pair-program with someone who works behind a firewall? You want to SSH into their machine, but you can’t! Relay makes it possible to share your development environemnt with anyone by using another server in the middle to proxy the connection. And it doesn’t just work with SSH–you can tunnel the webserver too!
Server setup
Relay requires that you have a server running somewhere public which you can use to bounce connections from between your users. We use an EC2 micro in a public security group, but you can use anything you want. You’ll need to make sure whatever ports you map in your ports.json are open to the world.
Install
Relay can be installed in a virtualenv, but we recommend installing it with sudo so it is always available:
$ sudo pip install relay
General setup
(nprapps users see the next section)
Relay uses a configuration file located at ~/.relay.conf. Create this file with contents such as:
[relay]
# User to connect to the relay server as
user = ubuntu
# Hostname or IP of the relay server
server = relay_server.your_domain.com
# Absolute path to the public and private SSH keys
public_key = /path/to/your/public_key.pub
private_key = /path/to/your/private_key
# Username of the pair programmer account on each developer computer
pair_user = relay
# Absolute path to the port mapping file
ports_json = /path/to/your/ports.json
# Absolute path to a file containing bash aliases to be installed when creating the pair programmer user account
bash_profile = /path/to/your/bash_profile
ports.json is a mapping of user’s local ports to remote ports on the server, so that users will never collide when creating SSH tunnels. Create this file with contents such as:
{
"chris": {
"22": "2222",
"8000": "8000"
},
"katie": {
"22": "2223",
"8000": "8001"
},
}
You then need to create a relay user. This process is automated:
$ relay setup
If you’re running OS X, you need to enable remote login for the newly created relay user. Open System Preferences and navigate to the “Sharing” preference pane.
Check the box next to “Remote Login.”
NPRApps setup
Pre-baked configuration files are in our Dropbox folder. You must have Dropbox installed, syncing to ~/Dropbox and the nprapps shared folder synced to your local computer. Then run:
$ ln -s ~/Dropbox/nprapps/relay/relay.conf ~/.relay.conf $ relay setup
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file relay-0.0.7.tar.gz
.
File metadata
- Download URL: relay-0.0.7.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 546d60d3098673ba6a6a1aee375a342f531976f4f3f1fde253fc37da5bd4f784 |
|
MD5 | f00b64482f48250137fedb0038d5dd44 |
|
BLAKE2b-256 | 1ab844a76c87025e75884111ef3966ce274eebf69adf3b23a73812c2581ced2f |