diff options
author | Neale Ranns <neale@graphiant.com> | 2021-03-15 14:42:30 +0000 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-03-21 18:55:01 +0000 |
commit | bd8e43dfa045b4aec4ecf4ad3e5503924b5c9c38 (patch) | |
tree | fe91b63cc88910c5497dd34a0f3c6e1d20a3ea9e /src/vnet/teib/teib_cli.c | |
parent | 8d8150262b00435c365a43c8f859584901736aff (diff) |
gre: Multipoint GRE fixes
Type: fix
- the CLI was broken when a nh-table-id was present, since it overwrote
the next-hop address
- bouncing interface state stacked the adjacencies on the tunnel's
destination (which is all zeros)
- don't crash in the switch path if the interface has no hw-address
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: I1ba9fdc9b2185899b753a2d40f23afa847a3ef4f
Diffstat (limited to 'src/vnet/teib/teib_cli.c')
-rw-r--r-- | src/vnet/teib/teib_cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/teib/teib_cli.c b/src/vnet/teib/teib_cli.c index fd9e55ed742..a23902e0f60 100644 --- a/src/vnet/teib/teib_cli.c +++ b/src/vnet/teib/teib_cli.c @@ -40,10 +40,10 @@ teib_add (vlib_main_t * vm, ; else if (unformat (line_input, "peer %U", unformat_ip_address, &peer)) ; - else if (unformat (line_input, "nh %U", unformat_ip_address, &nh)) - ; else if (unformat (line_input, "nh-table-id %d", &nh_table_id)) ; + else if (unformat (line_input, "nh %U", unformat_ip_address, &nh)) + ; else { error = clib_error_return (0, "unknown input `%U'", |