diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-08 14:09:27 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-01-09 05:17:57 -0800 |
commit | da01fa48af05820d8b8731379cf647be049be503 (patch) | |
tree | 5c804613de7f1602bf2a3eba4cf876abf7a1ecdc /docs/sources/zebra.md | |
parent | 6ee7c63eb36412903476b6b14e6ec83b6fe5f1ba (diff) |
docs: update
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'docs/sources/zebra.md')
-rw-r--r-- | docs/sources/zebra.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/sources/zebra.md b/docs/sources/zebra.md index 1b0c53d8..9b1233e1 100644 --- a/docs/sources/zebra.md +++ b/docs/sources/zebra.md @@ -17,12 +17,10 @@ Assume you finished [Getting Started](https://github.com/osrg/gobgp/blob/master/ You need to enable the zebra feature in the Global configuration as follows. ```toml -[Global] - [Global.Zebra] - Enabled = true - Url = "unix:/var/run/quagga/zserv.api" - [[Global.Zebra.RedistributeRouteTypeList]] - RouteType = "connect" +[globa.zebra] + enabled = true + url = "unix:/var/run/quagga/zserv.api" + redistribute-route-type-list = ["connect"] ``` You can skip Url. If it's skipped, GoBGP uses "unix:/var/run/quagga/zserv.api" as the Url. |