blob: b1faa2737a3710087c11ae58197e0f0741b5b38d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# GoBGP: BGP implementation in Go <p align="right">[![Build Status](https://travis-ci.org/osrg/gobgp.svg?branch=master)](https://travis-ci.org/osrg/gobgp/builds)</p>
## Introduction
GoBGP is an open source BGP implementation designed from scratch for
modern environment and implemented in a modern programming language,
[the Go Programming Language](http://golang.org/).
## Getting started
Installing GoBGP is quite easy (only two commands!):
```bash
$ go get github.com/osrg/gobgp/gobgpd
$ go get github.com/osrg/gobgp/gobgp
```
No dependency hell (library, package, etc) thanks to Go.
## Documentation
### Using GoBGP
* [Getting Started](https://github.com/osrg/gobgp/blob/master/docs/sources/getting-started.md)
* [CLI operations](https://github.com/osrg/gobgp/blob/master/docs/sources/cli-operations.md)
* [Route Server](https://github.com/osrg/gobgp/blob/master/docs/sources/route-server.md)
## Contributing to GoBGP
Awesome! Create a pull request. No CLA, board members, governance, or
other mess.
## Licensing
GoBGP is licensed under the Apache License, Version 2.0. See
[LICENSE](https://github.com/osrg/gobgp/blob/master/LICENSE) for the full
license text.
|