vty: add reminder messages about the radio link timeout

Change-Id: Ief3af40cab1a62a276f9976fe1a1ca7aa2e13720
Related: SYS#4910
This commit is contained in:
Vadim Yanitskiy 2020-10-30 17:25:18 +07:00 committed by laforge
parent eca6a57692
commit c6f38a40bc
1 changed files with 18 additions and 0 deletions

View File

@ -5445,6 +5445,12 @@ DEFUN_HIDDEN(lchan_act_bts, lchan_act_all_cmd,
}
}
vty_out(vty, "%% All channels have been %s on all BTS/TRX, please "
"make sure that the radio link timeout is set to %s%s",
activate ? "activated" : "deactivated",
activate ? "'infinite'" : "its old value (e.g. 'oml')",
VTY_NEWLINE);
return CMD_SUCCESS;
}
@ -5479,6 +5485,12 @@ DEFUN_HIDDEN(lchan_act_all_bts, lchan_act_all_bts_cmd,
lchan_act_trx(vty, trx, activate);
}
vty_out(vty, "%% All channels have been %s on all TRX of BTS%d, please "
"make sure that the radio link timeout is set to %s%s",
activate ? "activated" : "deactivated", bts_nr,
activate ? "'infinite'" : "its old value (e.g. 'oml')",
VTY_NEWLINE);
return CMD_SUCCESS;
}
@ -5517,6 +5529,12 @@ DEFUN_HIDDEN(lchan_act_all_trx, lchan_act_all_trx_cmd,
lchan_act_trx(vty, trx, activate);
vty_out(vty, "%% All channels have been %s on BTS%d/TRX%d, please "
"make sure that the radio link timeout is set to %s%s",
activate ? "activated" : "deactivated", bts_nr, trx_nr,
activate ? "'infinite'" : "its old value (e.g. 'oml')",
VTY_NEWLINE);
return CMD_SUCCESS;
}