From a15e53b81035c3f47363528d67a63167306694ec Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Mon, 14 Aug 2023 14:52:13 +0200 Subject: [PATCH] Show C-Channel ID at VTY --- src/v5le_vty.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v5le_vty.c b/src/v5le_vty.c index 39e9e1e..e9d301d 100644 --- a/src/v5le_vty.c +++ b/src/v5le_vty.c @@ -245,6 +245,7 @@ DEFUN(show_interface, show_interface_cmd, vty_out(vty, " Secondary link ID: %d%s", v5if->secondary_link->id, VTY_NEWLINE); if (v5if->cc_link) vty_out(vty, " Current C-Channel data link ID: %d%s", v5if->cc_link->id, VTY_NEWLINE); + vty_out(vty, " C-Channel ID: %d (only relevant for protection)%s", v5if->protection.cc_id, VTY_NEWLINE); } calls = 0; llist_for_each_entry(v5up, &v5if->user_ports, list) {