teleport/README.md

97 lines
4.3 KiB
Markdown
Raw Normal View History

2016-03-18 21:54:20 +00:00
# Gravitational Teleport
2015-03-02 20:08:58 +00:00
2016-04-02 23:36:01 +00:00
|Project Links|
|---|
2016-09-17 07:29:17 +00:00
| [Teleport Website](http://gravitational.com/teleport) |
| [Documentation](http://gravitational.com/teleport/docs/quickstart/) |
| [Demo Video](https://www.youtube.com/watch?v=7eVAC2U8OtM) |
2016-04-02 23:36:01 +00:00
2016-03-18 21:54:20 +00:00
## Introduction
2015-10-06 23:31:51 +00:00
2016-09-16 00:15:42 +00:00
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`. Teleport enables teams to easily adopt the best SSH practices like:
2015-10-06 23:31:51 +00:00
2016-09-16 00:15:42 +00:00
- No need to distribute keys: Teleport uses certificate-based access with automatic expiration time.
- Enforcement of 2nd factor authentication.
- Cluster introspection: every Teleport node becomes a part of a cluster and is visible on the Web UI.
2016-03-22 04:50:23 +00:00
- Record and replay SSH sessions for knowledge sharing and auditing purposes.
- Collaboratively troubleshoot issues through session sharing.
2016-09-16 00:15:42 +00:00
- Connect to clusters located behind firewalls without direct Internet access via SSH bastions.
2016-09-17 01:38:41 +00:00
- Ability to integrate SSH credentials with your organization identities via OAuth (Google Apps, Github).
2015-10-06 23:31:51 +00:00
2016-09-15 03:33:46 +00:00
Teleport is built on top of the high-quality [Golang SSH](https://godoc.org/golang.org/x/crypto/ssh) implementation and it is fully compatible with OpenSSH.
2015-10-06 23:31:51 +00:00
2016-03-24 19:36:44 +00:00
## Installing and Running
Download the [latest binary release](https://github.com/gravitational/teleport/releases),
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`.
2016-03-24 19:36:44 +00:00
Then you can run Teleport as a single-node cluster:
```
teleport start
```
2016-06-14 23:52:32 +00:00
## Building Teleport
2016-08-26 00:30:36 +00:00
You need to have Golang `v1.7` or newer.
2016-06-14 23:52:32 +00:00
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`
2016-06-14 23:52:32 +00:00
If you want to release your own Teleport version, edit this [Makefile](Makefile), update
`VERSION` and `SUFFIX` constants, then run `make setver` to update [version.go](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.
2016-06-14 23:52:32 +00:00
## Why did We Build Teleport?
2016-01-17 23:16:53 +00:00
2016-03-18 21:54:20 +00:00
Mature tech companies with significant infrastructure footprints tend to implement most
2016-03-22 04:50:23 +00:00
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](https://github.com/gravitational/teleport/blob/master/LICENSE)
license to facilitate adoption and use.
2016-01-17 23:16:53 +00:00
2016-03-22 04:52:42 +00:00
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.
2016-03-18 21:54:20 +00:00
## More Information
2015-10-06 23:31:51 +00:00
2016-03-18 21:54:20 +00:00
* [Quick Start Guide](docs/quickstart.md)
* [Teleport Architecture](docs/architecture.md)
* [Admin Manual](docs/admin-guide.md)
* [User Manual](docs/user-manual.md)
* [FAQ](docs/faq.md)
2015-10-06 23:31:51 +00:00
2016-03-18 21:54:20 +00:00
## Contributing
2015-10-06 23:31:51 +00:00
2016-09-17 00:16:27 +00:00
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](https://gravitational.com/)
2015-10-06 23:31:51 +00:00
2016-03-18 21:54:20 +00:00
## 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](https://github.com/gravitational/teleport/releases)
2015-11-09 01:20:10 +00:00
## Known Issues
* Teleport does not officially support IPv6 yet.
2016-03-18 21:54:20 +00:00
## Who Built Teleport?
2015-11-09 01:20:10 +00:00
2016-03-18 21:54:20 +00:00
Teleport was created by [Gravitational Inc](https://gravitational.com). We have built Teleport
2016-09-17 00:16:27 +00:00
by borrowing from our previous experiences at Rackspace. It has been extracted from [Gravity](https://gravitational.com/vendors.html), our system for helping our clients to deploy
2016-03-22 04:50:23 +00:00
and remotely manage their SaaS applications on many cloud regions or even on-premise.