Find a file
2017-10-16 16:55:39 -07:00
assets/monitoring dashboard and detect dangling sessions, refs #931 2017-06-01 19:35:14 -07:00
build.assets Fixed Docket-based documentation generation 2017-10-12 15:56:11 -07:00
docker more work, discovery works 2017-10-07 18:11:03 -07:00
docs Updated "sample config" to match what Teleport actually uses by default 2017-10-12 15:56:11 -07:00
e@0159a771a5 Rename plugins to modules 2017-10-16 16:55:39 -07:00
examples PR edits 2017-09-14 11:58:08 -07:00
fixtures Process ENV_PATH and ENV_SUPATH from login.defs. 2017-06-14 10:34:45 -07:00
integration fix tests 2017-10-12 16:51:18 -07:00
lib Rename plugins to modules 2017-10-16 16:55:39 -07:00
tool Use plugins mechanism instead of oss/e flag 2017-10-13 17:32:45 -07:00
vagrant Nicer built-in vagrant recipe 2017-01-27 17:25:44 -08:00
vendor Merge branch 'master' into sasha/curiosity 2017-10-12 16:57:41 -07:00
web (web) fixing expired invite link error 2017-10-13 20:09:50 -04:00
.gitattributes fix linguist stats for project 2016-06-02 20:50:30 +03:00
.gitignore Improved documentation-building scripts 2017-08-17 17:03:53 -07:00
.gitmodules Added enterprise submodule 2017-06-21 19:18:28 -07:00
CHANGELOG.md Release 2.3.1. 2017-10-02 12:00:39 -07:00
constants.go Merge branch 'master' into roman/plugins 2017-10-16 11:42:42 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-08-10 16:41:00 -07:00
doc.go Added proper comments to teleport package 2017-01-03 22:54:53 -08:00
Gopkg.lock fix data race and update lock file digest 2017-10-12 17:38:58 -07:00
Gopkg.toml Merge branch 'master' into sasha/curiosity 2017-10-12 16:57:41 -07:00
LICENSE Apply apache license to teleport 2015-10-31 11:56:49 -07:00
Makefile Merge branch 'master' into sasha/curiosity 2017-10-12 16:57:41 -07:00
mkdocs.yml (docs) fixing mkdocs configuration file 2016-03-25 12:50:28 -04:00
README.md Final touches to documetation 2017-09-17 21:31:27 -07:00
roles.go Fix name of role, has to start with uppercase. 2017-10-11 23:00:46 +00:00
version.go Release 2.3.1. 2017-10-02 12:00:39 -07:00
version.mk Added proper comments to teleport package 2017-01-03 22:54:53 -08:00

Gravitational Teleport

Gravitational Teleport is a modern SSH server for remotely accessing clusters of Linux servers via SSH or HTTPS. It is intended to be used instead of sshd for organizations who need:

  • SSH audit with session recording/replay.
  • Easily manage SSH trust between teams, organizations and data centers.
  • SSH into behind-firewall clusters without any open ports.
  • Role-based access control (RBAC) for SSH protocol.

In addition to its hallmark features, Teleport is interesting for smaller teams because it facilitates easy adoption of the best SSH practices like:

  • No need to distribute keys: Teleport uses certificate-based access with automatic certificate expiration time.
  • 2nd factor authentication (2FA) for SSH.
  • Collaboratively troubleshoot issues through session sharing.
  • Single sign-on (SSO) for SSH and your organization identities via OpenID Connect or SAML with endpoints like Okta or Active Directory.
  • Cluster introspection: every SSH node and its status can be queried via CLI and Web UI.

Teleport is built on top of the high-quality Golang SSH implementation and it is fully compatible with OpenSSH and can be used with sshd servers and ssh clients.

Project Links Description
Teleport Website The official website of the project
Documentation Admin guide, user manual and more
Demo Video 3-minute video overview of the UI.
Teleconsole The free service to "invite" SSH clients behind NAT, built on top of Teleport
Blog Our blog where we publish Teleport news

Installing and Running

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

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

$ sudo teleport start 

In a production environment Teleport must run as root. But to play, just do chown $USER /var/lib/teleport and run it under $USER, in this case you will not be able to login as someone else though.

Building Teleport

Teleport source code consists of the actual Teleport daemon binary written in Golang, and also it has a web UI (located in /web directory) written in Javascript. The WebUI is not changed often and we keep it checked into Git under /dist, so you only need to build Golang:

Make sure you have Golang v1.8.3 or newer, then run:

# get the source & build:
$ mkdir -p $GOPATH/src/github.com/gravitational
$ cd $GOPATH/src/github.com/gravitational
$ git clone https://github.com/gravitational/teleport.git
$ cd teleport
$ make full

# create the default data directory before starting:
$ sudo mkdir -p /var/lib/teleport
$ sudo chown $USER /var/lib/teleport

If the build succeds the binaries will be placed in $GOPATH/src/github.com/gravitational/teleport/build

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.

Rebuilding Web UI

To enable speedy iterations on the Web UI, teleport can load the web UI assets from the source directory. To enable this behavior, set the environment variable DEBUG=1 and rebuild with the default target:

$ make

# Run Teleport as a single-node cluster in development mode: 
$ DEBUG=1 ./build/teleport start -d

Keep the server running in this mode, and make your UI changes in /dist directory. Refer to web/README.md for instructions on how to update the Web UI.

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 accessible 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

Is Teleport Secure and Production Ready?

Teleport has completed several security audits from the nationally recognized technology security companies. Some of them have been made public. 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 Telekube, our Kubernetes distribution optimized for deploying and remotely controlling complex applications into multiple environments at the same time:

  • Multiple cloud regions
  • Colocation
  • Private enterprise clouds located behind firewalls