diff options
| author | Rafael Zalamena <rzalamena@users.noreply.github.com> | 2021-03-17 10:45:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-17 10:45:43 +0000 |
| commit | 692b3561df04290418f47cb6805f79eee32a9067 (patch) | |
| tree | 18710b1b44d0f849204fe81cfa9436dd654a43b1 /bfdd/bfdd_cli.c | |
| parent | 57e627628dbb38cf82e1f2e1a0288299fbee06b8 (diff) | |
| parent | f1825d571e2cf48922fe86d5158018a13bd75d4c (diff) | |
Merge pull request #8225 from idryzhov/bfd-echo-mode
bfdd: fix echo receive timer and disable echo mode
Diffstat (limited to 'bfdd/bfdd_cli.c')
| -rw-r--r-- | bfdd/bfdd_cli.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfdd/bfdd_cli.c b/bfdd/bfdd_cli.c index 44e94eb898..ba80b2363f 100644 --- a/bfdd/bfdd_cli.c +++ b/bfdd/bfdd_cli.c @@ -433,6 +433,10 @@ DEFPY_YANG( return CMD_WARNING_CONFIG_FAILED; } + if (!no && !bglobal.bg_use_dplane) { + vty_out(vty, "%% Current implementation of echo mode works only when the peer is also FRR.\n"); + } + nb_cli_enqueue_change(vty, "./echo-mode", NB_OP_MODIFY, no ? "false" : "true"); return nb_cli_apply_changes(vty, NULL); |
