From 03fabbd22215d306fb66c51f952480631d67c9dc Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 19 Jan 2021 13:30:23 +0000 Subject: ipsec: Honour IPSec SA table-ID over API Type: fix Signed-off-by: Neale Ranns Change-Id: Ib08fe356e4dc710dd60a96736c48b27129f06786 --- src/vnet/ipsec/ipsec_format.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/vnet/ipsec/ipsec_format.c') diff --git a/src/vnet/ipsec/ipsec_format.c b/src/vnet/ipsec/ipsec_format.c index 552d446aa34..909254a1dc9 100644 --- a/src/vnet/ipsec/ipsec_format.c +++ b/src/vnet/ipsec/ipsec_format.c @@ -320,8 +320,10 @@ format_ipsec_sa (u8 * s, va_list * args) if (ipsec_sa_is_set_IS_TUNNEL (sa)) { - tx_table_id = fib_table_get_table_id (sa->tx_fib_index, - FIB_PROTOCOL_IP4); + tx_table_id = fib_table_get_table_id ( + sa->tx_fib_index, + (ipsec_sa_is_set_IS_TUNNEL_V6 (sa) ? FIB_PROTOCOL_IP6 : + FIB_PROTOCOL_IP4)); s = format (s, "\n table-ID %d tunnel %U src %U dst %U flags %U", tx_table_id, format_ip_dscp, sa->dscp, -- cgit 1.2.3-korg