Find a file
2016-08-25 21:19:22 -07:00
build.assets Removed excessive logging and bumped Golang to 1.7 2016-08-18 17:13:05 -07:00
docs Added documentation for keyboard shortcuts 2016-08-08 17:38:46 -07:00
fixtures Fixed tests 2016-06-12 15:11:56 -07:00
Godeps update buger/goterm: fix build error on 32bit environment 2016-08-09 02:39:29 +08:00
integration Improvement to help aid debugging 2016-08-21 21:49:24 -07:00
lib Enabled port forwarding for joined sessions 2016-08-25 21:19:22 -07:00
tool Released 1.0.5 2016-08-19 14:54:52 -07:00
vagrant Fixed OSX vagrant environment 2016-07-11 17:36:07 -07:00
vendor update buger/goterm: fix build error on 32bit environment 2016-08-09 02:39:29 +08:00
web fixing fonts 2016-08-15 14:17:03 -04:00
.gitattributes fix linguist stats for project 2016-06-02 20:50:30 +03:00
.gitignore Zero-config Vagrant environment with trusted clusters 2016-06-21 12:28:37 -07:00
constants.go Started work on self-reconnecting reverse tunnels 2016-05-11 13:17:13 -07:00
LICENSE Apply apache license to teleport 2015-10-31 11:56:49 -07:00
Makefile Released 1.0.5 2016-08-19 14:54:52 -07:00
mkdocs.yml (docs) fixing mkdocs configuration file 2016-03-25 12:50:28 -04:00
README.md Update README.md 2016-08-25 17:30:36 -07:00
roles.go Added unit tests to cover role set operations 2016-05-11 22:27:06 -07:00
version.go Released 1.0.5 2016-08-19 14:54:52 -07:00
version.mk Replaced echo with printf in Makefile 2016-06-29 19:12:19 -07:00

Gravitational Teleport

Project Links
Teleport Website
Documentation

Introduction

Gravitational Teleport ("Teleport") is a tool for remotely accessing isolated clusters of Linux servers via SSH or HTTPS.

Unlike traditional key-based access, Teleport enables teams to easily adopt the following practices:

  • Avoid key distribution and trust on first use issues by using auto-expiring keys signed by a cluster certificate authority (CA).
  • Enforce 2nd factor authentication.
  • Connect to clusters located behind firewalls without direct Internet access via SSH bastions.
  • Record and replay SSH sessions for knowledge sharing and auditing purposes.
  • Collaboratively troubleshoot issues through session sharing.
  • Discover online servers and Docker containers within a cluster with dynamic node labels.

Teleport is built on top of the high-quality Golang SSH implementation and it is fully compatible with OpenSSH.

Installing and Running

Download the latest binary release, unpack the .tar.gz and run sudo make install. This will copy Teleport binaries into /usr/local/bin and the web assets to /usr/local/share/teleport.

Then you can run Teleport as a single-node cluster:

teleport start 

Building Teleport

You need to have Golang v1.7 or newer.

Clone this repository into $GOPATH/gravitational/teleport and run make.

You'll have to create /var/lib/teleport directory and then you can start Teleport as a single-node cluster in development mode: build/teleport start -d

If you want to release your own Teleport version, edit this Makefile, update VERSION and SUFFIX constants, then run make setver to update version.go

If you want to cut another binary release tarball, run make release.

NOTE: The Go compiler is somewhat sensitive to amount of memory: you will need at least 1GB of virtual memory to compile Teleport. 512MB instance without swap will not work.

Why did We Build Teleport?

Mature tech companies with significant infrastructure footprints tend to implement most of these patterns internally. Teleport allows smaller companies without significant in-house SSH expertise to easily adopt them, as well. Teleport comes with an accesible Web UI and a very permissive Apache 2.0 license to facilitate adoption and use.

Being a complete standalone tool, Teleport can be used as a software library enabling trust management in complex multi-cluster, multi-region scenarios across many teams within multiple organizations.

More Information

Contributing

The best way to contribute is to create issues or pull requests right here on Github. You can also reach the Gravitational team through their website

Status

Teleport has completed a security audit from a nationally recongized technology security company. So we are comfortable with the use of Teleport from a security perspective.

However, Teleport is still a relatively young product so you may experience usability issues. We are actively supporting Teleport and addressing any issues that are submitted to this repo. Ask questions, send pull requests, report issues and don't be shy! :)

The latest stable Teleport build can be found in Releases

Known Issues

  • Teleport does not officially support IPv6 yet.

Who Built Teleport?

Teleport was created by Gravitational Inc. We have built Teleport by borrowing from our previous experiences at Rackspace. It has been extracted from Gravity, our system for helping our clients to deploy and remotely manage their SaaS applications on many cloud regions or even on-premise.