diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-05-17 01:26:43 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-05-26 23:19:04 +0900 |
commit | 70434c96d21adef5b71041297009e60e89c91b45 (patch) | |
tree | ddc6a0cd3591284aa518b63ed008ec3b38176f3e /api/gobgp.proto | |
parent | 1e47e4f6674b8156fed6efa602166d155c7734f7 (diff) |
policy: add support setting self ip address as next-hop
from configuration file
[policy-definitions.statements.actions.bgp-actions]
set-next-hop = "self"
from cli
$ gobgp policy statement stmt1 add action next-hop self
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index 45d3a608..51298fb9 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -737,6 +737,7 @@ message AsPrependAction { message NexthopAction { string address = 1; + bool self = 2; } message LocalPrefAction { |