blob: b1747aa33db8a39a25ec71cfe0185d858c738c05 [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 Welte68628e82009-03-10 12:17:57 +000056
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +020057#include <openbsc/common_cs.h>
58
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010059#include <inttypes.h>
60
Harald Weltec08e8be2011-03-04 13:53:51 +010061#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020062
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020063
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020064#define LCHAN_NR_STR "Logical Channel Number\n"
65
66
Harald Welteea4647d2010-05-12 17:19:53 +000067/* FIXME: this should go to some common file */
68static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020069 { 0, "tns-block" },
70 { 1, "tns-block-retries" },
71 { 2, "tns-reset" },
72 { 3, "tns-reset-retries" },
73 { 4, "tns-test" },
74 { 5, "tns-alive" },
75 { 6, "tns-alive-retries" },
76 { 0, NULL }
77};
78
Harald Welteea4647d2010-05-12 17:19:53 +000079static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020080 { 0, "blocking-timer" },
81 { 1, "blocking-retries" },
82 { 2, "unblocking-retries" },
83 { 3, "reset-timer" },
84 { 4, "reset-retries" },
85 { 5, "suspend-timer" },
86 { 6, "suspend-retries" },
87 { 7, "resume-timer" },
88 { 8, "resume-retries" },
89 { 9, "capability-update-timer" },
90 { 10, "capability-update-retries" },
91 { 0, NULL }
92};
93
Harald Welte64c07d22011-02-15 11:43:27 +010094static const struct value_string bts_neigh_mode_strs[] = {
95 { NL_MODE_AUTOMATIC, "automatic" },
96 { NL_MODE_MANUAL, "manual" },
97 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
98 { 0, NULL }
99};
100
Daniel Willmann7d109832012-05-14 18:43:23 +0200101const struct value_string bts_loc_fix_names[] = {
102 { BTS_LOC_FIX_INVALID, "invalid" },
103 { BTS_LOC_FIX_2D, "fix2d" },
104 { BTS_LOC_FIX_3D, "fix3d" },
105 { 0, NULL }
106};
107
Harald Welte68628e82009-03-10 12:17:57 +0000108struct cmd_node bts_node = {
109 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200110 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000111 1,
112};
113
114struct cmd_node trx_node = {
115 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200116 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000117 1,
118};
119
120struct cmd_node ts_node = {
121 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200122 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000123 1,
124};
125
126static int dummy_config_write(struct vty *v)
127{
128 return CMD_SUCCESS;
129}
130
131static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
132{
Harald Welte1304b352013-03-15 16:57:33 +0100133 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
134 abis_nm_opstate_name(nms->operational),
135 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte867d9f32011-05-23 20:30:39 +0200136 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000137}
138
Harald Welteb908cb72009-12-22 13:09:29 +0100139static void dump_pchan_load_vty(struct vty *vty, char *prefix,
140 const struct pchan_load *pl)
141{
142 int i;
143
144 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
145 const struct load_counter *lc = &pl->pchan[i];
146 unsigned int percent;
147
148 if (lc->total == 0)
149 continue;
150
151 percent = (lc->used * 100) / lc->total;
152
153 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
154 gsm_pchan_name(i), percent, lc->used, lc->total,
155 VTY_NEWLINE);
156 }
157}
158
Harald Welte68628e82009-03-10 12:17:57 +0000159static void net_dump_vty(struct vty *vty, struct gsm_network *net)
160{
Harald Welteb908cb72009-12-22 13:09:29 +0100161 struct pchan_load pl;
162
Harald Welteef235b52009-03-10 12:34:02 +0000163 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
164 "and has %u BTS%s", net->country_code, net->network_code,
165 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000166 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000167 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000168 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000169 net->name_short, VTY_NEWLINE);
Maxddee01f2016-05-24 14:23:27 +0200170 vty_out(vty, " Authentication policy: %s",
171 gsm_auth_policy_name(net->auth_policy));
172 if (net->authorized_reg_str)
173 vty_out(vty, ", authorized regexp: %s", net->authorized_reg_str);
174 vty_out(vty, "%s", VTY_NEWLINE);
Maxe6052c42016-06-30 10:25:49 +0200175 vty_out(vty, " Auto create subscriber: %s%s",
176 net->auto_create_subscr ? "yes" : "no", VTY_NEWLINE);
177 vty_out(vty, " Auto assign extension: %s%s",
178 net->auto_assign_exten ? "yes" : "no", VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100179 vty_out(vty, " Location updating reject cause: %u%s",
180 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900181 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
182 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100183 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
184 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800185 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
186 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100187 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
188 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100189 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
190 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100191 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
192 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100193 network_chan_load(&pl, net);
194 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
195 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100196
197 /* show rf */
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100198 if (net->bsc_data)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100199 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200200 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100201 VTY_NEWLINE);
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100202 if (net->bsc_data)
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200203 vty_out(vty, " Last RF Lock Command: %s%s",
204 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
205 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000206}
207
Neels Hofmeyrea11bf82016-05-12 01:53:23 +0200208DEFUN(bsc_show_net, bsc_show_net_cmd, "show network",
Harald Welte68628e82009-03-10 12:17:57 +0000209 SHOW_STR "Display information about a GSM NETWORK\n")
210{
Harald Weltedcccb182010-05-16 20:52:23 +0200211 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000212 net_dump_vty(vty, net);
213
214 return CMD_SUCCESS;
215}
216
217static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
218{
Harald Welteedb37782009-05-01 14:59:07 +0000219 struct e1inp_line *line;
220
221 if (!e1l) {
222 vty_out(vty, " None%s", VTY_NEWLINE);
223 return;
224 }
225
226 line = e1l->ts->line;
227
228 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
229 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000230 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000231 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000232 e1l->tei, e1l->sapi, VTY_NEWLINE);
233}
234
235static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
236{
Harald Welteb908cb72009-12-22 13:09:29 +0100237 struct pchan_load pl;
238
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200239 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte557c84e2015-11-20 10:50:24 +0100240 "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200241 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200242 bts->cell_identity,
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100243 bts->location_area_code, bts->bsic,
Harald Welte557c84e2015-11-20 10:50:24 +0100244 bts->bsic >> 3, bts->bsic & 7,
Harald Weltefcd24452009-06-20 18:15:19 +0200245 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200246 vty_out(vty, "Description: %s%s",
247 bts->description ? bts->description : "(null)", 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 Welte4cc34222009-05-01 15:12:31 +0000280 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200281 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000282 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200283 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200284 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
285 vty_out(vty, " Skip Reset: %d%s",
286 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000287 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200288 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000289 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200290 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther846d8dc2013-05-29 16:22:09 +0200291 vty_out(vty, " GPRS NSE: ");
292 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
293 vty_out(vty, " GPRS CELL: ");
294 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
295 vty_out(vty, " GPRS NSVC0: ");
296 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
297 vty_out(vty, " GPRS NSVC1: ");
298 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200299 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
300 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000301 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100302 if (is_ipaccess_bts(bts)) {
303 vty_out(vty, " OML Link state: %s.%s",
304 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
305 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200306 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
307 e1isl_dump_vty(vty, bts->oml_link);
308 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100309
310 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100311 memset(&pl, 0, sizeof(pl));
Neels Hofmeyr2afffd52016-09-25 17:01:20 +0200312 bts_chan_load(&pl, bts);
Harald Welteb908cb72009-12-22 13:09:29 +0100313 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
314 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000315}
316
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100317DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000318 SHOW_STR "Display information about a BTS\n"
319 "BTS number")
320{
Harald Weltedcccb182010-05-16 20:52:23 +0200321 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000322 int bts_nr;
323
324 if (argc != 0) {
325 /* use the BTS number that the user has specified */
326 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100327 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000328 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000329 VTY_NEWLINE);
330 return CMD_WARNING;
331 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200332 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000333 return CMD_SUCCESS;
334 }
335 /* print all BTS's */
336 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200337 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000338
339 return CMD_SUCCESS;
340}
341
Harald Welte42581822009-08-08 16:12:58 +0200342/* utility functions */
343static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
344 const char *ts, const char *ss)
345{
346 e1_link->e1_nr = atoi(line);
347 e1_link->e1_ts = atoi(ts);
348 if (!strcmp(ss, "full"))
349 e1_link->e1_ts_ss = 255;
350 else
351 e1_link->e1_ts_ss = atoi(ss);
352}
353
354static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
355 const char *prefix)
356{
357 if (!e1_link->e1_ts)
358 return;
359
360 if (e1_link->e1_ts_ss == 255)
361 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
362 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
363 else
364 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
365 prefix, e1_link->e1_nr, e1_link->e1_ts,
366 e1_link->e1_ts_ss, VTY_NEWLINE);
367}
368
369
Harald Welte67ce0732009-08-06 19:06:46 +0200370static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
371{
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100372 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Weltea2bbc5e2015-11-20 10:43:31 +0100373 if (ts->tsc != -1)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100374 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200375 if (ts->pchan != GSM_PCHAN_NONE)
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100376 vty_out(vty, " phys_chan_config %s%s",
Harald Welte42581822009-08-08 16:12:58 +0200377 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100378 vty_out(vty, " hopping enabled %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200379 ts->hopping.enabled, VTY_NEWLINE);
380 if (ts->hopping.enabled) {
381 unsigned int i;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100382 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200383 ts->hopping.hsn, VTY_NEWLINE);
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100384 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200385 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200386 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
387 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
388 continue;
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100389 vty_out(vty, " hopping arfcn add %u%s",
Harald Weltea39b0f22010-06-14 22:26:10 +0200390 i, VTY_NEWLINE);
391 }
Harald Welte127af342010-12-24 12:07:07 +0100392 }
Neels Hofmeyr9c4f1d62016-01-27 14:20:29 +0100393 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100394
395 if (ts->trx->bts->model->config_write_ts)
396 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200397}
398
399static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
400{
401 int i;
402
Harald Welte5013b2a2009-08-07 13:29:14 +0200403 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200404 if (trx->description)
405 vty_out(vty, " description %s%s", trx->description,
406 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200407 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200408 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200409 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200410 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100411 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200412 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200413 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
414 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200415
Harald Welteface7ed2011-02-14 16:15:21 +0100416 if (trx->bts->model->config_write_trx)
417 trx->bts->model->config_write_trx(vty, trx);
418
Harald Welte67ce0732009-08-06 19:06:46 +0200419 for (i = 0; i < TRX_NR_TS; i++)
420 config_write_ts_single(vty, &trx->ts[i]);
421}
422
Harald Welte615e9562010-05-11 23:50:21 +0200423static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
424{
425 unsigned int i;
426 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
427 VTY_NEWLINE);
428 if (bts->gprs.mode == BTS_GPRS_NONE)
429 return;
430
bhargava350533c2016-07-21 11:14:34 +0530431 vty_out(vty, " gprs 11bit_rach_support_for_egprs %u%s",
432 bts->gprs.supports_egprs_11bit_rach, VTY_NEWLINE);
433
Harald Welte615e9562010-05-11 23:50:21 +0200434 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
435 VTY_NEWLINE);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100436 vty_out(vty, " gprs network-control-order nc%u%s",
437 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Max292ec582016-07-28 11:55:37 +0200438 if (!bts->gprs.ctrl_ack_type_use_block)
439 vty_out(vty, " gprs control-ack-type-rach%s", VTY_NEWLINE);
Harald Welte615e9562010-05-11 23:50:21 +0200440 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
441 VTY_NEWLINE);
442 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
443 vty_out(vty, " gprs cell timer %s %u%s",
444 get_value_string(gprs_bssgp_cfg_strs, i),
445 bts->gprs.cell.timer[i], VTY_NEWLINE);
446 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
447 VTY_NEWLINE);
448 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
449 vty_out(vty, " gprs ns timer %s %u%s",
450 get_value_string(gprs_ns_timer_strs, i),
451 bts->gprs.nse.timer[i], VTY_NEWLINE);
452 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
453 struct gsm_bts_gprs_nsvc *nsvc =
454 &bts->gprs.nsvc[i];
455 struct in_addr ia;
456
457 ia.s_addr = htonl(nsvc->remote_ip);
458 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
459 nsvc->nsvci, VTY_NEWLINE);
460 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
461 nsvc->local_port, VTY_NEWLINE);
462 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
463 nsvc->remote_port, VTY_NEWLINE);
464 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
465 inet_ntoa(ia), VTY_NEWLINE);
466 }
467}
468
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200469/* Write the model data if there is one */
470static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte67ce0732009-08-06 19:06:46 +0200471{
472 struct gsm_bts_trx *trx;
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200473
474 if (!bts->model)
475 return;
476
477 if (bts->model->config_write_bts)
478 bts->model->config_write_bts(vty, bts);
479
480 llist_for_each_entry(trx, &bts->trx_list, list)
481 config_write_trx_single(vty, trx);
482}
483
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200484static void write_amr_modes(struct vty *vty, const char *prefix,
485 const char *name, struct amr_mode *modes, int num)
486{
487 int i;
488
489 vty_out(vty, " %s threshold %s", prefix, name);
490 for (i = 0; i < num - 1; i++)
491 vty_out(vty, " %d", modes[i].threshold);
492 vty_out(vty, "%s", VTY_NEWLINE);
493 vty_out(vty, " %s hysteresis %s", prefix, name);
494 for (i = 0; i < num - 1; i++)
495 vty_out(vty, " %d", modes[i].hysteresis);
496 vty_out(vty, "%s", VTY_NEWLINE);
497}
498
Andreas Eversberg73266522014-01-19 11:47:44 +0100499static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
500 struct amr_multirate_conf *mr, int full)
501{
502 struct gsm48_multi_rate_conf *mr_conf;
503 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
504 int i, num;
505
506 if (!(mr->gsm48_ie[1]))
507 return;
508
509 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
510
511 num = 0;
512 vty_out(vty, " %s modes", prefix);
513 for (i = 0; i < ((full) ? 8 : 6); i++) {
514 if ((mr->gsm48_ie[1] & (1 << i))) {
515 vty_out(vty, " %d", i);
516 num++;
517 }
518 }
519 vty_out(vty, "%s", VTY_NEWLINE);
520 if (num > 4)
521 num = 4;
522 if (num > 1) {
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +0200523 write_amr_modes(vty, prefix, "ms", mr->ms_mode, num);
524 write_amr_modes(vty, prefix, "bts", mr->bts_mode, num);
Andreas Eversberg73266522014-01-19 11:47:44 +0100525 }
526 vty_out(vty, " %s start-mode ", prefix);
527 if (mr_conf->icmi) {
528 num = 0;
529 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
530 if ((mr->gsm48_ie[1] & (1 << i)))
531 num++;
532 if (mr_conf->smod == num - 1) {
533 vty_out(vty, "%d%s", num, VTY_NEWLINE);
534 break;
535 }
536 }
537 } else
538 vty_out(vty, "auto%s", VTY_NEWLINE);
539}
540
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200541static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
542{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200543 int i;
Max2c16bee2017-02-15 13:51:37 +0100544 uint8_t tmp;
Harald Welte67ce0732009-08-06 19:06:46 +0200545
Harald Welte5013b2a2009-08-07 13:29:14 +0200546 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
547 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200548 if (bts->description)
549 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200550 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100551 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200552 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200553 VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +0200554 if (bts->dtxu != GSM48_DTX_SHALL_NOT_BE_USED)
555 vty_out(vty, " dtx uplink%s%s",
556 (bts->dtxu != GSM48_DTX_SHALL_BE_USED) ? "" : " force",
557 VTY_NEWLINE);
558 if (bts->dtxd)
559 vty_out(vty, " dtx downlink%s", VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200560 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200561 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100562 vty_out(vty, " cell reselection hysteresis %u%s",
563 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
564 vty_out(vty, " rxlev access min %u%s",
565 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100566
567 if (bts->si_common.cell_ro_sel_par.present) {
568 struct gsm48_si_selection_params *sp;
569 sp = &bts->si_common.cell_ro_sel_par;
570
571 if (sp->cbq)
572 vty_out(vty, " cell bar qualify %u%s",
573 sp->cbq, VTY_NEWLINE);
574
575 if (sp->cell_resel_off)
576 vty_out(vty, " cell reselection offset %u%s",
577 sp->cell_resel_off*2, VTY_NEWLINE);
578
579 if (sp->temp_offs == 7)
580 vty_out(vty, " temporary offset infinite%s",
581 VTY_NEWLINE);
582 else if (sp->temp_offs)
583 vty_out(vty, " temporary offset %u%s",
584 sp->temp_offs*10, VTY_NEWLINE);
585
586 if (sp->penalty_time == 31)
587 vty_out(vty, " penalty time reserved%s",
588 VTY_NEWLINE);
589 else if (sp->penalty_time)
590 vty_out(vty, " penalty time %u%s",
591 (sp->penalty_time*20)+20, VTY_NEWLINE);
592 }
593
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200594 /* Is periodic LU enabled or disabled? */
595 if (bts->si_common.chan_desc.t3212 == 0)
596 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
597 else
598 vty_out(vty, " periodic location update %u%s",
599 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
600
Andreas Eversberg4d4944a2013-03-10 11:49:35 +0100601 vty_out(vty, " radio-link-timeout %d%s",
602 get_radio_link_timeout(&bts->si_common.cell_options),
603 VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200604 vty_out(vty, " channel allocator %s%s",
605 bts->chan_alloc_reverse ? "descending" : "ascending",
606 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100607 vty_out(vty, " rach tx integer %u%s",
608 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
609 vty_out(vty, " rach max transmission %u%s",
610 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
611 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800612
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200613 vty_out(vty, " channel-descrption attach %u%s",
614 bts->si_common.chan_desc.att, VTY_NEWLINE);
615 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
616 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
617 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
618 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
619
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800620 if (bts->rach_b_thresh != -1)
621 vty_out(vty, " rach nm busy threshold %u%s",
622 bts->rach_b_thresh, VTY_NEWLINE);
623 if (bts->rach_ldavg_slots != -1)
624 vty_out(vty, " rach nm load average %u%s",
625 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100626 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200627 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800628 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
629 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400630 if ((bts->si_common.rach_control.t3) != 0)
631 for (i = 0; i < 8; i++)
632 if (bts->si_common.rach_control.t3 & (0x1 << i))
633 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
634 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
635 for (i = 0; i < 8; i++)
636 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
637 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200638 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
639 if (bts->si_mode_static & (1 << i)) {
640 vty_out(vty, " system-information %s mode static%s",
641 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
642 vty_out(vty, " system-information %s static %s%s",
643 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100644 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200645 VTY_NEWLINE);
646 }
647 }
Harald Welte42def722017-01-13 00:10:32 +0100648 vty_out(vty, " early-classmark-sending %s%s",
649 bts->early_classmark_allowed ? "allowed" : "forbidden", VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100650 switch (bts->type) {
651 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200652 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200653 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200654 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100655 if (bts->ip_access.rsl_ip) {
656 struct in_addr ia;
657 ia.s_addr = htonl(bts->ip_access.rsl_ip);
658 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
659 VTY_NEWLINE);
660 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200661 vty_out(vty, " oml ip.access stream_id %u line %u%s",
662 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100663 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200664 case GSM_BTS_TYPE_NOKIA_SITE:
665 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100666 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
667 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100668 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 +0100669 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100670 default:
Harald Welte42581822009-08-08 16:12:58 +0200671 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
672 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100673 break;
Harald Welte42581822009-08-08 16:12:58 +0200674 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800675
676 /* if we have a limit, write it */
677 if (bts->paging.free_chans_need >= 0)
678 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
679
Harald Welte32c09622011-01-11 23:44:56 +0100680 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100681 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
682 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100683 for (i = 0; i < 1024; i++) {
684 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
685 vty_out(vty, " neighbor-list add arfcn %u%s",
686 i, VTY_NEWLINE);
687 }
688 }
Harald Welte64c07d22011-02-15 11:43:27 +0100689 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
690 for (i = 0; i < 1024; i++) {
691 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
692 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
693 i, VTY_NEWLINE);
694 }
695 }
Harald Welte32c09622011-01-11 23:44:56 +0100696
Max59a1bf32016-04-15 16:04:46 +0200697 for (i = 0; i < MAX_EARFCN_LIST; i++) {
Max2c16bee2017-02-15 13:51:37 +0100698 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
699 if (e->arfcn[i] != OSMO_EARFCN_INVALID) {
700 vty_out(vty, " si2quater neighbor-list add earfcn %u "
701 "thresh-hi %u", e->arfcn[i], e->thresh_hi);
702
703 vty_out(vty, " thresh-lo %u",
704 e->thresh_lo_valid ? e->thresh_lo : 32);
705
706 vty_out(vty, " prio %u",
707 e->prio_valid ? e->prio : 8);
708
709 vty_out(vty, " qrxlv %u",
710 e->qrxlm_valid ? e->qrxlm : 32);
711
712 tmp = e->meas_bw[i];
713 vty_out(vty, " meas %u",
714 (tmp != OSMO_EARFCN_MEAS_INVALID) ? tmp : 8);
Max59a1bf32016-04-15 16:04:46 +0200715
716 vty_out(vty, "%s", VTY_NEWLINE);
717 }
718 }
719
Max26679e02016-04-20 15:57:13 +0200720 for (i = 0; i < bts->si_common.uarfcn_length; i++) {
721 vty_out(vty, " si2quater neighbor-list add uarfcn %u %u %u%s",
722 bts->si_common.data.uarfcn_list[i],
723 bts->si_common.data.scramble_list[i] & ~(1 << 9),
724 (bts->si_common.data.scramble_list[i] >> 9) & 1,
725 VTY_NEWLINE);
726 }
727
Andreas Eversberga83d5112013-12-07 18:32:28 +0100728 vty_out(vty, " codec-support fr");
729 if (bts->codec.hr)
730 vty_out(vty, " hr");
731 if (bts->codec.efr)
732 vty_out(vty, " efr");
733 if (bts->codec.amr)
734 vty_out(vty, " amr");
735 vty_out(vty, "%s", VTY_NEWLINE);
736
Andreas Eversberg73266522014-01-19 11:47:44 +0100737 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
738 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
739
Harald Welte615e9562010-05-11 23:50:21 +0200740 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200741
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200742 if (bts->excl_from_rf_lock)
743 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
744
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100745 vty_out(vty, " %sforce-combined-si%s",
746 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
747
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100748 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
749 int j;
750
751 if (bts->depends_on[i] == 0)
752 continue;
753
754 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
755 int bts_nr;
756
757 if ((bts->depends_on[i] & (1<<j)) == 0)
758 continue;
759
760 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
761 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
762 }
763 }
764
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);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100794 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800795 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100796 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
797 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100798 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100799 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100800 vty_out(vty, " handover window rxlev averaging %u%s",
801 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
802 vty_out(vty, " handover window rxqual averaging %u%s",
803 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
804 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
805 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
806 vty_out(vty, " handover power budget interval %u%s",
807 gsmnet->handover.pwr_interval, VTY_NEWLINE);
808 vty_out(vty, " handover power budget hysteresis %u%s",
809 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
810 vty_out(vty, " handover maximum distance %u%s",
811 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100812 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100813 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
814 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
815 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
816 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
817 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
818 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
819 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
820 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
821 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100822 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100823 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100824 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100825 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Neels Hofmeyr73983952016-05-10 13:29:33 +0200826 if (gsmnet->tz.override != 0) {
827 if (gsmnet->tz.dst)
828 vty_out(vty, " timezone %d %d %d%s",
829 gsmnet->tz.hr, gsmnet->tz.mn, gsmnet->tz.dst,
830 VTY_NEWLINE);
831 else
832 vty_out(vty, " timezone %d %d%s",
833 gsmnet->tz.hr, gsmnet->tz.mn, VTY_NEWLINE);
834 }
Harald Welte5013b2a2009-08-07 13:29:14 +0200835
836 return CMD_SUCCESS;
837}
Harald Welte67ce0732009-08-06 19:06:46 +0200838
Harald Welte68628e82009-03-10 12:17:57 +0000839static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
840{
841 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
842 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200843 vty_out(vty, "Description: %s%s",
844 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200845 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200846 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200847 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200848 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000849 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200850 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000851 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200852 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200853 if (is_ipaccess_bts(trx->bts)) {
854 vty_out(vty, " ip.access stream ID: 0x%02x%s",
855 trx->rsl_tei, VTY_NEWLINE);
856 } else {
857 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
858 e1isl_dump_vty(vty, trx->rsl_link);
859 }
Harald Welte68628e82009-03-10 12:17:57 +0000860}
861
862DEFUN(show_trx,
863 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100864 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200865 SHOW_STR "Display information about a TRX\n"
866 "BTS Number\n"
867 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000868{
Harald Weltedcccb182010-05-16 20:52:23 +0200869 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000870 struct gsm_bts *bts = NULL;
871 struct gsm_bts_trx *trx;
872 int bts_nr, trx_nr;
873
874 if (argc >= 1) {
875 /* use the BTS number that the user has specified */
876 bts_nr = atoi(argv[0]);
877 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000878 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000879 VTY_NEWLINE);
880 return CMD_WARNING;
881 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200882 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000883 }
884 if (argc >= 2) {
885 trx_nr = atoi(argv[1]);
886 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000887 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000888 VTY_NEWLINE);
889 return CMD_WARNING;
890 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200891 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000892 trx_dump_vty(vty, trx);
893 return CMD_SUCCESS;
894 }
895 if (bts) {
896 /* print all TRX in this BTS */
897 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200898 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000899 trx_dump_vty(vty, trx);
900 }
901 return CMD_SUCCESS;
902 }
903
904 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200905 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000906 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200907 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000908 trx_dump_vty(vty, trx);
909 }
910 }
911
912 return CMD_SUCCESS;
913}
914
Harald Welte67ce0732009-08-06 19:06:46 +0200915
Harald Welte68628e82009-03-10 12:17:57 +0000916static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
917{
Harald Welte135a6482011-05-30 12:09:13 +0200918 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100919 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100920 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100921 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100922 vty_out(vty, " (%s mode)",
Neels Hofmeyr2ebacce2016-06-14 14:08:35 +0200923 ts->flags & TS_F_PDCH_ACTIVE ? "PDCH" : "TCH/F");
Harald Weltecd103a92010-12-24 12:14:52 +0100924 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000925 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200926 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530927 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000928 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
929 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
930 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000931}
932
933DEFUN(show_ts,
934 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100935 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200936 SHOW_STR "Display information about a TS\n"
937 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000938{
Harald Weltedcccb182010-05-16 20:52:23 +0200939 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100940 struct gsm_bts *bts = NULL;
941 struct gsm_bts_trx *trx = NULL;
942 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000943 int bts_nr, trx_nr, ts_nr;
944
945 if (argc >= 1) {
946 /* use the BTS number that the user has specified */
947 bts_nr = atoi(argv[0]);
948 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000949 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000950 VTY_NEWLINE);
951 return CMD_WARNING;
952 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200953 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000954 }
955 if (argc >= 2) {
956 trx_nr = atoi(argv[1]);
957 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000958 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000959 VTY_NEWLINE);
960 return CMD_WARNING;
961 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200962 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000963 }
964 if (argc >= 3) {
965 ts_nr = atoi(argv[2]);
966 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000967 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000968 VTY_NEWLINE);
969 return CMD_WARNING;
970 }
Harald Welte274d0152010-12-24 12:05:03 +0100971 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000972 ts = &trx->ts[ts_nr];
973 ts_dump_vty(vty, ts);
974 return CMD_SUCCESS;
975 }
Harald Welte274d0152010-12-24 12:05:03 +0100976
977 if (bts && trx) {
978 /* Iterate over all TS in this TRX */
979 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
980 ts = &trx->ts[ts_nr];
981 ts_dump_vty(vty, ts);
982 }
983 } else if (bts) {
984 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000985 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200986 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000987 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 }
Harald Welte274d0152010-12-24 12:05:03 +0100992 } else {
993 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
994 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
995 bts = gsm_bts_num(net, bts_nr);
996 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
997 trx = gsm_bts_trx_num(bts, trx_nr);
998 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
999 ts = &trx->ts[ts_nr];
1000 ts_dump_vty(vty, ts);
1001 }
1002 }
1003 }
Harald Welte68628e82009-03-10 12:17:57 +00001004 }
1005
1006 return CMD_SUCCESS;
1007}
1008
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +01001009static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +00001010{
Harald Weltefcd24452009-06-20 18:15:19 +02001011 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +00001012 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7f180e82013-12-12 15:45:41 +01001013 if (strlen(subscr->name))
Harald Welte1bc77352009-03-10 19:47:51 +00001014 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freytherbd30cd32014-04-04 11:53:18 +02001015 if (strlen(subscr->extension))
Harald Welte68628e82009-03-10 12:17:57 +00001016 vty_out(vty, " Extension: %s%s", subscr->extension,
1017 VTY_NEWLINE);
Holger Hans Peter Freyther5ccd0152013-07-14 08:38:24 +02001018 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001019 if (subscr->tmsi != GSM_RESERVED_TMSI)
1020 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +02001021 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +01001022
Harald Welte (local)15920de2009-08-14 20:27:16 +02001023 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +00001024}
1025
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001026static void bsc_subscr_dump_vty(struct vty *vty, struct bsc_subscr *bsub)
1027{
1028 if (strlen(bsub->imsi))
1029 vty_out(vty, " IMSI: %s%s", bsub->imsi, VTY_NEWLINE);
1030 if (bsub->tmsi != GSM_RESERVED_TMSI)
1031 vty_out(vty, " TMSI: 0x%08x%s", bsub->tmsi,
1032 VTY_NEWLINE);
1033 vty_out(vty, " Use count: %d%s", bsub->use_count, VTY_NEWLINE);
1034}
1035
Harald Welte8387a492009-12-22 21:43:14 +01001036static void meas_rep_dump_uni_vty(struct vty *vty,
1037 struct gsm_meas_rep_unidir *mru,
1038 const char *prefix,
1039 const char *dir)
1040{
1041 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
1042 prefix, dir, rxlev2dbm(mru->full.rx_lev),
1043 dir, rxlev2dbm(mru->sub.rx_lev));
1044 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
1045 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
1046 VTY_NEWLINE);
1047}
1048
1049static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1050 const char *prefix)
1051{
1052 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1053 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1054 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1055 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1056 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1057 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1058 VTY_NEWLINE);
1059 if (mr->flags & MEAS_REP_F_MS_TO)
1060 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
1061 mr->ms_timing_offset, VTY_NEWLINE);
1062 if (mr->flags & MEAS_REP_F_MS_L1)
1063 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1064 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1065 if (mr->flags & MEAS_REP_F_DL_VALID)
1066 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1067 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1068}
1069
Harald Welte0a8cf322015-12-05 17:22:49 +01001070/* FIXME: move this to libosmogsm */
1071static const struct value_string gsm48_cmode_names[] = {
1072 { GSM48_CMODE_SIGN, "signalling" },
1073 { GSM48_CMODE_SPEECH_V1, "FR or HR" },
1074 { GSM48_CMODE_SPEECH_EFR, "EFR" },
1075 { GSM48_CMODE_SPEECH_AMR, "AMR" },
1076 { GSM48_CMODE_DATA_14k5, "CSD(14k5)" },
1077 { GSM48_CMODE_DATA_12k0, "CSD(12k0)" },
1078 { GSM48_CMODE_DATA_6k0, "CSD(6k0)" },
1079 { GSM48_CMODE_DATA_3k6, "CSD(3k6)" },
1080 { 0, NULL }
1081};
1082
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001083/* call vty_out() to print a string like " as TCH/H" for dynamic timeslots.
1084 * Don't do anything if the ts is not dynamic. */
1085static void vty_out_dyn_ts_status(struct vty *vty, struct gsm_bts_trx_ts *ts)
1086{
1087 switch (ts->pchan) {
1088 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1089 if (ts->dyn.pchan_is == ts->dyn.pchan_want)
1090 vty_out(vty, " as %s",
1091 gsm_pchan_name(ts->dyn.pchan_is));
1092 else
1093 vty_out(vty, " switching %s -> %s",
1094 gsm_pchan_name(ts->dyn.pchan_is),
1095 gsm_pchan_name(ts->dyn.pchan_want));
1096 break;
1097 case GSM_PCHAN_TCH_F_PDCH:
1098 if ((ts->flags & TS_F_PDCH_PENDING_MASK) == 0)
1099 vty_out(vty, " as %s",
1100 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1101 : "TCH/F");
1102 else
1103 vty_out(vty, " switching %s -> %s",
1104 (ts->flags & TS_F_PDCH_ACTIVE)? "PDCH"
1105 : "TCH/F",
1106 (ts->flags & TS_F_PDCH_ACT_PENDING)? "PDCH"
1107 : "TCH/F");
1108 break;
1109 default:
1110 /* no dyn ts */
1111 break;
1112 }
1113}
1114
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001115static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +00001116{
Harald Welte8387a492009-12-22 21:43:14 +01001117 int idx;
1118
Harald Welte85bded82010-12-24 12:22:34 +01001119 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1120 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1121 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001122 /* show dyn TS details, if applicable */
1123 switch (lchan->ts->pchan) {
1124 case GSM_PCHAN_TCH_F_TCH_H_PDCH:
1125 vty_out(vty, " Osmocom Dyn TS:");
1126 vty_out_dyn_ts_status(vty, lchan->ts);
1127 vty_out(vty, VTY_NEWLINE);
1128 break;
1129 case GSM_PCHAN_TCH_F_PDCH:
1130 vty_out(vty, " IPACC Dyn PDCH TS:");
1131 vty_out_dyn_ts_status(vty, lchan->ts);
1132 vty_out(vty, VTY_NEWLINE);
1133 break;
1134 default:
1135 /* no dyn ts */
1136 break;
1137 }
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001138 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +08001139 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001140 gsm_lchans_name(lchan->state),
1141 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1142 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1143 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +01001144 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1145 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1146 - lchan->bs_power*2,
1147 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1148 VTY_NEWLINE);
Harald Welte0a8cf322015-12-05 17:22:49 +01001149 vty_out(vty, " Channel Mode / Codec: %s%s",
1150 get_value_string(gsm48_cmode_names, lchan->tch_mode),
1151 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001152 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +00001153 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001154 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +00001155 } else
1156 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +05301157 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1158 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +02001159 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +05301160 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1161 inet_ntoa(ia), lchan->abis_ip.bound_port,
1162 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1163 VTY_NEWLINE);
1164 }
Harald Welte8387a492009-12-22 21:43:14 +01001165
1166 /* we want to report the last measurement report */
1167 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1168 lchan->meas_rep_idx, 1);
1169 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +00001170}
1171
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001172static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1173{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001174 struct gsm_meas_rep *mr;
1175 int idx;
1176
1177 /* we want to report the last measurement report */
1178 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1179 lchan->meas_rep_idx, 1);
1180 mr = &lchan->meas_rep[idx];
1181
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001182 vty_out(vty, "BTS %u, TRX %u, Timeslot %u %s",
Harald Welte85bded82010-12-24 12:22:34 +01001183 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Neels Hofmeyrb7480122016-11-02 14:28:15 +01001184 gsm_pchan_name(lchan->ts->pchan));
1185 vty_out_dyn_ts_status(vty, lchan->ts);
1186 vty_out(vty, ", Lchan %u, Type %s, State %s - "
1187 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Neels Hofmeyrefedf802016-06-14 01:31:38 +02001188 lchan->nr,
1189 gsm_lchant_name(lchan->type), gsm_lchans_name(lchan->state),
1190 mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001191 rxlev2dbm(mr->dl.full.rx_lev),
1192 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001193 VTY_NEWLINE);
1194}
1195
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001196
1197static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1198 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1199{
1200 int lchan_nr;
1201 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1202 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1203 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1204 continue;
1205 dump_cb(vty, lchan);
1206 }
1207
1208 return CMD_SUCCESS;
1209}
1210
1211static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1212 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1213{
1214 int ts_nr;
1215
1216 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1217 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1218 dump_lchan_trx_ts(ts, vty, dump_cb);
1219 }
1220
1221 return CMD_SUCCESS;
1222}
1223
1224static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1225 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1226{
1227 int trx_nr;
1228
1229 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1230 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1231 dump_lchan_trx(trx, vty, dump_cb);
1232 }
1233
1234 return CMD_SUCCESS;
1235}
1236
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001237static int lchan_summary(struct vty *vty, int argc, const char **argv,
1238 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001239{
Harald Weltedcccb182010-05-16 20:52:23 +02001240 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001241 struct gsm_bts *bts;
1242 struct gsm_bts_trx *trx;
1243 struct gsm_bts_trx_ts *ts;
1244 struct gsm_lchan *lchan;
1245 int bts_nr, trx_nr, ts_nr, lchan_nr;
1246
1247 if (argc >= 1) {
1248 /* use the BTS number that the user has specified */
1249 bts_nr = atoi(argv[0]);
1250 if (bts_nr >= net->num_bts) {
1251 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1252 VTY_NEWLINE);
1253 return CMD_WARNING;
1254 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001255 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001256
1257 if (argc == 1)
1258 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001259 }
1260 if (argc >= 2) {
1261 trx_nr = atoi(argv[1]);
1262 if (trx_nr >= bts->num_trx) {
1263 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1264 VTY_NEWLINE);
1265 return CMD_WARNING;
1266 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001267 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001268
1269 if (argc == 2)
1270 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001271 }
1272 if (argc >= 3) {
1273 ts_nr = atoi(argv[2]);
1274 if (ts_nr >= TRX_NR_TS) {
1275 vty_out(vty, "%% can't find TS %s%s", argv[2],
1276 VTY_NEWLINE);
1277 return CMD_WARNING;
1278 }
1279 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001280
1281 if (argc == 3)
1282 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001283 }
1284 if (argc >= 4) {
1285 lchan_nr = atoi(argv[3]);
1286 if (lchan_nr >= TS_MAX_LCHAN) {
1287 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1288 VTY_NEWLINE);
1289 return CMD_WARNING;
1290 }
1291 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001292 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001293 return CMD_SUCCESS;
1294 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001295
1296
Harald Welte68628e82009-03-10 12:17:57 +00001297 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001298 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001299 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001300 }
1301
1302 return CMD_SUCCESS;
1303}
1304
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001305
1306DEFUN(show_lchan,
1307 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001308 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001309 SHOW_STR "Display information about a logical channel\n"
1310 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001311 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001312
1313{
1314 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1315}
1316
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001317DEFUN(show_lchan_summary,
1318 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001319 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001320 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001321 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001322 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001323 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001324{
1325 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1326}
1327
Harald Weltebe4b7302009-05-23 16:59:33 +00001328static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001329{
1330 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +01001331 bsc_subscr_dump_vty(vty, pag->bsub);
Harald Weltef5025b62009-03-28 16:55:11 +00001332}
1333
Harald Weltebe4b7302009-05-23 16:59:33 +00001334static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001335{
1336 struct gsm_paging_request *pag;
1337
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001338 if (!bts->paging.bts)
1339 return;
1340
Harald Weltef5025b62009-03-28 16:55:11 +00001341 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1342 paging_dump_vty(vty, pag);
1343}
1344
1345DEFUN(show_paging,
1346 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001347 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001348 SHOW_STR "Display information about paging reuqests of a BTS\n"
1349 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001350{
Harald Weltedcccb182010-05-16 20:52:23 +02001351 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001352 struct gsm_bts *bts;
1353 int bts_nr;
1354
1355 if (argc >= 1) {
1356 /* use the BTS number that the user has specified */
1357 bts_nr = atoi(argv[0]);
1358 if (bts_nr >= net->num_bts) {
1359 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1360 VTY_NEWLINE);
1361 return CMD_WARNING;
1362 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001363 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001364 bts_paging_dump_vty(vty, bts);
1365
1366 return CMD_SUCCESS;
1367 }
1368 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001369 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001370 bts_paging_dump_vty(vty, bts);
1371 }
1372
1373 return CMD_SUCCESS;
1374}
1375
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001376DEFUN(show_paging_group,
1377 show_paging_group_cmd,
1378 "show paging-group <0-255> IMSI",
1379 SHOW_STR "Display the paging group\n"
1380 "BTS Number\n" "IMSI\n")
1381{
1382 struct gsm_network *net = gsmnet_from_vty(vty);
1383 struct gsm_bts *bts;
1384 unsigned int page_group;
1385 int bts_nr = atoi(argv[0]);
1386
1387 if (bts_nr >= net->num_bts) {
1388 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1389 return CMD_WARNING;
1390 }
1391
1392 bts = gsm_bts_num(net, bts_nr);
1393 if (!bts) {
1394 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1395 return CMD_WARNING;
1396 }
1397
1398 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1399 str_to_imsi(argv[1]));
1400 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1401 str_to_imsi(argv[1]), bts->nr,
1402 page_group, VTY_NEWLINE);
1403 return CMD_SUCCESS;
1404}
1405
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001406DEFUN(cfg_net_neci,
1407 cfg_net_neci_cmd,
1408 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001409 "New Establish Cause Indication\n"
1410 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001411{
Harald Weltedcccb182010-05-16 20:52:23 +02001412 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1413
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001414 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001415 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001416 return CMD_SUCCESS;
1417}
1418
Harald Welte8f0ed552010-05-11 21:53:49 +02001419#define HANDOVER_STR "Handover Options\n"
1420
Harald Weltebc814502009-12-19 21:41:52 +01001421DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1422 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001423 HANDOVER_STR
1424 "Don't perform in-call handover\n"
1425 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001426{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001427 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001428 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001429
1430 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001431 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1432 "is enabled by using the -P command line option%s",
1433 VTY_NEWLINE);
1434 return CMD_WARNING;
1435 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001436 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001437
1438 return CMD_SUCCESS;
1439}
1440
Harald Welte8f0ed552010-05-11 21:53:49 +02001441#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1442#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1443#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1444#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001445#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001446
Harald Welteb720bd32009-12-21 16:51:50 +01001447DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1448 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001449 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001450 "How many RxLev measurements are used for averaging\n"
1451 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001452{
Harald Weltedcccb182010-05-16 20:52:23 +02001453 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001454 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1455 return CMD_SUCCESS;
1456}
1457
1458DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1459 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001460 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001461 "How many RxQual measurements are used for averaging\n"
1462 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001463{
Harald Weltedcccb182010-05-16 20:52:23 +02001464 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001465 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1466 return CMD_SUCCESS;
1467}
1468
1469DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1470 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001471 HO_WIN_RXLEV_STR "Neighbor\n"
1472 "How many RxQual measurements are used for averaging\n"
1473 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001474{
Harald Weltedcccb182010-05-16 20:52:23 +02001475 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001476 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1477 return CMD_SUCCESS;
1478}
1479
1480DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1481 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001482 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001483 "How often to check if we have a better cell (SACCH frames)\n"
1484 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001485{
Harald Weltedcccb182010-05-16 20:52:23 +02001486 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001487 gsmnet->handover.pwr_interval = atoi(argv[0]);
1488 return CMD_SUCCESS;
1489}
1490
1491DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1492 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001493 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001494 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1495 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001496{
Harald Weltedcccb182010-05-16 20:52:23 +02001497 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001498 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1499 return CMD_SUCCESS;
1500}
1501
1502DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1503 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001504 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001505 "How big is the maximum timing advance before HO is forced\n"
1506 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001507{
Harald Weltedcccb182010-05-16 20:52:23 +02001508 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001509 gsmnet->handover.max_distance = atoi(argv[0]);
1510 return CMD_SUCCESS;
1511}
Harald Weltebc814502009-12-19 21:41:52 +01001512
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001513DEFUN(cfg_net_pag_any_tch,
1514 cfg_net_pag_any_tch_cmd,
1515 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001516 "Assign a TCH when receiving a Paging Any request\n"
1517 "Any Channel\n" "Use\n" "TCH\n"
1518 "Do not use TCH for Paging Request Any\n"
1519 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001520{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001521 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001522 gsmnet->pag_any_tch = atoi(argv[0]);
1523 gsm_net_update_ctype(gsmnet);
1524 return CMD_SUCCESS;
1525}
1526
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001527#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001528 DEFUN(cfg_net_T##number, \
1529 cfg_net_T##number##_cmd, \
1530 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001531 "Configure GSM Timers\n" \
Holger Hans Peter Freyther5dd295f2014-04-11 19:30:27 +02001532 doc "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001533{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001534 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001535 int value = atoi(argv[0]); \
1536 \
1537 if (value < 0 || value > 65535) { \
1538 vty_out(vty, "Timer value %s out of range.%s", \
1539 argv[0], VTY_NEWLINE); \
1540 return CMD_WARNING; \
1541 } \
1542 \
1543 gsmnet->T##number = value; \
1544 return CMD_SUCCESS; \
1545}
1546
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001547DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1548DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001549DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001550DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001551DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001552DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1553DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1554DECLARE_TIMER(3115, "Currently not used.\n")
1555DECLARE_TIMER(3117, "Currently not used.\n")
1556DECLARE_TIMER(3119, "Currently not used.\n")
1557DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1558DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001559
Maxc08ee712016-05-11 12:45:13 +02001560DEFUN_DEPRECATED(cfg_net_dtx,
1561 cfg_net_dtx_cmd,
1562 "dtx-used (0|1)",
1563 ".HIDDEN\n""Obsolete\n""Obsolete\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001564{
Maxc08ee712016-05-11 12:45:13 +02001565 vty_out(vty, "%% 'dtx-used' is now deprecated: use dtx * "
1566 "configuration options of BTS instead%s", VTY_NEWLINE);
1567 return CMD_SUCCESS;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001568}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001569
Harald Welte5258fc42009-03-28 19:07:53 +00001570/* per-BTS configuration */
1571DEFUN(cfg_bts,
1572 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001573 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001574 "Select a BTS to configure\n"
1575 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001576{
Harald Weltedcccb182010-05-16 20:52:23 +02001577 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001578 int bts_nr = atoi(argv[0]);
1579 struct gsm_bts *bts;
1580
Harald Weltee441d9c2009-06-21 16:17:15 +02001581 if (bts_nr > gsmnet->num_bts) {
1582 vty_out(vty, "%% The next unused BTS number is %u%s",
1583 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001584 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001585 } else if (bts_nr == gsmnet->num_bts) {
1586 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001587 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001588 HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001589 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001590 bts = gsm_bts_num(gsmnet, bts_nr);
1591
Daniel Willmannf15c2762010-01-11 13:43:07 +01001592 if (!bts) {
1593 vty_out(vty, "%% Unable to allocate BTS %u%s",
1594 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001595 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001596 }
Harald Welte5258fc42009-03-28 19:07:53 +00001597
1598 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001599 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001600 vty->node = BTS_NODE;
1601
1602 return CMD_SUCCESS;
1603}
1604
1605DEFUN(cfg_bts_type,
1606 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001607 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001608 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001609{
1610 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001611 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001612
Harald Welte39315c42010-01-10 18:01:52 +01001613 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1614 if (rc < 0)
1615 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001616
Harald Welte5258fc42009-03-28 19:07:53 +00001617 return CMD_SUCCESS;
1618}
1619
Harald Weltefcd24452009-06-20 18:15:19 +02001620DEFUN(cfg_bts_band,
1621 cfg_bts_band_cmd,
1622 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001623 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001624{
1625 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001626 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001627
1628 if (band < 0) {
1629 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1630 band, VTY_NEWLINE);
1631 return CMD_WARNING;
1632 }
1633
1634 bts->band = band;
1635
1636 return CMD_SUCCESS;
1637}
1638
Maxc08ee712016-05-11 12:45:13 +02001639DEFUN(cfg_bts_dtxu, cfg_bts_dtxu_cmd, "dtx uplink [force]",
1640 "Configure discontinuous transmission\n"
1641 "Enable Uplink DTX for this BTS\n"
1642 "MS 'shall' use DTXu instead of 'may' use (might not be supported by "
1643 "older phones).\n")
1644{
1645 struct gsm_bts *bts = vty->index;
1646
1647 bts->dtxu = (argc > 0) ? GSM48_DTX_SHALL_BE_USED : GSM48_DTX_MAY_BE_USED;
Max60795282016-06-06 11:30:57 +02001648 if (!is_ipaccess_bts(bts))
1649 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1650 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001651 return CMD_SUCCESS;
1652}
1653
1654DEFUN(cfg_bts_no_dtxu, cfg_bts_no_dtxu_cmd, "no dtx uplink",
1655 NO_STR
1656 "Configure discontinuous transmission\n"
1657 "Disable Uplink DTX for this BTS\n")
1658{
1659 struct gsm_bts *bts = vty->index;
1660
1661 bts->dtxu = GSM48_DTX_SHALL_NOT_BE_USED;
1662
1663 return CMD_SUCCESS;
1664}
1665
1666DEFUN(cfg_bts_dtxd, cfg_bts_dtxd_cmd, "dtx downlink",
1667 "Configure discontinuous transmission\n"
1668 "Enable Downlink DTX for this BTS\n")
1669{
1670 struct gsm_bts *bts = vty->index;
1671
1672 bts->dtxd = true;
Max60795282016-06-06 11:30:57 +02001673 if (!is_ipaccess_bts(bts))
1674 vty_out(vty, "%% DTX enabled on non-IP BTS: this configuration "
1675 "neither supported nor tested!%s", VTY_NEWLINE);
Maxc08ee712016-05-11 12:45:13 +02001676 return CMD_SUCCESS;
1677}
1678
1679DEFUN(cfg_bts_no_dtxd, cfg_bts_no_dtxd_cmd, "no dtx downlink",
1680 NO_STR
1681 "Configure discontinuous transmission\n"
1682 "Disable Downlink DTX for this BTS\n")
1683{
1684 struct gsm_bts *bts = vty->index;
1685
1686 bts->dtxd = false;
1687
1688 return CMD_SUCCESS;
1689}
1690
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001691DEFUN(cfg_bts_ci,
1692 cfg_bts_ci_cmd,
1693 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001694 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001695{
1696 struct gsm_bts *bts = vty->index;
1697 int ci = atoi(argv[0]);
1698
1699 if (ci < 0 || ci > 0xffff) {
1700 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1701 ci, VTY_NEWLINE);
1702 return CMD_WARNING;
1703 }
1704 bts->cell_identity = ci;
1705
1706 return CMD_SUCCESS;
1707}
1708
Harald Welte5258fc42009-03-28 19:07:53 +00001709DEFUN(cfg_bts_lac,
1710 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001711 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001712 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001713{
1714 struct gsm_bts *bts = vty->index;
1715 int lac = atoi(argv[0]);
1716
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001717 if (lac < 0 || lac > 0xffff) {
1718 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001719 lac, VTY_NEWLINE);
1720 return CMD_WARNING;
1721 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001722
1723 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1724 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1725 lac, VTY_NEWLINE);
1726 return CMD_WARNING;
1727 }
1728
Harald Welte5258fc42009-03-28 19:07:53 +00001729 bts->location_area_code = lac;
1730
1731 return CMD_SUCCESS;
1732}
1733
Harald Weltea43f7892009-12-01 18:04:30 +05301734
Harald Weltea2bbc5e2015-11-20 10:43:31 +01001735/* compatibility wrapper for old config files */
1736DEFUN_HIDDEN(cfg_bts_tsc,
Harald Welte5258fc42009-03-28 19:07:53 +00001737 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001738 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001739 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001740{
Harald Welte5258fc42009-03-28 19:07:53 +00001741 return CMD_SUCCESS;
1742}
1743
Harald Welte78f2f502009-05-23 16:56:52 +00001744DEFUN(cfg_bts_bsic,
1745 cfg_bts_bsic_cmd,
1746 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001747 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1748 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001749{
1750 struct gsm_bts *bts = vty->index;
1751 int bsic = atoi(argv[0]);
1752
1753 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001754 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001755 bsic, VTY_NEWLINE);
1756 return CMD_WARNING;
1757 }
1758 bts->bsic = bsic;
1759
1760 return CMD_SUCCESS;
1761}
1762
Harald Welte4cc34222009-05-01 15:12:31 +00001763DEFUN(cfg_bts_unit_id,
1764 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001765 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001766 "Abis/IP specific options\n"
1767 "Set the IPA BTS Unit ID\n"
1768 "Unit ID (Site)\n"
1769 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001770{
1771 struct gsm_bts *bts = vty->index;
1772 int site_id = atoi(argv[0]);
1773 int bts_id = atoi(argv[1]);
1774
Harald Welte07dc73d2009-08-07 13:27:09 +02001775 if (!is_ipaccess_bts(bts)) {
1776 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1777 return CMD_WARNING;
1778 }
1779
Harald Welte4cc34222009-05-01 15:12:31 +00001780 bts->ip_access.site_id = site_id;
1781 bts->ip_access.bts_id = bts_id;
1782
1783 return CMD_SUCCESS;
1784}
1785
Harald Welte8b291802013-03-12 13:57:05 +01001786DEFUN(cfg_bts_rsl_ip,
1787 cfg_bts_rsl_ip_cmd,
1788 "ip.access rsl-ip A.B.C.D",
1789 "Abis/IP specific options\n"
1790 "Set the IPA RSL IP Address of the BSC\n"
1791 "Destination IP address for RSL connection\n")
1792{
1793 struct gsm_bts *bts = vty->index;
1794 struct in_addr ia;
1795
1796 if (!is_ipaccess_bts(bts)) {
1797 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1798 return CMD_WARNING;
1799 }
1800
1801 inet_aton(argv[0], &ia);
1802 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1803
1804 return CMD_SUCCESS;
1805}
1806
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001807#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001808
Sylvain Munautc9519462011-10-17 14:04:55 +02001809DEFUN(cfg_bts_nokia_site_skip_reset,
1810 cfg_bts_nokia_site_skip_reset_cmd,
1811 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001812 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001813 "Skip the reset step during bootstrap process of this BTS\n"
1814 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001815{
1816 struct gsm_bts *bts = vty->index;
1817
1818 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1819 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1820 return CMD_WARNING;
1821 }
1822
1823 bts->nokia.skip_reset = atoi(argv[0]);
1824
1825 return CMD_SUCCESS;
1826}
1827
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001828DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1829 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1830 "nokia_site no-local-rel-conf (0|1)",
1831 NOKIA_STR
1832 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1833 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1834{
1835 struct gsm_bts *bts = vty->index;
1836
1837 if (!is_nokia_bts(bts)) {
1838 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1839 VTY_NEWLINE);
1840 return CMD_WARNING;
1841 }
1842
1843 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1844
1845 return CMD_SUCCESS;
1846}
1847
Sipos Csaba56e17662015-02-07 13:27:36 +01001848DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1849 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1850 "nokia_site bts-reset-timer <15-100>",
1851 NOKIA_STR
1852 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1853 "and the BTS is being bootstrapped.\n")
1854{
1855 struct gsm_bts *bts = vty->index;
1856
1857 if (!is_nokia_bts(bts)) {
1858 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1859 VTY_NEWLINE);
1860 return CMD_WARNING;
1861 }
1862
1863 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1864
1865 return CMD_SUCCESS;
1866}
Harald Welte8f0ed552010-05-11 21:53:49 +02001867#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001868#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001869
Harald Welte8175e952009-10-20 00:22:00 +02001870DEFUN(cfg_bts_stream_id,
1871 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001872 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001873 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001874 "Set the ip.access Stream ID of the OML link of this BTS\n"
1875 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001876{
1877 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001878 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001879
1880 if (!is_ipaccess_bts(bts)) {
1881 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1882 return CMD_WARNING;
1883 }
1884
1885 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001886 /* This is used by e1inp_bind_ops callback for each BTS model. */
1887 bts->oml_e1_link.e1_nr = linenr;
1888
1889 return CMD_SUCCESS;
1890}
1891
Harald Welted13e0cd2012-08-17 09:52:03 +02001892#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001893
Harald Welte42581822009-08-08 16:12:58 +02001894DEFUN(cfg_bts_oml_e1,
1895 cfg_bts_oml_e1_cmd,
1896 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001897 OML_E1_STR
1898 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001899 "E1/T1 line number to be used for OML\n"
1900 "E1/T1 timeslot to be used for OML\n"
1901 "E1/T1 timeslot to be used for OML\n"
1902 "E1/T1 sub-slot to be used for OML\n"
1903 "Use E1/T1 sub-slot 0\n"
1904 "Use E1/T1 sub-slot 1\n"
1905 "Use E1/T1 sub-slot 2\n"
1906 "Use E1/T1 sub-slot 3\n"
1907 "Use full E1 slot 3\n"
1908 )
Harald Welte42581822009-08-08 16:12:58 +02001909{
1910 struct gsm_bts *bts = vty->index;
1911
1912 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1913
1914 return CMD_SUCCESS;
1915}
1916
1917
1918DEFUN(cfg_bts_oml_e1_tei,
1919 cfg_bts_oml_e1_tei_cmd,
1920 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001921 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001922 "Set the TEI to be used for OML\n"
1923 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001924{
1925 struct gsm_bts *bts = vty->index;
1926
1927 bts->oml_tei = atoi(argv[0]);
1928
1929 return CMD_SUCCESS;
1930}
1931
Harald Welte7a8fa412009-08-10 13:48:16 +02001932DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1933 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001934 "Channnel Allocator\n" "Channel Allocator\n"
1935 "Allocate Timeslots and Transceivers in ascending order\n"
1936 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001937{
1938 struct gsm_bts *bts = vty->index;
1939
1940 if (!strcmp(argv[0], "ascending"))
1941 bts->chan_alloc_reverse = 0;
1942 else
1943 bts->chan_alloc_reverse = 1;
1944
1945 return CMD_SUCCESS;
1946}
1947
Harald Welte8f0ed552010-05-11 21:53:49 +02001948#define RACH_STR "Random Access Control Channel\n"
1949
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001950DEFUN(cfg_bts_rach_tx_integer,
1951 cfg_bts_rach_tx_integer_cmd,
1952 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001953 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001954 "Set the raw tx integer value in RACH Control parameters IE\n"
1955 "Set the raw tx integer value in RACH Control parameters IE\n"
1956 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001957{
1958 struct gsm_bts *bts = vty->index;
1959 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1960 return CMD_SUCCESS;
1961}
1962
1963DEFUN(cfg_bts_rach_max_trans,
1964 cfg_bts_rach_max_trans_cmd,
1965 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001966 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001967 "Set the maximum number of RACH burst transmissions\n"
1968 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001969 "Maximum number of 1 RACH burst transmissions\n"
1970 "Maximum number of 2 RACH burst transmissions\n"
1971 "Maximum number of 4 RACH burst transmissions\n"
1972 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001973{
1974 struct gsm_bts *bts = vty->index;
1975 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1976 return CMD_SUCCESS;
1977}
1978
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001979#define CD_STR "Channel Description\n"
1980
1981DEFUN(cfg_bts_chan_desc_att,
1982 cfg_bts_chan_desc_att_cmd,
1983 "channel-descrption attach (0|1)",
1984 CD_STR
1985 "Set if attachment is required\n"
1986 "Attachment is NOT required\n"
1987 "Attachment is required (standard)\n")
1988{
1989 struct gsm_bts *bts = vty->index;
1990 bts->si_common.chan_desc.att = atoi(argv[0]);
1991 return CMD_SUCCESS;
1992}
1993
1994DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1995 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1996 "channel-descrption bs-pa-mfrms <2-9>",
1997 CD_STR
1998 "Set number of multiframe periods for paging groups\n"
1999 "Number of multiframe periods for paging groups\n")
2000{
2001 struct gsm_bts *bts = vty->index;
2002 int bs_pa_mfrms = atoi(argv[0]);
2003
2004 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2005 return CMD_SUCCESS;
2006}
2007
2008DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2009 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2010 "channel-descrption bs-ag-blks-res <0-7>",
2011 CD_STR
2012 "Set number of blocks reserved for access grant\n"
2013 "Number of blocks reserved for access grant\n")
2014{
2015 struct gsm_bts *bts = vty->index;
2016 int bs_ag_blks_res = atoi(argv[0]);
2017
2018 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2019 return CMD_SUCCESS;
2020}
2021
Harald Welte8f0ed552010-05-11 21:53:49 +02002022#define NM_STR "Network Management\n"
2023
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002024DEFUN(cfg_bts_rach_nm_b_thresh,
2025 cfg_bts_rach_nm_b_thresh_cmd,
2026 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002027 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002028 "Set the NM Busy Threshold\n"
2029 "Set the NM Busy Threshold\n"
2030 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002031{
2032 struct gsm_bts *bts = vty->index;
2033 bts->rach_b_thresh = atoi(argv[0]);
2034 return CMD_SUCCESS;
2035}
2036
2037DEFUN(cfg_bts_rach_nm_ldavg,
2038 cfg_bts_rach_nm_ldavg_cmd,
2039 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002040 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002041 "Set the NM Loadaverage Slots value\n"
2042 "Set the NM Loadaverage Slots value\n"
2043 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002044{
2045 struct gsm_bts *bts = vty->index;
2046 bts->rach_ldavg_slots = atoi(argv[0]);
2047 return CMD_SUCCESS;
2048}
2049
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002050DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2051 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002052 "Should this cell be barred from access?\n"
2053 "Should this cell be barred from access?\n"
2054 "Cell should NOT be barred\n"
2055 "Cell should be barred\n")
2056
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002057{
2058 struct gsm_bts *bts = vty->index;
2059
Harald Welte71355012009-12-21 23:08:18 +01002060 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002061
2062 return CMD_SUCCESS;
2063}
2064
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002065DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2066 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002067 RACH_STR
2068 "Should this cell allow emergency calls?\n"
2069 "Should this cell allow emergency calls?\n"
2070 "Should this cell allow emergency calls?\n"
2071 "Do NOT allow emergency calls\n"
2072 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002073{
2074 struct gsm_bts *bts = vty->index;
2075
2076 if (atoi(argv[0]) == 0)
2077 bts->si_common.rach_control.t2 |= 0x4;
2078 else
2079 bts->si_common.rach_control.t2 &= ~0x4;
2080
2081 return CMD_SUCCESS;
2082}
2083
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002084DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2085 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2086 RACH_STR
2087 "Set access control class\n"
2088 "Access control class 0\n"
2089 "Access control class 1\n"
2090 "Access control class 2\n"
2091 "Access control class 3\n"
2092 "Access control class 4\n"
2093 "Access control class 5\n"
2094 "Access control class 6\n"
2095 "Access control class 7\n"
2096 "Access control class 8\n"
2097 "Access control class 9\n"
2098 "Access control class 11 for PLMN use\n"
2099 "Access control class 12 for security services\n"
2100 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2101 "Access control class 14 for emergency services\n"
2102 "Access control class 15 for PLMN staff\n"
2103 "barred to use access control class\n"
2104 "allowed to use access control class\n")
2105{
2106 struct gsm_bts *bts = vty->index;
2107
2108 uint8_t control_class;
2109 uint8_t allowed = 0;
2110
2111 if (strcmp(argv[1], "allowed") == 0)
2112 allowed = 1;
2113
2114 control_class = atoi(argv[0]);
2115 if (control_class < 8)
2116 if (allowed)
2117 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2118 else
2119 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2120 else
2121 if (allowed)
2122 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2123 else
2124 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2125
2126 return CMD_SUCCESS;
2127}
2128
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002129DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2130 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002131 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002132 "Maximum transmit power of the MS\n"
2133 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002134 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002135{
2136 struct gsm_bts *bts = vty->index;
2137
2138 bts->ms_max_power = atoi(argv[0]);
2139
2140 return CMD_SUCCESS;
2141}
2142
Harald Weltecfaabbb2012-08-16 23:23:50 +02002143#define CELL_STR "Cell Parameters\n"
2144
Harald Welte73225282009-12-12 18:17:25 +01002145DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2146 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002147 CELL_STR "Cell re-selection parameters\n"
2148 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002149 "Cell Re-Selection Hysteresis in dB")
2150{
2151 struct gsm_bts *bts = vty->index;
2152
2153 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2154
2155 return CMD_SUCCESS;
2156}
2157
2158DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2159 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002160 "Minimum RxLev needed for cell access\n"
2161 "Minimum RxLev needed for cell access\n"
2162 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002163 "Minimum RxLev needed for cell access (better than -110dBm)")
2164{
2165 struct gsm_bts *bts = vty->index;
2166
2167 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2168
2169 return CMD_SUCCESS;
2170}
2171
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002172DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2173 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002174 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2175 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002176{
2177 struct gsm_bts *bts = vty->index;
2178
2179 bts->si_common.cell_ro_sel_par.present = 1;
2180 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2181
2182 return CMD_SUCCESS;
2183}
2184
2185DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2186 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002187 CELL_STR "Cell Re-Selection Parameters\n"
2188 "Cell Re-Selection Offset (CRO) in dB\n"
2189 "Cell Re-Selection Offset (CRO) in dB\n"
2190 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002191{
2192 struct gsm_bts *bts = vty->index;
2193
2194 bts->si_common.cell_ro_sel_par.present = 1;
2195 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2196
2197 return CMD_SUCCESS;
2198}
2199
2200DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2201 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002202 "Cell selection temporary negative offset\n"
2203 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002204 "Cell selection temporary negative offset in dB")
2205{
2206 struct gsm_bts *bts = vty->index;
2207
2208 bts->si_common.cell_ro_sel_par.present = 1;
2209 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2210
2211 return CMD_SUCCESS;
2212}
2213
2214DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2215 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002216 "Cell selection temporary negative offset\n"
2217 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002218 "Sets cell selection temporary negative offset to infinity")
2219{
2220 struct gsm_bts *bts = vty->index;
2221
2222 bts->si_common.cell_ro_sel_par.present = 1;
2223 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2224
2225 return CMD_SUCCESS;
2226}
2227
2228DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2229 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002230 "Cell selection penalty time\n"
2231 "Cell selection penalty time\n"
2232 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002233{
2234 struct gsm_bts *bts = vty->index;
2235
2236 bts->si_common.cell_ro_sel_par.present = 1;
2237 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2238
2239 return CMD_SUCCESS;
2240}
2241
2242DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2243 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002244 "Cell selection penalty time\n"
2245 "Cell selection penalty time\n"
2246 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002247 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2248 "and TEMPORARY_OFFSET is ignored)")
2249{
2250 struct gsm_bts *bts = vty->index;
2251
2252 bts->si_common.cell_ro_sel_par.present = 1;
2253 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2254
2255 return CMD_SUCCESS;
2256}
2257
Harald Welte (local)efc92312009-08-14 23:09:25 +02002258DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002259 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002260 "Periodic Location Updating Interval\n"
2261 "Periodic Location Updating Interval\n"
2262 "Periodic Location Updating Interval\n"
2263 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002264{
2265 struct gsm_bts *bts = vty->index;
2266
Dieter Spaard6613e02010-10-05 21:10:55 +02002267 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002268
2269 return CMD_SUCCESS;
2270}
2271
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002272DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2273 "no periodic location update",
2274 NO_STR
2275 "Periodic Location Updating Interval\n"
2276 "Periodic Location Updating Interval\n"
2277 "Periodic Location Updating Interval\n")
2278{
2279 struct gsm_bts *bts = vty->index;
2280
2281 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002282
2283 return CMD_SUCCESS;
2284}
2285
2286DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2287 "radio-link-timeout <4-64>",
2288 "Radio link timeout criterion (BTS side)\n"
2289 "Radio link timeout value (lost SACCH block)\n")
2290{
2291 struct gsm_bts *bts = vty->index;
2292
2293 set_radio_link_timeout(&bts->si_common.cell_options, atoi(argv[0]));
2294
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 */
2686 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2687
2688 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002689 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002690 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2691 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
Max59a1bf32016-04-15 16:04:46 +02002768DEFUN(cfg_bts_si2quater_neigh_add, cfg_bts_si2quater_neigh_add_cmd,
Max2c16bee2017-02-15 13:51:37 +01002769 "si2quater neighbor-list add earfcn <0-65535> thresh-hi <0-31> "
2770 "thresh-lo <0-32> prio <0-8> qrxlv <0-32> meas <0-8>",
2771 "SI2quater Neighbor List\n" "SI2quater Neighbor List\n"
2772 "Add to manual SI2quater neighbor list\n"
2773 "EARFCN of neighbor\n" "EARFCN of neighbor\n"
2774 "threshold high bits\n" "threshold high bits\n"
2775 "threshold low bits\n" "threshold low bits (32 means NA)\n"
2776 "priority\n" "priority (8 means NA)\n"
2777 "QRXLEVMIN\n" "QRXLEVMIN (32 means NA)\n"
2778 "measurement bandwidth\n" "measurement bandwidth (8 means NA)\n")
Max59a1bf32016-04-15 16:04:46 +02002779{
2780 struct gsm_bts *bts = vty->index;
2781 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
2782 uint16_t arfcn = atoi(argv[0]);
Max2c16bee2017-02-15 13:51:37 +01002783 uint8_t thresh_hi = atoi(argv[1]), thresh_lo = atoi(argv[2]),
2784 prio = atoi(argv[3]), qrx = atoi(argv[4]), meas = atoi(argv[5]);
2785 int r = osmo_earfcn_add(e, arfcn,
2786 (meas < 8) ? meas : OSMO_EARFCN_MEAS_INVALID);
Max59a1bf32016-04-15 16:04:46 +02002787
2788 if (r < 0) {
Max2c16bee2017-02-15 13:51:37 +01002789 vty_out(vty, "Unable to add ARFCN %u: %s%s", arfcn, strerror(-r),
Max59a1bf32016-04-15 16:04:46 +02002790 VTY_NEWLINE);
2791 return CMD_WARNING;
2792 }
2793
Max2c16bee2017-02-15 13:51:37 +01002794 if (e->thresh_hi && thresh_hi != e->thresh_hi)
2795 vty_out(vty, "Warning: multiple threshold-high are not "
2796 "supported, overriding previous threshold %u%s",
2797 e->thresh_hi, VTY_NEWLINE);
2798
2799 e->thresh_hi = thresh_hi;
2800
2801 if (thresh_lo != 32) {
2802 if (e->thresh_lo_valid && e->thresh_lo != thresh_lo)
2803 vty_out(vty, "Warning: multiple threshold-low are not "
2804 "supported, overriding previous threshold %u%s",
2805 e->thresh_lo, VTY_NEWLINE);
2806 e->thresh_lo = thresh_lo;
2807 e->thresh_lo_valid = true;
Maxaafff962016-04-20 15:57:14 +02002808 }
Max2c16bee2017-02-15 13:51:37 +01002809
2810 if (qrx != 32) {
2811 if (e->qrxlm_valid && e->qrxlm != qrx)
2812 vty_out(vty, "Warning: multiple QRXLEVMIN are not "
2813 "supported, overriding previous value %u%s",
2814 e->qrxlm, VTY_NEWLINE);
2815 e->qrxlm = qrx;
2816 e->qrxlm_valid = true;
2817 }
2818
2819 if (prio != 8) {
2820 if (e->prio_valid && e->prio != prio)
2821 vty_out(vty, "Warning: multiple priorities are not "
2822 "supported, overriding previous value %u%s",
2823 e->prio, VTY_NEWLINE);
2824 e->prio = prio;
2825 e->prio_valid = true;
2826 }
2827
2828 if (si2q_size_check(bts))
2829 return CMD_SUCCESS;
2830
2831 vty_out(vty, "Warning: not enough space in SI2quater for a given EARFCN "
2832 "%u%s", arfcn, VTY_NEWLINE);
Maxaafff962016-04-20 15:57:14 +02002833 osmo_earfcn_del(e, arfcn);
Max2c16bee2017-02-15 13:51:37 +01002834
Maxaafff962016-04-20 15:57:14 +02002835 return CMD_WARNING;
Max59a1bf32016-04-15 16:04:46 +02002836}
2837
2838DEFUN(cfg_bts_si2quater_neigh_del, cfg_bts_si2quater_neigh_del_cmd,
Max35697b92016-04-29 12:51:31 +02002839 "si2quater neighbor-list del earfcn <0-65535>",
Max59a1bf32016-04-15 16:04:46 +02002840 "SI2quater Neighbor List\n"
2841 "SI2quater Neighbor List\n"
2842 "Delete from SI2quater manual neighbor list\n"
Max36212f22016-04-20 12:06:05 +02002843 "EARFCN of neighbor\n"
2844 "EARFCN\n")
Max59a1bf32016-04-15 16:04:46 +02002845{
2846 struct gsm_bts *bts = vty->index;
2847 struct osmo_earfcn_si2q *e = &bts->si_common.si2quater_neigh_list;
Max0c1bc262016-04-20 12:06:06 +02002848 uint16_t arfcn = atoi(argv[0]);
Max59a1bf32016-04-15 16:04:46 +02002849 int r = osmo_earfcn_del(e, arfcn);
2850 if (r < 0) {
2851 vty_out(vty, "Unable to delete arfcn %u: %s%s", arfcn,
Max0c1bc262016-04-20 12:06:06 +02002852 strerror(-r), VTY_NEWLINE);
Max59a1bf32016-04-15 16:04:46 +02002853 return CMD_WARNING;
2854 }
2855
2856 return CMD_SUCCESS;
2857}
2858
Max26679e02016-04-20 15:57:13 +02002859DEFUN(cfg_bts_si2quater_uarfcn_add, cfg_bts_si2quater_uarfcn_add_cmd,
Max35697b92016-04-29 12:51:31 +02002860 "si2quater neighbor-list add uarfcn <0-16383> <0-511> <0-1>",
Max26679e02016-04-20 15:57:13 +02002861 "SI2quater Neighbor List\n"
2862 "SI2quater Neighbor List\n" "Add to manual SI2quater neighbor list\n"
2863 "UARFCN of neighbor\n" "UARFCN of neighbor\n" "scrambling code\n"
2864 "diversity bit\n")
2865{
2866 struct gsm_bts *bts = vty->index;
2867 uint16_t arfcn = atoi(argv[0]), scramble = atoi(argv[1]);
2868
2869 switch(bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) {
2870 case -ENOMEM:
2871 vty_out(vty, "Unable to add arfcn: max number of UARFCNs (%u) "
2872 "reached%s", MAX_EARFCN_LIST, VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002873 return CMD_WARNING;
Maxaafff962016-04-20 15:57:14 +02002874 case -ENOSPC:
2875 vty_out(vty, "Warning: not enough space in si2quater for a "
2876 "given arfcn%s", VTY_NEWLINE);
Harald Weltea191dcd2016-11-26 15:06:37 +01002877 return CMD_WARNING;
Max26679e02016-04-20 15:57:13 +02002878 case -EADDRINUSE:
2879 vty_out(vty, "Unable to add arfcn: (%u, %u) is already added%s",
2880 arfcn, scramble, VTY_NEWLINE);
2881 return CMD_WARNING;
2882 }
2883
2884 return CMD_SUCCESS;
2885}
2886
2887DEFUN(cfg_bts_si2quater_uarfcn_del, cfg_bts_si2quater_uarfcn_del_cmd,
Max35697b92016-04-29 12:51:31 +02002888 "si2quater neighbor-list del uarfcn <0-16383> <0-511>",
Max26679e02016-04-20 15:57:13 +02002889 "SI2quater Neighbor List\n"
2890 "SI2quater Neighbor List\n"
2891 "Delete from SI2quater manual neighbor list\n"
2892 "UARFCN of neighbor\n"
2893 "UARFCN\n"
2894 "scrambling code\n")
2895{
2896 struct gsm_bts *bts = vty->index;
2897
2898 if (bts_uarfcn_del(bts, atoi(argv[0]), atoi(argv[1])) < 0) {
2899 vty_out(vty, "Unable to delete uarfcn: pair not found%s",
2900 VTY_NEWLINE);
2901 return CMD_WARNING;
2902 }
2903
2904 return CMD_SUCCESS;
2905}
2906
Harald Welte64c07d22011-02-15 11:43:27 +01002907DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002908 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002909 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002910 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2911 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2912 "ARFCN of neighbor\n")
2913{
2914 struct gsm_bts *bts = vty->index;
2915 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2916 uint16_t arfcn = atoi(argv[1]);
2917
2918 if (!bts->neigh_list_manual_mode) {
2919 vty_out(vty, "%% Cannot configure neighbor list in "
2920 "automatic mode%s", VTY_NEWLINE);
2921 return CMD_WARNING;
2922 }
2923
2924 if (!strcmp(argv[0], "add"))
2925 bitvec_set_bit_pos(bv, arfcn, 1);
2926 else
2927 bitvec_set_bit_pos(bv, arfcn, 0);
2928
2929 return CMD_SUCCESS;
2930}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002931
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002932#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2933
2934DEFUN(cfg_bts_excl_rf_lock,
2935 cfg_bts_excl_rf_lock_cmd,
2936 "rf-lock-exclude",
2937 EXCL_RFLOCK_STR)
2938{
2939 struct gsm_bts *bts = vty->index;
2940 bts->excl_from_rf_lock = 1;
2941 return CMD_SUCCESS;
2942}
2943
2944DEFUN(cfg_bts_no_excl_rf_lock,
2945 cfg_bts_no_excl_rf_lock_cmd,
2946 "no rf-lock-exclude",
2947 NO_STR EXCL_RFLOCK_STR)
2948{
2949 struct gsm_bts *bts = vty->index;
2950 bts->excl_from_rf_lock = 0;
2951 return CMD_SUCCESS;
2952}
2953
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002954#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2955
2956DEFUN(cfg_bts_force_comb_si,
2957 cfg_bts_force_comb_si_cmd,
2958 "force-combined-si",
2959 FORCE_COMB_SI_STR)
2960{
2961 struct gsm_bts *bts = vty->index;
2962 bts->force_combined_si = 1;
2963 return CMD_SUCCESS;
2964}
2965
2966DEFUN(cfg_bts_no_force_comb_si,
2967 cfg_bts_no_force_comb_si_cmd,
2968 "no force-combined-si",
2969 NO_STR FORCE_COMB_SI_STR)
2970{
2971 struct gsm_bts *bts = vty->index;
2972 bts->force_combined_si = 0;
2973 return CMD_SUCCESS;
2974}
2975
Andreas Eversberga83d5112013-12-07 18:32:28 +01002976static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2977{
2978 struct gsm_bts *bts = vty->index;
2979 struct bts_codec_conf *codec = &bts->codec;
2980 int i;
2981
2982 codec->hr = 0;
2983 codec->efr = 0;
2984 codec->amr = 0;
2985 for (i = 0; i < argc; i++) {
2986 if (!strcmp(argv[i], "hr"))
2987 codec->hr = 1;
2988 if (!strcmp(argv[i], "efr"))
2989 codec->efr = 1;
2990 if (!strcmp(argv[i], "amr"))
2991 codec->amr = 1;
2992 }
2993}
2994
2995#define CODEC_PAR_STR " (hr|efr|amr)"
2996#define CODEC_HELP_STR "Half Rate\n" \
2997 "Enhanced Full Rate\nAdaptive Multirate\n"
2998
2999DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
3000 "codec-support fr",
3001 "Codec Support settings\nFullrate\n")
3002{
3003 _get_codec_from_arg(vty, 0, argv);
3004 return CMD_SUCCESS;
3005}
3006
3007DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
3008 "codec-support fr" CODEC_PAR_STR,
3009 "Codec Support settings\nFullrate\n"
3010 CODEC_HELP_STR)
3011{
3012 _get_codec_from_arg(vty, 1, argv);
3013 return CMD_SUCCESS;
3014}
3015
3016DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
3017 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
3018 "Codec Support settings\nFullrate\n"
3019 CODEC_HELP_STR CODEC_HELP_STR)
3020{
3021 _get_codec_from_arg(vty, 2, argv);
3022 return CMD_SUCCESS;
3023}
3024
3025DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
3026 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3027 "Codec Support settings\nFullrate\n"
3028 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3029{
3030 _get_codec_from_arg(vty, 3, argv);
3031 return CMD_SUCCESS;
3032}
3033
3034DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
3035 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
3036 "Codec Support settings\nFullrate\n"
3037 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
3038{
3039 _get_codec_from_arg(vty, 4, argv);
3040 return CMD_SUCCESS;
3041}
3042
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003043DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
3044 "depends-on-bts <0-255>",
3045 "This BTS can only be started if another one is up\n" "BTS Number\n")
3046{
3047 struct gsm_bts *bts = vty->index;
3048 struct gsm_bts *other_bts;
3049 int dep = atoi(argv[0]);
3050
3051
3052 if (!is_ipaccess_bts(bts)) {
3053 vty_out(vty, "This feature is only available for IP systems.%s",
3054 VTY_NEWLINE);
3055 return CMD_WARNING;
3056 }
3057
3058 other_bts = gsm_bts_num(bts->network, dep);
3059 if (!other_bts || !is_ipaccess_bts(other_bts)) {
3060 vty_out(vty, "This feature is only available for IP systems.%s",
3061 VTY_NEWLINE);
3062 return CMD_WARNING;
3063 }
3064
3065 if (dep >= bts->nr) {
3066 vty_out(vty, "%%Need to depend on an already declared unit.%s",
3067 VTY_NEWLINE);
3068 return CMD_WARNING;
3069 }
3070
3071 bts_depend_mark(bts, dep);
3072 return CMD_SUCCESS;
3073}
3074
3075DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
3076 "depeneds-on-bts <0-255>",
3077 NO_STR "This BTS can only be started if another one is up\n"
3078 "BTS Number\n")
3079{
3080 struct gsm_bts *bts = vty->index;
3081 int dep = atoi(argv[0]);
3082
3083 bts_depend_clear(bts, dep);
3084 return CMD_SUCCESS;
3085}
3086
Andreas Eversberg73266522014-01-19 11:47:44 +01003087#define AMR_TEXT "Adaptive Multi Rate settings\n"
3088#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
3089#define AMR_START_TEXT "Initial codec to use with AMR\n" \
3090 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
3091#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
3092#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
3093
3094static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3095{
3096 struct gsm_bts *bts = vty->index;
3097 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3098 struct gsm48_multi_rate_conf *mr_conf =
3099 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3100 int i;
3101
3102 mr->gsm48_ie[1] = 0;
3103 for (i = 0; i < argc; i++)
3104 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
3105 mr_conf->icmi = 0;
3106}
3107
3108static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3109{
3110 struct gsm_bts *bts = vty->index;
3111 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003112 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003113 int i;
3114
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003115 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3116 for (i = 0; i < argc - 1; i++)
3117 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003118}
3119
3120static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
3121{
3122 struct gsm_bts *bts = vty->index;
3123 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003124 struct amr_mode *modes;
Andreas Eversberg73266522014-01-19 11:47:44 +01003125 int i;
3126
Holger Hans Peter Freythera174a472015-09-24 11:39:38 +02003127 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
3128 for (i = 0; i < argc - 1; i++)
3129 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversberg73266522014-01-19 11:47:44 +01003130}
3131
3132static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
3133{
3134 struct gsm_bts *bts = vty->index;
3135 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
3136 struct gsm48_multi_rate_conf *mr_conf =
3137 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
3138 int num = 0, i;
3139
3140 for (i = 0; i < ((full) ? 8 : 6); i++) {
3141 if ((mr->gsm48_ie[1] & (1 << i))) {
3142 num++;
3143 }
3144 }
3145
3146 if (argv[0][0] == 'a' || num == 0)
3147 mr_conf->icmi = 0;
3148 else {
3149 mr_conf->icmi = 1;
3150 if (num < atoi(argv[0]))
3151 mr_conf->smod = num - 1;
3152 else
3153 mr_conf->smod = atoi(argv[0]) - 1;
3154 }
3155}
3156
3157#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3158#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3159 "10,2k\n12,2k\n"
3160
3161#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3162#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3163
3164#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3165#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3166
3167DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3168 "amr tch-f modes" AMR_TCHF_PAR_STR,
3169 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3170 AMR_TCHF_HELP_STR)
3171{
3172 get_amr_from_arg(vty, 1, argv, 1);
3173 return CMD_SUCCESS;
3174}
3175
3176DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3177 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3178 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3179 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3180{
3181 get_amr_from_arg(vty, 2, argv, 1);
3182 return CMD_SUCCESS;
3183}
3184
3185DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3186 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3187 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3188 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3189{
3190 get_amr_from_arg(vty, 3, argv, 1);
3191 return CMD_SUCCESS;
3192}
3193
3194DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3195 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3196 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3197 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3198{
3199 get_amr_from_arg(vty, 4, argv, 1);
3200 return CMD_SUCCESS;
3201}
3202
3203DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3204 "amr tch-f start-mode (auto|1|2|3|4)",
3205 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3206{
3207 get_amr_start_from_arg(vty, argv, 1);
3208 return CMD_SUCCESS;
3209}
3210
3211DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3212 "amr tch-f threshold (ms|bts) <0-63>",
3213 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3214 AMR_TH_HELP_STR)
3215{
3216 get_amr_th_from_arg(vty, 2, argv, 1);
3217 return CMD_SUCCESS;
3218}
3219
3220DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3221 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3222 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3223 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3224{
3225 get_amr_th_from_arg(vty, 3, argv, 1);
3226 return CMD_SUCCESS;
3227}
3228
3229DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3230 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3231 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3232 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3233{
3234 get_amr_th_from_arg(vty, 4, argv, 1);
3235 return CMD_SUCCESS;
3236}
3237
3238DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3239 "amr tch-f hysteresis (ms|bts) <0-15>",
3240 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3241 AMR_HY_HELP_STR)
3242{
3243 get_amr_hy_from_arg(vty, 2, argv, 1);
3244 return CMD_SUCCESS;
3245}
3246
3247DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3248 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3249 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3250 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3251{
3252 get_amr_hy_from_arg(vty, 3, argv, 1);
3253 return CMD_SUCCESS;
3254}
3255
3256DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3257 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3258 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3259 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3260{
3261 get_amr_hy_from_arg(vty, 4, argv, 1);
3262 return CMD_SUCCESS;
3263}
3264
3265DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3266 "amr tch-h modes" AMR_TCHH_PAR_STR,
3267 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3268 AMR_TCHH_HELP_STR)
3269{
3270 get_amr_from_arg(vty, 1, argv, 0);
3271 return CMD_SUCCESS;
3272}
3273
3274DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3275 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3276 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3277 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3278{
3279 get_amr_from_arg(vty, 2, argv, 0);
3280 return CMD_SUCCESS;
3281}
3282
3283DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3284 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3285 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3286 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3287{
3288 get_amr_from_arg(vty, 3, argv, 0);
3289 return CMD_SUCCESS;
3290}
3291
3292DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3293 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3294 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3295 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3296{
3297 get_amr_from_arg(vty, 4, argv, 0);
3298 return CMD_SUCCESS;
3299}
3300
3301DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3302 "amr tch-h start-mode (auto|1|2|3|4)",
3303 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3304{
3305 get_amr_start_from_arg(vty, argv, 0);
3306 return CMD_SUCCESS;
3307}
3308
3309DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3310 "amr tch-h threshold (ms|bts) <0-63>",
3311 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3312 AMR_TH_HELP_STR)
3313{
3314 get_amr_th_from_arg(vty, 2, argv, 0);
3315 return CMD_SUCCESS;
3316}
3317
3318DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3319 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3320 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3321 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3322{
3323 get_amr_th_from_arg(vty, 3, argv, 0);
3324 return CMD_SUCCESS;
3325}
3326
3327DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3328 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3329 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3330 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3331{
3332 get_amr_th_from_arg(vty, 4, argv, 0);
3333 return CMD_SUCCESS;
3334}
3335
3336DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3337 "amr tch-h hysteresis (ms|bts) <0-15>",
3338 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3339 AMR_HY_HELP_STR)
3340{
3341 get_amr_hy_from_arg(vty, 2, argv, 0);
3342 return CMD_SUCCESS;
3343}
3344
3345DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3346 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3347 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3348 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3349{
3350 get_amr_hy_from_arg(vty, 3, argv, 0);
3351 return CMD_SUCCESS;
3352}
3353
3354DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3355 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3356 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3357 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3358{
3359 get_amr_hy_from_arg(vty, 4, argv, 0);
3360 return CMD_SUCCESS;
3361}
3362
Harald Welte8f0ed552010-05-11 21:53:49 +02003363#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02003364
Harald Welte5258fc42009-03-28 19:07:53 +00003365/* per TRX configuration */
3366DEFUN(cfg_trx,
3367 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02003368 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02003369 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00003370 "Select a TRX to configure")
3371{
3372 int trx_nr = atoi(argv[0]);
3373 struct gsm_bts *bts = vty->index;
3374 struct gsm_bts_trx *trx;
3375
Harald Weltee441d9c2009-06-21 16:17:15 +02003376 if (trx_nr > bts->num_trx) {
3377 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3378 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00003379 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02003380 } else if (trx_nr == bts->num_trx) {
3381 /* we need to allocate a new one */
3382 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003383 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02003384 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003385
Harald Weltee441d9c2009-06-21 16:17:15 +02003386 if (!trx)
3387 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00003388
3389 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02003390 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00003391 vty->node = TRX_NODE;
3392
3393 return CMD_SUCCESS;
3394}
3395
3396DEFUN(cfg_trx_arfcn,
3397 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01003398 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02003399 "Set the ARFCN for this TRX\n"
3400 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003401{
3402 int arfcn = atoi(argv[0]);
3403 struct gsm_bts_trx *trx = vty->index;
3404
3405 /* FIXME: check if this ARFCN is supported by this TRX */
3406
3407 trx->arfcn = arfcn;
3408
3409 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3410 /* FIXME: use OML layer to update the ARFCN */
3411 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3412
3413 return CMD_SUCCESS;
3414}
3415
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003416DEFUN(cfg_trx_nominal_power,
3417 cfg_trx_nominal_power_cmd,
3418 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003419 "Nominal TRX RF Power in dBm\n"
3420 "Nominal TRX RF Power in dBm\n"
3421 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003422{
3423 struct gsm_bts_trx *trx = vty->index;
3424
3425 trx->nominal_power = atoi(argv[0]);
3426
3427 return CMD_SUCCESS;
3428}
3429
Harald Weltefcd24452009-06-20 18:15:19 +02003430DEFUN(cfg_trx_max_power_red,
3431 cfg_trx_max_power_red_cmd,
3432 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003433 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02003434 "Reduction of maximum BS RF Power in dB\n")
3435{
3436 int maxpwr_r = atoi(argv[0]);
3437 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01003438 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02003439
3440 /* FIXME: check if our BTS type supports more than 12 */
3441 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3442 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3443 maxpwr_r, VTY_NEWLINE);
3444 return CMD_WARNING;
3445 }
3446 if (maxpwr_r & 1) {
3447 vty_out(vty, "%% Power %d dB is not an even value%s",
3448 maxpwr_r, VTY_NEWLINE);
3449 return CMD_WARNING;
3450 }
3451
3452 trx->max_power_red = maxpwr_r;
3453
3454 /* FIXME: make sure we update this using OML */
3455
3456 return CMD_SUCCESS;
3457}
3458
Harald Welte42581822009-08-08 16:12:58 +02003459DEFUN(cfg_trx_rsl_e1,
3460 cfg_trx_rsl_e1_cmd,
3461 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003462 "RSL Parameters\n"
3463 "E1/T1 interface to be used for RSL\n"
3464 "E1/T1 interface to be used for RSL\n"
3465 "E1/T1 Line Number to be used for RSL\n"
3466 "E1/T1 Timeslot to be used for RSL\n"
3467 "E1/T1 Timeslot to be used for RSL\n"
3468 "E1/T1 Sub-slot to be used for RSL\n"
3469 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3470 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3471 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3472 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3473 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003474{
3475 struct gsm_bts_trx *trx = vty->index;
3476
3477 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3478
3479 return CMD_SUCCESS;
3480}
3481
3482DEFUN(cfg_trx_rsl_e1_tei,
3483 cfg_trx_rsl_e1_tei_cmd,
3484 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003485 "RSL Parameters\n"
3486 "Set the TEI to be used for RSL\n"
3487 "Set the TEI to be used for RSL\n"
3488 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003489{
3490 struct gsm_bts_trx *trx = vty->index;
3491
3492 trx->rsl_tei = atoi(argv[0]);
3493
3494 return CMD_SUCCESS;
3495}
3496
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003497DEFUN(cfg_trx_rf_locked,
3498 cfg_trx_rf_locked_cmd,
3499 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003500 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3501 "TRX is NOT RF locked (active)\n"
3502 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003503{
3504 int locked = atoi(argv[0]);
3505 struct gsm_bts_trx *trx = vty->index;
3506
3507 gsm_trx_lock_rf(trx, locked);
3508 return CMD_SUCCESS;
3509}
Harald Welte42581822009-08-08 16:12:58 +02003510
Harald Welte5258fc42009-03-28 19:07:53 +00003511/* per TS configuration */
3512DEFUN(cfg_ts,
3513 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003514 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003515 "Select a Timeslot to configure\n"
3516 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003517{
3518 int ts_nr = atoi(argv[0]);
3519 struct gsm_bts_trx *trx = vty->index;
3520 struct gsm_bts_trx_ts *ts;
3521
3522 if (ts_nr >= TRX_NR_TS) {
3523 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3524 TRX_NR_TS, VTY_NEWLINE);
3525 return CMD_WARNING;
3526 }
3527
3528 ts = &trx->ts[ts_nr];
3529
3530 vty->index = ts;
3531 vty->node = TS_NODE;
3532
3533 return CMD_SUCCESS;
3534}
3535
Harald Weltea6fd58e2009-08-07 00:25:23 +02003536DEFUN(cfg_ts_pchan,
3537 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003538 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003539 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003540{
3541 struct gsm_bts_trx_ts *ts = vty->index;
3542 int pchanc;
3543
3544 pchanc = gsm_pchan_parse(argv[0]);
3545 if (pchanc < 0)
3546 return CMD_WARNING;
3547
3548 ts->pchan = pchanc;
3549
3550 return CMD_SUCCESS;
3551}
3552
3553/* used for backwards compatibility with old config files that still
3554 * have uppercase pchan type names */
3555DEFUN_HIDDEN(cfg_ts_pchan_compat,
3556 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003557 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003558 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003559{
3560 struct gsm_bts_trx_ts *ts = vty->index;
3561 int pchanc;
3562
3563 pchanc = gsm_pchan_parse(argv[0]);
3564 if (pchanc < 0)
3565 return CMD_WARNING;
3566
3567 ts->pchan = pchanc;
3568
3569 return CMD_SUCCESS;
3570}
3571
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003572
3573
Harald Welte135a6482011-05-30 12:09:13 +02003574DEFUN(cfg_ts_tsc,
3575 cfg_ts_tsc_cmd,
3576 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003577 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003578{
3579 struct gsm_bts_trx_ts *ts = vty->index;
3580
Harald Welte903aaea2014-01-19 17:10:50 +01003581 if (!gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_MULTI_TSC)) {
3582 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3583 "falling back to BCC%s", VTY_NEWLINE);
3584 ts->tsc = -1;
3585 return CMD_WARNING;
3586 }
3587
Harald Welte135a6482011-05-30 12:09:13 +02003588 ts->tsc = atoi(argv[0]);
3589
3590 return CMD_SUCCESS;
3591}
3592
Harald Weltea39b0f22010-06-14 22:26:10 +02003593#define HOPPING_STR "Configure frequency hopping\n"
3594
3595DEFUN(cfg_ts_hopping,
3596 cfg_ts_hopping_cmd,
3597 "hopping enabled (0|1)",
3598 HOPPING_STR "Enable or disable frequency hopping\n"
3599 "Disable frequency hopping\n" "Enable frequency hopping\n")
3600{
3601 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003602 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003603
Harald Weltec2fb3d02010-06-14 22:47:37 +02003604 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
3605 vty_out(vty, "BTS model does not support hopping%s",
3606 VTY_NEWLINE);
3607 return CMD_WARNING;
3608 }
3609
3610 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003611
3612 return CMD_SUCCESS;
3613}
3614
Harald Welte6e0cd042009-09-12 13:05:33 +02003615DEFUN(cfg_ts_hsn,
3616 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003617 "hopping sequence-number <0-63>",
3618 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003619 "Which hopping sequence to use for this channel\n"
3620 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003621{
3622 struct gsm_bts_trx_ts *ts = vty->index;
3623
3624 ts->hopping.hsn = atoi(argv[0]);
3625
3626 return CMD_SUCCESS;
3627}
3628
3629DEFUN(cfg_ts_maio,
3630 cfg_ts_maio_cmd,
3631 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003632 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003633 "Which hopping MAIO to use for this channel\n"
3634 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003635{
3636 struct gsm_bts_trx_ts *ts = vty->index;
3637
3638 ts->hopping.maio = atoi(argv[0]);
3639
3640 return CMD_SUCCESS;
3641}
3642
3643DEFUN(cfg_ts_arfcn_add,
3644 cfg_ts_arfcn_add_cmd,
3645 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003646 HOPPING_STR "Configure hopping ARFCN list\n"
3647 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003648{
3649 struct gsm_bts_trx_ts *ts = vty->index;
3650 int arfcn = atoi(argv[0]);
3651
Harald Weltea39b0f22010-06-14 22:26:10 +02003652 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3653
Harald Welte6e0cd042009-09-12 13:05:33 +02003654 return CMD_SUCCESS;
3655}
3656
3657DEFUN(cfg_ts_arfcn_del,
3658 cfg_ts_arfcn_del_cmd,
3659 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003660 HOPPING_STR "Configure hopping ARFCN list\n"
3661 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003662{
3663 struct gsm_bts_trx_ts *ts = vty->index;
3664 int arfcn = atoi(argv[0]);
3665
Harald Weltea39b0f22010-06-14 22:26:10 +02003666 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3667
Harald Welte6e0cd042009-09-12 13:05:33 +02003668 return CMD_SUCCESS;
3669}
3670
Harald Weltea6fd58e2009-08-07 00:25:23 +02003671DEFUN(cfg_ts_e1_subslot,
3672 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003673 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003674 "E1/T1 channel connected to this on-air timeslot\n"
3675 "E1/T1 channel connected to this on-air timeslot\n"
3676 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003677 "E1/T1 timeslot connected to this on-air timeslot\n"
3678 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003679 "E1/T1 sub-slot connected to this on-air timeslot\n"
3680 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3681 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3682 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3683 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3684 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003685{
3686 struct gsm_bts_trx_ts *ts = vty->index;
3687
Harald Welte42581822009-08-08 16:12:58 +02003688 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003689
3690 return CMD_SUCCESS;
3691}
Harald Welte5258fc42009-03-28 19:07:53 +00003692
Harald Welte4f10c252010-05-16 21:47:13 +02003693void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3694{
3695 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003696 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_TOTAL].current,
3697 net->bsc_ctrs->ctr[BSC_CTR_CHREQ_NO_CHANNEL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003698 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003699 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003700 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RF_FAIL].current,
3701 net->bsc_ctrs->ctr[BSC_CTR_CHAN_RLL_ERR].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003702 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003703 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003704 net->bsc_ctrs->ctr[BSC_CTR_PAGING_ATTEMPTED].current,
3705 net->bsc_ctrs->ctr[BSC_CTR_PAGING_COMPLETED].current,
3706 net->bsc_ctrs->ctr[BSC_CTR_PAGING_EXPIRED].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003707 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003708 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Alexander Couzensb847a212016-08-02 11:34:11 +02003709 net->bsc_ctrs->ctr[BSC_CTR_BTS_OML_FAIL].current,
3710 net->bsc_ctrs->ctr[BSC_CTR_BTS_RSL_FAIL].current,
Alexander Couzens20423ea2016-07-12 15:42:02 +02003711 VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003712}
3713
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003714DEFUN(drop_bts,
3715 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003716 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003717 "Debug/Simulation command to drop Abis/IP BTS\n"
3718 "Debug/Simulation command to drop Abis/IP BTS\n"
3719 "Debug/Simulation command to drop Abis/IP BTS\n"
3720 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003721{
3722 struct gsm_network *gsmnet;
3723 struct gsm_bts_trx *trx;
3724 struct gsm_bts *bts;
3725 unsigned int bts_nr;
3726
3727 gsmnet = gsmnet_from_vty(vty);
3728
3729 bts_nr = atoi(argv[0]);
3730 if (bts_nr >= gsmnet->num_bts) {
3731 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3732 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3733 return CMD_WARNING;
3734 }
3735
3736 bts = gsm_bts_num(gsmnet, bts_nr);
3737 if (!bts) {
3738 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3739 return CMD_WARNING;
3740 }
3741
3742 if (!is_ipaccess_bts(bts)) {
3743 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3744 return CMD_WARNING;
3745 }
3746
3747
3748 /* close all connections */
3749 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003750 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003751 } else if (strcmp(argv[1], "rsl") == 0) {
3752 /* close all rsl connections */
3753 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003754 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003755 }
3756 } else {
3757 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3758 return CMD_WARNING;
3759 }
3760
3761 return CMD_SUCCESS;
3762}
3763
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01003764DEFUN(restart_bts, restart_bts_cmd,
3765 "restart-bts <0-65535>",
3766 "Restart ip.access nanoBTS through OML\n"
3767 "BTS Number\n")
3768{
3769 struct gsm_network *gsmnet;
3770 struct gsm_bts_trx *trx;
3771 struct gsm_bts *bts;
3772 unsigned int bts_nr;
3773
3774 gsmnet = gsmnet_from_vty(vty);
3775
3776 bts_nr = atoi(argv[0]);
3777 if (bts_nr >= gsmnet->num_bts) {
3778 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3779 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3780 return CMD_WARNING;
3781 }
3782
3783 bts = gsm_bts_num(gsmnet, bts_nr);
3784 if (!bts) {
3785 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3786 return CMD_WARNING;
3787 }
3788
3789 if (!is_ipaccess_bts(bts) || is_sysmobts_v2(bts)) {
3790 vty_out(vty, "This command only works for ipaccess nanoBTS.%s",
3791 VTY_NEWLINE);
3792 return CMD_WARNING;
3793 }
3794
3795 /* go from last TRX to c0 */
3796 llist_for_each_entry_reverse(trx, &bts->trx_list, list)
3797 abis_nm_ipaccess_restart(trx);
3798
3799 return CMD_SUCCESS;
3800}
3801
Harald Welte30f1f372014-12-28 15:00:45 +01003802DEFUN(smscb_cmd, smscb_cmd_cmd,
3803 "bts <0-255> smscb-command <1-4> HEXSTRING",
3804 "BTS related commands\n" "BTS Number\n"
3805 "SMS Cell Broadcast\n" "Last Valid Block\n"
3806 "Hex Encoded SMSCB message (up to 88 octets)\n")
3807{
3808 struct gsm_bts *bts;
3809 int bts_nr = atoi(argv[0]);
3810 int last_block = atoi(argv[1]);
3811 struct rsl_ie_cb_cmd_type cb_cmd;
3812 uint8_t buf[88];
3813 int rc;
3814
Neels Hofmeyrb90eabf2016-05-11 18:48:39 +02003815 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
Harald Welte30f1f372014-12-28 15:00:45 +01003816 if (!bts) {
3817 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3818 return CMD_WARNING;
3819 }
3820 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3821 if (rc < 0 || rc > sizeof(buf)) {
3822 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3823 return CMD_WARNING;
3824 }
3825
3826 cb_cmd.spare = 0;
3827 cb_cmd.def_bcast = 0;
3828 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3829
3830 switch (last_block) {
3831 case 1:
3832 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3833 break;
3834 case 2:
3835 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3836 break;
3837 case 3:
3838 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3839 break;
3840 case 4:
3841 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3842 break;
3843 }
3844
3845 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3846
3847 return CMD_SUCCESS;
3848}
3849
3850
Harald Welted0d2b0b2010-12-23 13:18:07 +01003851DEFUN(pdch_act, pdch_act_cmd,
3852 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3853 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3854 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3855 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3856 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3857{
3858 struct gsm_bts *bts;
3859 struct gsm_bts_trx *trx;
3860 struct gsm_bts_trx_ts *ts;
3861 int bts_nr = atoi(argv[0]);
3862 int trx_nr = atoi(argv[1]);
3863 int ts_nr = atoi(argv[2]);
3864 int activate;
3865
Neels Hofmeyrb90eabf2016-05-11 18:48:39 +02003866 bts = gsm_bts_num(gsmnet_from_vty(vty), bts_nr);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003867 if (!bts) {
3868 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3869 return CMD_WARNING;
3870 }
3871
3872 if (!is_ipaccess_bts(bts)) {
3873 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3874 VTY_NEWLINE);
3875 return CMD_WARNING;
3876 }
3877
3878 trx = gsm_bts_trx_num(bts, trx_nr);
3879 if (!trx) {
3880 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3881 return CMD_WARNING;
3882 }
3883
3884 ts = &trx->ts[ts_nr];
3885 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3886 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3887 "mode%s", ts_nr, VTY_NEWLINE);
3888 return CMD_WARNING;
3889 }
3890
3891 if (!strcmp(argv[3], "activate"))
3892 activate = 1;
3893 else
3894 activate = 0;
3895
3896 rsl_ipacc_pdch_activate(ts, activate);
3897
3898 return CMD_SUCCESS;
3899
3900}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003901
Harald Weltedcccb182010-05-16 20:52:23 +02003902extern int bsc_vty_init_extra(void);
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02003903
Maxdb0e3802017-01-12 19:35:11 +01003904int bsc_vty_init(struct gsm_network *network)
Harald Welte68628e82009-03-10 12:17:57 +00003905{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003906 cfg_ts_pchan_cmd.string =
3907 vty_cmd_string_from_valstr(tall_bsc_ctx,
3908 gsm_pchant_names,
3909 "phys_chan_config (", "|", ")",
3910 VTY_DO_LOWER);
3911 cfg_ts_pchan_cmd.doc =
3912 vty_cmd_string_from_valstr(tall_bsc_ctx,
3913 gsm_pchant_descs,
3914 "Physical Channel Combination\n",
3915 "\n", "", 0);
3916
Harald Weltee555c2b2012-08-17 13:02:12 +02003917 cfg_bts_type_cmd.string =
3918 vty_cmd_string_from_valstr(tall_bsc_ctx,
3919 bts_type_names,
3920 "type (", "|", ")",
3921 VTY_DO_LOWER);
3922 cfg_bts_type_cmd.doc =
3923 vty_cmd_string_from_valstr(tall_bsc_ctx,
3924 bts_type_descs,
3925 "BTS Vendor/Type\n",
3926 "\n", "", 0);
3927
Neels Hofmeyr06d39fd2016-05-12 01:16:58 +02003928 common_cs_vty_init(network, config_write_net);
Harald Weltee555c2b2012-08-17 13:02:12 +02003929
Neels Hofmeyrea11bf82016-05-12 01:53:23 +02003930 install_element_ve(&bsc_show_net_cmd);
Harald Welteb4d5b172010-05-12 16:10:35 +00003931 install_element_ve(&show_bts_cmd);
3932 install_element_ve(&show_trx_cmd);
3933 install_element_ve(&show_ts_cmd);
3934 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08003935 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00003936
Harald Welteb4d5b172010-05-12 16:10:35 +00003937 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01003938 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003939
Maxdb0e3802017-01-12 19:35:11 +01003940 logging_vty_add_cmds(NULL);
Jacob Erlbeck64630cc2015-10-26 16:25:37 +01003941 osmo_stats_vty_add_cmds();
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01003942
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01003943 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01003944 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01003945 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3946 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3947 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3948 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3949 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3950 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01003951 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003952 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3953 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3954 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3955 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3956 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3957 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3958 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3959 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3960 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01003961 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003962 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08003963 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08003964 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003965
3966 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02003967 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003968 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003969 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003970 install_element(BTS_NODE, &cfg_description_cmd);
3971 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02003972 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02003973 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Maxc08ee712016-05-11 12:45:13 +02003974 install_element(BTS_NODE, &cfg_bts_dtxu_cmd);
3975 install_element(BTS_NODE, &cfg_bts_dtxd_cmd);
3976 install_element(BTS_NODE, &cfg_bts_no_dtxu_cmd);
3977 install_element(BTS_NODE, &cfg_bts_no_dtxd_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003978 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3979 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003980 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00003981 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01003982 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02003983 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01003984 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01003985 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02003986 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003987 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3988 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02003989 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01003990 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3991 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02003992 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3993 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3994 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08003995 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3996 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02003997 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08003998 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04003999 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02004000 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02004001 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02004002 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01004003 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
4004 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01004005 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
4006 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
4007 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
4008 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
4009 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
4010 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01004011 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02004012 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
bhargava350533c2016-07-21 11:14:34 +05304013 install_element(BTS_NODE, &cfg_bts_gprs_11bit_rach_support_for_egprs_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004014 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004015 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01004016 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Max292ec582016-07-28 11:55:37 +02004017 install_element(BTS_NODE, &cfg_bts_gprs_ctrl_ack_cmd);
4018 install_element(BTS_NODE, &cfg_no_bts_gprs_ctrl_ack_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004019 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02004020 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08004021 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08004022 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08004023 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
4024 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
4025 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08004026 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02004027 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
4028 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte42def722017-01-13 00:10:32 +01004029 install_element(BTS_NODE, &cfg_bts_early_cm_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01004030 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
4031 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01004032 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Max59a1bf32016-04-15 16:04:46 +02004033 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_add_cmd);
4034 install_element(BTS_NODE, &cfg_bts_si2quater_neigh_del_cmd);
Max26679e02016-04-20 15:57:13 +02004035 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_add_cmd);
4036 install_element(BTS_NODE, &cfg_bts_si2quater_uarfcn_del_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02004037 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
4038 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01004039 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
4040 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01004041 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
4042 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
4043 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
4044 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
4045 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01004046 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
4047 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversberg73266522014-01-19 11:47:44 +01004048 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
4049 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
4050 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
4051 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
4052 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
4053 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
4054 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
4055 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
4056 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
4057 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
4058 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
4059 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
4060 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
4061 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
4062 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
4063 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
4064 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
4065 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
4066 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
4067 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
4068 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
4069 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004070
Harald Welte5258fc42009-03-28 19:07:53 +00004071 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004072 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004073 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00004074 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02004075 install_element(TRX_NODE, &cfg_description_cmd);
4076 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01004077 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02004078 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02004079 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
4080 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01004081 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004082
Harald Welte5258fc42009-03-28 19:07:53 +00004083 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004084 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01004085 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004086 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02004087 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02004088 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02004089 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02004090 install_element(TS_NODE, &cfg_ts_hsn_cmd);
4091 install_element(TS_NODE, &cfg_ts_maio_cmd);
4092 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
4093 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02004094 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00004095
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004096 install_element(ENABLE_NODE, &drop_bts_cmd);
Holger Hans Peter Freyther740e65f2016-03-16 13:45:23 +01004097 install_element(ENABLE_NODE, &restart_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01004098 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01004099 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02004100
Harald Welte81c9b9c2010-05-31 16:40:40 +02004101 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01004102 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01004103 e1inp_vty_init();
Harald Welte42def722017-01-13 00:10:32 +01004104 osmo_fsm_vty_add_cmds();
Harald Welte81c9b9c2010-05-31 16:40:40 +02004105
Harald Weltedcccb182010-05-16 20:52:23 +02004106 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00004107
Harald Welte68628e82009-03-10 12:17:57 +00004108 return 0;
4109}