View on GitHub

Tunnel Boring Machine

A ruby application for managing SSH tunnels.

Download this project as a .zip file Download this project as a tar.gz file

Tunnel Boring Machine

Tunnel Boring Machine is a ruby application to manage SSH tunnels, which you can use to achieve something a little like a VPN, wherein SSH access to a server can give you access to the network beyond that server.

I use SSH tunnels on a regular basis to access resources at client sites that are not exposed directly to the internet as a whole. Managing those tunnels as a series of bash scripts or aliases, and moving those scripts around from environment to environment became cumbersome. I wanted / needed something better, and the tunnel boring machine has evolved from that need.

Current Status

Version 0.3.0 was released 2013-Mar-07, and is available for use. I’ve written up the release history and roadmap, if you wany more detail.

It’s early days in the project lifecycle. The code is fairly stable, the configuration file is increasingly stable, but the value proposition for most people is still questionable.

I’m using it, I know a couple of other people who use it sometimes, and it’s entirely up to you if you want to use it.

Given a few more releases, I might be able to make a stronger case for why this is something you want/need.

Installing

It is bundled as a ruby gem, so if you have Ruby and RubyGems installed, simply run:

gem install tbm

If you prefer, you can certainly download it and build it yourself, or simply invoke the ruby code from the command-line.

Invocation

For the time being, TBM is a simple command you invoke to open the tunnels you need, then you cancel with ^C to close the tunnels that you had opened. Something like this:

$ tbm dev-nginx

Eventually, I expect that TBM will become a little more interactive, allowing you to open additional tunnels without closing the ones you already opened, close a tunnel without closing all of them, and so forth. Whether it does this as an interactive program, a shell command that interacts with a running process is all TBD.

Configuration

You configure the tunnel boring machine by creating a configuration file in YAML form at ~/.tbm. At the moment, you can’t have multiple configuration files, change the location of the configuration file or anything of that nature.

An example configuration file follows:

dev.example.com:
  jira: 2222
  teamcity (tc): 8888
  jdbc-as400:
    as400: [ 449, 8470, 8471, 8476 ]
    alias: [ ju, ussi ]
  qa: 8080
  staging (staging, st): 8080:80
  5250: 8023:as400:23
  webfacing: as400:10905

There are lots of configuration options, which you can read in detail.

License

I’ve put it under the UNLICENSE. Basically, I don’t care if you use it, bundle it inside commercial software, or otherwise make use of it, and I don’t offer any kind of warranty or support guarantees, nor do I guarantee that any of the projects dependencies are suited for whatever purpose you have in mind. That’s all up to you. That said, if you want to talk about it, see the next section.

Contact

If you’re using TBM and you want to talk about it or make suggestions, get in touch with me on Twitter or send me an email. If there’s enough interest, I’d be happy to set up a group, but for the time being that seems like overkill.