diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-12-22 15:25:08 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-12-22 15:29:29 +0900 |
commit | c0e0aafa749f893d7b4f75a8dd7b93fea8153cdc (patch) | |
tree | d2945b296e97bf99126cf95c7829bd77a1ebb1f7 /tools/grpc/ruby | |
parent | 406efffa74eadb44826e4b464dc2fbabdddf72c4 (diff) |
gobgpd/gobgp: change grcp port to 50051 from 8080
also add an option to change grpc port
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'tools/grpc/ruby')
-rw-r--r-- | tools/grpc/ruby/get_neighbors.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/grpc/ruby/get_neighbors.rb b/tools/grpc/ruby/get_neighbors.rb index 83ed9155..e47b7913 100644 --- a/tools/grpc/ruby/get_neighbors.rb +++ b/tools/grpc/ruby/get_neighbors.rb @@ -4,7 +4,7 @@ require 'gobgp_services' host = 'localhost' host = ARGV[0] if ARGV.length > 0 -stub = Gobgpapi::GobgpApi::Stub.new("#{host}:8080") +stub = Gobgpapi::GobgpApi::Stub.new("#{host}:50051") arg = Gobgpapi::Arguments.new() stub.get_neighbors(arg).each do |n| puts "BGP neighbor is #{n.conf.neighbor_address}, remote AS #{n.conf.peer_as}" |