diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-02-24 11:34:03 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-06 11:11:54 +0900 |
commit | 59ec403de73d4c83ef28291661941c6334480ebd (patch) | |
tree | 2cc128fdb0c541d9fa2727920799bef5e540c738 /api/gobgp.proto | |
parent | c06423e60bfb5d8d19a092d89def8f351e421368 (diff) |
config: Config values for Nexthop Tracking with ZClient
For configuring the Nexthop Tracking features with ZClient, this patch
adds the config values:
- "nexthop-trigger-enable" enables to the Nexthop Tracking features.
Please note this features is only available with version 3 or later,
and "true" by the default with that version.
- "nexthop-trigger-delay" specifies the delay sec to update the
nexthops triggered by the events from Zebra daemon. The default is
5 secs and the same with the default of Cisco's routers.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index 9c04a6c9..6b97cef3 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -304,6 +304,8 @@ message EnableZebraRequest { string url = 1; repeated string route_types = 2; uint32 version = 3; + bool nexthop_trigger_enable = 4; + uint32 nexthop_trigger_delay = 5; } message EnableZebraResponse { |