blob: 722753ac11716ee4ef4d422b735a051e78e3fbe9 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte68628e82009-03-10 12:17:57 +00008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
Maxc08ee712016-05-11 12:45:13 +020021#include <stdbool.h>
Harald Welte68628e82009-03-10 12:17:57 +000022#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000023
Harald Welte4b037e42010-05-19 19:45:32 +020024#include <osmocom/vty/command.h>
25#include <osmocom/vty/buffer.h>
26#include <osmocom/vty/vty.h>
27#include <osmocom/vty/logging.h>
Jacob Erlbeck64630cc2015-10-26 16:25:37 +010028#include <osmocom/vty/stats.h>
Harald Welte4b037e42010-05-19 19:45:32 +020029#include <osmocom/vty/telnet_interface.h>
Harald Welte4ab9d7c2012-08-17 12:42:06 +020030#include <osmocom/vty/misc.h>
Maxc08ee712016-05-11 12:45:13 +020031#include <osmocom/gsm/protocol/gsm_04_08.h>
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010032#include <osmocom/gsm/gsm0502.h>
33
Harald Welte68628e82009-03-10 12:17:57 +000034#include <arpa/inet.h>
35
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000037#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020038#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000039#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010040#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010041#include <osmocom/core/utils.h>
42#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020043#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010044#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010045#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000046#include <openbsc/db.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020047#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080048#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020049#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020050#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010051#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020052#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010053#include <openbsc/abis_rsl.h>
Neels Hofmeyra42855f2017-02-23 21:49:55 +010054#include <openbsc/bsc_msc_data.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010055#include <openbsc/osmo_bsc_rf.h>
Harald Welte8254cf72017-05-29 13:42:19 +020056#include <openbsc/pcu_if.h>
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020057#include <openbsc/common_cs.h>
Harald Welte7b423ed2016-06-19 18:06:02 +020058#include <openbsc/vlr.h>
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020059
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010060#include <inttypes.h>
61
Harald Weltec08e8be2011-03-04 13:53:51 +010062#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020063
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020064
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020065#define LCHAN_NR_STR "Logical Channel Number\n"
66
67
Harald Welteea4647d2010-05-12 17:19:53 +000068/* FIXME: this should go to some common file */
69static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020070 { 0, "tns-block" },
71 { 1, "tns-block-retries" },
72 { 2, "tns-reset" },
73 { 3, "tns-reset-retries" },
74 { 4, "tns-test" },
75 { 5, "tns-alive" },
76 { 6, "tns-alive-retries" },
77 { 0, NULL }
78};
79
Harald Welteea4647d2010-05-12 17:19:53 +000080static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020081 { 0, "blocking-timer" },
82 { 1, "blocking-retries" },
83 { 2, "unblocking-retries" },
84 { 3, "reset-timer" },
85 { 4, "reset-retries" },
86 { 5, "suspend-timer" },
87 { 6, "suspend-retries" },
88 { 7, "resume-timer" },
89 { 8, "resume-retries" },
90 { 9, "capability-update-timer" },
91 { 10, "capability-update-retries" },
92 { 0, NULL }
93};
94
Harald Welte64c07d22011-02-15 11:43:27 +010095static const struct value_string bts_neigh_mode_strs[] = {
96 { NL_MODE_AUTOMATIC, "automatic" },
97 { NL_MODE_MANUAL, "manual" },
98 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
99 { 0, NULL }
100};
101
Daniel Willmann7d109832012-05-14 18:43:23 +0200102const struct value_string bts_loc_fix_names[] = {
103 { BTS_LOC_FIX_INVALID, "invalid" },
104 { BTS_LOC_FIX_2D, "fix2d" },
105 { BTS_LOC_FIX_3D, "fix3d" },
106 { 0, NULL }
107};
108
Harald Welte68628e82009-03-10 12:17:57 +0000109struct cmd_node bts_node = {
110 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200111 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000112 1,
113};
114
115struct cmd_node trx_node = {
116 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200117 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000118 1,
119};
120
121struct cmd_node ts_node = {
122 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200123 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000124 1,
125};
126
127static int dummy_config_write(struct vty *v)
128{
129 return CMD_SUCCESS;
130}
131
132static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
133{
Harald Welte1304b352013-03-15 16:57:33 +0100134 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
135 abis_nm_opstate_name(nms->operational),
136 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte867d9f32011-05-23 20:30:39 +0200137 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000138}
139
Harald Welteb908cb72009-12-22 13:09:29 +0100140static void dump_pchan_load_vty(struct vty *vty, char *prefix,
141 const struct pchan_load *pl)
142{
143 int i;
144
145 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
146 const struct load_counter *lc = &pl->pchan[i];
147 unsigned int percent;
148
149 if (lc->total == 0)
150 continue;
151
152 percent = (lc->used * 100) / lc->total;
153
154 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
155 gsm_pchan_name(i), percent, lc->used, lc->total,
156 VTY_NEWLINE);
157 }
158}
159
Harald Welte68628e82009-03-10 12:17:57 +0000160static void net_dump_vty(struct vty *vty, struct gsm_network *net)
161{
Harald Welteb908cb72009-12-22 13:09:29 +0100162 struct pchan_load pl;
163
Harald Welteef235b52009-03-10 12:34:02 +0000164 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
165 "and has %u BTS%s", net->country_code, net->network_code,
166 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000167 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000168 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000169 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000170 net->name_short, VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200171 vty_out(vty, " Authentication policy: %s",
172 gsm_auth_policy_name(net->auth_policy));
173 if (net->authorized_reg_str)
174 vty_out(vty, ", authorized regexp: %s", net->authorized_reg_str);
175 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100176 vty_out(vty, " Location updating reject cause: %u%s",
177 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900178 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
179 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100180 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
181 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800182 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
183 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100184 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
185 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100186 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
187 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100188 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
189 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100190 network_chan_load(&pl, net);
191 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
192 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100193
194 /* show rf */
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100195 if (net->bsc_data)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100196 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200197 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100198 VTY_NEWLINE);
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100199 if (net->bsc_data)
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200200 vty_out(vty, " Last RF Lock Command: %s%s",
201 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
202 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000203}
204
Neels Hofmeyrea11bf82016-05-12 01:53:23 +0200205DEFUN(bsc_show_net, bsc_show_net_cmd, "show network",
Harald Welte68628e82009-03-10 12:17:57 +0000206 SHOW_STR "Display information about a GSM NETWORK\n")
207{
Harald Weltedcccb182010-05-16 20:52:23 +0200208 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000209 net_dump_vty(vty, net);
210
211 return CMD_SUCCESS;
212}
213
214static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
215{
Harald Welteedb37782009-05-01 14:59:07 +0000216 struct e1inp_line *line;
217
218 if (!e1l) {
219 vty_out(vty, " None%s", VTY_NEWLINE);
220 return;
221 }
222
223 line = e1l->ts->line;
224
225 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
226 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000227 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000228 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000229 e1l->tei, e1l->sapi, VTY_NEWLINE);
230}
231
232static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
233{
Harald Welteb908cb72009-12-22 13:09:29 +0100234 struct pchan_load pl;
235
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200236 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte557c84e2015-11-20 10:50:24 +0100237 "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200238 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200239 bts->cell_identity,
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100240 bts->location_area_code, bts->bsic,
Harald Welte557c84e2015-11-20 10:50:24 +0100241 bts->bsic >> 3, bts->bsic & 7,
Harald Weltefcd24452009-06-20 18:15:19 +0200242 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200243 vty_out(vty, "Description: %s%s",
244 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Maxf9685c12017-03-23 12:01:07 +0100245 if (strnlen(bts->pcu_version, MAX_VERSION_LENGTH))
246 vty_out(vty, "PCU version %s connected%s", bts->pcu_version,
247 VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100248 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100249 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100250 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
251 VTY_NEWLINE);
252 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100253 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100254 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
255 VTY_NEWLINE);
256 vty_out(vty, "RACH Max transmissions: %u%s",
257 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
258 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100259 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200260 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200261 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
262 vty_out(vty, "Uplink DTX: %s%s",
263 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ?
264 "enabled" : "forced", VTY_NEWLINE);
265 else
266 vty_out(vty, "Uplink DTX: not enabled%s", VTY_NEWLINE);
267 vty_out(vty, "Downlink DTX: %senabled%s", bts->dtxd ? "" : "not ",
268 VTY_NEWLINE);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200269 vty_out(vty, "Channel Description Attachment: %s%s",
270 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
271 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
272 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
273 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
274 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200275 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
276 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte42def722017-01-13 00:10:32 +0100277 vty_out(vty, "Early Classmark Sending: %s%s",
278 bts->early_classmark_allowed ? "allowed" : "forbidden",
279 VTY_NEWLINE);
Harald Welte8254cf72017-05-29 13:42:19 +0200280 if (bts->pcu_sock_path)
281 vty_out(vty, "PCU Socket Path: %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000282 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200283 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000284 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200285 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200286 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
287 vty_out(vty, " Skip Reset: %d%s",
288 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000289 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200290 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000291 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200292 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther846d8dc2013-05-29 16:22:09 +0200293 vty_out(vty, " GPRS NSE: ");
294 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
295 vty_out(vty, " GPRS CELL: ");
296 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
297 vty_out(vty, " GPRS NSVC0: ");
298 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
299 vty_out(vty, " GPRS NSVC1: ");
300 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200301 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
302 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000303 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100304 if (is_ipaccess_bts(bts)) {
305 vty_out(vty, " OML Link state: %s.%s",
306 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
307 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200308 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
309 e1isl_dump_vty(vty, bts->oml_link);
310 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100311
312 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100313 memset(&pl, 0, sizeof(pl));
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200314 bts_chan_load(&pl, bts);
Harald Welteb908cb72009-12-22 13:09:29 +0100315 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
316 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000317}
318
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100319DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000320 SHOW_STR "Display information about a BTS\n"
321 "BTS number")
322{
Harald Weltedcccb182010-05-16 20:52:23 +0200323 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000324 int bts_nr;
325
326 if (argc != 0) {
327 /* use the BTS number that the user has specified */
328 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100329 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000330 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000331 VTY_NEWLINE);
332 return CMD_WARNING;
333 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200334 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000335 return CMD_SUCCESS;
336 }
337 /* print all BTS's */
338 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200339 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000340
341 return CMD_SUCCESS;
342}
343
Harald Welte42581822009-08-08 16:12:58 +0200344/* utility functions */
345static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
346 const char *ts, const char *ss)
347{
348 e1_link->e1_nr = atoi(line);
349 e1_link->e1_ts = atoi(ts);
350 if (!strcmp(ss, "full"))
351 e1_link->e1_ts_ss = 255;
352 else
353 e1_link->e1_ts_ss = atoi(ss);
354}
355
356static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
357 const char *prefix)
358{
359 if (!e1_link->e1_ts)
360 return;
361
362 if (e1_link->e1_ts_ss == 255)
363 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
364 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
365 else
366 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
367 prefix, e1_link->e1_nr, e1_link->e1_ts,
368 e1_link->e1_ts_ss, VTY_NEWLINE);
369}
370
371
Harald Welte67ce0732009-08-06 19:06:46 +0200372static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
373{
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100374 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100375 if (ts->tsc != -1)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100376 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200377 if (ts->pchan != GSM_PCHAN_NONE)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100378 vty_out(vty, " phys_chan_config %s%s",
Harald Welte42581822009-08-08 16:12:58 +0200379 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100380 vty_out(vty, " hopping enabled %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200381 ts->hopping.enabled, VTY_NEWLINE);
382 if (ts->hopping.enabled) {
383 unsigned int i;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100384 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200385 ts->hopping.hsn, VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100386 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200387 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200388 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
389 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
390 continue;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100391 vty_out(vty, " hopping arfcn add %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200392 i, VTY_NEWLINE);
393 }
Harald Welte127af342010-12-24 12:07:07 +0100394 }
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100395 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100396
397 if (ts->trx->bts->model->config_write_ts)
398 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200399}
400
401static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
402{
403 int i;
404
Harald Welte5013b2a2009-08-07 13:29:14 +0200405 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200406 if (trx->description)
407 vty_out(vty, " description %s%s", trx->description,
408 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200409 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200410 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200411 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200412 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100413 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200414 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200415 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
416 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200417
Harald Welteface7ed2011-02-14 16:15:21 +0100418 if (trx->bts->model->config_write_trx)
419 trx->bts->model->config_write_trx(vty, trx);
420
Harald Welte67ce0732009-08-06 19:06:46 +0200421 for (i = 0; i < TRX_NR_TS; i++)
422 config_write_ts_single(vty, &trx->ts[i]);
423}
424
Harald Welte615e9562010-05-11 23:50:21 +0200425static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
426{
427 unsigned int i;
428 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
429 VTY_NEWLINE);
430 if (bts->gprs.mode == BTS_GPRS_NONE)
431 return;
432
bhargava350533c2016-07-21 11:14:34 +0530433 vty_out(vty, " gprs 11bit_rach_support_for_egprs %u%s",
434 bts->gprs.supports_egprs_11bit_rach, VTY_NEWLINE);
435
Harald Welte615e9562010-05-11 23:50:21 +0200436 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
437 VTY_NEWLINE);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100438 vty_out(vty, " gprs network-control-order nc%u%s",
439 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Max292ec582016-07-28 11:55:37 +0200440 if (!bts->gprs.ctrl_ack_type_use_block)
441 vty_out(vty, " gprs control-ack-type-rach%s", VTY_NEWLINE);
Harald Welte615e9562010-05-11 23:50:21 +0200442 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
443 VTY_NEWLINE);
444 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
445 vty_out(vty, " gprs cell timer %s %u%s",
446 get_value_string(gprs_bssgp_cfg_strs, i),
447 bts->gprs.cell.timer[i], VTY_NEWLINE);
448 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
449 VTY_NEWLINE);
450 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
451 vty_out(vty, " gprs ns timer %s %u%s",
452 get_value_string(gprs_ns_timer_strs, i),
453 bts->gprs.nse.timer[i], VTY_NEWLINE);
454 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
455 struct gsm_bts_gprs_nsvc *nsvc =
456 &bts->gprs.nsvc[i];
457 struct in_addr ia;
458
459 ia.s_addr = htonl(nsvc->remote_ip);
460 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
461 nsvc->nsvci, VTY_NEWLINE);
462 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
463 nsvc->local_port, VTY_NEWLINE);
464 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
465 nsvc->remote_port, VTY_NEWLINE);
466 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
467 inet_ntoa(ia), VTY_NEWLINE);
468 }
469}
470
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200471/* Write the model data if there is one */
472static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte67ce0732009-08-06 19:06:46 +0200473{
474 struct gsm_bts_trx *trx;
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200475
476 if (!bts->model)
477 return;
478
479 if (bts->model->config_write_bts)
480 bts->model->config_write_bts(vty, bts);
481
482 llist_for_each_entry(trx, &bts->trx_list, list)
483 config_write_trx_single(vty, trx);
484}
485
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200486static void write_amr_modes(struct vty *vty, const char *prefix,
487 const char *name, struct amr_mode *modes, int num)
488{
489 int i;
490
491 vty_out(vty, " %s threshold %s", prefix, name);
492 for (i = 0; i < num - 1; i++)
493 vty_out(vty, " %d", modes[i].threshold);
494 vty_out(vty, "%s", VTY_NEWLINE);
495 vty_out(vty, " %s hysteresis %s", prefix, name);
496 for (i = 0; i < num - 1; i++)
497 vty_out(vty, " %d", modes[i].hysteresis);
498 vty_out(vty, "%s", VTY_NEWLINE);
499}
500
Andreas Eversberg73266522014-01-19 11:47:44 +0100501static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
502 struct amr_multirate_conf *mr, int full)
503{
504 struct gsm48_multi_rate_conf *mr_conf;
505 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
506 int i, num;
507
508 if (!(mr->gsm48_ie[1]))
509 return;
510
511 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
512
513 num = 0;
514 vty_out(vty, " %s modes", prefix);
515 for (i = 0; i < ((full) ? 8 : 6); i++) {
516 if ((mr->gsm48_ie[1] & (1 << i))) {
517 vty_out(vty, " %d", i);
518 num++;
519 }
520 }
521 vty_out(vty, "%s", VTY_NEWLINE);
522 if (num > 4)
523 num = 4;
524 if (num > 1) {
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200525 write_amr_modes(vty, prefix, "ms", mr->ms_mode, num);
526 write_amr_modes(vty, prefix, "bts", mr->bts_mode, num);
Andreas Eversberg73266522014-01-19 11:47:44 +0100527 }
528 vty_out(vty, " %s start-mode ", prefix);
529 if (mr_conf->icmi) {
530 num = 0;
531 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
532 if ((mr->gsm48_ie[1] & (1 << i)))
533 num++;
534 if (mr_conf->smod == num - 1) {
535 vty_out(vty, "%d%s", num, VTY_NEWLINE);
536 break;
537 }
538 }
539 } else
540 vty_out(vty, "auto%s", VTY_NEWLINE);
541}
542
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200543static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
544{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200545 int i;
Max2c16bee2017-02-15 13:51:37 +0100546 uint8_t tmp;
Harald Welte67ce0732009-08-06 19:06:46 +0200547
Harald Welte5013b2a2009-08-07 13:29:14 +0200548 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
549 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200550 if (bts->description)
551 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200552 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100553 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200554 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200555 VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200556 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
557 vty_out(vty, " dtx uplink%s%s",
558 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ? "" : " force",
559 VTY_NEWLINE);
560 if (bts->dtxd)
561 vty_out(vty, " dtx downlink%s", VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200562 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200563 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100564 vty_out(vty, " cell reselection hysteresis %u%s",
565 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
566 vty_out(vty, " rxlev access min %u%s",
567 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100568
569 if (bts->si_common.cell_ro_sel_par.present) {
570 struct gsm48_si_selection_params *sp;
571 sp = &bts->si_common.cell_ro_sel_par;
572
573 if (sp->cbq)
574 vty_out(vty, " cell bar qualify %u%s",
575 sp->cbq, VTY_NEWLINE);
576
577 if (sp->cell_resel_off)
578 vty_out(vty, " cell reselection offset %u%s",
579 sp->cell_resel_off*2, VTY_NEWLINE);
580
581 if (sp->temp_offs == 7)
582 vty_out(vty, " temporary offset infinite%s",
583 VTY_NEWLINE);
584 else if (sp->temp_offs)
585 vty_out(vty, " temporary offset %u%s",
586 sp->temp_offs*10, VTY_NEWLINE);
587
588 if (sp->penalty_time == 31)
589 vty_out(vty, " penalty time reserved%s",
590 VTY_NEWLINE);
591 else if (sp->penalty_time)
592 vty_out(vty, " penalty time %u%s",
593 (sp->penalty_time*20)+20, VTY_NEWLINE);
594 }
595
Harald Welte2f8b9d22017-06-18 11:12:13 +0300596 if (gsm_bts_get_radio_link_timeout(bts) < 0)
597 vty_out(vty, " radio-link-timeout infinite%s", VTY_NEWLINE);
598 else
599 vty_out(vty, " radio-link-timeout %d%s",
600 gsm_bts_get_radio_link_timeout(bts), VTY_NEWLINE);
Neels Hofmeyr0e5a7c42017-05-08 15:12:20 +0200601
Harald Welte7a8fa412009-08-10 13:48:16 +0200602 vty_out(vty, " channel allocator %s%s",
603 bts->chan_alloc_reverse ? "descending" : "ascending",
604 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100605 vty_out(vty, " rach tx integer %u%s",
606 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
607 vty_out(vty, " rach max transmission %u%s",
608 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
609 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800610
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200611 vty_out(vty, " channel-descrption attach %u%s",
612 bts->si_common.chan_desc.att, VTY_NEWLINE);
613 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
614 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
615 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
616 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
617
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800618 if (bts->rach_b_thresh != -1)
619 vty_out(vty, " rach nm busy threshold %u%s",
620 bts->rach_b_thresh, VTY_NEWLINE);
621 if (bts->rach_ldavg_slots != -1)
622 vty_out(vty, " rach nm load average %u%s",
623 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100624 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200625 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800626 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
627 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400628 if ((bts->si_common.rach_control.t3) != 0)
629 for (i = 0; i < 8; i++)
630 if (bts->si_common.rach_control.t3 & (0x1 << i))
631 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
632 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
633 for (i = 0; i < 8; i++)
634 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
635 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200636 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
637 if (bts->si_mode_static & (1 << i)) {
638 vty_out(vty, " system-information %s mode static%s",
639 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
640 vty_out(vty, " system-information %s static %s%s",
641 get_value_string(osmo_sitype_strs, i),
Max6f0e50c2017-04-12 15:30:54 +0200642 osmo_hexdump_nospc(GSM_BTS_SI(bts, i), GSM_MACBLOCK_LEN),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200643 VTY_NEWLINE);
644 }
645 }
Harald Welte42def722017-01-13 00:10:32 +0100646 vty_out(vty, " early-classmark-sending %s%s",
647 bts->early_classmark_allowed ? "allowed" : "forbidden", VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100648 switch (bts->type) {
649 case GSM_BTS_TYPE_NANOBTS:
Maxf9685c12017-03-23 12:01:07 +0100650 case GSM_BTS_TYPE_OSMOBTS:
Harald Welte5013b2a2009-08-07 13:29:14 +0200651 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200652 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100653 if (bts->ip_access.rsl_ip) {
654 struct in_addr ia;
655 ia.s_addr = htonl(bts->ip_access.rsl_ip);
656 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
657 VTY_NEWLINE);
658 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200659 vty_out(vty, " oml ip.access stream_id %u line %u%s",
660 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100661 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200662 case GSM_BTS_TYPE_NOKIA_SITE:
663 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100664 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
665 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100666 vty_out(vty, " nokia_site bts-reset-timer %d%s", bts->nokia.bts_reset_timer_cnf, VTY_NEWLINE);
Andreas Eversbergb6f95162013-12-05 16:02:37 +0100667 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100668 default:
Harald Welte42581822009-08-08 16:12:58 +0200669 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
670 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100671 break;
Harald Welte42581822009-08-08 16:12:58 +0200672 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800673
674 /* if we have a limit, write it */
675 if (bts->paging.free_chans_need >= 0)
676 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
677
Harald Welte32c09622011-01-11 23:44:56 +0100678 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100679 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
680 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100681 for (i = 0; i < 1024; i++) {
682 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
683 vty_out(vty, " neighbor-list add arfcn %u%s",
684 i, VTY_NEWLINE);
685 }
686 }
Harald Welte64c07d22011-02-15 11:43:27 +0100687 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
688 for (i = 0; i < 1024; i++) {
689 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
690 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
691 i, VTY_NEWLINE);
692 }
693 }
Harald Welte32c09622011-01-11 23:44:56 +0100694
Max59a1bf32016-04-15 16:04:46 +0200695 for (i = 0; i < MAX_EARFCN_LIST; i++) {
Max2c16bee2017-02-15 13:51:37 +0100696 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
697 if (e->arfcn[i] != OSMO_EARFCN_INVALID) {
698 vty_out(vty, " si2quater neighbor-list add earfcn %u "
699 "thresh-hi %u", e->arfcn[i], e->thresh_hi);
700
701 vty_out(vty, " thresh-lo %u",
702 e->thresh_lo_valid ? e->thresh_lo : 32);
703
704 vty_out(vty, " prio %u",
705 e->prio_valid ? e->prio : 8);
706
707 vty_out(vty, " qrxlv %u",
708 e->qrxlm_valid ? e->qrxlm : 32);
709
710 tmp = e->meas_bw[i];
711 vty_out(vty, " meas %u",
712 (tmp != OSMO_EARFCN_MEAS_INVALID) ? tmp : 8);
Max59a1bf32016-04-15 16:04:46 +0200713
714 vty_out(vty, "%s", VTY_NEWLINE);
715 }
716 }
717
Max26679e02016-04-20 15:57:13 +0200718 for (i = 0; i < bts->si_common.uarfcn_length; i++) {
719 vty_out(vty, " si2quater neighbor-list add uarfcn %u %u %u%s",
720 bts->si_common.data.uarfcn_list[i],
721 bts->si_common.data.scramble_list[i] & ~(1 << 9),
722 (bts->si_common.data.scramble_list[i] >> 9) & 1,
723 VTY_NEWLINE);
724 }
725
Andreas Eversberga83d5112013-12-07 18:32:28 +0100726 vty_out(vty, " codec-support fr");
727 if (bts->codec.hr)
728 vty_out(vty, " hr");
729 if (bts->codec.efr)
730 vty_out(vty, " efr");
731 if (bts->codec.amr)
732 vty_out(vty, " amr");
733 vty_out(vty, "%s", VTY_NEWLINE);
734
Andreas Eversberg73266522014-01-19 11:47:44 +0100735 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
736 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
737
Harald Welte615e9562010-05-11 23:50:21 +0200738 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200739
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200740 if (bts->excl_from_rf_lock)
741 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
742
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100743 vty_out(vty, " %sforce-combined-si%s",
744 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
745
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100746 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
747 int j;
748
749 if (bts->depends_on[i] == 0)
750 continue;
751
752 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
753 int bts_nr;
754
755 if ((bts->depends_on[i] & (1<<j)) == 0)
756 continue;
757
758 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
759 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
760 }
761 }
Harald Welte8254cf72017-05-29 13:42:19 +0200762 if (bts->pcu_sock_path)
763 vty_out(vty, " pcu-socket %s%s", bts->pcu_sock_path, VTY_NEWLINE);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100764
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200765 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200766}
767
768static int config_write_bts(struct vty *v)
769{
Harald Weltedcccb182010-05-16 20:52:23 +0200770 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200771 struct gsm_bts *bts;
772
773 llist_for_each_entry(bts, &gsmnet->bts_list, list)
774 config_write_bts_single(v, bts);
775
776 return CMD_SUCCESS;
777}
778
Harald Welte5013b2a2009-08-07 13:29:14 +0200779static int config_write_net(struct vty *vty)
780{
Harald Weltedcccb182010-05-16 20:52:23 +0200781 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
782
Harald Welte5013b2a2009-08-07 13:29:14 +0200783 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200784 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200785 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200786 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
787 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200788 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200789 if (gsmnet->authorized_reg_str)
790 vty_out(vty, " authorized-regexp %s%s", gsmnet->authorized_reg_str, VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100791 vty_out(vty, " location updating reject cause %u%s",
792 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900793 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +0200794 vty_out(vty, " authentication %s%s",
795 gsmnet->authentication_required ? "required" : "optional",
796 VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100797 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800798 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100799 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
800 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100801 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100802 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100803 vty_out(vty, " handover window rxlev averaging %u%s",
804 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
805 vty_out(vty, " handover window rxqual averaging %u%s",
806 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
807 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
808 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
809 vty_out(vty, " handover power budget interval %u%s",
810 gsmnet->handover.pwr_interval, VTY_NEWLINE);
811 vty_out(vty, " handover power budget hysteresis %u%s",
812 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
813 vty_out(vty, " handover maximum distance %u%s",
814 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100815 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100816 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
817 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
818 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
819 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
820 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
821 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
822 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
823 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
824 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100825 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100826 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Vadim Yanitskiy7f3724e2017-03-31 23:27:44 +0700827 vty_out(vty, " dyn_ts_allow_tch_f %d%s",
828 gsmnet->dyn_ts_allow_tch_f ? 1 : 0, VTY_NEWLINE);
Neels Hofmeyr73983952016-05-10 13:29:33 +0200829 if (gsmnet->tz.override != 0) {
830 if (gsmnet->tz.dst)
831 vty_out(vty, " timezone %d %d %d%s",
832 gsmnet->tz.hr, gsmnet->tz.mn, gsmnet->tz.dst,
833 VTY_NEWLINE);
834 else
835 vty_out(vty, " timezone %d %d%s",
836 gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
837 }
Neels Hofmeyr0e5a7c42017-05-08 15:12:20 +0200838 if (gsmnet->t3212 == 0)
839 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
840 else
841 vty_out(vty, " periodic location update %u%s",
842 gsmnet->t3212 * 6, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200843
844 return CMD_SUCCESS;
845}
Harald Welte67ce0732009-08-06 19:06:46 +0200846
Harald Welte68628e82009-03-10 12:17:57 +0000847static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
848{
849 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
850 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200851 vty_out(vty, "Description: %s%s",
852 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200853 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200854 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200855 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200856 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000857 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200858 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000859 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200860 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200861 if (is_ipaccess_bts(trx->bts)) {
862 vty_out(vty, " ip.access stream ID: 0x%02x%s",
863 trx->rsl_tei, VTY_NEWLINE);
864 } else {
865 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
866 e1isl_dump_vty(vty, trx->rsl_link);
867 }
Harald Welte68628e82009-03-10 12:17:57 +0000868}
869
870DEFUN(show_trx,
871 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100872 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200873 SHOW_STR "Display information about a TRX\n"
874 "BTS Number\n"
875 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000876{
Harald Weltedcccb182010-05-16 20:52:23 +0200877 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000878 struct gsm_bts *bts = NULL;
879 struct gsm_bts_trx *trx;
880 int bts_nr, trx_nr;
881
882 if (argc >= 1) {
883 /* use the BTS number that the user has specified */
884 bts_nr = atoi(argv[0]);
885 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000886 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000887 VTY_NEWLINE);
888 return CMD_WARNING;
889 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200890 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000891 }
892 if (argc >= 2) {
893 trx_nr = atoi(argv[1]);
894 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000895 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000896 VTY_NEWLINE);
897 return CMD_WARNING;
898 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200899 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000900 trx_dump_vty(vty, trx);
901 return CMD_SUCCESS;
902 }
903 if (bts) {
904 /* print all TRX in this BTS */
905 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200906 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000907 trx_dump_vty(vty, trx);
908 }
909 return CMD_SUCCESS;
910 }
911
912 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200913 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000914 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200915 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000916 trx_dump_vty(vty, trx);
917 }
918 }
919
920 return CMD_SUCCESS;
921}
922
Harald Welte67ce0732009-08-06 19:06:46 +0200923
Harald Welte68628e82009-03-10 12:17:57 +0000924static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
925{
Harald Welte135a6482011-05-30 12:09:13 +0200926 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100927 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100928 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100929 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100930 vty_out(vty, " (%s mode)",
Neels Hofmeyr2ebacce2016-06-14 14:08:35 +0200931 ts->flags & TS_F_PDCH_ACTIVE ? "PDCH" : "TCH/F");
Harald Weltecd103a92010-12-24 12:14:52 +0100932 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000933 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200934 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530935 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000936 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
937 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
938 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000939}
940
941DEFUN(show_ts,
942 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100943 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200944 SHOW_STR "Display information about a TS\n"
945 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000946{
Harald Weltedcccb182010-05-16 20:52:23 +0200947 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100948 struct gsm_bts *bts = NULL;
949 struct gsm_bts_trx *trx = NULL;
950 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000951 int bts_nr, trx_nr, ts_nr;
952
953 if (argc >= 1) {
954 /* use the BTS number that the user has specified */
955 bts_nr = atoi(argv[0]);
956 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000957 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000958 VTY_NEWLINE);
959 return CMD_WARNING;
960 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200961 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000962 }
963 if (argc >= 2) {
964 trx_nr = atoi(argv[1]);
965 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000966 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000967 VTY_NEWLINE);
968 return CMD_WARNING;
969 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200970 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000971 }
972 if (argc >= 3) {
973 ts_nr = atoi(argv[2]);
974 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000975 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000976 VTY_NEWLINE);
977 return CMD_WARNING;
978 }
Harald Welte274d0152010-12-24 12:05:03 +0100979 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000980 ts = &trx->ts[ts_nr];
981 ts_dump_vty(vty, ts);
982 return CMD_SUCCESS;
983 }
Harald Welte274d0152010-12-24 12:05:03 +0100984
985 if (bts && trx) {
986 /* Iterate over all TS in this TRX */
987 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
988 ts = &trx->ts[ts_nr];
989 ts_dump_vty(vty, ts);
990 }
991 } else if (bts) {
992 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000993 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200994 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000995 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
996 ts = &trx->ts[ts_nr];
997 ts_dump_vty(vty, ts);
998 }
999 }
Harald Welte274d0152010-12-24 12:05:03 +01001000 } else {
1001 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
1002 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
1003 bts = gsm_bts_num(net, bts_nr);
1004 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1005 trx = gsm_bts_trx_num(bts, trx_nr);
1006 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1007 ts = &trx->ts[ts_nr];
1008 ts_dump_vty(vty, ts);
1009 }
1010 }
1011 }
Harald Welte68628e82009-03-10 12:17:57 +00001012 }
1013
1014 return CMD_SUCCESS;
1015}
1016
Harald Welte7b423ed2016-06-19 18:06:02 +02001017static void subscr_dump_vty(struct vty *vty, struct vlr_subscr *vsub)
Harald Welte68628e82009-03-10 12:17:57 +00001018{
Harald Welte7b423ed2016-06-19 18:06:02 +02001019 OSMO_ASSERT(vsub);
1020 if (strlen(vsub->name))
1021 vty_out(vty, " Name: '%s'%s", vsub->name, VTY_NEWLINE);
1022 if (strlen(vsub->msisdn))
1023 vty_out(vty, " Extension: %s%s", vsub->msisdn,
Harald Welte68628e82009-03-10 12:17:57 +00001024 VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001025 if (strlen(vsub->imsi))
1026 vty_out(vty, " IMSI: %s%s", vsub->imsi, VTY_NEWLINE);
1027 if (vsub->tmsi != GSM_RESERVED_TMSI)
1028 vty_out(vty, " TMSI: %08X%s", vsub->tmsi,
1029 VTY_NEWLINE);
1030 if (vsub->tmsi_new != GSM_RESERVED_TMSI)
1031 vty_out(vty, " new TMSI: %08X%s", vsub->tmsi_new,
Harald Welte731fd912009-08-15 03:24:51 +02001032 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +01001033
Harald Welte7b423ed2016-06-19 18:06:02 +02001034 vty_out(vty, " Use count: %u%s", vsub->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +00001035}
1036
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001037static void bsc_subscr_dump_vty(struct vty *vty, struct bsc_subscr *bsub)
1038{
1039 if (strlen(bsub->imsi))
1040 vty_out(vty, " IMSI: %s%s", bsub->imsi, VTY_NEWLINE);
1041 if (bsub->tmsi != GSM_RESERVED_TMSI)
1042 vty_out(vty, " TMSI: 0x%08x%s", bsub->tmsi,
1043 VTY_NEWLINE);
1044 vty_out(vty, " Use count: %d%s", bsub->use_count, VTY_NEWLINE);
1045}
1046
Harald Welte8387a492009-12-22 21:43:14 +01001047static void meas_rep_dump_uni_vty(struct vty *vty,
1048 struct gsm_meas_rep_unidir *mru,
1049 const char *prefix,
1050 const char *dir)
1051{
1052 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
1053 prefix, dir, rxlev2dbm(mru->full.rx_lev),
1054 dir, rxlev2dbm(mru->sub.rx_lev));
1055 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
1056 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
1057 VTY_NEWLINE);
1058}
1059
1060static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1061 const char *prefix)
1062{
1063 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1064 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1065 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1066 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1067 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1068 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1069 VTY_NEWLINE);
1070 if (mr->flags & MEAS_REP_F_MS_TO)
Max11e4e412017-04-20 13:07:58 +02001071 vty_out(vty, "%s MS Timing Offset: %d%s", prefix, mr->ms_timing_offset, VTY_NEWLINE);
Harald Welte8387a492009-12-22 21:43:14 +01001072 if (mr->flags & MEAS_REP_F_MS_L1)
1073 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1074 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1075 if (mr->flags & MEAS_REP_F_DL_VALID)
1076 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1077 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1078}
1079
Harald Welte0a8cf322015-12-05 17:22:49 +01001080/* FIXME: move this to libosmogsm */
1081static const struct value_string gsm48_cmode_names[] = {
1082 { GSM48_CMODE_SIGN, "signalling" },
1083 { GSM48_CMODE_SPEECH_V1, "FR or HR" },
1084 { GSM48_CMODE_SPEECH_EFR, "EFR" },
1085 { GSM48_CMODE_SPEECH_AMR, "AMR" },
1086 { GSM48_CMODE_DATA_14k5, "CSD(14k5)" },
1087 { GSM48_CMODE_DATA_12k0, "CSD(12k0)" },
1088 { GSM48_CMODE_DATA_6k0, "CSD(6k0)" },
1089 { GSM48_CMODE_DATA_3k6, "CSD(3k6)" },
1090 { 0, NULL }
1091};
1092
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001093/* call vty_out() to print a string like " as TCH/H" for dynamic timeslots.
1094 * Don't do anything if the ts is not dynamic. */
1095static void vty_out_dyn_ts_status(struct vty *vty, struct gsm_bts_trx_ts *ts)
1096{
1097 switch (ts->pchan) {
1098 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1099 if (ts->dyn.pchan_is == ts->dyn.pchan_want)
1100 vty_out(vty, " as %s",
1101 gsm_pchan_name(ts->dyn.pchan_is));
1102 else
1103 vty_out(vty, " switching %s -> %s",
1104 gsm_pchan_name(ts->dyn.pchan_is),
1105 gsm_pchan_name(ts->dyn.pchan_want));
1106 break;
1107 case GSM_PCHAN_TCH_F_PDCH:
1108 if ((ts->flags & TS_F_PDCH_PENDING_MASK) == 0)
1109 vty_out(vty, " as %s",
1110 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1111 : "TCH/F");
1112 else
1113 vty_out(vty, " switching %s -> %s",
1114 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1115 : "TCH/F",
1116 (ts->flags & TS_F_PDCH_ACT_PENDING)? "PDCH"
1117 : "TCH/F");
1118 break;
1119 default:
1120 /* no dyn ts */
1121 break;
1122 }
1123}
1124
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001125static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +00001126{
Harald Welte8387a492009-12-22 21:43:14 +01001127 int idx;
1128
Harald Welte85bded82010-12-24 12:22:34 +01001129 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1130 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1131 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001132 /* show dyn TS details, if applicable */
1133 switch (lchan->ts->pchan) {
1134 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1135 vty_out(vty, " Osmocom Dyn TS:");
1136 vty_out_dyn_ts_status(vty, lchan->ts);
1137 vty_out(vty, VTY_NEWLINE);
1138 break;
1139 case GSM_PCHAN_TCH_F_PDCH:
1140 vty_out(vty, " IPACC Dyn PDCH TS:");
1141 vty_out_dyn_ts_status(vty, lchan->ts);
1142 vty_out(vty, VTY_NEWLINE);
1143 break;
1144 default:
1145 /* no dyn ts */
1146 break;
1147 }
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001148 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +08001149 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001150 gsm_lchans_name(lchan->state),
1151 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1152 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1153 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +01001154 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1155 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1156 - lchan->bs_power*2,
1157 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1158 VTY_NEWLINE);
Harald Welte0a8cf322015-12-05 17:22:49 +01001159 vty_out(vty, " Channel Mode / Codec: %s%s",
1160 get_value_string(gsm48_cmode_names, lchan->tch_mode),
1161 VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001162 if (lchan->conn && lchan->conn->vsub) {
Harald Welte68628e82009-03-10 12:17:57 +00001163 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Harald Welte7b423ed2016-06-19 18:06:02 +02001164 subscr_dump_vty(vty, lchan->conn->vsub);
Harald Welte68628e82009-03-10 12:17:57 +00001165 } else
1166 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +05301167 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1168 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +02001169 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +05301170 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1171 inet_ntoa(ia), lchan->abis_ip.bound_port,
1172 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1173 VTY_NEWLINE);
1174 }
Harald Welte8387a492009-12-22 21:43:14 +01001175
1176 /* we want to report the last measurement report */
1177 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1178 lchan->meas_rep_idx, 1);
1179 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +00001180}
1181
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001182static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1183{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001184 struct gsm_meas_rep *mr;
1185 int idx;
1186
1187 /* we want to report the last measurement report */
1188 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1189 lchan->meas_rep_idx, 1);
1190 mr = &lchan->meas_rep[idx];
1191
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001192 vty_out(vty, "BTS %u, TRX %u, Timeslot %u %s",
Harald Welte85bded82010-12-24 12:22:34 +01001193 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001194 gsm_pchan_name(lchan->ts->pchan));
1195 vty_out_dyn_ts_status(vty, lchan->ts);
1196 vty_out(vty, ", Lchan %u, Type %s, State %s - "
1197 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Neels Hofmeyrefedf802016-06-14 01:31:38 +02001198 lchan->nr,
1199 gsm_lchant_name(lchan->type), gsm_lchans_name(lchan->state),
1200 mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001201 rxlev2dbm(mr->dl.full.rx_lev),
1202 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001203 VTY_NEWLINE);
1204}
1205
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001206
1207static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1208 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1209{
1210 int lchan_nr;
1211 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1212 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1213 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1214 continue;
1215 dump_cb(vty, lchan);
1216 }
1217
1218 return CMD_SUCCESS;
1219}
1220
1221static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1222 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1223{
1224 int ts_nr;
1225
1226 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1227 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1228 dump_lchan_trx_ts(ts, vty, dump_cb);
1229 }
1230
1231 return CMD_SUCCESS;
1232}
1233
1234static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1235 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1236{
1237 int trx_nr;
1238
1239 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1240 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1241 dump_lchan_trx(trx, vty, dump_cb);
1242 }
1243
1244 return CMD_SUCCESS;
1245}
1246
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001247static int lchan_summary(struct vty *vty, int argc, const char **argv,
1248 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001249{
Harald Weltedcccb182010-05-16 20:52:23 +02001250 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001251 struct gsm_bts *bts;
1252 struct gsm_bts_trx *trx;
1253 struct gsm_bts_trx_ts *ts;
1254 struct gsm_lchan *lchan;
1255 int bts_nr, trx_nr, ts_nr, lchan_nr;
1256
1257 if (argc >= 1) {
1258 /* use the BTS number that the user has specified */
1259 bts_nr = atoi(argv[0]);
1260 if (bts_nr >= net->num_bts) {
1261 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1262 VTY_NEWLINE);
1263 return CMD_WARNING;
1264 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001265 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001266
1267 if (argc == 1)
1268 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001269 }
1270 if (argc >= 2) {
1271 trx_nr = atoi(argv[1]);
1272 if (trx_nr >= bts->num_trx) {
1273 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1274 VTY_NEWLINE);
1275 return CMD_WARNING;
1276 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001277 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001278
1279 if (argc == 2)
1280 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001281 }
1282 if (argc >= 3) {
1283 ts_nr = atoi(argv[2]);
1284 if (ts_nr >= TRX_NR_TS) {
1285 vty_out(vty, "%% can't find TS %s%s", argv[2],
1286 VTY_NEWLINE);
1287 return CMD_WARNING;
1288 }
1289 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001290
1291 if (argc == 3)
1292 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001293 }
1294 if (argc >= 4) {
1295 lchan_nr = atoi(argv[3]);
1296 if (lchan_nr >= TS_MAX_LCHAN) {
1297 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1298 VTY_NEWLINE);
1299 return CMD_WARNING;
1300 }
1301 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001302 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001303 return CMD_SUCCESS;
1304 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001305
1306
Harald Welte68628e82009-03-10 12:17:57 +00001307 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001308 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001309 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001310 }
1311
1312 return CMD_SUCCESS;
1313}
1314
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001315
1316DEFUN(show_lchan,
1317 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001318 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001319 SHOW_STR "Display information about a logical channel\n"
1320 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001321 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001322
1323{
1324 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1325}
1326
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001327DEFUN(show_lchan_summary,
1328 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001329 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001330 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001331 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001332 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001333 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001334{
1335 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1336}
1337
Harald Weltebe4b7302009-05-23 16:59:33 +00001338static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001339{
1340 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001341 bsc_subscr_dump_vty(vty, pag->bsub);
Harald Weltef5025b62009-03-28 16:55:11 +00001342}
1343
Harald Weltebe4b7302009-05-23 16:59:33 +00001344static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001345{
1346 struct gsm_paging_request *pag;
1347
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001348 if (!bts->paging.bts)
1349 return;
1350
Harald Weltef5025b62009-03-28 16:55:11 +00001351 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1352 paging_dump_vty(vty, pag);
1353}
1354
1355DEFUN(show_paging,
1356 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001357 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001358 SHOW_STR "Display information about paging reuqests of a BTS\n"
1359 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001360{
Harald Weltedcccb182010-05-16 20:52:23 +02001361 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001362 struct gsm_bts *bts;
1363 int bts_nr;
1364
1365 if (argc >= 1) {
1366 /* use the BTS number that the user has specified */
1367 bts_nr = atoi(argv[0]);
1368 if (bts_nr >= net->num_bts) {
1369 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1370 VTY_NEWLINE);
1371 return CMD_WARNING;
1372 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001373 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001374 bts_paging_dump_vty(vty, bts);
1375
1376 return CMD_SUCCESS;
1377 }
1378 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001379 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001380 bts_paging_dump_vty(vty, bts);
1381 }
1382
1383 return CMD_SUCCESS;
1384}
1385
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001386DEFUN(show_paging_group,
1387 show_paging_group_cmd,
1388 "show paging-group <0-255> IMSI",
1389 SHOW_STR "Display the paging group\n"
1390 "BTS Number\n" "IMSI\n")
1391{
1392 struct gsm_network *net = gsmnet_from_vty(vty);
1393 struct gsm_bts *bts;
1394 unsigned int page_group;
1395 int bts_nr = atoi(argv[0]);
1396
1397 if (bts_nr >= net->num_bts) {
1398 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1399 return CMD_WARNING;
1400 }
1401
1402 bts = gsm_bts_num(net, bts_nr);
1403 if (!bts) {
1404 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1405 return CMD_WARNING;
1406 }
1407
1408 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1409 str_to_imsi(argv[1]));
1410 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1411 str_to_imsi(argv[1]), bts->nr,
1412 page_group, VTY_NEWLINE);
1413 return CMD_SUCCESS;
1414}
1415
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001416DEFUN(cfg_net_neci,
1417 cfg_net_neci_cmd,
1418 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001419 "New Establish Cause Indication\n"
1420 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001421{
Harald Weltedcccb182010-05-16 20:52:23 +02001422 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1423
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001424 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001425 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001426 return CMD_SUCCESS;
1427}
1428
Harald Welte8f0ed552010-05-11 21:53:49 +02001429#define HANDOVER_STR "Handover Options\n"
1430
Harald Weltebc814502009-12-19 21:41:52 +01001431DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1432 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001433 HANDOVER_STR
1434 "Don't perform in-call handover\n"
1435 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001436{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001437 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001438 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001439
1440 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001441 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1442 "is enabled by using the -P command line option%s",
1443 VTY_NEWLINE);
1444 return CMD_WARNING;
1445 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001446 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001447
1448 return CMD_SUCCESS;
1449}
1450
Harald Welte8f0ed552010-05-11 21:53:49 +02001451#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1452#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1453#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1454#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001455#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001456
Harald Welteb720bd32009-12-21 16:51:50 +01001457DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1458 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001459 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001460 "How many RxLev measurements are used for averaging\n"
1461 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001462{
Harald Weltedcccb182010-05-16 20:52:23 +02001463 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001464 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1465 return CMD_SUCCESS;
1466}
1467
1468DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1469 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001470 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001471 "How many RxQual measurements are used for averaging\n"
1472 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001473{
Harald Weltedcccb182010-05-16 20:52:23 +02001474 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001475 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1476 return CMD_SUCCESS;
1477}
1478
1479DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1480 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001481 HO_WIN_RXLEV_STR "Neighbor\n"
1482 "How many RxQual measurements are used for averaging\n"
1483 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001484{
Harald Weltedcccb182010-05-16 20:52:23 +02001485 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001486 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1487 return CMD_SUCCESS;
1488}
1489
1490DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1491 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001492 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001493 "How often to check if we have a better cell (SACCH frames)\n"
1494 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001495{
Harald Weltedcccb182010-05-16 20:52:23 +02001496 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001497 gsmnet->handover.pwr_interval = atoi(argv[0]);
1498 return CMD_SUCCESS;
1499}
1500
1501DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1502 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001503 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001504 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1505 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001506{
Harald Weltedcccb182010-05-16 20:52:23 +02001507 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001508 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1509 return CMD_SUCCESS;
1510}
1511
1512DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1513 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001514 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001515 "How big is the maximum timing advance before HO is forced\n"
1516 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001517{
Harald Weltedcccb182010-05-16 20:52:23 +02001518 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001519 gsmnet->handover.max_distance = atoi(argv[0]);
1520 return CMD_SUCCESS;
1521}
Harald Weltebc814502009-12-19 21:41:52 +01001522
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001523DEFUN(cfg_net_pag_any_tch,
1524 cfg_net_pag_any_tch_cmd,
1525 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001526 "Assign a TCH when receiving a Paging Any request\n"
1527 "Any Channel\n" "Use\n" "TCH\n"
1528 "Do not use TCH for Paging Request Any\n"
1529 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001530{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001531 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001532 gsmnet->pag_any_tch = atoi(argv[0]);
1533 gsm_net_update_ctype(gsmnet);
1534 return CMD_SUCCESS;
1535}
1536
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001537#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001538 DEFUN(cfg_net_T##number, \
1539 cfg_net_T##number##_cmd, \
1540 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001541 "Configure GSM Timers\n" \
Holger Hans Peter Freyther5dd295f2014-04-11 19:30:27 +02001542 doc "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001543{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001544 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001545 int value = atoi(argv[0]); \
1546 \
1547 if (value < 0 || value > 65535) { \
1548 vty_out(vty, "Timer value %s out of range.%s", \
1549 argv[0], VTY_NEWLINE); \
1550 return CMD_WARNING; \
1551 } \
1552 \
1553 gsmnet->T##number = value; \
1554 return CMD_SUCCESS; \
1555}
1556
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001557DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1558DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001559DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001560DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001561DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001562DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1563DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1564DECLARE_TIMER(3115, "Currently not used.\n")
1565DECLARE_TIMER(3117, "Currently not used.\n")
1566DECLARE_TIMER(3119, "Currently not used.\n")
1567DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1568DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001569
Maxc08ee712016-05-11 12:45:13 +02001570DEFUN_DEPRECATED(cfg_net_dtx,
1571 cfg_net_dtx_cmd,
1572 "dtx-used (0|1)",
1573 ".HIDDEN\n""Obsolete\n""Obsolete\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001574{
Maxc08ee712016-05-11 12:45:13 +02001575 vty_out(vty, "%% 'dtx-used' is now deprecated: use dtx * "
1576 "configuration options of BTS instead%s", VTY_NEWLINE);
1577 return CMD_SUCCESS;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001578}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001579
Harald Welte5258fc42009-03-28 19:07:53 +00001580/* per-BTS configuration */
1581DEFUN(cfg_bts,
1582 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001583 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001584 "Select a BTS to configure\n"
1585 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001586{
Harald Weltedcccb182010-05-16 20:52:23 +02001587 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001588 int bts_nr = atoi(argv[0]);
1589 struct gsm_bts *bts;
1590
Harald Weltee441d9c2009-06-21 16:17:15 +02001591 if (bts_nr > gsmnet->num_bts) {
1592 vty_out(vty, "%% The next unused BTS number is %u%s",
1593 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001594 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001595 } else if (bts_nr == gsmnet->num_bts) {
1596 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001597 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001598 HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001599 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001600 bts = gsm_bts_num(gsmnet, bts_nr);
1601
Daniel Willmannf15c2762010-01-11 13:43:07 +01001602 if (!bts) {
1603 vty_out(vty, "%% Unable to allocate BTS %u%s",
1604 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001605 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001606 }
Harald Welte5258fc42009-03-28 19:07:53 +00001607
1608 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001609 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001610 vty->node = BTS_NODE;
1611
1612 return CMD_SUCCESS;
1613}
1614
1615DEFUN(cfg_bts_type,
1616 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001617 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001618 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001619{
1620 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001621 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001622
Max7507aef2017-04-10 13:59:14 +02001623 rc = gsm_set_bts_type(bts, str2btstype(argv[0]));
Harald Welte39315c42010-01-10 18:01:52 +01001624 if (rc < 0)
1625 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001626
Harald Welte5258fc42009-03-28 19:07:53 +00001627 return CMD_SUCCESS;
1628}
1629
Harald Weltefcd24452009-06-20 18:15:19 +02001630DEFUN(cfg_bts_band,
1631 cfg_bts_band_cmd,
1632 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001633 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001634{
1635 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001636 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001637
1638 if (band < 0) {
1639 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1640 band, VTY_NEWLINE);
1641 return CMD_WARNING;
1642 }
1643
1644 bts->band = band;
1645
1646 return CMD_SUCCESS;
1647}
1648
Maxc08ee712016-05-11 12:45:13 +02001649DEFUN(cfg_bts_dtxu, cfg_bts_dtxu_cmd, "dtx uplink [force]",
1650 "Configure discontinuous transmission\n"
1651 "Enable Uplink DTX for this BTS\n"
1652 "MS 'shall' use DTXu instead of 'may' use (might not be supported by "
1653 "older phones).\n")
1654{
1655 struct gsm_bts *bts = vty->index;
1656
1657 bts->dtxu = (argc > 0) ? GSM48_DTX_SHALL_BE_USED : GSM48_DTX_MAY_BE_USED;
Max60795282016-06-06 11:30:57 +02001658 if (!is_ipaccess_bts(bts))
1659 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1660 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001661 return CMD_SUCCESS;
1662}
1663
1664DEFUN(cfg_bts_no_dtxu, cfg_bts_no_dtxu_cmd, "no dtx uplink",
1665 NO_STR
1666 "Configure discontinuous transmission\n"
1667 "Disable Uplink DTX for this BTS\n")
1668{
1669 struct gsm_bts *bts = vty->index;
1670
1671 bts->dtxu = GSM48_DTX_SHALL_NOT_BE_USED;
1672
1673 return CMD_SUCCESS;
1674}
1675
1676DEFUN(cfg_bts_dtxd, cfg_bts_dtxd_cmd, "dtx downlink",
1677 "Configure discontinuous transmission\n"
1678 "Enable Downlink DTX for this BTS\n")
1679{
1680 struct gsm_bts *bts = vty->index;
1681
1682 bts->dtxd = true;
Max60795282016-06-06 11:30:57 +02001683 if (!is_ipaccess_bts(bts))
1684 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1685 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001686 return CMD_SUCCESS;
1687}
1688
1689DEFUN(cfg_bts_no_dtxd, cfg_bts_no_dtxd_cmd, "no dtx downlink",
1690 NO_STR
1691 "Configure discontinuous transmission\n"
1692 "Disable Downlink DTX for this BTS\n")
1693{
1694 struct gsm_bts *bts = vty->index;
1695
1696 bts->dtxd = false;
1697
1698 return CMD_SUCCESS;
1699}
1700
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001701DEFUN(cfg_bts_ci,
1702 cfg_bts_ci_cmd,
1703 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001704 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001705{
1706 struct gsm_bts *bts = vty->index;
1707 int ci = atoi(argv[0]);
1708
1709 if (ci < 0 || ci > 0xffff) {
1710 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1711 ci, VTY_NEWLINE);
1712 return CMD_WARNING;
1713 }
1714 bts->cell_identity = ci;
1715
1716 return CMD_SUCCESS;
1717}
1718
Harald Welte5258fc42009-03-28 19:07:53 +00001719DEFUN(cfg_bts_lac,
1720 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001721 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001722 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001723{
1724 struct gsm_bts *bts = vty->index;
1725 int lac = atoi(argv[0]);
1726
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001727 if (lac < 0 || lac > 0xffff) {
1728 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001729 lac, VTY_NEWLINE);
1730 return CMD_WARNING;
1731 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001732
1733 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1734 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1735 lac, VTY_NEWLINE);
1736 return CMD_WARNING;
1737 }
1738
Harald Welte5258fc42009-03-28 19:07:53 +00001739 bts->location_area_code = lac;
1740
1741 return CMD_SUCCESS;
1742}
1743
Harald Weltea43f7892009-12-01 18:04:30 +05301744
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001745/* compatibility wrapper for old config files */
1746DEFUN_HIDDEN(cfg_bts_tsc,
Harald Welte5258fc42009-03-28 19:07:53 +00001747 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001748 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001749 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001750{
Harald Welte5258fc42009-03-28 19:07:53 +00001751 return CMD_SUCCESS;
1752}
1753
Harald Welte78f2f502009-05-23 16:56:52 +00001754DEFUN(cfg_bts_bsic,
1755 cfg_bts_bsic_cmd,
1756 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001757 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1758 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001759{
1760 struct gsm_bts *bts = vty->index;
1761 int bsic = atoi(argv[0]);
1762
1763 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001764 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001765 bsic, VTY_NEWLINE);
1766 return CMD_WARNING;
1767 }
1768 bts->bsic = bsic;
1769
1770 return CMD_SUCCESS;
1771}
1772
Harald Welte4cc34222009-05-01 15:12:31 +00001773DEFUN(cfg_bts_unit_id,
1774 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001775 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001776 "Abis/IP specific options\n"
1777 "Set the IPA BTS Unit ID\n"
1778 "Unit ID (Site)\n"
1779 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001780{
1781 struct gsm_bts *bts = vty->index;
1782 int site_id = atoi(argv[0]);
1783 int bts_id = atoi(argv[1]);
1784
Harald Welte07dc73d2009-08-07 13:27:09 +02001785 if (!is_ipaccess_bts(bts)) {
1786 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1787 return CMD_WARNING;
1788 }
1789
Harald Welte4cc34222009-05-01 15:12:31 +00001790 bts->ip_access.site_id = site_id;
1791 bts->ip_access.bts_id = bts_id;
1792
1793 return CMD_SUCCESS;
1794}
1795
Harald Welte8b291802013-03-12 13:57:05 +01001796DEFUN(cfg_bts_rsl_ip,
1797 cfg_bts_rsl_ip_cmd,
1798 "ip.access rsl-ip A.B.C.D",
1799 "Abis/IP specific options\n"
1800 "Set the IPA RSL IP Address of the BSC\n"
1801 "Destination IP address for RSL connection\n")
1802{
1803 struct gsm_bts *bts = vty->index;
1804 struct in_addr ia;
1805
1806 if (!is_ipaccess_bts(bts)) {
1807 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1808 return CMD_WARNING;
1809 }
1810
1811 inet_aton(argv[0], &ia);
1812 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1813
1814 return CMD_SUCCESS;
1815}
1816
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001817#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001818
Sylvain Munautc9519462011-10-17 14:04:55 +02001819DEFUN(cfg_bts_nokia_site_skip_reset,
1820 cfg_bts_nokia_site_skip_reset_cmd,
1821 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001822 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001823 "Skip the reset step during bootstrap process of this BTS\n"
1824 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001825{
1826 struct gsm_bts *bts = vty->index;
1827
1828 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1829 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1830 return CMD_WARNING;
1831 }
1832
1833 bts->nokia.skip_reset = atoi(argv[0]);
1834
1835 return CMD_SUCCESS;
1836}
1837
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001838DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1839 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1840 "nokia_site no-local-rel-conf (0|1)",
1841 NOKIA_STR
1842 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1843 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1844{
1845 struct gsm_bts *bts = vty->index;
1846
1847 if (!is_nokia_bts(bts)) {
1848 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1849 VTY_NEWLINE);
1850 return CMD_WARNING;
1851 }
1852
1853 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1854
1855 return CMD_SUCCESS;
1856}
1857
Sipos Csaba56e17662015-02-07 13:27:36 +01001858DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1859 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1860 "nokia_site bts-reset-timer <15-100>",
1861 NOKIA_STR
1862 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1863 "and the BTS is being bootstrapped.\n")
1864{
1865 struct gsm_bts *bts = vty->index;
1866
1867 if (!is_nokia_bts(bts)) {
1868 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1869 VTY_NEWLINE);
1870 return CMD_WARNING;
1871 }
1872
1873 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1874
1875 return CMD_SUCCESS;
1876}
Harald Welte8f0ed552010-05-11 21:53:49 +02001877#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001878#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001879
Harald Welte8175e952009-10-20 00:22:00 +02001880DEFUN(cfg_bts_stream_id,
1881 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001882 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001883 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001884 "Set the ip.access Stream ID of the OML link of this BTS\n"
1885 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001886{
1887 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001888 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001889
1890 if (!is_ipaccess_bts(bts)) {
1891 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1892 return CMD_WARNING;
1893 }
1894
1895 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001896 /* This is used by e1inp_bind_ops callback for each BTS model. */
1897 bts->oml_e1_link.e1_nr = linenr;
1898
1899 return CMD_SUCCESS;
1900}
1901
Harald Welted13e0cd2012-08-17 09:52:03 +02001902#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001903
Harald Welte42581822009-08-08 16:12:58 +02001904DEFUN(cfg_bts_oml_e1,
1905 cfg_bts_oml_e1_cmd,
1906 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001907 OML_E1_STR
1908 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001909 "E1/T1 line number to be used for OML\n"
1910 "E1/T1 timeslot to be used for OML\n"
1911 "E1/T1 timeslot to be used for OML\n"
1912 "E1/T1 sub-slot to be used for OML\n"
1913 "Use E1/T1 sub-slot 0\n"
1914 "Use E1/T1 sub-slot 1\n"
1915 "Use E1/T1 sub-slot 2\n"
1916 "Use E1/T1 sub-slot 3\n"
1917 "Use full E1 slot 3\n"
1918 )
Harald Welte42581822009-08-08 16:12:58 +02001919{
1920 struct gsm_bts *bts = vty->index;
1921
1922 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1923
1924 return CMD_SUCCESS;
1925}
1926
1927
1928DEFUN(cfg_bts_oml_e1_tei,
1929 cfg_bts_oml_e1_tei_cmd,
1930 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001931 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001932 "Set the TEI to be used for OML\n"
1933 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001934{
1935 struct gsm_bts *bts = vty->index;
1936
1937 bts->oml_tei = atoi(argv[0]);
1938
1939 return CMD_SUCCESS;
1940}
1941
Harald Welte7a8fa412009-08-10 13:48:16 +02001942DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1943 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001944 "Channnel Allocator\n" "Channel Allocator\n"
1945 "Allocate Timeslots and Transceivers in ascending order\n"
1946 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001947{
1948 struct gsm_bts *bts = vty->index;
1949
1950 if (!strcmp(argv[0], "ascending"))
1951 bts->chan_alloc_reverse = 0;
1952 else
1953 bts->chan_alloc_reverse = 1;
1954
1955 return CMD_SUCCESS;
1956}
1957
Harald Welte8f0ed552010-05-11 21:53:49 +02001958#define RACH_STR "Random Access Control Channel\n"
1959
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001960DEFUN(cfg_bts_rach_tx_integer,
1961 cfg_bts_rach_tx_integer_cmd,
1962 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001963 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001964 "Set the raw tx integer value in RACH Control parameters IE\n"
1965 "Set the raw tx integer value in RACH Control parameters IE\n"
1966 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001967{
1968 struct gsm_bts *bts = vty->index;
1969 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1970 return CMD_SUCCESS;
1971}
1972
1973DEFUN(cfg_bts_rach_max_trans,
1974 cfg_bts_rach_max_trans_cmd,
1975 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001976 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001977 "Set the maximum number of RACH burst transmissions\n"
1978 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001979 "Maximum number of 1 RACH burst transmissions\n"
1980 "Maximum number of 2 RACH burst transmissions\n"
1981 "Maximum number of 4 RACH burst transmissions\n"
1982 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001983{
1984 struct gsm_bts *bts = vty->index;
1985 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1986 return CMD_SUCCESS;
1987}
1988
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001989#define CD_STR "Channel Description\n"
1990
1991DEFUN(cfg_bts_chan_desc_att,
1992 cfg_bts_chan_desc_att_cmd,
1993 "channel-descrption attach (0|1)",
1994 CD_STR
1995 "Set if attachment is required\n"
1996 "Attachment is NOT required\n"
1997 "Attachment is required (standard)\n")
1998{
1999 struct gsm_bts *bts = vty->index;
2000 bts->si_common.chan_desc.att = atoi(argv[0]);
2001 return CMD_SUCCESS;
2002}
2003
2004DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2005 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2006 "channel-descrption bs-pa-mfrms <2-9>",
2007 CD_STR
2008 "Set number of multiframe periods for paging groups\n"
2009 "Number of multiframe periods for paging groups\n")
2010{
2011 struct gsm_bts *bts = vty->index;
2012 int bs_pa_mfrms = atoi(argv[0]);
2013
2014 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2015 return CMD_SUCCESS;
2016}
2017
2018DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2019 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2020 "channel-descrption bs-ag-blks-res <0-7>",
2021 CD_STR
2022 "Set number of blocks reserved for access grant\n"
2023 "Number of blocks reserved for access grant\n")
2024{
2025 struct gsm_bts *bts = vty->index;
2026 int bs_ag_blks_res = atoi(argv[0]);
2027
2028 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2029 return CMD_SUCCESS;
2030}
2031
Harald Welte8f0ed552010-05-11 21:53:49 +02002032#define NM_STR "Network Management\n"
2033
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002034DEFUN(cfg_bts_rach_nm_b_thresh,
2035 cfg_bts_rach_nm_b_thresh_cmd,
2036 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002037 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002038 "Set the NM Busy Threshold\n"
2039 "Set the NM Busy Threshold\n"
2040 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002041{
2042 struct gsm_bts *bts = vty->index;
2043 bts->rach_b_thresh = atoi(argv[0]);
2044 return CMD_SUCCESS;
2045}
2046
2047DEFUN(cfg_bts_rach_nm_ldavg,
2048 cfg_bts_rach_nm_ldavg_cmd,
2049 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002050 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002051 "Set the NM Loadaverage Slots value\n"
2052 "Set the NM Loadaverage Slots value\n"
2053 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002054{
2055 struct gsm_bts *bts = vty->index;
2056 bts->rach_ldavg_slots = atoi(argv[0]);
2057 return CMD_SUCCESS;
2058}
2059
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002060DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2061 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002062 "Should this cell be barred from access?\n"
2063 "Should this cell be barred from access?\n"
2064 "Cell should NOT be barred\n"
2065 "Cell should be barred\n")
2066
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002067{
2068 struct gsm_bts *bts = vty->index;
2069
Harald Welte71355012009-12-21 23:08:18 +01002070 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002071
2072 return CMD_SUCCESS;
2073}
2074
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002075DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2076 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002077 RACH_STR
2078 "Should this cell allow emergency calls?\n"
2079 "Should this cell allow emergency calls?\n"
2080 "Should this cell allow emergency calls?\n"
2081 "Do NOT allow emergency calls\n"
2082 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002083{
2084 struct gsm_bts *bts = vty->index;
2085
2086 if (atoi(argv[0]) == 0)
2087 bts->si_common.rach_control.t2 |= 0x4;
2088 else
2089 bts->si_common.rach_control.t2 &= ~0x4;
2090
2091 return CMD_SUCCESS;
2092}
2093
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002094DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2095 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2096 RACH_STR
2097 "Set access control class\n"
2098 "Access control class 0\n"
2099 "Access control class 1\n"
2100 "Access control class 2\n"
2101 "Access control class 3\n"
2102 "Access control class 4\n"
2103 "Access control class 5\n"
2104 "Access control class 6\n"
2105 "Access control class 7\n"
2106 "Access control class 8\n"
2107 "Access control class 9\n"
2108 "Access control class 11 for PLMN use\n"
2109 "Access control class 12 for security services\n"
2110 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2111 "Access control class 14 for emergency services\n"
2112 "Access control class 15 for PLMN staff\n"
2113 "barred to use access control class\n"
2114 "allowed to use access control class\n")
2115{
2116 struct gsm_bts *bts = vty->index;
2117
2118 uint8_t control_class;
2119 uint8_t allowed = 0;
2120
2121 if (strcmp(argv[1], "allowed") == 0)
2122 allowed = 1;
2123
2124 control_class = atoi(argv[0]);
2125 if (control_class < 8)
2126 if (allowed)
2127 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2128 else
2129 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2130 else
2131 if (allowed)
2132 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2133 else
2134 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2135
2136 return CMD_SUCCESS;
2137}
2138
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002139DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2140 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002141 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002142 "Maximum transmit power of the MS\n"
2143 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002144 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002145{
2146 struct gsm_bts *bts = vty->index;
2147
2148 bts->ms_max_power = atoi(argv[0]);
2149
2150 return CMD_SUCCESS;
2151}
2152
Harald Weltecfaabbb2012-08-16 23:23:50 +02002153#define CELL_STR "Cell Parameters\n"
2154
Harald Welte73225282009-12-12 18:17:25 +01002155DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2156 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002157 CELL_STR "Cell re-selection parameters\n"
2158 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002159 "Cell Re-Selection Hysteresis in dB")
2160{
2161 struct gsm_bts *bts = vty->index;
2162
2163 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2164
2165 return CMD_SUCCESS;
2166}
2167
2168DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2169 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002170 "Minimum RxLev needed for cell access\n"
2171 "Minimum RxLev needed for cell access\n"
2172 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002173 "Minimum RxLev needed for cell access (better than -110dBm)")
2174{
2175 struct gsm_bts *bts = vty->index;
2176
2177 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2178
2179 return CMD_SUCCESS;
2180}
2181
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002182DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2183 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002184 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2185 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002186{
2187 struct gsm_bts *bts = vty->index;
2188
2189 bts->si_common.cell_ro_sel_par.present = 1;
2190 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2191
2192 return CMD_SUCCESS;
2193}
2194
2195DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2196 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002197 CELL_STR "Cell Re-Selection Parameters\n"
2198 "Cell Re-Selection Offset (CRO) in dB\n"
2199 "Cell Re-Selection Offset (CRO) in dB\n"
2200 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002201{
2202 struct gsm_bts *bts = vty->index;
2203
2204 bts->si_common.cell_ro_sel_par.present = 1;
2205 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2206
2207 return CMD_SUCCESS;
2208}
2209
2210DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2211 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002212 "Cell selection temporary negative offset\n"
2213 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002214 "Cell selection temporary negative offset in dB")
2215{
2216 struct gsm_bts *bts = vty->index;
2217
2218 bts->si_common.cell_ro_sel_par.present = 1;
2219 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2220
2221 return CMD_SUCCESS;
2222}
2223
2224DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2225 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002226 "Cell selection temporary negative offset\n"
2227 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002228 "Sets cell selection temporary negative offset to infinity")
2229{
2230 struct gsm_bts *bts = vty->index;
2231
2232 bts->si_common.cell_ro_sel_par.present = 1;
2233 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2234
2235 return CMD_SUCCESS;
2236}
2237
2238DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2239 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002240 "Cell selection penalty time\n"
2241 "Cell selection penalty time\n"
2242 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002243{
2244 struct gsm_bts *bts = vty->index;
2245
2246 bts->si_common.cell_ro_sel_par.present = 1;
2247 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2248
2249 return CMD_SUCCESS;
2250}
2251
2252DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2253 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002254 "Cell selection penalty time\n"
2255 "Cell selection penalty time\n"
2256 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002257 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2258 "and TEMPORARY_OFFSET is ignored)")
2259{
2260 struct gsm_bts *bts = vty->index;
2261
2262 bts->si_common.cell_ro_sel_par.present = 1;
2263 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2264
2265 return CMD_SUCCESS;
2266}
2267
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002268DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2269 "radio-link-timeout <4-64>",
2270 "Radio link timeout criterion (BTS side)\n"
2271 "Radio link timeout value (lost SACCH block)\n")
2272{
2273 struct gsm_bts *bts = vty->index;
2274
Harald Welte2f8b9d22017-06-18 11:12:13 +03002275 gsm_bts_set_radio_link_timeout(bts, atoi(argv[0]));
2276
2277 return CMD_SUCCESS;
2278}
2279
2280DEFUN(cfg_bts_radio_link_timeout_inf, cfg_bts_radio_link_timeout_inf_cmd,
2281 "radio-link-timeout infinite",
2282 "Radio link timeout criterion (BTS side)\n"
2283 "Infinite Radio link timeout value (use only for BTS RF testing)\n")
2284{
2285 struct gsm_bts *bts = vty->index;
2286
2287 if (bts->type != GSM_BTS_TYPE_OSMOBTS) {
2288 vty_out(vty, "%% infinite radio link timeout not supported by this BTS%s", VTY_NEWLINE);
2289 return CMD_WARNING;
2290 }
2291
2292 vty_out(vty, "%% INFINITE RADIO LINK TIMEOUT, USE ONLY FOR BTS RF TESTING%s", VTY_NEWLINE);
2293 gsm_bts_set_radio_link_timeout(bts, -1);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002294
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002295 return CMD_SUCCESS;
2296}
2297
Harald Welte8f0ed552010-05-11 21:53:49 +02002298#define GPRS_TEXT "GPRS Packet Network\n"
2299
Harald Welteaf387632010-03-14 23:30:30 +08002300DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002301 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002302 GPRS_TEXT
2303 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002304 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002305 "GPRS BSSGP VC Identifier")
2306{
2307 struct gsm_bts *bts = vty->index;
2308
Harald Welte4511d892010-04-18 15:51:20 +02002309 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002310 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2311 return CMD_WARNING;
2312 }
2313
Harald Welte97a282b2010-03-14 15:37:43 +08002314 bts->gprs.cell.bvci = atoi(argv[0]);
2315
2316 return CMD_SUCCESS;
2317}
2318
Harald Weltea5731cf2010-03-22 11:48:36 +08002319DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2320 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002321 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002322 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002323 "GPRS NS Entity Identifier")
2324{
2325 struct gsm_bts *bts = vty->index;
2326
Harald Welte4511d892010-04-18 15:51:20 +02002327 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002328 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2329 return CMD_WARNING;
2330 }
2331
2332 bts->gprs.nse.nsei = atoi(argv[0]);
2333
2334 return CMD_SUCCESS;
2335}
2336
Harald Welte8f0ed552010-05-11 21:53:49 +02002337#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2338 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002339
Harald Welte97a282b2010-03-14 15:37:43 +08002340DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2341 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002342 GPRS_TEXT NSVC_TEXT
2343 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002344 "GPRS NS VC Identifier")
2345{
2346 struct gsm_bts *bts = vty->index;
2347 int idx = atoi(argv[0]);
2348
Harald Welte4511d892010-04-18 15:51:20 +02002349 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002350 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2351 return CMD_WARNING;
2352 }
2353
Harald Welte97a282b2010-03-14 15:37:43 +08002354 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2355
2356 return CMD_SUCCESS;
2357}
2358
Harald Welteaf387632010-03-14 23:30:30 +08002359DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2360 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002361 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002362 "GPRS NS Local UDP Port\n"
2363 "GPRS NS Local UDP Port\n"
2364 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002365 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002366{
2367 struct gsm_bts *bts = vty->index;
2368 int idx = atoi(argv[0]);
2369
Harald Welte4511d892010-04-18 15:51:20 +02002370 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002371 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2372 return CMD_WARNING;
2373 }
2374
Harald Welteaf387632010-03-14 23:30:30 +08002375 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2376
2377 return CMD_SUCCESS;
2378}
2379
2380DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2381 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002382 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002383 "GPRS NS Remote UDP Port\n"
2384 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002385 "GPRS NS Remote UDP Port\n"
2386 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002387{
2388 struct gsm_bts *bts = vty->index;
2389 int idx = atoi(argv[0]);
2390
Harald Welte4511d892010-04-18 15:51:20 +02002391 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002392 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2393 return CMD_WARNING;
2394 }
2395
Harald Welteaf387632010-03-14 23:30:30 +08002396 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2397
2398 return CMD_SUCCESS;
2399}
2400
2401DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2402 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002403 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002404 "GPRS NS Remote IP Address\n"
2405 "GPRS NS Remote IP Address\n"
2406 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002407{
2408 struct gsm_bts *bts = vty->index;
2409 int idx = atoi(argv[0]);
2410 struct in_addr ia;
2411
Harald Welte4511d892010-04-18 15:51:20 +02002412 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002413 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2414 return CMD_WARNING;
2415 }
2416
Harald Welteaf387632010-03-14 23:30:30 +08002417 inet_aton(argv[1], &ia);
2418 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2419
2420 return CMD_SUCCESS;
2421}
2422
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002423DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002424 "paging free <-1-1024>",
2425 "Paging options\n"
2426 "Only page when having a certain amount of free slots\n"
2427 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002428{
2429 struct gsm_bts *bts = vty->index;
2430
2431 bts->paging.free_chans_need = atoi(argv[0]);
2432 return CMD_SUCCESS;
2433}
2434
Harald Welte615e9562010-05-11 23:50:21 +02002435DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2436 "gprs ns timer " NS_TIMERS " <0-255>",
2437 GPRS_TEXT "Network Service\n"
2438 "Network Service Timer\n"
2439 NS_TIMERS_HELP "Timer Value\n")
2440{
2441 struct gsm_bts *bts = vty->index;
2442 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2443 int val = atoi(argv[1]);
2444
2445 if (bts->gprs.mode == BTS_GPRS_NONE) {
2446 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2447 return CMD_WARNING;
2448 }
2449
2450 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2451 return CMD_WARNING;
2452
2453 bts->gprs.nse.timer[idx] = val;
2454
2455 return CMD_SUCCESS;
2456}
2457
2458#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02002459#define BSSGP_TIMERS_HELP \
2460 "Tbvc-block timeout\n" \
2461 "Tbvc-block retries\n" \
2462 "Tbvc-unblock retries\n" \
2463 "Tbvcc-reset timeout\n" \
2464 "Tbvc-reset retries\n" \
2465 "Tbvc-suspend timeout\n" \
2466 "Tbvc-suspend retries\n" \
2467 "Tbvc-resume timeout\n" \
2468 "Tbvc-resume retries\n" \
2469 "Tbvc-capa-update timeout\n" \
2470 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002471
2472DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2473 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2474 GPRS_TEXT "Cell / BSSGP\n"
2475 "Cell/BSSGP Timer\n"
2476 BSSGP_TIMERS_HELP "Timer Value\n")
2477{
2478 struct gsm_bts *bts = vty->index;
2479 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2480 int val = atoi(argv[1]);
2481
2482 if (bts->gprs.mode == BTS_GPRS_NONE) {
2483 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2484 return CMD_WARNING;
2485 }
2486
2487 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2488 return CMD_WARNING;
2489
2490 bts->gprs.cell.timer[idx] = val;
2491
2492 return CMD_SUCCESS;
2493}
2494
Harald Welte97a282b2010-03-14 15:37:43 +08002495DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2496 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002497 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002498 "GPRS Routing Area Code\n"
2499 "GPRS Routing Area Code\n"
2500 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002501{
2502 struct gsm_bts *bts = vty->index;
2503
Harald Welte4511d892010-04-18 15:51:20 +02002504 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002505 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2506 return CMD_WARNING;
2507 }
2508
Harald Welte97a282b2010-03-14 15:37:43 +08002509 bts->gprs.rac = atoi(argv[0]);
2510
2511 return CMD_SUCCESS;
2512}
2513
Max292ec582016-07-28 11:55:37 +02002514DEFUN(cfg_bts_gprs_ctrl_ack, cfg_bts_gprs_ctrl_ack_cmd,
2515 "gprs control-ack-type-rach", GPRS_TEXT
2516 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2517 "four access bursts format instead of default RLC/MAC control block\n")
2518{
2519 struct gsm_bts *bts = vty->index;
2520
2521 if (bts->gprs.mode == BTS_GPRS_NONE) {
2522 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2523 return CMD_WARNING;
2524 }
2525
2526 bts->gprs.ctrl_ack_type_use_block = false;
2527
2528 return CMD_SUCCESS;
2529}
2530
2531DEFUN(cfg_no_bts_gprs_ctrl_ack, cfg_no_bts_gprs_ctrl_ack_cmd,
2532 "no gprs control-ack-type-rach", NO_STR GPRS_TEXT
2533 "Set GPRS Control Ack Type for PACKET CONTROL ACKNOWLEDGMENT message to "
2534 "four access bursts format instead of default RLC/MAC control block\n")
2535{
2536 struct gsm_bts *bts = vty->index;
2537
2538 if (bts->gprs.mode == BTS_GPRS_NONE) {
2539 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2540 return CMD_WARNING;
2541 }
2542
2543 bts->gprs.ctrl_ack_type_use_block = true;
2544
2545 return CMD_SUCCESS;
2546}
2547
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002548DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2549 "gprs network-control-order (nc0|nc1|nc2)",
2550 GPRS_TEXT
2551 "GPRS Network Control Order\n"
2552 "MS controlled cell re-selection, no measurement reporting\n"
2553 "MS controlled cell re-selection, MS sends measurement reports\n"
2554 "Network controlled cell re-selection, MS sends measurement reports\n")
2555{
2556 struct gsm_bts *bts = vty->index;
2557
2558 if (bts->gprs.mode == BTS_GPRS_NONE) {
2559 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2560 return CMD_WARNING;
2561 }
2562
2563 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2564
2565 return CMD_SUCCESS;
2566}
2567
Harald Welte4511d892010-04-18 15:51:20 +02002568DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2569 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002570 GPRS_TEXT
2571 "GPRS Mode for this BTS\n"
2572 "GPRS Disabled on this BTS\n"
2573 "GPRS Enabled on this BTS\n"
2574 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002575{
2576 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002577 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welteaf387632010-03-14 23:30:30 +08002578
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002579 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Weltef3d8e922010-06-14 22:44:42 +02002580 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2581 VTY_NEWLINE);
2582 return CMD_WARNING;
2583 }
2584
2585 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002586
2587 return CMD_SUCCESS;
2588}
2589
bhargava350533c2016-07-21 11:14:34 +05302590DEFUN(cfg_bts_gprs_11bit_rach_support_for_egprs,
2591 cfg_bts_gprs_11bit_rach_support_for_egprs_cmd,
2592 "gprs 11bit_rach_support_for_egprs (0|1)",
2593 GPRS_TEXT "11 bit RACH options\n"
2594 "Disable 11 bit RACH for EGPRS\n"
2595 "Enable 11 bit RACH for EGPRS")
2596{
2597 struct gsm_bts *bts = vty->index;
2598
2599 bts->gprs.supports_egprs_11bit_rach = atoi(argv[0]);
2600
2601 if (bts->gprs.supports_egprs_11bit_rach > 1) {
2602 vty_out(vty, "Error in RACH type%s", VTY_NEWLINE);
2603 return CMD_WARNING;
2604 }
2605
2606 if ((bts->gprs.mode == BTS_GPRS_NONE) &&
2607 (bts->gprs.supports_egprs_11bit_rach == 1)) {
2608 vty_out(vty, "Error:gprs mode is none and 11bit rach is"
2609 " enabled%s", VTY_NEWLINE);
2610 return CMD_WARNING;
2611 }
2612
2613 return CMD_SUCCESS;
2614}
2615
Harald Welte9fbff4a2010-07-30 11:50:09 +02002616#define SI_TEXT "System Information Messages\n"
2617#define SI_TYPE_TEXT "(1|2|3|4|5|6|7|8|9|10|13|16|17|18|19|20|2bis|2ter|2quater|5bis|5ter)"
2618#define SI_TYPE_HELP "System Information Type 1\n" \
2619 "System Information Type 2\n" \
2620 "System Information Type 3\n" \
2621 "System Information Type 4\n" \
2622 "System Information Type 5\n" \
2623 "System Information Type 6\n" \
2624 "System Information Type 7\n" \
2625 "System Information Type 8\n" \
2626 "System Information Type 9\n" \
2627 "System Information Type 10\n" \
2628 "System Information Type 13\n" \
2629 "System Information Type 16\n" \
2630 "System Information Type 17\n" \
2631 "System Information Type 18\n" \
2632 "System Information Type 19\n" \
2633 "System Information Type 20\n" \
2634 "System Information Type 2bis\n" \
2635 "System Information Type 2ter\n" \
2636 "System Information Type 2quater\n" \
2637 "System Information Type 5bis\n" \
2638 "System Information Type 5ter\n"
2639
2640DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2641 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2642 SI_TEXT SI_TYPE_HELP
2643 "System Information Mode\n"
2644 "Static user-specified\n"
2645 "Dynamic, BSC-computed\n")
2646{
2647 struct gsm_bts *bts = vty->index;
2648 int type;
2649
2650 type = get_string_value(osmo_sitype_strs, argv[0]);
2651 if (type < 0) {
2652 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2653 return CMD_WARNING;
2654 }
2655
2656 if (!strcmp(argv[1], "static"))
2657 bts->si_mode_static |= (1 << type);
2658 else
2659 bts->si_mode_static &= ~(1 << type);
2660
2661 return CMD_SUCCESS;
2662}
2663
2664DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2665 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2666 SI_TEXT SI_TYPE_HELP
2667 "Static System Information filling\n"
2668 "Static user-specified SI content in HEX notation\n")
2669{
2670 struct gsm_bts *bts = vty->index;
2671 int rc, type;
2672
2673 type = get_string_value(osmo_sitype_strs, argv[0]);
2674 if (type < 0) {
2675 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2676 return CMD_WARNING;
2677 }
2678
2679 if (!(bts->si_mode_static & (1 << type))) {
2680 vty_out(vty, "SI Type %s is not configured in static mode%s",
2681 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2682 return CMD_WARNING;
2683 }
2684
Harald Welte290aaed2010-07-30 11:53:18 +02002685 /* Fill buffer with padding pattern */
Max6f0e50c2017-04-12 15:30:54 +02002686 memset(GSM_BTS_SI(bts, type), 0x2b, GSM_MACBLOCK_LEN);
Harald Welte290aaed2010-07-30 11:53:18 +02002687
2688 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Max6f0e50c2017-04-12 15:30:54 +02002689 rc = osmo_hexparse(argv[1], GSM_BTS_SI(bts, type), GSM_MACBLOCK_LEN);
2690 if (rc < 0 || rc > GSM_MACBLOCK_LEN) {
Harald Welte9fbff4a2010-07-30 11:50:09 +02002691 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2692 return CMD_WARNING;
2693 }
2694
2695 /* Mark this SI as present */
2696 bts->si_valid |= (1 << type);
2697
2698 return CMD_SUCCESS;
2699}
2700
Harald Welte42def722017-01-13 00:10:32 +01002701DEFUN(cfg_bts_early_cm, cfg_bts_early_cm_cmd,
2702 "early-classmark-sending (allowed|forbidden)",
2703 "Early Classmark Sending\n"
2704 "Early Classmark Sending is allowed\n"
2705 "Early Classmark Sending is forbidden\n")
2706{
2707 struct gsm_bts *bts = vty->index;
Harald Welte42def722017-01-13 00:10:32 +01002708
2709 if (!strcmp(argv[0], "allowed"))
2710 bts->early_classmark_allowed = true;
2711 else
2712 bts->early_classmark_allowed = false;
2713
2714 return CMD_SUCCESS;
2715}
2716
Harald Welte32c09622011-01-11 23:44:56 +01002717DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002718 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002719 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002720 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2721 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002722{
2723 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002724 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002725
Harald Welte64c07d22011-02-15 11:43:27 +01002726 switch (mode) {
2727 case NL_MODE_MANUAL_SI5SEP:
2728 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002729 /* make sure we clear the current list when switching to
2730 * manual mode */
2731 if (bts->neigh_list_manual_mode == 0)
2732 memset(&bts->si_common.data.neigh_list, 0,
2733 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002734 break;
2735 default:
2736 break;
2737 }
2738
2739 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002740
2741 return CMD_SUCCESS;
2742}
2743
2744DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002745 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002746 "Neighbor List\n" "Add to manual neighbor list\n"
2747 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2748 "ARFCN of neighbor\n")
2749{
2750 struct gsm_bts *bts = vty->index;
2751 struct bitvec *bv = &bts->si_common.neigh_list;
2752 uint16_t arfcn = atoi(argv[1]);
2753
2754 if (!bts->neigh_list_manual_mode) {
2755 vty_out(vty, "%% Cannot configure neighbor list in "
2756 "automatic mode%s", VTY_NEWLINE);
2757 return CMD_WARNING;
2758 }
2759
2760 if (!strcmp(argv[0], "add"))
2761 bitvec_set_bit_pos(bv, arfcn, 1);
2762 else
2763 bitvec_set_bit_pos(bv, arfcn, 0);
2764
2765 return CMD_SUCCESS;
2766}
2767
Max70fdd242017-06-15 15:10:53 +02002768/* help text should be kept in sync with EARFCN_*_INVALID defines */
Max59a1bf32016-04-15 16:04:46 +02002769DEFUN(cfg_bts_si2quater_neigh_add, cfg_bts_si2quater_neigh_add_cmd,
Max2c16bee2017-02-15 13:51:37 +01002770 "si2quater neighbor-list add earfcn <0-65535> thresh-hi <0-31> "
2771 "thresh-lo <0-32> prio <0-8> qrxlv <0-32> meas <0-8>",
2772 "SI2quater Neighbor List\n" "SI2quater Neighbor List\n"
2773 "Add to manual SI2quater neighbor list\n"
2774 "EARFCN of neighbor\n" "EARFCN of neighbor\n"
2775 "threshold high bits\n" "threshold high bits\n"
2776 "threshold low bits\n" "threshold low bits (32 means NA)\n"
2777 "priority\n" "priority (8 means NA)\n"
2778 "QRXLEVMIN\n" "QRXLEVMIN (32 means NA)\n"
2779 "measurement bandwidth\n" "measurement bandwidth (8 means NA)\n")
Max59a1bf32016-04-15 16:04:46 +02002780{
2781 struct gsm_bts *bts = vty->index;
2782 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
2783 uint16_t arfcn = atoi(argv[0]);
Max2c16bee2017-02-15 13:51:37 +01002784 uint8_t thresh_hi = atoi(argv[1]), thresh_lo = atoi(argv[2]),
2785 prio = atoi(argv[3]), qrx = atoi(argv[4]), meas = atoi(argv[5]);
Max70fdd242017-06-15 15:10:53 +02002786 int r = bts_earfcn_add(bts, arfcn, thresh_hi, thresh_lo, prio, qrx, meas);
Max59a1bf32016-04-15 16:04:46 +02002787
Max70fdd242017-06-15 15:10:53 +02002788 switch (r) {
2789 case 1:
2790 vty_out(vty, "Warning: multiple threshold-high are not supported, overriding with %u%s",
2791 thresh_hi, VTY_NEWLINE);
2792 break;
2793 case EARFCN_THRESH_LOW_INVALID:
2794 vty_out(vty, "Warning: multiple threshold-low are not supported, overriding with %u%s",
2795 thresh_lo, VTY_NEWLINE);
2796 break;
2797 case EARFCN_QRXLV_INVALID + 1:
2798 vty_out(vty, "Warning: multiple QRXLEVMIN are not supported, overriding with %u%s",
2799 qrx, VTY_NEWLINE);
2800 break;
2801 case EARFCN_PRIO_INVALID:
2802 vty_out(vty, "Warning: multiple priorities are not supported, overriding with %u%s",
2803 prio, VTY_NEWLINE);
2804 break;
2805 default:
2806 if (r < 0) {
2807 vty_out(vty, "Unable to add ARFCN %u: %s%s", arfcn, strerror(-r), VTY_NEWLINE);
2808 return CMD_WARNING;
2809 }
Max59a1bf32016-04-15 16:04:46 +02002810 }
2811
Max70fdd242017-06-15 15:10:53 +02002812 if (si2q_num(bts) <= SI2Q_MAX_NUM)
Max2c16bee2017-02-15 13:51:37 +01002813 return CMD_SUCCESS;
2814
Maxf39d03a2017-05-12 17:00:30 +02002815 vty_out(vty, "Warning: not enough space in SI2quater (%u/%u used) for a given EARFCN %u%s",
Max70fdd242017-06-15 15:10:53 +02002816 bts->si2q_count, SI2Q_MAX_NUM, arfcn, VTY_NEWLINE);
Maxaafff962016-04-20 15:57:14 +02002817 osmo_earfcn_del(e, arfcn);
Max2c16bee2017-02-15 13:51:37 +01002818
Maxaafff962016-04-20 15:57:14 +02002819 return CMD_WARNING;
Max59a1bf32016-04-15 16:04:46 +02002820}
2821
2822DEFUN(cfg_bts_si2quater_neigh_del, cfg_bts_si2quater_neigh_del_cmd,
Max35697b92016-04-29 12:51:31 +02002823 "si2quater neighbor-list del earfcn <0-65535>",
Max59a1bf32016-04-15 16:04:46 +02002824 "SI2quater Neighbor List\n"
2825 "SI2quater Neighbor List\n"
2826 "Delete from SI2quater manual neighbor list\n"
Max36212f22016-04-20 12:06:05 +02002827 "EARFCN of neighbor\n"
2828 "EARFCN\n")
Max59a1bf32016-04-15 16:04:46 +02002829{
2830 struct gsm_bts *bts = vty->index;
2831 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
Max0c1bc262016-04-20 12:06:06 +02002832 uint16_t arfcn = atoi(argv[0]);
Max59a1bf32016-04-15 16:04:46 +02002833 int r = osmo_earfcn_del(e, arfcn);
2834 if (r < 0) {
2835 vty_out(vty, "Unable to delete arfcn %u: %s%s", arfcn,
Max0c1bc262016-04-20 12:06:06 +02002836 strerror(-r), VTY_NEWLINE);
Max59a1bf32016-04-15 16:04:46 +02002837 return CMD_WARNING;
2838 }
2839
2840 return CMD_SUCCESS;
2841}
2842
Max26679e02016-04-20 15:57:13 +02002843DEFUN(cfg_bts_si2quater_uarfcn_add, cfg_bts_si2quater_uarfcn_add_cmd,
Max35697b92016-04-29 12:51:31 +02002844 "si2quater neighbor-list add uarfcn <0-16383> <0-511> <0-1>",
Max26679e02016-04-20 15:57:13 +02002845 "SI2quater Neighbor List\n"
2846 "SI2quater Neighbor List\n" "Add to manual SI2quater neighbor list\n"
2847 "UARFCN of neighbor\n" "UARFCN of neighbor\n" "scrambling code\n"
2848 "diversity bit\n")
2849{
2850 struct gsm_bts *bts = vty->index;
2851 uint16_t arfcn = atoi(argv[0]), scramble = atoi(argv[1]);
2852
2853 switch(bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) {
2854 case -ENOMEM:
Max70fdd242017-06-15 15:10:53 +02002855 vty_out(vty, "Unable to add UARFCN: max number of UARFCNs (%u) reached%s", MAX_EARFCN_LIST, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002856 return CMD_WARNING;
Maxaafff962016-04-20 15:57:14 +02002857 case -ENOSPC:
Max70fdd242017-06-15 15:10:53 +02002858 vty_out(vty, "Warning: not enough space in SI2quater for a given UARFCN (%u, %u)%s",
2859 arfcn, scramble, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002860 return CMD_WARNING;
Max26679e02016-04-20 15:57:13 +02002861 case -EADDRINUSE:
Max70fdd242017-06-15 15:10:53 +02002862 vty_out(vty, "Unable to add UARFCN: (%u, %u) is already added%s", arfcn, scramble, VTY_NEWLINE);
Max26679e02016-04-20 15:57:13 +02002863 return CMD_WARNING;
2864 }
2865
2866 return CMD_SUCCESS;
2867}
2868
2869DEFUN(cfg_bts_si2quater_uarfcn_del, cfg_bts_si2quater_uarfcn_del_cmd,
Max35697b92016-04-29 12:51:31 +02002870 "si2quater neighbor-list del uarfcn <0-16383> <0-511>",
Max26679e02016-04-20 15:57:13 +02002871 "SI2quater Neighbor List\n"
2872 "SI2quater Neighbor List\n"
2873 "Delete from SI2quater manual neighbor list\n"
2874 "UARFCN of neighbor\n"
2875 "UARFCN\n"
2876 "scrambling code\n")
2877{
2878 struct gsm_bts *bts = vty->index;
2879
2880 if (bts_uarfcn_del(bts, atoi(argv[0]), atoi(argv[1])) < 0) {
2881 vty_out(vty, "Unable to delete uarfcn: pair not found%s",
2882 VTY_NEWLINE);
2883 return CMD_WARNING;
2884 }
2885
2886 return CMD_SUCCESS;
2887}
2888
Harald Welte64c07d22011-02-15 11:43:27 +01002889DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002890 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002891 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002892 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2893 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2894 "ARFCN of neighbor\n")
2895{
2896 struct gsm_bts *bts = vty->index;
2897 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2898 uint16_t arfcn = atoi(argv[1]);
2899
2900 if (!bts->neigh_list_manual_mode) {
2901 vty_out(vty, "%% Cannot configure neighbor list in "
2902 "automatic mode%s", VTY_NEWLINE);
2903 return CMD_WARNING;
2904 }
2905
2906 if (!strcmp(argv[0], "add"))
2907 bitvec_set_bit_pos(bv, arfcn, 1);
2908 else
2909 bitvec_set_bit_pos(bv, arfcn, 0);
2910
2911 return CMD_SUCCESS;
2912}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002913
Harald Welte8254cf72017-05-29 13:42:19 +02002914DEFUN(cfg_bts_pcu_sock, cfg_bts_pcu_sock_cmd,
2915 "pcu-socket PATH",
2916 "PCU Socket Path for using OsmoPCU co-located with BSC (legacy BTS)\n"
2917 "Path in the file system for the unix-domain PCU socket\n")
2918{
2919 struct gsm_bts *bts = vty->index;
2920 int rc;
2921
Harald Welte4a824ca2017-05-29 13:54:27 +02002922 osmo_talloc_replace_string(bts, &bts->pcu_sock_path, argv[0]);
Harald Welte8254cf72017-05-29 13:42:19 +02002923 pcu_sock_exit(bts);
2924 rc = pcu_sock_init(bts->pcu_sock_path, bts);
2925 if (rc < 0) {
2926 vty_out(vty, "%% Error creating PCU socket `%s' for BTS %u%s",
2927 bts->pcu_sock_path, bts->nr, VTY_NEWLINE);
2928 return CMD_WARNING;
2929 }
2930
2931 return CMD_SUCCESS;
2932}
2933
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002934#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2935
2936DEFUN(cfg_bts_excl_rf_lock,
2937 cfg_bts_excl_rf_lock_cmd,
2938 "rf-lock-exclude",
2939 EXCL_RFLOCK_STR)
2940{
2941 struct gsm_bts *bts = vty->index;
2942 bts->excl_from_rf_lock = 1;
2943 return CMD_SUCCESS;
2944}
2945
2946DEFUN(cfg_bts_no_excl_rf_lock,
2947 cfg_bts_no_excl_rf_lock_cmd,
2948 "no rf-lock-exclude",
2949 NO_STR EXCL_RFLOCK_STR)
2950{
2951 struct gsm_bts *bts = vty->index;
2952 bts->excl_from_rf_lock = 0;
2953 return CMD_SUCCESS;
2954}
2955
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002956#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2957
2958DEFUN(cfg_bts_force_comb_si,
2959 cfg_bts_force_comb_si_cmd,
2960 "force-combined-si",
2961 FORCE_COMB_SI_STR)
2962{
2963 struct gsm_bts *bts = vty->index;
2964 bts->force_combined_si = 1;
2965 return CMD_SUCCESS;
2966}
2967
2968DEFUN(cfg_bts_no_force_comb_si,
2969 cfg_bts_no_force_comb_si_cmd,
2970 "no force-combined-si",
2971 NO_STR FORCE_COMB_SI_STR)
2972{
2973 struct gsm_bts *bts = vty->index;
2974 bts->force_combined_si = 0;
2975 return CMD_SUCCESS;
2976}
2977
Andreas Eversberga83d5112013-12-07 18:32:28 +01002978static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2979{
2980 struct gsm_bts *bts = vty->index;
2981 struct bts_codec_conf *codec = &bts->codec;
2982 int i;
2983
2984 codec->hr = 0;
2985 codec->efr = 0;
2986 codec->amr = 0;
2987 for (i = 0; i < argc; i++) {
2988 if (!strcmp(argv[i], "hr"))
2989 codec->hr = 1;
2990 if (!strcmp(argv[i], "efr"))
2991 codec->efr = 1;
2992 if (!strcmp(argv[i], "amr"))
2993 codec->amr = 1;
2994 }
2995}
2996
2997#define CODEC_PAR_STR " (hr|efr|amr)"
2998#define CODEC_HELP_STR "Half Rate\n" \
2999 "Enhanced Full Rate\nAdaptive Multirate\n"
3000
3001DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
3002 "codec-support fr",
3003 "Codec Support settings\nFullrate\n")
3004{
3005 _get_codec_from_arg(vty, 0, argv);
3006 return CMD_SUCCESS;
3007}
3008
3009DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
3010 "codec-support fr" CODEC_PAR_STR,
3011 "Codec Support settings\nFullrate\n"
3012 CODEC_HELP_STR)
3013{
3014 _get_codec_from_arg(vty, 1, argv);
3015 return CMD_SUCCESS;
3016}
3017
3018DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
3019 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
3020 "Codec Support settings\nFullrate\n"
3021 CODEC_HELP_STR CODEC_HELP_STR)
3022{
3023 _get_codec_from_arg(vty, 2, argv);
3024 return CMD_SUCCESS;
3025}
3026
3027DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
3028 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3029 "Codec Support settings\nFullrate\n"
3030 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3031{
3032 _get_codec_from_arg(vty, 3, argv);
3033 return CMD_SUCCESS;
3034}
3035
3036DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
3037 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3038 "Codec Support settings\nFullrate\n"
3039 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3040{
3041 _get_codec_from_arg(vty, 4, argv);
3042 return CMD_SUCCESS;
3043}
3044
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003045DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
3046 "depends-on-bts <0-255>",
3047 "This BTS can only be started if another one is up\n" "BTS Number\n")
3048{
3049 struct gsm_bts *bts = vty->index;
3050 struct gsm_bts *other_bts;
3051 int dep = atoi(argv[0]);
3052
3053
3054 if (!is_ipaccess_bts(bts)) {
3055 vty_out(vty, "This feature is only available for IP systems.%s",
3056 VTY_NEWLINE);
3057 return CMD_WARNING;
3058 }
3059
3060 other_bts = gsm_bts_num(bts->network, dep);
3061 if (!other_bts || !is_ipaccess_bts(other_bts)) {
3062 vty_out(vty, "This feature is only available for IP systems.%s",
3063 VTY_NEWLINE);
3064 return CMD_WARNING;
3065 }
3066
3067 if (dep >= bts->nr) {
3068 vty_out(vty, "%%Need to depend on an already declared unit.%s",
3069 VTY_NEWLINE);
3070 return CMD_WARNING;
3071 }
3072
3073 bts_depend_mark(bts, dep);
3074 return CMD_SUCCESS;
3075}
3076
3077DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
3078 "depeneds-on-bts <0-255>",
3079 NO_STR "This BTS can only be started if another one is up\n"
3080 "BTS Number\n")
3081{
3082 struct gsm_bts *bts = vty->index;
3083 int dep = atoi(argv[0]);
3084
3085 bts_depend_clear(bts, dep);
3086 return CMD_SUCCESS;
3087}
3088
Andreas Eversberg73266522014-01-19 11:47:44 +01003089#define AMR_TEXT "Adaptive Multi Rate settings\n"
3090#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
3091#define AMR_START_TEXT "Initial codec to use with AMR\n" \
3092 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
3093#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
3094#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
3095
3096static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3097{
3098 struct gsm_bts *bts = vty->index;
3099 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3100 struct gsm48_multi_rate_conf *mr_conf =
3101 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3102 int i;
3103
3104 mr->gsm48_ie[1] = 0;
3105 for (i = 0; i < argc; i++)
3106 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
3107 mr_conf->icmi = 0;
3108}
3109
3110static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3111{
3112 struct gsm_bts *bts = vty->index;
3113 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003114 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003115 int i;
3116
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003117 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3118 for (i = 0; i < argc - 1; i++)
3119 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003120}
3121
3122static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3123{
3124 struct gsm_bts *bts = vty->index;
3125 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003126 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003127 int i;
3128
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003129 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3130 for (i = 0; i < argc - 1; i++)
3131 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003132}
3133
3134static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
3135{
3136 struct gsm_bts *bts = vty->index;
3137 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3138 struct gsm48_multi_rate_conf *mr_conf =
3139 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3140 int num = 0, i;
3141
3142 for (i = 0; i < ((full) ? 8 : 6); i++) {
3143 if ((mr->gsm48_ie[1] & (1 << i))) {
3144 num++;
3145 }
3146 }
3147
3148 if (argv[0][0] == 'a' || num == 0)
3149 mr_conf->icmi = 0;
3150 else {
3151 mr_conf->icmi = 1;
3152 if (num < atoi(argv[0]))
3153 mr_conf->smod = num - 1;
3154 else
3155 mr_conf->smod = atoi(argv[0]) - 1;
3156 }
3157}
3158
3159#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3160#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3161 "10,2k\n12,2k\n"
3162
3163#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3164#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3165
3166#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3167#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3168
3169DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3170 "amr tch-f modes" AMR_TCHF_PAR_STR,
3171 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3172 AMR_TCHF_HELP_STR)
3173{
3174 get_amr_from_arg(vty, 1, argv, 1);
3175 return CMD_SUCCESS;
3176}
3177
3178DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3179 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3180 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3181 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3182{
3183 get_amr_from_arg(vty, 2, argv, 1);
3184 return CMD_SUCCESS;
3185}
3186
3187DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3188 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3189 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3190 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3191{
3192 get_amr_from_arg(vty, 3, argv, 1);
3193 return CMD_SUCCESS;
3194}
3195
3196DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3197 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3198 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3199 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3200{
3201 get_amr_from_arg(vty, 4, argv, 1);
3202 return CMD_SUCCESS;
3203}
3204
3205DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3206 "amr tch-f start-mode (auto|1|2|3|4)",
3207 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3208{
3209 get_amr_start_from_arg(vty, argv, 1);
3210 return CMD_SUCCESS;
3211}
3212
3213DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3214 "amr tch-f threshold (ms|bts) <0-63>",
3215 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3216 AMR_TH_HELP_STR)
3217{
3218 get_amr_th_from_arg(vty, 2, argv, 1);
3219 return CMD_SUCCESS;
3220}
3221
3222DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3223 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3224 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3225 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3226{
3227 get_amr_th_from_arg(vty, 3, argv, 1);
3228 return CMD_SUCCESS;
3229}
3230
3231DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3232 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3233 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3234 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3235{
3236 get_amr_th_from_arg(vty, 4, argv, 1);
3237 return CMD_SUCCESS;
3238}
3239
3240DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3241 "amr tch-f hysteresis (ms|bts) <0-15>",
3242 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3243 AMR_HY_HELP_STR)
3244{
3245 get_amr_hy_from_arg(vty, 2, argv, 1);
3246 return CMD_SUCCESS;
3247}
3248
3249DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3250 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3251 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3252 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3253{
3254 get_amr_hy_from_arg(vty, 3, argv, 1);
3255 return CMD_SUCCESS;
3256}
3257
3258DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3259 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3260 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3261 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3262{
3263 get_amr_hy_from_arg(vty, 4, argv, 1);
3264 return CMD_SUCCESS;
3265}
3266
3267DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3268 "amr tch-h modes" AMR_TCHH_PAR_STR,
3269 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3270 AMR_TCHH_HELP_STR)
3271{
3272 get_amr_from_arg(vty, 1, argv, 0);
3273 return CMD_SUCCESS;
3274}
3275
3276DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3277 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3278 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3279 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3280{
3281 get_amr_from_arg(vty, 2, argv, 0);
3282 return CMD_SUCCESS;
3283}
3284
3285DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3286 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3287 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3288 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3289{
3290 get_amr_from_arg(vty, 3, argv, 0);
3291 return CMD_SUCCESS;
3292}
3293
3294DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3295 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3296 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3297 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3298{
3299 get_amr_from_arg(vty, 4, argv, 0);
3300 return CMD_SUCCESS;
3301}
3302
3303DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3304 "amr tch-h start-mode (auto|1|2|3|4)",
3305 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3306{
3307 get_amr_start_from_arg(vty, argv, 0);
3308 return CMD_SUCCESS;
3309}
3310
3311DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3312 "amr tch-h threshold (ms|bts) <0-63>",
3313 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3314 AMR_TH_HELP_STR)
3315{
3316 get_amr_th_from_arg(vty, 2, argv, 0);
3317 return CMD_SUCCESS;
3318}
3319
3320DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3321 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3322 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3323 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3324{
3325 get_amr_th_from_arg(vty, 3, argv, 0);
3326 return CMD_SUCCESS;
3327}
3328
3329DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3330 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3331 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3332 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3333{
3334 get_amr_th_from_arg(vty, 4, argv, 0);
3335 return CMD_SUCCESS;
3336}
3337
3338DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3339 "amr tch-h hysteresis (ms|bts) <0-15>",
3340 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3341 AMR_HY_HELP_STR)
3342{
3343 get_amr_hy_from_arg(vty, 2, argv, 0);
3344 return CMD_SUCCESS;
3345}
3346
3347DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3348 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3349 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3350 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3351{
3352 get_amr_hy_from_arg(vty, 3, argv, 0);
3353 return CMD_SUCCESS;
3354}
3355
3356DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3357 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3358 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3359 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3360{
3361 get_amr_hy_from_arg(vty, 4, argv, 0);
3362 return CMD_SUCCESS;
3363}
3364
Harald Welte8f0ed552010-05-11 21:53:49 +02003365#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02003366
Harald Welte5258fc42009-03-28 19:07:53 +00003367/* per TRX configuration */
3368DEFUN(cfg_trx,
3369 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02003370 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02003371 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00003372 "Select a TRX to configure")
3373{
3374 int trx_nr = atoi(argv[0]);
3375 struct gsm_bts *bts = vty->index;
3376 struct gsm_bts_trx *trx;
3377
Harald Weltee441d9c2009-06-21 16:17:15 +02003378 if (trx_nr > bts->num_trx) {
3379 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3380 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00003381 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02003382 } else if (trx_nr == bts->num_trx) {
3383 /* we need to allocate a new one */
3384 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003385 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02003386 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003387
Harald Weltee441d9c2009-06-21 16:17:15 +02003388 if (!trx)
3389 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00003390
3391 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02003392 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00003393 vty->node = TRX_NODE;
3394
3395 return CMD_SUCCESS;
3396}
3397
3398DEFUN(cfg_trx_arfcn,
3399 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01003400 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02003401 "Set the ARFCN for this TRX\n"
3402 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003403{
3404 int arfcn = atoi(argv[0]);
3405 struct gsm_bts_trx *trx = vty->index;
3406
3407 /* FIXME: check if this ARFCN is supported by this TRX */
3408
3409 trx->arfcn = arfcn;
3410
3411 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3412 /* FIXME: use OML layer to update the ARFCN */
3413 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3414
3415 return CMD_SUCCESS;
3416}
3417
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003418DEFUN(cfg_trx_nominal_power,
3419 cfg_trx_nominal_power_cmd,
3420 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003421 "Nominal TRX RF Power in dBm\n"
3422 "Nominal TRX RF Power in dBm\n"
3423 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003424{
3425 struct gsm_bts_trx *trx = vty->index;
3426
3427 trx->nominal_power = atoi(argv[0]);
3428
3429 return CMD_SUCCESS;
3430}
3431
Harald Weltefcd24452009-06-20 18:15:19 +02003432DEFUN(cfg_trx_max_power_red,
3433 cfg_trx_max_power_red_cmd,
3434 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003435 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02003436 "Reduction of maximum BS RF Power in dB\n")
3437{
3438 int maxpwr_r = atoi(argv[0]);
3439 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01003440 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02003441
3442 /* FIXME: check if our BTS type supports more than 12 */
3443 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3444 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3445 maxpwr_r, VTY_NEWLINE);
3446 return CMD_WARNING;
3447 }
3448 if (maxpwr_r & 1) {
3449 vty_out(vty, "%% Power %d dB is not an even value%s",
3450 maxpwr_r, VTY_NEWLINE);
3451 return CMD_WARNING;
3452 }
3453
3454 trx->max_power_red = maxpwr_r;
3455
3456 /* FIXME: make sure we update this using OML */
3457
3458 return CMD_SUCCESS;
3459}
3460
Harald Welte42581822009-08-08 16:12:58 +02003461DEFUN(cfg_trx_rsl_e1,
3462 cfg_trx_rsl_e1_cmd,
3463 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003464 "RSL Parameters\n"
3465 "E1/T1 interface to be used for RSL\n"
3466 "E1/T1 interface to be used for RSL\n"
3467 "E1/T1 Line Number to be used for RSL\n"
3468 "E1/T1 Timeslot to be used for RSL\n"
3469 "E1/T1 Timeslot to be used for RSL\n"
3470 "E1/T1 Sub-slot to be used for RSL\n"
3471 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3472 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3473 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3474 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3475 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003476{
3477 struct gsm_bts_trx *trx = vty->index;
3478
3479 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3480
3481 return CMD_SUCCESS;
3482}
3483
3484DEFUN(cfg_trx_rsl_e1_tei,
3485 cfg_trx_rsl_e1_tei_cmd,
3486 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003487 "RSL Parameters\n"
3488 "Set the TEI to be used for RSL\n"
3489 "Set the TEI to be used for RSL\n"
3490 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003491{
3492 struct gsm_bts_trx *trx = vty->index;
3493
3494 trx->rsl_tei = atoi(argv[0]);
3495
3496 return CMD_SUCCESS;
3497}
3498
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003499DEFUN(cfg_trx_rf_locked,
3500 cfg_trx_rf_locked_cmd,
3501 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003502 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3503 "TRX is NOT RF locked (active)\n"
3504 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003505{
3506 int locked = atoi(argv[0]);
3507 struct gsm_bts_trx *trx = vty->index;
3508
3509 gsm_trx_lock_rf(trx, locked);
3510 return CMD_SUCCESS;
3511}
Harald Welte42581822009-08-08 16:12:58 +02003512
Harald Welte5258fc42009-03-28 19:07:53 +00003513/* per TS configuration */
3514DEFUN(cfg_ts,
3515 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003516 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003517 "Select a Timeslot to configure\n"
3518 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003519{
3520 int ts_nr = atoi(argv[0]);
3521 struct gsm_bts_trx *trx = vty->index;
3522 struct gsm_bts_trx_ts *ts;
3523
3524 if (ts_nr >= TRX_NR_TS) {
3525 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3526 TRX_NR_TS, VTY_NEWLINE);
3527 return CMD_WARNING;
3528 }
3529
3530 ts = &trx->ts[ts_nr];
3531
3532 vty->index = ts;
3533 vty->node = TS_NODE;
3534
3535 return CMD_SUCCESS;
3536}
3537
Harald Weltea6fd58e2009-08-07 00:25:23 +02003538DEFUN(cfg_ts_pchan,
3539 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003540 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003541 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003542{
3543 struct gsm_bts_trx_ts *ts = vty->index;
3544 int pchanc;
3545
3546 pchanc = gsm_pchan_parse(argv[0]);
3547 if (pchanc < 0)
3548 return CMD_WARNING;
3549
3550 ts->pchan = pchanc;
3551
3552 return CMD_SUCCESS;
3553}
3554
3555/* used for backwards compatibility with old config files that still
3556 * have uppercase pchan type names */
3557DEFUN_HIDDEN(cfg_ts_pchan_compat,
3558 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003559 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003560 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003561{
3562 struct gsm_bts_trx_ts *ts = vty->index;
3563 int pchanc;
3564
3565 pchanc = gsm_pchan_parse(argv[0]);
3566 if (pchanc < 0)
3567 return CMD_WARNING;
3568
3569 ts->pchan = pchanc;
3570
3571 return CMD_SUCCESS;
3572}
3573
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003574
3575
Harald Welte135a6482011-05-30 12:09:13 +02003576DEFUN(cfg_ts_tsc,
3577 cfg_ts_tsc_cmd,
3578 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003579 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003580{
3581 struct gsm_bts_trx_ts *ts = vty->index;
3582
Max71d082b2017-05-30 15:03:38 +02003583 if (!gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_MULTI_TSC)) {
Harald Welte903aaea2014-01-19 17:10:50 +01003584 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3585 "falling back to BCC%s", VTY_NEWLINE);
3586 ts->tsc = -1;
3587 return CMD_WARNING;
3588 }
3589
Harald Welte135a6482011-05-30 12:09:13 +02003590 ts->tsc = atoi(argv[0]);
3591
3592 return CMD_SUCCESS;
3593}
3594
Harald Weltea39b0f22010-06-14 22:26:10 +02003595#define HOPPING_STR "Configure frequency hopping\n"
3596
3597DEFUN(cfg_ts_hopping,
3598 cfg_ts_hopping_cmd,
3599 "hopping enabled (0|1)",
3600 HOPPING_STR "Enable or disable frequency hopping\n"
3601 "Disable frequency hopping\n" "Enable frequency hopping\n")
3602{
3603 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003604 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003605
Max71d082b2017-05-30 15:03:38 +02003606 if (enabled && !gsm_btsmodel_has_feature(ts->trx->bts->model, BTS_FEAT_HOPPING)) {
Harald Weltec2fb3d02010-06-14 22:47:37 +02003607 vty_out(vty, "BTS model does not support hopping%s",
3608 VTY_NEWLINE);
3609 return CMD_WARNING;
3610 }
3611
3612 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003613
3614 return CMD_SUCCESS;
3615}
3616
Harald Welte6e0cd042009-09-12 13:05:33 +02003617DEFUN(cfg_ts_hsn,
3618 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003619 "hopping sequence-number <0-63>",
3620 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003621 "Which hopping sequence to use for this channel\n"
3622 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003623{
3624 struct gsm_bts_trx_ts *ts = vty->index;
3625
3626 ts->hopping.hsn = atoi(argv[0]);
3627
3628 return CMD_SUCCESS;
3629}
3630
3631DEFUN(cfg_ts_maio,
3632 cfg_ts_maio_cmd,
3633 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003634 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003635 "Which hopping MAIO to use for this channel\n"
3636 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003637{
3638 struct gsm_bts_trx_ts *ts = vty->index;
3639
3640 ts->hopping.maio = atoi(argv[0]);
3641
3642 return CMD_SUCCESS;
3643}
3644
3645DEFUN(cfg_ts_arfcn_add,
3646 cfg_ts_arfcn_add_cmd,
3647 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003648 HOPPING_STR "Configure hopping ARFCN list\n"
3649 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003650{
3651 struct gsm_bts_trx_ts *ts = vty->index;
3652 int arfcn = atoi(argv[0]);
3653
Harald Weltea39b0f22010-06-14 22:26:10 +02003654 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3655
Harald Welte6e0cd042009-09-12 13:05:33 +02003656 return CMD_SUCCESS;
3657}
3658
3659DEFUN(cfg_ts_arfcn_del,
3660 cfg_ts_arfcn_del_cmd,
3661 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003662 HOPPING_STR "Configure hopping ARFCN list\n"
3663 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003664{
3665 struct gsm_bts_trx_ts *ts = vty->index;
3666 int arfcn = atoi(argv[0]);
3667
Harald Weltea39b0f22010-06-14 22:26:10 +02003668 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3669
Harald Welte6e0cd042009-09-12 13:05:33 +02003670 return CMD_SUCCESS;
3671}
3672
Harald Weltea6fd58e2009-08-07 00:25:23 +02003673DEFUN(cfg_ts_e1_subslot,
3674 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003675 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003676 "E1/T1 channel connected to this on-air timeslot\n"
3677 "E1/T1 channel connected to this on-air timeslot\n"
3678 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003679 "E1/T1 timeslot connected to this on-air timeslot\n"
3680 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003681 "E1/T1 sub-slot connected to this on-air timeslot\n"
3682 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3683 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3684 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3685 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3686 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003687{
3688 struct gsm_bts_trx_ts *ts = vty->index;
3689
Harald Welte42581822009-08-08 16:12:58 +02003690 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003691
3692 return CMD_SUCCESS;
3693}
Harald Welte5258fc42009-03-28 19:07:53 +00003694
Harald Welte4f10c252010-05-16 21:47:13 +02003695void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3696{
3697 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003698 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_TOTAL].current,
3699 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_NO_CHANNEL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003700 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003701 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003702 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RF_FAIL].current,
3703 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RLL_ERR].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003704 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003705 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003706 net->bsc_ctrs->ctr[BSC_CTR_PAGING_ATTEMPTED].current,
3707 net->bsc_ctrs->ctr[BSC_CTR_PAGING_COMPLETED].current,
3708 net->bsc_ctrs->ctr[BSC_CTR_PAGING_EXPIRED].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003709 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003710 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003711 net->bsc_ctrs->ctr[BSC_CTR_BTS_OML_FAIL].current,
3712 net->bsc_ctrs->ctr[BSC_CTR_BTS_RSL_FAIL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003713 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003714}
3715
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003716DEFUN(drop_bts,
3717 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003718 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003719 "Debug/Simulation command to drop Abis/IP BTS\n"
3720 "Debug/Simulation command to drop Abis/IP BTS\n"
3721 "Debug/Simulation command to drop Abis/IP BTS\n"
3722 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003723{
3724 struct gsm_network *gsmnet;
3725 struct gsm_bts_trx *trx;
3726 struct gsm_bts *bts;
3727 unsigned int bts_nr;
3728
3729 gsmnet = gsmnet_from_vty(vty);
3730
3731 bts_nr = atoi(argv[0]);
3732 if (bts_nr >= gsmnet->num_bts) {
3733 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3734 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3735 return CMD_WARNING;
3736 }
3737
3738 bts = gsm_bts_num(gsmnet, bts_nr);
3739 if (!bts) {
3740 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3741 return CMD_WARNING;
3742 }
3743
3744 if (!is_ipaccess_bts(bts)) {
3745 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3746 return CMD_WARNING;
3747 }
3748
3749
3750 /* close all connections */
3751 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003752 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003753 } else if (strcmp(argv[1], "rsl") == 0) {
3754 /* close all rsl connections */
3755 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003756 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003757 }
3758 } else {
3759 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3760 return CMD_WARNING;
3761 }
3762
3763 return CMD_SUCCESS;
3764}
3765
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01003766DEFUN(restart_bts, restart_bts_cmd,
3767 "restart-bts <0-65535>",
3768 "Restart ip.access nanoBTS through OML\n"
3769 "BTS Number\n")
3770{
3771 struct gsm_network *gsmnet;
3772 struct gsm_bts_trx *trx;
3773 struct gsm_bts *bts;
3774 unsigned int bts_nr;
3775
3776 gsmnet = gsmnet_from_vty(vty);
3777
3778 bts_nr = atoi(argv[0]);
3779 if (bts_nr >= gsmnet->num_bts) {
3780 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3781 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3782 return CMD_WARNING;
3783 }
3784
3785 bts = gsm_bts_num(gsmnet, bts_nr);
3786 if (!bts) {
3787 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3788 return CMD_WARNING;
3789 }
3790
3791 if (!is_ipaccess_bts(bts) || is_sysmobts_v2(bts)) {
3792 vty_out(vty, "This command only works for ipaccess nanoBTS.%s",
3793 VTY_NEWLINE);
3794 return CMD_WARNING;
3795 }
3796
3797 /* go from last TRX to c0 */
3798 llist_for_each_entry_reverse(trx, &bts->trx_list, list)
3799 abis_nm_ipaccess_restart(trx);
3800
3801 return CMD_SUCCESS;
3802}
3803
Harald Welte30f1f372014-12-28 15:00:45 +01003804DEFUN(smscb_cmd, smscb_cmd_cmd,
3805 "bts <0-255> smscb-command <1-4> HEXSTRING",
3806 "BTS related commands\n" "BTS Number\n"
3807 "SMS Cell Broadcast\n" "Last Valid Block\n"
3808 "Hex Encoded SMSCB message (up to 88 octets)\n")
3809{
3810 struct gsm_bts *bts;
3811 int bts_nr = atoi(argv[0]);
3812 int last_block = atoi(argv[1]);
3813 struct rsl_ie_cb_cmd_type cb_cmd;
3814 uint8_t buf[88];
3815 int rc;
3816
Neels Hofmeyrb90eabf2016-05-11 18:48:39 +02003817 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
Harald Welte30f1f372014-12-28 15:00:45 +01003818 if (!bts) {
3819 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3820 return CMD_WARNING;
3821 }
3822 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3823 if (rc < 0 || rc > sizeof(buf)) {
3824 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3825 return CMD_WARNING;
3826 }
3827
3828 cb_cmd.spare = 0;
3829 cb_cmd.def_bcast = 0;
3830 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3831
3832 switch (last_block) {
3833 case 1:
3834 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3835 break;
3836 case 2:
3837 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3838 break;
3839 case 3:
3840 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3841 break;
3842 case 4:
3843 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3844 break;
3845 }
3846
3847 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3848
3849 return CMD_SUCCESS;
3850}
3851
Harald Welte7fe00fb2017-05-27 14:09:50 +02003852/* resolve a gsm_bts_trx_ts basd on the given numeric identifiers */
Harald Welte645eb622017-05-27 15:52:58 +02003853static struct gsm_bts_trx_ts *vty_get_ts(struct vty *vty, const char *bts_str, const char *trx_str,
3854 const char *ts_str)
Harald Welte7fe00fb2017-05-27 14:09:50 +02003855{
Harald Welte645eb622017-05-27 15:52:58 +02003856 int bts_nr = atoi(bts_str);
3857 int trx_nr = atoi(trx_str);
3858 int ts_nr = atoi(ts_str);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003859 struct gsm_bts *bts;
3860 struct gsm_bts_trx *trx;
3861 struct gsm_bts_trx_ts *ts;
3862
3863 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
3864 if (!bts) {
3865 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3866 return NULL;
3867 }
3868
3869 trx = gsm_bts_trx_num(bts, trx_nr);
3870 if (!trx) {
3871 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3872 return NULL;
3873 }
3874
3875 ts = &trx->ts[ts_nr];
3876
3877 return ts;
3878}
Harald Welte30f1f372014-12-28 15:00:45 +01003879
Harald Welted0d2b0b2010-12-23 13:18:07 +01003880DEFUN(pdch_act, pdch_act_cmd,
3881 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3882 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3883 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3884 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3885 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3886{
Harald Welted0d2b0b2010-12-23 13:18:07 +01003887 struct gsm_bts_trx_ts *ts;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003888 int activate;
3889
Harald Welte645eb622017-05-27 15:52:58 +02003890 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
Harald Welte7fe00fb2017-05-27 14:09:50 +02003891 if (!ts)
Harald Welted0d2b0b2010-12-23 13:18:07 +01003892 return CMD_WARNING;
Harald Welted0d2b0b2010-12-23 13:18:07 +01003893
Harald Welte7fe00fb2017-05-27 14:09:50 +02003894 if (!is_ipaccess_bts(ts->trx->bts)) {
Harald Welted0d2b0b2010-12-23 13:18:07 +01003895 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3896 VTY_NEWLINE);
3897 return CMD_WARNING;
3898 }
3899
Harald Welted0d2b0b2010-12-23 13:18:07 +01003900 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3901 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
Harald Welte645eb622017-05-27 15:52:58 +02003902 "mode%s", ts->nr, VTY_NEWLINE);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003903 return CMD_WARNING;
3904 }
3905
3906 if (!strcmp(argv[3], "activate"))
3907 activate = 1;
3908 else
3909 activate = 0;
3910
3911 rsl_ipacc_pdch_activate(ts, activate);
3912
3913 return CMD_SUCCESS;
3914
3915}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003916
Harald Welte2abd5e12017-05-27 14:10:40 +02003917/* determine the logical channel type based on the physical channel type */
3918static int lchan_type_by_pchan(enum gsm_phys_chan_config pchan)
3919{
3920 switch (pchan) {
3921 case GSM_PCHAN_TCH_F:
3922 return GSM_LCHAN_TCH_F;
3923 case GSM_PCHAN_TCH_H:
3924 return GSM_LCHAN_TCH_H;
3925 case GSM_PCHAN_SDCCH8_SACCH8C:
3926 case GSM_PCHAN_SDCCH8_SACCH8C_CBCH:
3927 case GSM_PCHAN_CCCH_SDCCH4:
3928 case GSM_PCHAN_CCCH_SDCCH4_CBCH:
3929 return GSM_LCHAN_SDCCH;
3930 default:
3931 return -1;
3932 }
3933}
3934
3935/* configure the lchan for a single AMR mode (as specified) */
3936static int lchan_set_single_amr_mode(struct gsm_lchan *lchan, uint8_t amr_mode)
3937{
3938 struct amr_multirate_conf mr;
3939 struct gsm48_multi_rate_conf *mr_conf;
3940 mr_conf = (struct gsm48_multi_rate_conf *) &mr.gsm48_ie;
3941
3942 if (amr_mode > 7)
3943 return -1;
3944
3945 memset(&mr, 0, sizeof(mr));
3946 mr_conf->ver = 1;
3947 /* bit-mask of supported modes, only one bit is set. Reflects
3948 * Figure 10.5.2.47a where there are no thershold and only a
3949 * single mode */
3950 mr.gsm48_ie[1] = 1 << amr_mode;
3951
3952 mr.ms_mode[0].mode = amr_mode;
3953 mr.bts_mode[0].mode = amr_mode;
3954
3955 /* encode this configuration into the lchan for both uplink and
3956 * downlink direction */
3957 gsm48_multirate_config(lchan->mr_ms_lv, &mr, mr.ms_mode);
3958 gsm48_multirate_config(lchan->mr_bts_lv, &mr, mr.bts_mode);
3959
3960 return 0;
3961}
3962
3963/* Debug/Measurement command to activate a given logical channel
3964 * manually in a given mode/codec. This is useful for receiver
3965 * performance testing (FER/RBER/...) */
3966DEFUN(lchan_act, lchan_act_cmd,
3967 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> (activate|deactivate) (hr|fr|efr|amr) [<0-7>]",
3968 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3969 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot Number\n" "Sub-Slot Number\n"
3970 "Manual Channel Activation (e.g. for BER test)\n"
3971 "Manual Channel Deactivation (e.g. for BER test)\n"
3972 "Half-Rate v1\n" "Full-Rate\n" "Enhanced Full Rate\n" "Adaptive Multi-Rate\n" "AMR Mode\n")
3973{
3974 struct gsm_bts_trx_ts *ts;
3975 struct gsm_lchan *lchan;
3976 int ss_nr = atoi(argv[3]);
3977 const char *act_str = argv[4];
3978 const char *codec_str = argv[5];
3979 int activate;
3980
3981 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
3982 if (!ts)
3983 return CMD_WARNING;
3984
3985 lchan = &ts->lchan[ss_nr];
3986
3987 if (!strcmp(act_str, "activate"))
3988 activate = 1;
3989 else
3990 activate = 0;
3991
3992 if (ss_nr >= ts_subslots(ts)) {
3993 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
3994 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
3995 return CMD_WARNING;
3996 }
3997
3998 if (activate) {
3999 int lchan_t;
4000 if (lchan->state != LCHAN_S_NONE) {
4001 vty_out(vty, "%% Cannot activate: Channel busy!%s", VTY_NEWLINE);
4002 return CMD_WARNING;
4003 }
4004 lchan_t = lchan_type_by_pchan(ts->pchan);
4005 if (lchan_t < 0)
4006 return CMD_WARNING;
4007 /* configure the lchan */
4008 lchan->type = lchan_t;
4009 lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
4010 if (!strcmp(codec_str, "hr") || !strcmp(codec_str, "fr"))
4011 lchan->tch_mode = GSM48_CMODE_SPEECH_V1;
4012 else if (!strcmp(codec_str, "efr"))
4013 lchan->tch_mode = GSM48_CMODE_SPEECH_EFR;
4014 else if (!strcmp(codec_str, "amr")) {
4015 int amr_mode;
4016 if (argc < 7) {
4017 vty_out(vty, "%% AMR requires specification of AMR mode%s", VTY_NEWLINE);
4018 return CMD_WARNING;
4019 }
4020 amr_mode = atoi(argv[6]);
4021 lchan->tch_mode = GSM48_CMODE_SPEECH_AMR;
4022 lchan_set_single_amr_mode(lchan, amr_mode);
4023 }
4024 vty_out(vty, "%% activating lchan %s%s", gsm_lchan_name(lchan), VTY_NEWLINE);
4025 rsl_chan_activate_lchan(lchan, RSL_ACT_TYPE_INITIAL, 0);
4026 rsl_ipacc_crcx(lchan);
Harald Welte2abd5e12017-05-27 14:10:40 +02004027 } else {
4028 rsl_direct_rf_release(lchan);
4029 }
4030
4031 return CMD_SUCCESS;
4032}
4033
Harald Welte3f86c522017-05-27 15:53:28 +02004034DEFUN(lchan_mdcx, lchan_mdcx_cmd,
4035 "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7> mdcx A.B.C.D <0-65535>",
4036 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
4037 "TRX Timeslot\n" "Timeslot Number\n" "Sub-Slot\n" "Sub-Slot Number\n"
4038 "Modify RTP Connection\n" "MGW IP Address\n" "MGW UDP Port\n")
4039{
4040 struct gsm_bts_trx_ts *ts;
4041 struct gsm_lchan *lchan;
4042 int ss_nr = atoi(argv[3]);
4043 int port = atoi(argv[5]);
4044 struct in_addr ia;
4045 inet_aton(argv[4], &ia);
4046
4047 ts = vty_get_ts(vty, argv[0], argv[1], argv[2]);
4048 if (!ts)
4049 return CMD_WARNING;
4050
4051 lchan = &ts->lchan[ss_nr];
4052
4053 if (ss_nr >= ts_subslots(ts)) {
4054 vty_out(vty, "%% subslot %d >= permitted %d for physical channel %s%s",
4055 ss_nr, ts_subslots(ts), gsm_pchan_name(ts->pchan), VTY_NEWLINE);
4056 return CMD_WARNING;
4057 }
4058
4059 vty_out(vty, "%% connecting RTP of %s to %s:%u%s", gsm_lchan_name(lchan),
4060 inet_ntoa(ia), port, VTY_NEWLINE);
4061 rsl_ipacc_mdcx(lchan, ntohl(ia.s_addr), port, 0);
4062 return CMD_SUCCESS;
4063}
Harald Weltedcccb182010-05-16 20:52:23 +02004064extern int bsc_vty_init_extra(void);
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02004065
Maxdb0e3802017-01-12 19:35:11 +01004066int bsc_vty_init(struct gsm_network *network)
Harald Welte68628e82009-03-10 12:17:57 +00004067{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004068 cfg_ts_pchan_cmd.string =
4069 vty_cmd_string_from_valstr(tall_bsc_ctx,
4070 gsm_pchant_names,
4071 "phys_chan_config (", "|", ")",
4072 VTY_DO_LOWER);
4073 cfg_ts_pchan_cmd.doc =
4074 vty_cmd_string_from_valstr(tall_bsc_ctx,
4075 gsm_pchant_descs,
4076 "Physical Channel Combination\n",
4077 "\n", "", 0);
4078
Harald Weltee555c2b2012-08-17 13:02:12 +02004079 cfg_bts_type_cmd.string =
4080 vty_cmd_string_from_valstr(tall_bsc_ctx,
4081 bts_type_names,
4082 "type (", "|", ")",
4083 VTY_DO_LOWER);
4084 cfg_bts_type_cmd.doc =
4085 vty_cmd_string_from_valstr(tall_bsc_ctx,
4086 bts_type_descs,
4087 "BTS Vendor/Type\n",
4088 "\n", "", 0);
4089
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +02004090 common_cs_vty_init(network, config_write_net);
Harald Weltee555c2b2012-08-17 13:02:12 +02004091
Neels Hofmeyrea11bf82016-05-12 01:53:23 +02004092 install_element_ve(&bsc_show_net_cmd);
Harald Welteb4d5b172010-05-12 16:10:35 +00004093 install_element_ve(&show_bts_cmd);
4094 install_element_ve(&show_trx_cmd);
4095 install_element_ve(&show_ts_cmd);
4096 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08004097 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00004098
Harald Welteb4d5b172010-05-12 16:10:35 +00004099 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01004100 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004101
Maxdb0e3802017-01-12 19:35:11 +01004102 logging_vty_add_cmds(NULL);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01004103
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01004104 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01004105 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01004106 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
4107 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
4108 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
4109 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
4110 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
4111 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01004112 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004113 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
4114 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
4115 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
4116 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
4117 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
4118 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
4119 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
4120 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
4121 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01004122 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01004123 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08004124 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08004125 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02004126
4127 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02004128 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004129 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004130 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004131 install_element(BTS_NODE, &cfg_description_cmd);
4132 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02004133 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02004134 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Maxc08ee712016-05-11 12:45:13 +02004135 install_element(BTS_NODE, &cfg_bts_dtxu_cmd);
4136 install_element(BTS_NODE, &cfg_bts_dtxd_cmd);
4137 install_element(BTS_NODE, &cfg_bts_no_dtxu_cmd);
4138 install_element(BTS_NODE, &cfg_bts_no_dtxd_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00004139 install_element(BTS_NODE, &cfg_bts_lac_cmd);
4140 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004141 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00004142 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01004143 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02004144 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01004145 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01004146 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02004147 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004148 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
4149 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02004150 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01004151 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
4152 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02004153 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
4154 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
4155 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08004156 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
4157 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02004158 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08004159 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04004160 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02004161 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte73225282009-12-12 18:17:25 +01004162 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
4163 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01004164 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
4165 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
4166 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
4167 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
4168 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
4169 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01004170 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte2f8b9d22017-06-18 11:12:13 +03004171 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_inf_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02004172 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
bhargava350533c2016-07-21 11:14:34 +05304173 install_element(BTS_NODE, &cfg_bts_gprs_11bit_rach_support_for_egprs_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004174 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004175 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01004176 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Max292ec582016-07-28 11:55:37 +02004177 install_element(BTS_NODE, &cfg_bts_gprs_ctrl_ack_cmd);
4178 install_element(BTS_NODE, &cfg_no_bts_gprs_ctrl_ack_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004179 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004180 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08004181 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004182 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08004183 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
4184 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
4185 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08004186 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02004187 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
4188 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte42def722017-01-13 00:10:32 +01004189 install_element(BTS_NODE, &cfg_bts_early_cm_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01004190 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
4191 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01004192 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Max59a1bf32016-04-15 16:04:46 +02004193 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_add_cmd);
4194 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_del_cmd);
Max26679e02016-04-20 15:57:13 +02004195 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_add_cmd);
4196 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_del_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02004197 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
4198 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01004199 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
4200 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01004201 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
4202 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
4203 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
4204 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
4205 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01004206 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
4207 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversberg73266522014-01-19 11:47:44 +01004208 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
4209 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
4210 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
4211 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
4212 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
4213 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
4214 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
4215 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
4216 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
4217 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
4218 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
4219 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
4220 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
4221 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
4222 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
4223 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
4224 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
4225 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
4226 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
4227 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
4228 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
4229 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte8254cf72017-05-29 13:42:19 +02004230 install_element(BTS_NODE, &cfg_bts_pcu_sock_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004231
Harald Welte5258fc42009-03-28 19:07:53 +00004232 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004233 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004234 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004235 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004236 install_element(TRX_NODE, &cfg_description_cmd);
4237 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01004238 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02004239 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004240 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
4241 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01004242 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004243
Harald Welte5258fc42009-03-28 19:07:53 +00004244 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004245 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004246 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004247 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004248 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02004249 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02004250 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02004251 install_element(TS_NODE, &cfg_ts_hsn_cmd);
4252 install_element(TS_NODE, &cfg_ts_maio_cmd);
4253 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
4254 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004255 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004256
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004257 install_element(ENABLE_NODE, &drop_bts_cmd);
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01004258 install_element(ENABLE_NODE, &restart_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01004259 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte2abd5e12017-05-27 14:10:40 +02004260 install_element(ENABLE_NODE, &lchan_act_cmd);
Harald Welte3f86c522017-05-27 15:53:28 +02004261 install_element(ENABLE_NODE, &lchan_mdcx_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01004262 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004263
Harald Welte81c9b9c2010-05-31 16:40:40 +02004264 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01004265 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01004266 e1inp_vty_init();
Harald Welte42def722017-01-13 00:10:32 +01004267 osmo_fsm_vty_add_cmds();
Harald Welte81c9b9c2010-05-31 16:40:40 +02004268
Harald Weltedcccb182010-05-16 20:52:23 +02004269 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00004270
Harald Welte68628e82009-03-10 12:17:57 +00004271 return 0;
4272}