diff options
author | Pavel Odintsov <pavel.odintsov@gmail.com> | 2015-10-01 13:38:33 +0300 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-10-02 03:25:32 +0900 |
commit | 94b9f27c89d050c80183514986edebc9f6c8361f (patch) | |
tree | 5e5ae08d21bd48d020d068323df8181ec8bade13 /docs | |
parent | 40742a4194f137a7add1e1fb612919e25fde6a28 (diff) |
Enhanced C++ client library
Now we could call any important functions for IPv4 unicast and IPv4
Flow Spec. I have updated code for new service / packages names.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sources/grpc-client.md | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/docs/sources/grpc-client.md b/docs/sources/grpc-client.md index db4e6b8b..493b3cc8 100644 --- a/docs/sources/grpc-client.md +++ b/docs/sources/grpc-client.md @@ -205,22 +205,35 @@ echo "/opt/protobuf_3.0.0_alpha4/lib" > /etc/ld.so.conf.d/protobuf.conf ldconfig ``` +We use .so compilation with golang, please use only 1.5 or newer version of Go Lang. + Clone this repository and build API example: ```bash export PATH="$PATH:/opt//grpc/bin:/opt/protobuf_3.0.0_alpha4/bin/" cd /usr/src git clone https://github.com/osrg/gobgp.git -cp gobgp/api/gobgp.proto gobgp/tools/grpc/cpp/gobgp_api_client.proto -cd gobgp/tools/grpc/cpp +cd gobgp/gobgp/lib +go build -buildmode=c-shared -o libgobgp.so *.go +cp libgobgp.h /usr/src/gobgp/tools/grpc/cpp +cp libgobgp.so /usr/src/gobgp/tools/grpc/cpp +cp /usr/src/gobgp/api/gobgp.proto /usr/src/gobgp/tools/grpc/cpp/gobgp_api_client.proto +cd /usr/src/gobgp/tools/grpc/cpp make ``` ### Let's run it: ```bash -./gobgp_api_client -We received: Peer AS: 65001 -Peer router id: 213.133.111.200 -Peer flops: 0 -BGP state: BGP_FSM_ESTABLISHED +LD_LIBRARY_PATH=. ./gobgp_api_client + +List of announced prefixes for route family: 65537 + +Prefix: 10.10.20.0/22 +NLRI: {"nlri":{"prefix":"10.10.20.0/22"},"attrs":[{"type":1,"value":0},{"type":3,"nexthop":"0.0.0.0"}]} + + +List of announced prefixes for route family: 65669 + +Prefix: [destination:10.0.0.0/24][protocol: tcp][source:20.0.0.0/24] +NLRI: {"nlri":{"value":[{"type":1,"value":{"prefix":"10.0.0.0/24"}},{"type":3,"value":[{"op":129,"value":6}]},{"type":2,"value":{"prefix":"20.0.0.0/24"}}]},"attrs":[{"type":1,"value":0},{"type":14,"nexthop":"0.0.0.0","afi":1,"safi":133,"value":[{"value":[{"type":1,"value":{"prefix":"10.0.0.0/24"}},{"type":3,"value":[{"op":129,"value":6}]},{"type":2,"value":{"prefix":"20.0.0.0/24"}}]}]},{"type":16,"value":[{"type":128,"subtype":8,"value":"10:10"}]}]} ``` |