diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-04-06 23:10:40 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-04-06 23:10:40 +0900 |
commit | ccddaebb9eea096a91f98ae9d857cd885f654cf5 (patch) | |
tree | e8c47a273f7a8ab008de6a4de6900a99a443c94d /docs/sources/getting-started.md | |
parent | 4401b4c811ddee66ace1b4487c29f2880d5359c3 (diff) |
docs: update markdown title usage
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'docs/sources/getting-started.md')
-rw-r--r-- | docs/sources/getting-started.md | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/docs/sources/getting-started.md b/docs/sources/getting-started.md index 67aea5e7..a0e7587d 100644 --- a/docs/sources/getting-started.md +++ b/docs/sources/getting-started.md @@ -1,18 +1,15 @@ -Running GoBGP -============= +# Running GoBGP This page explains how to run GoBGP. This example sets up GoBGP to connect with two eBGP peers for IPv4 routes. Even if you are interested in other GoBGP use cases (such as IPv6 routes, EVPN, and Route Server), this example gives you the basics of GoBGP usage. -Prerequisites -============= +## Prerequisites You need to install [Go 1.3 or later](http://golang.org/doc/install). After installing Go, make sure that `$GOPATH/bin` in included in your `$PATH`. -Installing GoBGP -================ +## Installing GoBGP ```bash $ go get github.com/osrg/gobgp/gobgpd @@ -31,8 +28,7 @@ $ wget https://raw.githubusercontent.com/osrg/gobgp/master/tools/completion/gobg $ source gobgp-completion.bash ``` -Configuration -============= +## Configuration Currently, GoBGP can be configured via a configuration file. This example uses the following very simple configuration file, `gobgpd.conf`: @@ -50,8 +46,8 @@ $ cat gobgpd.conf PeerAs = 65002 ``` -Starting GoBGP -============== +## Starting GoBGP + Let's start gobgpd: ``` |