blob: d401b08470ec58154c6e699575a2bc2b0b9447da [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-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 Welte59b04682009-06-10 05:40:52 +08008 * (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 Welte0e3e88e2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080014 *
Harald Welte0e3e88e2011-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 Welte59b04682009-06-10 05:40:52 +080017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080022
Harald Weltebd9591f2010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
Jacob Erlbeck63fac682015-10-26 16:25:37 +010027#include <osmocom/vty/stats.h>
Harald Weltebd9591f2010-05-19 19:45:32 +020028#include <osmocom/vty/telnet_interface.h>
Harald Welte2addf852012-08-17 12:42:06 +020029#include <osmocom/vty/misc.h>
Harald Welte59b04682009-06-10 05:40:52 +080030
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +010031#include <osmocom/gsm/gsm0502.h>
32
Harald Welte59b04682009-06-10 05:40:52 +080033#include <arpa/inet.h>
34
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010035#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080036#include <openbsc/gsm_data.h>
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +020037#include <osmocom/abis/e1_input.h>
Harald Welte59b04682009-06-10 05:40:52 +080038#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010039#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010040#include <osmocom/core/utils.h>
41#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020042#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010043#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010044#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080045#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010046#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020047#include <openbsc/vty.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080048#include <osmocom/gprs/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020049#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020050#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010051#include <openbsc/paging.h>
Harald Welte64fcd772011-08-20 18:25:02 +020052#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010053#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010054#include <openbsc/osmo_msc_data.h>
55#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080056
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +010057#include <inttypes.h>
58
Harald Welted9dea592011-03-04 13:53:51 +010059#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020060
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +020061
62#define NETWORK_STR "Configure the GSM network\n"
63#define CODE_CMD_STR "Code commands\n"
64#define NAME_CMD_STR "Name Commands\n"
65#define NAME_STR "Name to use\n"
66#define LCHAN_NR_STR "Logical Channel Number\n"
67
68
Harald Welted6b62e32010-05-12 17:19:53 +000069/* FIXME: this should go to some common file */
70static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020071 { 0, "tns-block" },
72 { 1, "tns-block-retries" },
73 { 2, "tns-reset" },
74 { 3, "tns-reset-retries" },
75 { 4, "tns-test" },
76 { 5, "tns-alive" },
77 { 6, "tns-alive-retries" },
78 { 0, NULL }
79};
80
Harald Welted6b62e32010-05-12 17:19:53 +000081static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020082 { 0, "blocking-timer" },
83 { 1, "blocking-retries" },
84 { 2, "unblocking-retries" },
85 { 3, "reset-timer" },
86 { 4, "reset-retries" },
87 { 5, "suspend-timer" },
88 { 6, "suspend-retries" },
89 { 7, "resume-timer" },
90 { 8, "resume-retries" },
91 { 9, "capability-update-timer" },
92 { 10, "capability-update-retries" },
93 { 0, NULL }
94};
95
Harald Weltef989b782011-02-15 11:43:27 +010096static const struct value_string bts_neigh_mode_strs[] = {
97 { NL_MODE_AUTOMATIC, "automatic" },
98 { NL_MODE_MANUAL, "manual" },
99 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
100 { 0, NULL }
101};
102
Daniel Willmann2c9540c2012-05-14 18:43:23 +0200103const struct value_string bts_loc_fix_names[] = {
104 { BTS_LOC_FIX_INVALID, "invalid" },
105 { BTS_LOC_FIX_2D, "fix2d" },
106 { BTS_LOC_FIX_3D, "fix3d" },
107 { 0, NULL }
108};
109
Harald Weltee87eb462009-08-07 13:29:14 +0200110struct cmd_node net_node = {
111 GSMNET_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200112 "%s(config-net)# ",
Harald Weltee87eb462009-08-07 13:29:14 +0200113 1,
114};
115
Harald Welte59b04682009-06-10 05:40:52 +0800116struct cmd_node bts_node = {
117 BTS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200118 "%s(config-net-bts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800119 1,
120};
121
122struct cmd_node trx_node = {
123 TRX_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200124 "%s(config-net-bts-trx)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800125 1,
126};
127
128struct cmd_node ts_node = {
129 TS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200130 "%s(config-net-bts-trx-ts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800131 1,
132};
133
Harald Welte61daf6d2010-05-27 13:39:40 +0200134extern struct gsm_network *bsc_gsmnet;
135
Harald Welte40152872010-05-16 20:52:23 +0200136struct gsm_network *gsmnet_from_vty(struct vty *v)
137{
Harald Welte61daf6d2010-05-27 13:39:40 +0200138 /* In case we read from the config file, the vty->priv cannot
139 * point to a struct telnet_connection, and thus conn->priv
140 * will not point to the gsm_network structure */
141#if 0
Harald Welte40152872010-05-16 20:52:23 +0200142 struct telnet_connection *conn = v->priv;
143 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200144#else
145 return bsc_gsmnet;
146#endif
Harald Welte40152872010-05-16 20:52:23 +0200147}
148
Harald Welte59b04682009-06-10 05:40:52 +0800149static int dummy_config_write(struct vty *v)
150{
151 return CMD_SUCCESS;
152}
153
154static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
155{
Harald Weltee7b751c2013-03-15 16:57:33 +0100156 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
157 abis_nm_opstate_name(nms->operational),
158 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte306a8892011-05-23 20:30:39 +0200159 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800160}
161
Harald Weltefe96f382009-12-22 13:09:29 +0100162static void dump_pchan_load_vty(struct vty *vty, char *prefix,
163 const struct pchan_load *pl)
164{
165 int i;
166
167 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
168 const struct load_counter *lc = &pl->pchan[i];
169 unsigned int percent;
170
171 if (lc->total == 0)
172 continue;
173
174 percent = (lc->used * 100) / lc->total;
175
176 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
177 gsm_pchan_name(i), percent, lc->used, lc->total,
178 VTY_NEWLINE);
179 }
180}
181
Harald Welte59b04682009-06-10 05:40:52 +0800182static void net_dump_vty(struct vty *vty, struct gsm_network *net)
183{
Harald Weltefe96f382009-12-22 13:09:29 +0100184 struct pchan_load pl;
185
Harald Welte59b04682009-06-10 05:40:52 +0800186 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
187 "and has %u BTS%s", net->country_code, net->network_code,
188 net->num_bts, VTY_NEWLINE);
189 vty_out(vty, " Long network name: '%s'%s",
190 net->name_long, VTY_NEWLINE);
191 vty_out(vty, " Short network name: '%s'%s",
192 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200193 vty_out(vty, " Authentication policy: %s%s",
194 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100195 vty_out(vty, " Location updating reject cause: %u%s",
196 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900197 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
198 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100199 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
200 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800201 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
202 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100203 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
204 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100205 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
206 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100207 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
208 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100209 network_chan_load(&pl, net);
210 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
211 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100212
213 /* show rf */
Holger Hans Peter Freytherab25ee42014-02-08 12:12:03 +0100214 if (net->bsc_data)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100215 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200216 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100217 VTY_NEWLINE);
Holger Hans Peter Freytherab25ee42014-02-08 12:12:03 +0100218 if (net->bsc_data)
Jacob Erlbeckdcce8e82013-09-11 10:46:57 +0200219 vty_out(vty, " Last RF Lock Command: %s%s",
220 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
221 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800222}
223
224DEFUN(show_net, show_net_cmd, "show network",
225 SHOW_STR "Display information about a GSM NETWORK\n")
226{
Harald Welte40152872010-05-16 20:52:23 +0200227 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800228 net_dump_vty(vty, net);
229
230 return CMD_SUCCESS;
231}
232
233static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
234{
235 struct e1inp_line *line;
236
237 if (!e1l) {
238 vty_out(vty, " None%s", VTY_NEWLINE);
239 return;
240 }
241
242 line = e1l->ts->line;
243
244 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
245 line->num, line->driver->name, e1l->ts->num,
246 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
247 vty_out(vty, " E1 TEI %u, SAPI %u%s",
248 e1l->tei, e1l->sapi, VTY_NEWLINE);
249}
250
251static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
252{
Harald Weltefe96f382009-12-22 13:09:29 +0100253 struct pchan_load pl;
254
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200255 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte4d4a2a22015-11-20 10:50:24 +0100256 "BSIC %u (NCC=%u, BCC=%u) and %u TRX%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200257 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200258 bts->cell_identity,
Harald Welte7bb55f32015-11-20 10:43:31 +0100259 bts->location_area_code, bts->bsic,
Harald Welte4d4a2a22015-11-20 10:50:24 +0100260 bts->bsic >> 3, bts->bsic & 7,
Harald Welte91afe4c2009-06-20 18:15:19 +0200261 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200262 vty_out(vty, "Description: %s%s",
263 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100264 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100265 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100266 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
267 VTY_NEWLINE);
268 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100269 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100270 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
271 VTY_NEWLINE);
272 vty_out(vty, "RACH Max transmissions: %u%s",
273 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
274 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100275 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200276 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200277 vty_out(vty, "Channel Description Attachment: %s%s",
278 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
279 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
280 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
281 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
282 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200283 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
284 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800285 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200286 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800287 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200288 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200289 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
290 vty_out(vty, " Skip Reset: %d%s",
291 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800292 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200293 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800294 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200295 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther03d80af2013-05-29 16:22:09 +0200296 vty_out(vty, " GPRS NSE: ");
297 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
298 vty_out(vty, " GPRS CELL: ");
299 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
300 vty_out(vty, " GPRS NSVC0: ");
301 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
302 vty_out(vty, " GPRS NSVC1: ");
303 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200304 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
305 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800306 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100307 if (is_ipaccess_bts(bts)) {
308 vty_out(vty, " OML Link state: %s.%s",
309 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
310 } else {
Harald Welte25572872009-10-20 00:22:00 +0200311 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
312 e1isl_dump_vty(vty, bts->oml_link);
313 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100314
315 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100316 memset(&pl, 0, sizeof(pl));
317 bts_chan_load(&pl, bts);
318 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
319 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800320}
321
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100322DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800323 SHOW_STR "Display information about a BTS\n"
324 "BTS number")
325{
Harald Welte40152872010-05-16 20:52:23 +0200326 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800327 int bts_nr;
328
329 if (argc != 0) {
330 /* use the BTS number that the user has specified */
331 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100332 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800333 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
334 VTY_NEWLINE);
335 return CMD_WARNING;
336 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200337 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800338 return CMD_SUCCESS;
339 }
340 /* print all BTS's */
341 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200342 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800343
344 return CMD_SUCCESS;
345}
346
Harald Welte62868882009-08-08 16:12:58 +0200347/* utility functions */
348static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
349 const char *ts, const char *ss)
350{
351 e1_link->e1_nr = atoi(line);
352 e1_link->e1_ts = atoi(ts);
353 if (!strcmp(ss, "full"))
354 e1_link->e1_ts_ss = 255;
355 else
356 e1_link->e1_ts_ss = atoi(ss);
357}
358
359static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
360 const char *prefix)
361{
362 if (!e1_link->e1_ts)
363 return;
364
365 if (e1_link->e1_ts_ss == 255)
366 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
367 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
368 else
369 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
370 prefix, e1_link->e1_nr, e1_link->e1_ts,
371 e1_link->e1_ts_ss, VTY_NEWLINE);
372}
373
374
Harald Welte97ceef92009-08-06 19:06:46 +0200375static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
376{
Harald Welte62868882009-08-08 16:12:58 +0200377 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte7bb55f32015-11-20 10:43:31 +0100378 if (ts->tsc != -1)
Harald Welte85771a42011-05-30 12:09:13 +0200379 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200380 if (ts->pchan != GSM_PCHAN_NONE)
381 vty_out(vty, " phys_chan_config %s%s",
382 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200383 vty_out(vty, " hopping enabled %u%s",
384 ts->hopping.enabled, VTY_NEWLINE);
385 if (ts->hopping.enabled) {
386 unsigned int i;
387 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200388 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200389 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200390 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200391 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
392 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
393 continue;
394 vty_out(vty, " hopping arfcn add %u%s",
395 i, VTY_NEWLINE);
396 }
Harald Welteff598092010-12-24 12:07:07 +0100397 }
Harald Welte62868882009-08-08 16:12:58 +0200398 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100399
400 if (ts->trx->bts->model->config_write_ts)
401 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200402}
403
404static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
405{
406 int i;
407
Harald Weltee87eb462009-08-07 13:29:14 +0200408 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200409 if (trx->description)
410 vty_out(vty, " description %s%s", trx->description,
411 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200412 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200413 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200414 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200415 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100416 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200417 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200418 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
419 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200420
Harald Weltec02789e2011-02-14 16:15:21 +0100421 if (trx->bts->model->config_write_trx)
422 trx->bts->model->config_write_trx(vty, trx);
423
Harald Welte97ceef92009-08-06 19:06:46 +0200424 for (i = 0; i < TRX_NR_TS; i++)
425 config_write_ts_single(vty, &trx->ts[i]);
426}
427
Harald Weltea9251762010-05-11 23:50:21 +0200428static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
429{
430 unsigned int i;
431 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
432 VTY_NEWLINE);
433 if (bts->gprs.mode == BTS_GPRS_NONE)
434 return;
435
436 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
437 VTY_NEWLINE);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +0100438 vty_out(vty, " gprs network-control-order nc%u%s",
439 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Weltea9251762010-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 Freyther38c56672013-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 Welte97ceef92009-08-06 19:06:46 +0200471{
472 struct gsm_bts_trx *trx;
Holger Hans Peter Freyther38c56672013-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 Freyther8083cc92015-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 Eversbergfa163e82014-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 Freyther8083cc92015-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 Eversbergfa163e82014-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 Freyther38c56672013-09-15 17:23:34 +0200541static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
542{
Harald Welted8acf142010-07-30 11:50:09 +0200543 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200544
Harald Weltee87eb462009-08-07 13:29:14 +0200545 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
546 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200547 if (bts->description)
548 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200549 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100550 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200551 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200552 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200553 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +0200554 if (bts->tz.override != 0) {
555 if (bts->tz.dst)
556 vty_out(vty, " timezone %d %d %d%s",
557 bts->tz.hr, bts->tz.mn, bts->tz.dst, VTY_NEWLINE);
558 else
559 vty_out(vty, " timezone %d %d%s",
560 bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
561 }
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200562 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100563 vty_out(vty, " cell reselection hysteresis %u%s",
564 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
565 vty_out(vty, " rxlev access min %u%s",
566 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100567
568 if (bts->si_common.cell_ro_sel_par.present) {
569 struct gsm48_si_selection_params *sp;
570 sp = &bts->si_common.cell_ro_sel_par;
571
572 if (sp->cbq)
573 vty_out(vty, " cell bar qualify %u%s",
574 sp->cbq, VTY_NEWLINE);
575
576 if (sp->cell_resel_off)
577 vty_out(vty, " cell reselection offset %u%s",
578 sp->cell_resel_off*2, VTY_NEWLINE);
579
580 if (sp->temp_offs == 7)
581 vty_out(vty, " temporary offset infinite%s",
582 VTY_NEWLINE);
583 else if (sp->temp_offs)
584 vty_out(vty, " temporary offset %u%s",
585 sp->temp_offs*10, VTY_NEWLINE);
586
587 if (sp->penalty_time == 31)
588 vty_out(vty, " penalty time reserved%s",
589 VTY_NEWLINE);
590 else if (sp->penalty_time)
591 vty_out(vty, " penalty time %u%s",
592 (sp->penalty_time*20)+20, VTY_NEWLINE);
593 }
594
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +0200595 /* Is periodic LU enabled or disabled? */
596 if (bts->si_common.chan_desc.t3212 == 0)
597 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
598 else
599 vty_out(vty, " periodic location update %u%s",
600 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
601
Andreas Eversbergf9248d92013-03-10 11:49:35 +0100602 vty_out(vty, " radio-link-timeout %d%s",
603 get_radio_link_timeout(&bts->si_common.cell_options),
604 VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200605 vty_out(vty, " channel allocator %s%s",
606 bts->chan_alloc_reverse ? "descending" : "ascending",
607 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100608 vty_out(vty, " rach tx integer %u%s",
609 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
610 vty_out(vty, " rach max transmission %u%s",
611 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
612 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800613
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200614 vty_out(vty, " channel-descrption attach %u%s",
615 bts->si_common.chan_desc.att, VTY_NEWLINE);
616 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
617 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
618 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
619 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
620
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800621 if (bts->rach_b_thresh != -1)
622 vty_out(vty, " rach nm busy threshold %u%s",
623 bts->rach_b_thresh, VTY_NEWLINE);
624 if (bts->rach_ldavg_slots != -1)
625 vty_out(vty, " rach nm load average %u%s",
626 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100627 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200628 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800629 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
630 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov80d58432013-09-16 13:13:04 +0400631 if ((bts->si_common.rach_control.t3) != 0)
632 for (i = 0; i < 8; i++)
633 if (bts->si_common.rach_control.t3 & (0x1 << i))
634 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
635 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
636 for (i = 0; i < 8; i++)
637 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
638 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200639 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
640 if (bts->si_mode_static & (1 << i)) {
641 vty_out(vty, " system-information %s mode static%s",
642 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
643 vty_out(vty, " system-information %s static %s%s",
644 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100645 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200646 VTY_NEWLINE);
647 }
648 }
Harald Welte08011e22011-03-04 13:41:31 +0100649 switch (bts->type) {
650 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200651 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200652 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200653 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-03-12 13:57:05 +0100654 if (bts->ip_access.rsl_ip) {
655 struct in_addr ia;
656 ia.s_addr = htonl(bts->ip_access.rsl_ip);
657 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
658 VTY_NEWLINE);
659 }
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200660 vty_out(vty, " oml ip.access stream_id %u line %u%s",
661 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100662 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200663 case GSM_BTS_TYPE_NOKIA_SITE:
664 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversbergac27b952013-12-05 13:25:06 +0100665 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
666 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csabadef87b42015-02-07 13:27:36 +0100667 vty_out(vty, " nokia_site bts-reset-timer %d%s", bts->nokia.bts_reset_timer_cnf, VTY_NEWLINE);
Andreas Eversbergc3daa0f2013-12-05 16:02:37 +0100668 /* fall through: Nokia requires "oml e1" parameters also */
Harald Welte08011e22011-03-04 13:41:31 +0100669 default:
Harald Welte62868882009-08-08 16:12:58 +0200670 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
671 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100672 break;
Harald Welte62868882009-08-08 16:12:58 +0200673 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800674
675 /* if we have a limit, write it */
676 if (bts->paging.free_chans_need >= 0)
677 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
678
Harald Welteca46eff2011-01-11 23:44:56 +0100679 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100680 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
681 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100682 for (i = 0; i < 1024; i++) {
683 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
684 vty_out(vty, " neighbor-list add arfcn %u%s",
685 i, VTY_NEWLINE);
686 }
687 }
Harald Weltef989b782011-02-15 11:43:27 +0100688 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
689 for (i = 0; i < 1024; i++) {
690 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
691 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
692 i, VTY_NEWLINE);
693 }
694 }
Harald Welteca46eff2011-01-11 23:44:56 +0100695
Andreas Eversberg976493b2013-12-07 18:32:28 +0100696 vty_out(vty, " codec-support fr");
697 if (bts->codec.hr)
698 vty_out(vty, " hr");
699 if (bts->codec.efr)
700 vty_out(vty, " efr");
701 if (bts->codec.amr)
702 vty_out(vty, " amr");
703 vty_out(vty, "%s", VTY_NEWLINE);
704
Andreas Eversbergfa163e82014-01-19 11:47:44 +0100705 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
706 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
707
Harald Weltea9251762010-05-11 23:50:21 +0200708 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200709
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200710 if (bts->excl_from_rf_lock)
711 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
712
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +0100713 vty_out(vty, " %sforce-combined-si%s",
714 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
715
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +0100716 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
717 int j;
718
719 if (bts->depends_on[i] == 0)
720 continue;
721
722 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
723 int bts_nr;
724
725 if ((bts->depends_on[i] & (1<<j)) == 0)
726 continue;
727
728 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
729 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
730 }
731 }
732
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200733 config_write_bts_model(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200734}
735
736static int config_write_bts(struct vty *v)
737{
Harald Welte40152872010-05-16 20:52:23 +0200738 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200739 struct gsm_bts *bts;
740
741 llist_for_each_entry(bts, &gsmnet->bts_list, list)
742 config_write_bts_single(v, bts);
743
744 return CMD_SUCCESS;
745}
746
Harald Weltee87eb462009-08-07 13:29:14 +0200747static int config_write_net(struct vty *vty)
748{
Harald Welte40152872010-05-16 20:52:23 +0200749 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
750
Harald Weltee87eb462009-08-07 13:29:14 +0200751 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200752 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200753 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200754 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
755 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200756 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100757 vty_out(vty, " location updating reject cause %u%s",
758 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900759 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100760 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800761 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100762 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
763 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100764 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100765 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100766 vty_out(vty, " handover window rxlev averaging %u%s",
767 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
768 vty_out(vty, " handover window rxqual averaging %u%s",
769 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
770 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
771 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
772 vty_out(vty, " handover power budget interval %u%s",
773 gsmnet->handover.pwr_interval, VTY_NEWLINE);
774 vty_out(vty, " handover power budget hysteresis %u%s",
775 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
776 vty_out(vty, " handover maximum distance %u%s",
777 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100778 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100779 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
780 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
781 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
782 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
783 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
784 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
785 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
786 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
787 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100788 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100789 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100790 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100791 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeckda8770b2014-12-03 09:28:24 +0100792 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200793
794 return CMD_SUCCESS;
795}
Harald Welte97ceef92009-08-06 19:06:46 +0200796
Harald Welte59b04682009-06-10 05:40:52 +0800797static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
798{
799 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
800 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200801 vty_out(vty, "Description: %s%s",
802 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200803 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200804 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200805 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200806 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800807 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200808 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800809 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200810 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200811 if (is_ipaccess_bts(trx->bts)) {
812 vty_out(vty, " ip.access stream ID: 0x%02x%s",
813 trx->rsl_tei, VTY_NEWLINE);
814 } else {
815 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
816 e1isl_dump_vty(vty, trx->rsl_link);
817 }
Harald Welte59b04682009-06-10 05:40:52 +0800818}
819
820DEFUN(show_trx,
821 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100822 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200823 SHOW_STR "Display information about a TRX\n"
824 "BTS Number\n"
825 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800826{
Harald Welte40152872010-05-16 20:52:23 +0200827 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800828 struct gsm_bts *bts = NULL;
829 struct gsm_bts_trx *trx;
830 int bts_nr, trx_nr;
831
832 if (argc >= 1) {
833 /* use the BTS number that the user has specified */
834 bts_nr = atoi(argv[0]);
835 if (bts_nr >= net->num_bts) {
836 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
837 VTY_NEWLINE);
838 return CMD_WARNING;
839 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200840 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800841 }
842 if (argc >= 2) {
843 trx_nr = atoi(argv[1]);
844 if (trx_nr >= bts->num_trx) {
845 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
846 VTY_NEWLINE);
847 return CMD_WARNING;
848 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200849 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800850 trx_dump_vty(vty, trx);
851 return CMD_SUCCESS;
852 }
853 if (bts) {
854 /* print all TRX in this BTS */
855 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200856 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800857 trx_dump_vty(vty, trx);
858 }
859 return CMD_SUCCESS;
860 }
861
862 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200863 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800864 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200865 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800866 trx_dump_vty(vty, trx);
867 }
868 }
869
870 return CMD_SUCCESS;
871}
872
Harald Welte97ceef92009-08-06 19:06:46 +0200873
Harald Welte59b04682009-06-10 05:40:52 +0800874static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
875{
Harald Welte85771a42011-05-30 12:09:13 +0200876 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100877 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte025e6c92014-01-19 17:18:21 +0100878 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Welte98d2bb82010-12-24 12:14:52 +0100879 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100880 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100881 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
882 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800883 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200884 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530885 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800886 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
887 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
888 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800889}
890
891DEFUN(show_ts,
892 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100893 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200894 SHOW_STR "Display information about a TS\n"
895 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800896{
Harald Welte40152872010-05-16 20:52:23 +0200897 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100898 struct gsm_bts *bts = NULL;
899 struct gsm_bts_trx *trx = NULL;
900 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800901 int bts_nr, trx_nr, ts_nr;
902
903 if (argc >= 1) {
904 /* use the BTS number that the user has specified */
905 bts_nr = atoi(argv[0]);
906 if (bts_nr >= net->num_bts) {
907 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
908 VTY_NEWLINE);
909 return CMD_WARNING;
910 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200911 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800912 }
913 if (argc >= 2) {
914 trx_nr = atoi(argv[1]);
915 if (trx_nr >= bts->num_trx) {
916 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
917 VTY_NEWLINE);
918 return CMD_WARNING;
919 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200920 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800921 }
922 if (argc >= 3) {
923 ts_nr = atoi(argv[2]);
924 if (ts_nr >= TRX_NR_TS) {
925 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
926 VTY_NEWLINE);
927 return CMD_WARNING;
928 }
Harald Welte06868382010-12-24 12:05:03 +0100929 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800930 ts = &trx->ts[ts_nr];
931 ts_dump_vty(vty, ts);
932 return CMD_SUCCESS;
933 }
Harald Welte06868382010-12-24 12:05:03 +0100934
935 if (bts && trx) {
936 /* Iterate over all TS in this TRX */
937 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
938 ts = &trx->ts[ts_nr];
939 ts_dump_vty(vty, ts);
940 }
941 } else if (bts) {
942 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800943 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200944 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800945 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
946 ts = &trx->ts[ts_nr];
947 ts_dump_vty(vty, ts);
948 }
949 }
Harald Welte06868382010-12-24 12:05:03 +0100950 } else {
951 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
952 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
953 bts = gsm_bts_num(net, bts_nr);
954 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
955 trx = gsm_bts_trx_num(bts, trx_nr);
956 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
957 ts = &trx->ts[ts_nr];
958 ts_dump_vty(vty, ts);
959 }
960 }
961 }
Harald Welte59b04682009-06-10 05:40:52 +0800962 }
963
964 return CMD_SUCCESS;
965}
966
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100967static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800968{
Harald Welte91afe4c2009-06-20 18:15:19 +0200969 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800970 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7d552fc2013-12-12 15:45:41 +0100971 if (strlen(subscr->name))
Harald Welte59b04682009-06-10 05:40:52 +0800972 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freyther4fcba8e2014-04-04 11:53:18 +0200973 if (strlen(subscr->extension))
Harald Welte59b04682009-06-10 05:40:52 +0800974 vty_out(vty, " Extension: %s%s", subscr->extension,
975 VTY_NEWLINE);
Holger Hans Peter Freytherb0be39b2013-07-14 08:38:24 +0200976 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200977 if (subscr->tmsi != GSM_RESERVED_TMSI)
978 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200979 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100980
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200981 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800982}
983
Harald Welte44007742009-12-22 21:43:14 +0100984static void meas_rep_dump_uni_vty(struct vty *vty,
985 struct gsm_meas_rep_unidir *mru,
986 const char *prefix,
987 const char *dir)
988{
989 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
990 prefix, dir, rxlev2dbm(mru->full.rx_lev),
991 dir, rxlev2dbm(mru->sub.rx_lev));
992 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
993 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
994 VTY_NEWLINE);
995}
996
997static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
998 const char *prefix)
999{
1000 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1001 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1002 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1003 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1004 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1005 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1006 VTY_NEWLINE);
1007 if (mr->flags & MEAS_REP_F_MS_TO)
1008 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
1009 mr->ms_timing_offset, VTY_NEWLINE);
1010 if (mr->flags & MEAS_REP_F_MS_L1)
1011 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1012 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1013 if (mr->flags & MEAS_REP_F_DL_VALID)
1014 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1015 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1016}
1017
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001018static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +08001019{
Harald Welte44007742009-12-22 21:43:14 +01001020 int idx;
1021
Harald Weltef62dad62010-12-24 12:22:34 +01001022 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1023 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1024 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther960adfe2014-12-28 12:08:28 +01001025 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +08001026 lchan->conn ? 1: 0,
Holger Hans Peter Freyther960adfe2014-12-28 12:08:28 +01001027 gsm_lchans_name(lchan->state),
1028 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1029 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1030 VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +01001031 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1032 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1033 - lchan->bs_power*2,
1034 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1035 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +08001036 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +08001037 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +08001038 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +08001039 } else
1040 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +05301041 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1042 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +02001043 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +05301044 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1045 inet_ntoa(ia), lchan->abis_ip.bound_port,
1046 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1047 VTY_NEWLINE);
1048 }
Harald Welte44007742009-12-22 21:43:14 +01001049
1050 /* we want to report the last measurement report */
1051 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1052 lchan->meas_rep_idx, 1);
1053 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +08001054}
1055
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001056static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1057{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +08001058 struct gsm_meas_rep *mr;
1059 int idx;
1060
1061 /* we want to report the last measurement report */
1062 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1063 lchan->meas_rep_idx, 1);
1064 mr = &lchan->meas_rep[idx];
1065
Harald Weltef62dad62010-12-24 12:22:34 +01001066 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
1067 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
1068 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +01001069 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +08001070 rxlev2dbm(mr->dl.full.rx_lev),
1071 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001072 VTY_NEWLINE);
1073}
1074
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001075
1076static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1077 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1078{
1079 int lchan_nr;
1080 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1081 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1082 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1083 continue;
1084 dump_cb(vty, lchan);
1085 }
1086
1087 return CMD_SUCCESS;
1088}
1089
1090static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1091 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1092{
1093 int ts_nr;
1094
1095 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1096 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1097 dump_lchan_trx_ts(ts, vty, dump_cb);
1098 }
1099
1100 return CMD_SUCCESS;
1101}
1102
1103static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1104 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1105{
1106 int trx_nr;
1107
1108 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1109 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1110 dump_lchan_trx(trx, vty, dump_cb);
1111 }
1112
1113 return CMD_SUCCESS;
1114}
1115
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001116static int lchan_summary(struct vty *vty, int argc, const char **argv,
1117 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +08001118{
Harald Welte40152872010-05-16 20:52:23 +02001119 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001120 struct gsm_bts *bts;
1121 struct gsm_bts_trx *trx;
1122 struct gsm_bts_trx_ts *ts;
1123 struct gsm_lchan *lchan;
1124 int bts_nr, trx_nr, ts_nr, lchan_nr;
1125
1126 if (argc >= 1) {
1127 /* use the BTS number that the user has specified */
1128 bts_nr = atoi(argv[0]);
1129 if (bts_nr >= net->num_bts) {
1130 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1131 VTY_NEWLINE);
1132 return CMD_WARNING;
1133 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001134 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001135
1136 if (argc == 1)
1137 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001138 }
1139 if (argc >= 2) {
1140 trx_nr = atoi(argv[1]);
1141 if (trx_nr >= bts->num_trx) {
1142 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1143 VTY_NEWLINE);
1144 return CMD_WARNING;
1145 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001146 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001147
1148 if (argc == 2)
1149 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001150 }
1151 if (argc >= 3) {
1152 ts_nr = atoi(argv[2]);
1153 if (ts_nr >= TRX_NR_TS) {
1154 vty_out(vty, "%% can't find TS %s%s", argv[2],
1155 VTY_NEWLINE);
1156 return CMD_WARNING;
1157 }
1158 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001159
1160 if (argc == 3)
1161 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001162 }
1163 if (argc >= 4) {
1164 lchan_nr = atoi(argv[3]);
1165 if (lchan_nr >= TS_MAX_LCHAN) {
1166 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1167 VTY_NEWLINE);
1168 return CMD_WARNING;
1169 }
1170 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001171 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001172 return CMD_SUCCESS;
1173 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001174
1175
Harald Welte59b04682009-06-10 05:40:52 +08001176 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001177 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001178 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001179 }
1180
1181 return CMD_SUCCESS;
1182}
1183
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001184
1185DEFUN(show_lchan,
1186 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001187 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001188 SHOW_STR "Display information about a logical channel\n"
1189 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001190 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001191
1192{
1193 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1194}
1195
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001196DEFUN(show_lchan_summary,
1197 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001198 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001199 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001200 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001201 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001202 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001203{
1204 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1205}
1206
Harald Welte59b04682009-06-10 05:40:52 +08001207static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1208{
1209 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1210 subscr_dump_vty(vty, pag->subscr);
1211}
1212
1213static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1214{
1215 struct gsm_paging_request *pag;
1216
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001217 if (!bts->paging.bts)
1218 return;
1219
Harald Welte59b04682009-06-10 05:40:52 +08001220 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1221 paging_dump_vty(vty, pag);
1222}
1223
1224DEFUN(show_paging,
1225 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001226 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001227 SHOW_STR "Display information about paging reuqests of a BTS\n"
1228 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001229{
Harald Welte40152872010-05-16 20:52:23 +02001230 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001231 struct gsm_bts *bts;
1232 int bts_nr;
1233
1234 if (argc >= 1) {
1235 /* use the BTS number that the user has specified */
1236 bts_nr = atoi(argv[0]);
1237 if (bts_nr >= net->num_bts) {
1238 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1239 VTY_NEWLINE);
1240 return CMD_WARNING;
1241 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001242 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001243 bts_paging_dump_vty(vty, bts);
1244
1245 return CMD_SUCCESS;
1246 }
1247 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001248 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001249 bts_paging_dump_vty(vty, bts);
1250 }
1251
1252 return CMD_SUCCESS;
1253}
1254
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01001255DEFUN(show_paging_group,
1256 show_paging_group_cmd,
1257 "show paging-group <0-255> IMSI",
1258 SHOW_STR "Display the paging group\n"
1259 "BTS Number\n" "IMSI\n")
1260{
1261 struct gsm_network *net = gsmnet_from_vty(vty);
1262 struct gsm_bts *bts;
1263 unsigned int page_group;
1264 int bts_nr = atoi(argv[0]);
1265
1266 if (bts_nr >= net->num_bts) {
1267 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1268 return CMD_WARNING;
1269 }
1270
1271 bts = gsm_bts_num(net, bts_nr);
1272 if (!bts) {
1273 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1274 return CMD_WARNING;
1275 }
1276
1277 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1278 str_to_imsi(argv[1]));
1279 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1280 str_to_imsi(argv[1]), bts->nr,
1281 page_group, VTY_NEWLINE);
1282 return CMD_SUCCESS;
1283}
1284
Harald Weltee87eb462009-08-07 13:29:14 +02001285DEFUN(cfg_net,
1286 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001287 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001288{
Harald Welte40152872010-05-16 20:52:23 +02001289 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001290 vty->node = GSMNET_NODE;
1291
1292 return CMD_SUCCESS;
1293}
1294
Harald Weltee87eb462009-08-07 13:29:14 +02001295DEFUN(cfg_net_ncc,
1296 cfg_net_ncc_cmd,
1297 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001298 "Set the GSM network country code\n"
1299 "Country commands\n"
1300 CODE_CMD_STR
1301 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001302{
Harald Welte40152872010-05-16 20:52:23 +02001303 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1304
Harald Weltee87eb462009-08-07 13:29:14 +02001305 gsmnet->country_code = atoi(argv[0]);
1306
1307 return CMD_SUCCESS;
1308}
1309
1310DEFUN(cfg_net_mnc,
1311 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001312 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001313 "Set the GSM mobile network code\n"
1314 "Network Commands\n"
1315 CODE_CMD_STR
1316 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001317{
Harald Welte40152872010-05-16 20:52:23 +02001318 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1319
Harald Weltee87eb462009-08-07 13:29:14 +02001320 gsmnet->network_code = atoi(argv[0]);
1321
1322 return CMD_SUCCESS;
1323}
1324
1325DEFUN(cfg_net_name_short,
1326 cfg_net_name_short_cmd,
1327 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001328 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001329{
Harald Welte40152872010-05-16 20:52:23 +02001330 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1331
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001332 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001333 return CMD_SUCCESS;
1334}
1335
1336DEFUN(cfg_net_name_long,
1337 cfg_net_name_long_cmd,
1338 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001339 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001340{
Harald Welte40152872010-05-16 20:52:23 +02001341 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1342
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001343 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001344 return CMD_SUCCESS;
1345}
Harald Welte59b04682009-06-10 05:40:52 +08001346
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001347DEFUN(cfg_net_auth_policy,
1348 cfg_net_auth_policy_cmd,
1349 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001350 "Authentication (not cryptographic)\n"
1351 "Set the GSM network authentication policy\n"
1352 "Require the MS to be activated in HLR\n"
1353 "Accept all MS, whether in HLR or not\n"
1354 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001355{
1356 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001357 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001358
1359 gsmnet->auth_policy = policy;
1360
1361 return CMD_SUCCESS;
1362}
1363
Harald Welte59936d72009-11-18 20:33:19 +01001364DEFUN(cfg_net_reject_cause,
1365 cfg_net_reject_cause_cmd,
1366 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001367 "Set the reject cause of location updating reject\n"
1368 "Set the reject cause of location updating reject\n"
1369 "Set the reject cause of location updating reject\n"
1370 "Set the reject cause of location updating reject\n"
1371 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001372{
Harald Welte40152872010-05-16 20:52:23 +02001373 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1374
Harald Welte59936d72009-11-18 20:33:19 +01001375 gsmnet->reject_cause = atoi(argv[0]);
1376
1377 return CMD_SUCCESS;
1378}
1379
Harald Weltecca253a2009-08-30 15:47:06 +09001380DEFUN(cfg_net_encryption,
1381 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001382 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001383 "Encryption options\n"
1384 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001385 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1386 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001387{
Harald Welte40152872010-05-16 20:52:23 +02001388 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1389
Andreas.Eversberg53293292009-11-17 09:55:26 +01001390 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001391
1392 return CMD_SUCCESS;
1393}
1394
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001395DEFUN(cfg_net_neci,
1396 cfg_net_neci_cmd,
1397 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001398 "New Establish Cause Indication\n"
1399 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001400{
Harald Welte40152872010-05-16 20:52:23 +02001401 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1402
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001403 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001404 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001405 return CMD_SUCCESS;
1406}
1407
Harald Welte52af1952009-12-13 10:53:12 +01001408DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1409 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001410 "Radio Resource Location Protocol\n"
1411 "Set the Radio Resource Location Protocol Mode\n"
1412 "Don't send RRLP request\n"
1413 "Request MS-based location\n"
1414 "Request any location, prefer MS-based\n"
1415 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001416{
Harald Welte40152872010-05-16 20:52:23 +02001417 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1418
Harald Welte52af1952009-12-13 10:53:12 +01001419 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1420
1421 return CMD_SUCCESS;
1422}
1423
Harald Weltea310f3e2009-12-14 09:00:24 +01001424DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1425 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001426 "Mobility Management\n"
1427 "Send MM INFO after LOC UPD ACCEPT\n"
1428 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001429{
Harald Welte40152872010-05-16 20:52:23 +02001430 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1431
Harald Weltea310f3e2009-12-14 09:00:24 +01001432 gsmnet->send_mm_info = atoi(argv[0]);
1433
1434 return CMD_SUCCESS;
1435}
1436
Harald Welte9e002452010-05-11 21:53:49 +02001437#define HANDOVER_STR "Handover Options\n"
1438
Harald Welte0af9c9f2009-12-19 21:41:52 +01001439DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1440 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001441 HANDOVER_STR
1442 "Don't perform in-call handover\n"
1443 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001444{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001445 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001446 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001447
1448 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001449 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1450 "is enabled by using the -P command line option%s",
1451 VTY_NEWLINE);
1452 return CMD_WARNING;
1453 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001454 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001455
1456 return CMD_SUCCESS;
1457}
1458
Harald Welte9e002452010-05-11 21:53:49 +02001459#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1460#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1461#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1462#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001463#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001464
Harald Weltea8062f12009-12-21 16:51:50 +01001465DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1466 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001467 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001468 "How many RxLev measurements are used for averaging\n"
1469 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001470{
Harald Welte40152872010-05-16 20:52:23 +02001471 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001472 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1473 return CMD_SUCCESS;
1474}
1475
1476DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1477 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001478 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001479 "How many RxQual measurements are used for averaging\n"
1480 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001481{
Harald Welte40152872010-05-16 20:52:23 +02001482 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001483 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1484 return CMD_SUCCESS;
1485}
1486
1487DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1488 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001489 HO_WIN_RXLEV_STR "Neighbor\n"
1490 "How many RxQual measurements are used for averaging\n"
1491 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001492{
Harald Welte40152872010-05-16 20:52:23 +02001493 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001494 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1495 return CMD_SUCCESS;
1496}
1497
1498DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1499 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001500 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001501 "How often to check if we have a better cell (SACCH frames)\n"
1502 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001503{
Harald Welte40152872010-05-16 20:52:23 +02001504 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001505 gsmnet->handover.pwr_interval = atoi(argv[0]);
1506 return CMD_SUCCESS;
1507}
1508
1509DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1510 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001511 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001512 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1513 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001514{
Harald Welte40152872010-05-16 20:52:23 +02001515 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001516 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1517 return CMD_SUCCESS;
1518}
1519
1520DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1521 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001522 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001523 "How big is the maximum timing advance before HO is forced\n"
1524 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001525{
Harald Welte40152872010-05-16 20:52:23 +02001526 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001527 gsmnet->handover.max_distance = atoi(argv[0]);
1528 return CMD_SUCCESS;
1529}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001530
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001531DEFUN(cfg_net_pag_any_tch,
1532 cfg_net_pag_any_tch_cmd,
1533 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001534 "Assign a TCH when receiving a Paging Any request\n"
1535 "Any Channel\n" "Use\n" "TCH\n"
1536 "Do not use TCH for Paging Request Any\n"
1537 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001538{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001539 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001540 gsmnet->pag_any_tch = atoi(argv[0]);
1541 gsm_net_update_ctype(gsmnet);
1542 return CMD_SUCCESS;
1543}
1544
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001545#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001546 DEFUN(cfg_net_T##number, \
1547 cfg_net_T##number##_cmd, \
1548 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001549 "Configure GSM Timers\n" \
Holger Hans Peter Freyther18dd1a32014-04-11 19:30:27 +02001550 doc "Timer Value in seconds\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001551{ \
Harald Welte40152872010-05-16 20:52:23 +02001552 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001553 int value = atoi(argv[0]); \
1554 \
1555 if (value < 0 || value > 65535) { \
1556 vty_out(vty, "Timer value %s out of range.%s", \
1557 argv[0], VTY_NEWLINE); \
1558 return CMD_WARNING; \
1559 } \
1560 \
1561 gsmnet->T##number = value; \
1562 return CMD_SUCCESS; \
1563}
1564
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001565DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1566DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001567DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001568DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001569DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001570DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1571DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1572DECLARE_TIMER(3115, "Currently not used.\n")
1573DECLARE_TIMER(3117, "Currently not used.\n")
1574DECLARE_TIMER(3119, "Currently not used.\n")
1575DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1576DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001577
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001578DEFUN(cfg_net_dtx,
1579 cfg_net_dtx_cmd,
1580 "dtx-used (0|1)",
1581 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001582 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001583{
1584 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1585 gsmnet->dtx_enabled = atoi(argv[0]);
1586 return CMD_SUCCESS;
1587}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001588
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001589DEFUN(cfg_net_subscr_keep,
1590 cfg_net_subscr_keep_cmd,
1591 "subscriber-keep-in-ram (0|1)",
1592 "Keep unused subscribers in RAM.\n"
1593 "Delete unused subscribers\n" "Keep unused subscribers\n")
1594{
1595 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Jacob Erlbeckda8770b2014-12-03 09:28:24 +01001596 gsmnet->subscr_group->keep_subscr = atoi(argv[0]);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001597 return CMD_SUCCESS;
1598}
1599
Harald Welte59b04682009-06-10 05:40:52 +08001600/* per-BTS configuration */
1601DEFUN(cfg_bts,
1602 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001603 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001604 "Select a BTS to configure\n"
1605 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001606{
Harald Welte40152872010-05-16 20:52:23 +02001607 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001608 int bts_nr = atoi(argv[0]);
1609 struct gsm_bts *bts;
1610
Harald Weltee712a5f2009-06-21 16:17:15 +02001611 if (bts_nr > gsmnet->num_bts) {
1612 vty_out(vty, "%% The next unused BTS number is %u%s",
1613 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001614 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001615 } else if (bts_nr == gsmnet->num_bts) {
1616 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001617 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
Harald Welte7bb55f32015-11-20 10:43:31 +01001618 HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001619 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001620 bts = gsm_bts_num(gsmnet, bts_nr);
1621
Daniel Willmann580085f2010-01-11 13:43:07 +01001622 if (!bts) {
1623 vty_out(vty, "%% Unable to allocate BTS %u%s",
1624 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001625 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001626 }
Harald Welte59b04682009-06-10 05:40:52 +08001627
1628 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001629 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001630 vty->node = BTS_NODE;
1631
1632 return CMD_SUCCESS;
1633}
1634
1635DEFUN(cfg_bts_type,
1636 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001637 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001638 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001639{
1640 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001641 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001642
Harald Welte59698fb2010-01-10 18:01:52 +01001643 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1644 if (rc < 0)
1645 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001646
Harald Welte59b04682009-06-10 05:40:52 +08001647 return CMD_SUCCESS;
1648}
1649
Harald Welte91afe4c2009-06-20 18:15:19 +02001650DEFUN(cfg_bts_band,
1651 cfg_bts_band_cmd,
1652 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001653 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001654{
1655 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001656 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001657
1658 if (band < 0) {
1659 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1660 band, VTY_NEWLINE);
1661 return CMD_WARNING;
1662 }
1663
1664 bts->band = band;
1665
1666 return CMD_SUCCESS;
1667}
1668
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001669DEFUN(cfg_bts_ci,
1670 cfg_bts_ci_cmd,
1671 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001672 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001673{
1674 struct gsm_bts *bts = vty->index;
1675 int ci = atoi(argv[0]);
1676
1677 if (ci < 0 || ci > 0xffff) {
1678 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1679 ci, VTY_NEWLINE);
1680 return CMD_WARNING;
1681 }
1682 bts->cell_identity = ci;
1683
1684 return CMD_SUCCESS;
1685}
1686
Harald Welte59b04682009-06-10 05:40:52 +08001687DEFUN(cfg_bts_lac,
1688 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001689 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001690 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001691{
1692 struct gsm_bts *bts = vty->index;
1693 int lac = atoi(argv[0]);
1694
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001695 if (lac < 0 || lac > 0xffff) {
1696 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001697 lac, VTY_NEWLINE);
1698 return CMD_WARNING;
1699 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001700
1701 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1702 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1703 lac, VTY_NEWLINE);
1704 return CMD_WARNING;
1705 }
1706
Harald Welte59b04682009-06-10 05:40:52 +08001707 bts->location_area_code = lac;
1708
1709 return CMD_SUCCESS;
1710}
1711
Harald Weltea54a2bb2009-12-01 18:04:30 +05301712
Harald Welte7bb55f32015-11-20 10:43:31 +01001713/* compatibility wrapper for old config files */
1714DEFUN_HIDDEN(cfg_bts_tsc,
Harald Welte59b04682009-06-10 05:40:52 +08001715 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001716 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001717 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001718{
Harald Welte59b04682009-06-10 05:40:52 +08001719 return CMD_SUCCESS;
1720}
1721
1722DEFUN(cfg_bts_bsic,
1723 cfg_bts_bsic_cmd,
1724 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001725 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1726 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001727{
1728 struct gsm_bts *bts = vty->index;
1729 int bsic = atoi(argv[0]);
1730
1731 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001732 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001733 bsic, VTY_NEWLINE);
1734 return CMD_WARNING;
1735 }
1736 bts->bsic = bsic;
1737
1738 return CMD_SUCCESS;
1739}
1740
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001741DEFUN(cfg_bts_timezone,
1742 cfg_bts_timezone_cmd,
1743 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001744 "Set the Timezone Offset of this BTS\n"
1745 "Timezone offset (hours)\n"
1746 "Timezone offset (00 minutes)\n"
1747 "Timezone offset (15 minutes)\n"
1748 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001749 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001750 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001751{
1752 struct gsm_bts *bts = vty->index;
1753 int tzhr = atoi(argv[0]);
1754 int tzmn = atoi(argv[1]);
1755
Harald Welte5c3abf92012-07-08 16:48:11 +02001756 bts->tz.hr = tzhr;
1757 bts->tz.mn = tzmn;
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02001758 bts->tz.dst = 0;
1759 bts->tz.override = 1;
1760
1761 return CMD_SUCCESS;
1762}
1763
1764DEFUN(cfg_bts_timezone_dst,
1765 cfg_bts_timezone_dst_cmd,
1766 "timezone <-19-19> (0|15|30|45) <0-2>",
1767 "Set the Timezone Offset of this BTS\n"
1768 "Timezone offset (hours)\n"
1769 "Timezone offset (00 minutes)\n"
1770 "Timezone offset (15 minutes)\n"
1771 "Timezone offset (30 minutes)\n"
1772 "Timezone offset (45 minutes)\n"
1773 "DST offset (hours)\n"
1774 )
1775{
1776 struct gsm_bts *bts = vty->index;
1777 int tzhr = atoi(argv[0]);
1778 int tzmn = atoi(argv[1]);
1779 int tzdst = atoi(argv[2]);
1780
1781 bts->tz.hr = tzhr;
1782 bts->tz.mn = tzmn;
1783 bts->tz.dst = tzdst;
Harald Welte5c3abf92012-07-08 16:48:11 +02001784 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001785
1786 return CMD_SUCCESS;
1787}
1788
1789DEFUN(cfg_bts_no_timezone,
1790 cfg_bts_no_timezone_cmd,
1791 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001792 NO_STR
1793 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001794{
1795 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001796
1797 bts->tz.override = 0;
1798
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001799 return CMD_SUCCESS;
1800}
Harald Welte59b04682009-06-10 05:40:52 +08001801
1802DEFUN(cfg_bts_unit_id,
1803 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001804 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001805 "Abis/IP specific options\n"
1806 "Set the IPA BTS Unit ID\n"
1807 "Unit ID (Site)\n"
1808 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001809{
1810 struct gsm_bts *bts = vty->index;
1811 int site_id = atoi(argv[0]);
1812 int bts_id = atoi(argv[1]);
1813
Harald Weltef515aa02009-08-07 13:27:09 +02001814 if (!is_ipaccess_bts(bts)) {
1815 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1816 return CMD_WARNING;
1817 }
1818
Harald Welte59b04682009-06-10 05:40:52 +08001819 bts->ip_access.site_id = site_id;
1820 bts->ip_access.bts_id = bts_id;
1821
1822 return CMD_SUCCESS;
1823}
1824
Harald Welte8b3c5952013-03-12 13:57:05 +01001825DEFUN(cfg_bts_rsl_ip,
1826 cfg_bts_rsl_ip_cmd,
1827 "ip.access rsl-ip A.B.C.D",
1828 "Abis/IP specific options\n"
1829 "Set the IPA RSL IP Address of the BSC\n"
1830 "Destination IP address for RSL connection\n")
1831{
1832 struct gsm_bts *bts = vty->index;
1833 struct in_addr ia;
1834
1835 if (!is_ipaccess_bts(bts)) {
1836 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1837 return CMD_WARNING;
1838 }
1839
1840 inet_aton(argv[0], &ia);
1841 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1842
1843 return CMD_SUCCESS;
1844}
1845
Andreas Eversbergac27b952013-12-05 13:25:06 +01001846#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b3c5952013-03-12 13:57:05 +01001847
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001848DEFUN(cfg_bts_nokia_site_skip_reset,
1849 cfg_bts_nokia_site_skip_reset_cmd,
1850 "nokia_site skip-reset (0|1)",
Andreas Eversbergac27b952013-12-05 13:25:06 +01001851 NOKIA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001852 "Skip the reset step during bootstrap process of this BTS\n"
1853 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001854{
1855 struct gsm_bts *bts = vty->index;
1856
1857 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1858 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1859 return CMD_WARNING;
1860 }
1861
1862 bts->nokia.skip_reset = atoi(argv[0]);
1863
1864 return CMD_SUCCESS;
1865}
1866
Andreas Eversbergac27b952013-12-05 13:25:06 +01001867DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1868 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1869 "nokia_site no-local-rel-conf (0|1)",
1870 NOKIA_STR
1871 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1872 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1873{
1874 struct gsm_bts *bts = vty->index;
1875
1876 if (!is_nokia_bts(bts)) {
1877 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1878 VTY_NEWLINE);
1879 return CMD_WARNING;
1880 }
1881
1882 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1883
1884 return CMD_SUCCESS;
1885}
1886
Sipos Csabadef87b42015-02-07 13:27:36 +01001887DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1888 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1889 "nokia_site bts-reset-timer <15-100>",
1890 NOKIA_STR
1891 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1892 "and the BTS is being bootstrapped.\n")
1893{
1894 struct gsm_bts *bts = vty->index;
1895
1896 if (!is_nokia_bts(bts)) {
1897 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1898 VTY_NEWLINE);
1899 return CMD_WARNING;
1900 }
1901
1902 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1903
1904 return CMD_SUCCESS;
1905}
Harald Welte9e002452010-05-11 21:53:49 +02001906#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001907#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001908
Harald Welte25572872009-10-20 00:22:00 +02001909DEFUN(cfg_bts_stream_id,
1910 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001911 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001912 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001913 "Set the ip.access Stream ID of the OML link of this BTS\n"
1914 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001915{
1916 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001917 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001918
1919 if (!is_ipaccess_bts(bts)) {
1920 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1921 return CMD_WARNING;
1922 }
1923
1924 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001925 /* This is used by e1inp_bind_ops callback for each BTS model. */
1926 bts->oml_e1_link.e1_nr = linenr;
1927
1928 return CMD_SUCCESS;
1929}
1930
Harald Weltefa2015f2012-08-17 09:52:03 +02001931#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001932
Harald Welte62868882009-08-08 16:12:58 +02001933DEFUN(cfg_bts_oml_e1,
1934 cfg_bts_oml_e1_cmd,
1935 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001936 OML_E1_STR
1937 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001938 "E1/T1 line number to be used for OML\n"
1939 "E1/T1 timeslot to be used for OML\n"
1940 "E1/T1 timeslot to be used for OML\n"
1941 "E1/T1 sub-slot to be used for OML\n"
1942 "Use E1/T1 sub-slot 0\n"
1943 "Use E1/T1 sub-slot 1\n"
1944 "Use E1/T1 sub-slot 2\n"
1945 "Use E1/T1 sub-slot 3\n"
1946 "Use full E1 slot 3\n"
1947 )
Harald Welte62868882009-08-08 16:12:58 +02001948{
1949 struct gsm_bts *bts = vty->index;
1950
1951 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1952
1953 return CMD_SUCCESS;
1954}
1955
1956
1957DEFUN(cfg_bts_oml_e1_tei,
1958 cfg_bts_oml_e1_tei_cmd,
1959 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001960 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001961 "Set the TEI to be used for OML\n"
1962 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001963{
1964 struct gsm_bts *bts = vty->index;
1965
1966 bts->oml_tei = atoi(argv[0]);
1967
1968 return CMD_SUCCESS;
1969}
1970
Harald Welte3e774612009-08-10 13:48:16 +02001971DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1972 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001973 "Channnel Allocator\n" "Channel Allocator\n"
1974 "Allocate Timeslots and Transceivers in ascending order\n"
1975 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001976{
1977 struct gsm_bts *bts = vty->index;
1978
1979 if (!strcmp(argv[0], "ascending"))
1980 bts->chan_alloc_reverse = 0;
1981 else
1982 bts->chan_alloc_reverse = 1;
1983
1984 return CMD_SUCCESS;
1985}
1986
Harald Welte9e002452010-05-11 21:53:49 +02001987#define RACH_STR "Random Access Control Channel\n"
1988
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001989DEFUN(cfg_bts_rach_tx_integer,
1990 cfg_bts_rach_tx_integer_cmd,
1991 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001992 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001993 "Set the raw tx integer value in RACH Control parameters IE\n"
1994 "Set the raw tx integer value in RACH Control parameters IE\n"
1995 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001996{
1997 struct gsm_bts *bts = vty->index;
1998 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1999 return CMD_SUCCESS;
2000}
2001
2002DEFUN(cfg_bts_rach_max_trans,
2003 cfg_bts_rach_max_trans_cmd,
2004 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02002005 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02002006 "Set the maximum number of RACH burst transmissions\n"
2007 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002008 "Maximum number of 1 RACH burst transmissions\n"
2009 "Maximum number of 2 RACH burst transmissions\n"
2010 "Maximum number of 4 RACH burst transmissions\n"
2011 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002012{
2013 struct gsm_bts *bts = vty->index;
2014 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
2015 return CMD_SUCCESS;
2016}
2017
Andreas Eversberg14e12f22012-10-13 07:27:47 +02002018#define CD_STR "Channel Description\n"
2019
2020DEFUN(cfg_bts_chan_desc_att,
2021 cfg_bts_chan_desc_att_cmd,
2022 "channel-descrption attach (0|1)",
2023 CD_STR
2024 "Set if attachment is required\n"
2025 "Attachment is NOT required\n"
2026 "Attachment is required (standard)\n")
2027{
2028 struct gsm_bts *bts = vty->index;
2029 bts->si_common.chan_desc.att = atoi(argv[0]);
2030 return CMD_SUCCESS;
2031}
2032
2033DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2034 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2035 "channel-descrption bs-pa-mfrms <2-9>",
2036 CD_STR
2037 "Set number of multiframe periods for paging groups\n"
2038 "Number of multiframe periods for paging groups\n")
2039{
2040 struct gsm_bts *bts = vty->index;
2041 int bs_pa_mfrms = atoi(argv[0]);
2042
2043 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2044 return CMD_SUCCESS;
2045}
2046
2047DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2048 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2049 "channel-descrption bs-ag-blks-res <0-7>",
2050 CD_STR
2051 "Set number of blocks reserved for access grant\n"
2052 "Number of blocks reserved for access grant\n")
2053{
2054 struct gsm_bts *bts = vty->index;
2055 int bs_ag_blks_res = atoi(argv[0]);
2056
2057 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2058 return CMD_SUCCESS;
2059}
2060
Harald Welte9e002452010-05-11 21:53:49 +02002061#define NM_STR "Network Management\n"
2062
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002063DEFUN(cfg_bts_rach_nm_b_thresh,
2064 cfg_bts_rach_nm_b_thresh_cmd,
2065 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002066 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02002067 "Set the NM Busy Threshold\n"
2068 "Set the NM Busy Threshold\n"
2069 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002070{
2071 struct gsm_bts *bts = vty->index;
2072 bts->rach_b_thresh = atoi(argv[0]);
2073 return CMD_SUCCESS;
2074}
2075
2076DEFUN(cfg_bts_rach_nm_ldavg,
2077 cfg_bts_rach_nm_ldavg_cmd,
2078 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002079 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02002080 "Set the NM Loadaverage Slots value\n"
2081 "Set the NM Loadaverage Slots value\n"
2082 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002083{
2084 struct gsm_bts *bts = vty->index;
2085 bts->rach_ldavg_slots = atoi(argv[0]);
2086 return CMD_SUCCESS;
2087}
2088
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002089DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2090 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002091 "Should this cell be barred from access?\n"
2092 "Should this cell be barred from access?\n"
2093 "Cell should NOT be barred\n"
2094 "Cell should be barred\n")
2095
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002096{
2097 struct gsm_bts *bts = vty->index;
2098
Harald Welte8c973ba2009-12-21 23:08:18 +01002099 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002100
2101 return CMD_SUCCESS;
2102}
2103
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002104DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2105 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002106 RACH_STR
2107 "Should this cell allow emergency calls?\n"
2108 "Should this cell allow emergency calls?\n"
2109 "Should this cell allow emergency calls?\n"
2110 "Do NOT allow emergency calls\n"
2111 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002112{
2113 struct gsm_bts *bts = vty->index;
2114
2115 if (atoi(argv[0]) == 0)
2116 bts->si_common.rach_control.t2 |= 0x4;
2117 else
2118 bts->si_common.rach_control.t2 &= ~0x4;
2119
2120 return CMD_SUCCESS;
2121}
2122
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04002123DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2124 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2125 RACH_STR
2126 "Set access control class\n"
2127 "Access control class 0\n"
2128 "Access control class 1\n"
2129 "Access control class 2\n"
2130 "Access control class 3\n"
2131 "Access control class 4\n"
2132 "Access control class 5\n"
2133 "Access control class 6\n"
2134 "Access control class 7\n"
2135 "Access control class 8\n"
2136 "Access control class 9\n"
2137 "Access control class 11 for PLMN use\n"
2138 "Access control class 12 for security services\n"
2139 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2140 "Access control class 14 for emergency services\n"
2141 "Access control class 15 for PLMN staff\n"
2142 "barred to use access control class\n"
2143 "allowed to use access control class\n")
2144{
2145 struct gsm_bts *bts = vty->index;
2146
2147 uint8_t control_class;
2148 uint8_t allowed = 0;
2149
2150 if (strcmp(argv[1], "allowed") == 0)
2151 allowed = 1;
2152
2153 control_class = atoi(argv[0]);
2154 if (control_class < 8)
2155 if (allowed)
2156 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2157 else
2158 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2159 else
2160 if (allowed)
2161 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2162 else
2163 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2164
2165 return CMD_SUCCESS;
2166}
2167
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002168DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2169 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02002170 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002171 "Maximum transmit power of the MS\n"
2172 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02002173 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002174{
2175 struct gsm_bts *bts = vty->index;
2176
2177 bts->ms_max_power = atoi(argv[0]);
2178
2179 return CMD_SUCCESS;
2180}
2181
Harald Welte557f3992012-08-16 23:23:50 +02002182#define CELL_STR "Cell Parameters\n"
2183
Harald Welteb761bf82009-12-12 18:17:25 +01002184DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2185 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02002186 CELL_STR "Cell re-selection parameters\n"
2187 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002188 "Cell Re-Selection Hysteresis in dB")
2189{
2190 struct gsm_bts *bts = vty->index;
2191
2192 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2193
2194 return CMD_SUCCESS;
2195}
2196
2197DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2198 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002199 "Minimum RxLev needed for cell access\n"
2200 "Minimum RxLev needed for cell access\n"
2201 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002202 "Minimum RxLev needed for cell access (better than -110dBm)")
2203{
2204 struct gsm_bts *bts = vty->index;
2205
2206 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2207
2208 return CMD_SUCCESS;
2209}
2210
Sylvain Munaut00d71462010-11-28 18:17:28 +01002211DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2212 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002213 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2214 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002215{
2216 struct gsm_bts *bts = vty->index;
2217
2218 bts->si_common.cell_ro_sel_par.present = 1;
2219 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2220
2221 return CMD_SUCCESS;
2222}
2223
2224DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2225 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02002226 CELL_STR "Cell Re-Selection Parameters\n"
2227 "Cell Re-Selection Offset (CRO) in dB\n"
2228 "Cell Re-Selection Offset (CRO) in dB\n"
2229 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01002230{
2231 struct gsm_bts *bts = vty->index;
2232
2233 bts->si_common.cell_ro_sel_par.present = 1;
2234 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2235
2236 return CMD_SUCCESS;
2237}
2238
2239DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2240 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02002241 "Cell selection temporary negative offset\n"
2242 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002243 "Cell selection temporary negative offset in dB")
2244{
2245 struct gsm_bts *bts = vty->index;
2246
2247 bts->si_common.cell_ro_sel_par.present = 1;
2248 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2249
2250 return CMD_SUCCESS;
2251}
2252
2253DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2254 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02002255 "Cell selection temporary negative offset\n"
2256 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002257 "Sets cell selection temporary negative offset to infinity")
2258{
2259 struct gsm_bts *bts = vty->index;
2260
2261 bts->si_common.cell_ro_sel_par.present = 1;
2262 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2263
2264 return CMD_SUCCESS;
2265}
2266
2267DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2268 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02002269 "Cell selection penalty time\n"
2270 "Cell selection penalty time\n"
2271 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002272{
2273 struct gsm_bts *bts = vty->index;
2274
2275 bts->si_common.cell_ro_sel_par.present = 1;
2276 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2277
2278 return CMD_SUCCESS;
2279}
2280
2281DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2282 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002283 "Cell selection penalty time\n"
2284 "Cell selection penalty time\n"
2285 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002286 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2287 "and TEMPORARY_OFFSET is ignored)")
2288{
2289 struct gsm_bts *bts = vty->index;
2290
2291 bts->si_common.cell_ro_sel_par.present = 1;
2292 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2293
2294 return CMD_SUCCESS;
2295}
2296
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002297DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002298 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002299 "Periodic Location Updating Interval\n"
2300 "Periodic Location Updating Interval\n"
2301 "Periodic Location Updating Interval\n"
2302 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002303{
2304 struct gsm_bts *bts = vty->index;
2305
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002306 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002307
2308 return CMD_SUCCESS;
2309}
2310
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02002311DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2312 "no periodic location update",
2313 NO_STR
2314 "Periodic Location Updating Interval\n"
2315 "Periodic Location Updating Interval\n"
2316 "Periodic Location Updating Interval\n")
2317{
2318 struct gsm_bts *bts = vty->index;
2319
2320 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversbergf9248d92013-03-10 11:49:35 +01002321
2322 return CMD_SUCCESS;
2323}
2324
2325DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2326 "radio-link-timeout <4-64>",
2327 "Radio link timeout criterion (BTS side)\n"
2328 "Radio link timeout value (lost SACCH block)\n")
2329{
2330 struct gsm_bts *bts = vty->index;
2331
2332 set_radio_link_timeout(&bts->si_common.cell_options, atoi(argv[0]));
2333
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02002334 return CMD_SUCCESS;
2335}
2336
Harald Welte9e002452010-05-11 21:53:49 +02002337#define GPRS_TEXT "GPRS Packet Network\n"
2338
Harald Welte410575a2010-03-14 23:30:30 +08002339DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002340 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002341 GPRS_TEXT
2342 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002343 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002344 "GPRS BSSGP VC Identifier")
2345{
2346 struct gsm_bts *bts = vty->index;
2347
Harald Weltecb20b7a2010-04-18 15:51:20 +02002348 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002349 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2350 return CMD_WARNING;
2351 }
2352
Harald Welte3055e332010-03-14 15:37:43 +08002353 bts->gprs.cell.bvci = atoi(argv[0]);
2354
2355 return CMD_SUCCESS;
2356}
2357
Harald Welte4a048c52010-03-22 11:48:36 +08002358DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2359 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002360 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002361 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002362 "GPRS NS Entity Identifier")
2363{
2364 struct gsm_bts *bts = vty->index;
2365
Harald Weltecb20b7a2010-04-18 15:51:20 +02002366 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002367 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2368 return CMD_WARNING;
2369 }
2370
2371 bts->gprs.nse.nsei = atoi(argv[0]);
2372
2373 return CMD_SUCCESS;
2374}
2375
Harald Welte9e002452010-05-11 21:53:49 +02002376#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2377 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002378
Harald Welte3055e332010-03-14 15:37:43 +08002379DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2380 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002381 GPRS_TEXT NSVC_TEXT
2382 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002383 "GPRS NS VC Identifier")
2384{
2385 struct gsm_bts *bts = vty->index;
2386 int idx = atoi(argv[0]);
2387
Harald Weltecb20b7a2010-04-18 15:51:20 +02002388 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002389 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2390 return CMD_WARNING;
2391 }
2392
Harald Welte3055e332010-03-14 15:37:43 +08002393 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2394
2395 return CMD_SUCCESS;
2396}
2397
Harald Welte410575a2010-03-14 23:30:30 +08002398DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2399 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002400 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002401 "GPRS NS Local UDP Port\n"
2402 "GPRS NS Local UDP Port\n"
2403 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002404 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002405{
2406 struct gsm_bts *bts = vty->index;
2407 int idx = atoi(argv[0]);
2408
Harald Weltecb20b7a2010-04-18 15:51:20 +02002409 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002410 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2411 return CMD_WARNING;
2412 }
2413
Harald Welte410575a2010-03-14 23:30:30 +08002414 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2415
2416 return CMD_SUCCESS;
2417}
2418
2419DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2420 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002421 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002422 "GPRS NS Remote UDP Port\n"
2423 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002424 "GPRS NS Remote UDP Port\n"
2425 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002426{
2427 struct gsm_bts *bts = vty->index;
2428 int idx = atoi(argv[0]);
2429
Harald Weltecb20b7a2010-04-18 15:51:20 +02002430 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002431 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2432 return CMD_WARNING;
2433 }
2434
Harald Welte410575a2010-03-14 23:30:30 +08002435 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2436
2437 return CMD_SUCCESS;
2438}
2439
2440DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2441 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002442 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002443 "GPRS NS Remote IP Address\n"
2444 "GPRS NS Remote IP Address\n"
2445 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002446{
2447 struct gsm_bts *bts = vty->index;
2448 int idx = atoi(argv[0]);
2449 struct in_addr ia;
2450
Harald Weltecb20b7a2010-04-18 15:51:20 +02002451 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002452 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2453 return CMD_WARNING;
2454 }
2455
Harald Welte410575a2010-03-14 23:30:30 +08002456 inet_aton(argv[1], &ia);
2457 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2458
2459 return CMD_SUCCESS;
2460}
2461
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002462DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002463 "paging free <-1-1024>",
2464 "Paging options\n"
2465 "Only page when having a certain amount of free slots\n"
2466 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002467{
2468 struct gsm_bts *bts = vty->index;
2469
2470 bts->paging.free_chans_need = atoi(argv[0]);
2471 return CMD_SUCCESS;
2472}
2473
Harald Weltea9251762010-05-11 23:50:21 +02002474DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2475 "gprs ns timer " NS_TIMERS " <0-255>",
2476 GPRS_TEXT "Network Service\n"
2477 "Network Service Timer\n"
2478 NS_TIMERS_HELP "Timer Value\n")
2479{
2480 struct gsm_bts *bts = vty->index;
2481 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2482 int val = atoi(argv[1]);
2483
2484 if (bts->gprs.mode == BTS_GPRS_NONE) {
2485 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2486 return CMD_WARNING;
2487 }
2488
2489 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2490 return CMD_WARNING;
2491
2492 bts->gprs.nse.timer[idx] = val;
2493
2494 return CMD_SUCCESS;
2495}
2496
2497#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 Welte18ce31c2010-05-14 20:05:17 +02002498#define BSSGP_TIMERS_HELP \
2499 "Tbvc-block timeout\n" \
2500 "Tbvc-block retries\n" \
2501 "Tbvc-unblock retries\n" \
2502 "Tbvcc-reset timeout\n" \
2503 "Tbvc-reset retries\n" \
2504 "Tbvc-suspend timeout\n" \
2505 "Tbvc-suspend retries\n" \
2506 "Tbvc-resume timeout\n" \
2507 "Tbvc-resume retries\n" \
2508 "Tbvc-capa-update timeout\n" \
2509 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002510
2511DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2512 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2513 GPRS_TEXT "Cell / BSSGP\n"
2514 "Cell/BSSGP Timer\n"
2515 BSSGP_TIMERS_HELP "Timer Value\n")
2516{
2517 struct gsm_bts *bts = vty->index;
2518 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2519 int val = atoi(argv[1]);
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 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2527 return CMD_WARNING;
2528
2529 bts->gprs.cell.timer[idx] = val;
2530
2531 return CMD_SUCCESS;
2532}
2533
Harald Welte3055e332010-03-14 15:37:43 +08002534DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2535 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002536 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002537 "GPRS Routing Area Code\n"
2538 "GPRS Routing Area Code\n"
2539 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002540{
2541 struct gsm_bts *bts = vty->index;
2542
Harald Weltecb20b7a2010-04-18 15:51:20 +02002543 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002544 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2545 return CMD_WARNING;
2546 }
2547
Harald Welte3055e332010-03-14 15:37:43 +08002548 bts->gprs.rac = atoi(argv[0]);
2549
2550 return CMD_SUCCESS;
2551}
2552
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002553DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2554 "gprs network-control-order (nc0|nc1|nc2)",
2555 GPRS_TEXT
2556 "GPRS Network Control Order\n"
2557 "MS controlled cell re-selection, no measurement reporting\n"
2558 "MS controlled cell re-selection, MS sends measurement reports\n"
2559 "Network controlled cell re-selection, MS sends measurement reports\n")
2560{
2561 struct gsm_bts *bts = vty->index;
2562
2563 if (bts->gprs.mode == BTS_GPRS_NONE) {
2564 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2565 return CMD_WARNING;
2566 }
2567
2568 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2569
2570 return CMD_SUCCESS;
2571}
2572
Harald Weltecb20b7a2010-04-18 15:51:20 +02002573DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2574 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002575 GPRS_TEXT
2576 "GPRS Mode for this BTS\n"
2577 "GPRS Disabled on this BTS\n"
2578 "GPRS Enabled on this BTS\n"
2579 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002580{
2581 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther611f7752015-01-31 22:16:00 +01002582 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welte410575a2010-03-14 23:30:30 +08002583
Holger Hans Peter Freyther611f7752015-01-31 22:16:00 +01002584 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Welte20e275a2010-06-14 22:44:42 +02002585 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2586 VTY_NEWLINE);
2587 return CMD_WARNING;
2588 }
2589
2590 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002591
2592 return CMD_SUCCESS;
2593}
2594
Harald Welted8acf142010-07-30 11:50:09 +02002595#define SI_TEXT "System Information Messages\n"
2596#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)"
2597#define SI_TYPE_HELP "System Information Type 1\n" \
2598 "System Information Type 2\n" \
2599 "System Information Type 3\n" \
2600 "System Information Type 4\n" \
2601 "System Information Type 5\n" \
2602 "System Information Type 6\n" \
2603 "System Information Type 7\n" \
2604 "System Information Type 8\n" \
2605 "System Information Type 9\n" \
2606 "System Information Type 10\n" \
2607 "System Information Type 13\n" \
2608 "System Information Type 16\n" \
2609 "System Information Type 17\n" \
2610 "System Information Type 18\n" \
2611 "System Information Type 19\n" \
2612 "System Information Type 20\n" \
2613 "System Information Type 2bis\n" \
2614 "System Information Type 2ter\n" \
2615 "System Information Type 2quater\n" \
2616 "System Information Type 5bis\n" \
2617 "System Information Type 5ter\n"
2618
2619DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2620 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2621 SI_TEXT SI_TYPE_HELP
2622 "System Information Mode\n"
2623 "Static user-specified\n"
2624 "Dynamic, BSC-computed\n")
2625{
2626 struct gsm_bts *bts = vty->index;
2627 int type;
2628
2629 type = get_string_value(osmo_sitype_strs, argv[0]);
2630 if (type < 0) {
2631 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2632 return CMD_WARNING;
2633 }
2634
2635 if (!strcmp(argv[1], "static"))
2636 bts->si_mode_static |= (1 << type);
2637 else
2638 bts->si_mode_static &= ~(1 << type);
2639
2640 return CMD_SUCCESS;
2641}
2642
2643DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2644 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2645 SI_TEXT SI_TYPE_HELP
2646 "Static System Information filling\n"
2647 "Static user-specified SI content in HEX notation\n")
2648{
2649 struct gsm_bts *bts = vty->index;
2650 int rc, type;
2651
2652 type = get_string_value(osmo_sitype_strs, argv[0]);
2653 if (type < 0) {
2654 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2655 return CMD_WARNING;
2656 }
2657
2658 if (!(bts->si_mode_static & (1 << type))) {
2659 vty_out(vty, "SI Type %s is not configured in static mode%s",
2660 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2661 return CMD_WARNING;
2662 }
2663
Harald Welte9f09ac32010-07-30 11:53:18 +02002664 /* Fill buffer with padding pattern */
2665 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2666
2667 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002668 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002669 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2670 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2671 return CMD_WARNING;
2672 }
2673
2674 /* Mark this SI as present */
2675 bts->si_valid |= (1 << type);
2676
2677 return CMD_SUCCESS;
2678}
2679
Harald Welteca46eff2011-01-11 23:44:56 +01002680DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002681 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002682 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002683 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2684 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002685{
2686 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002687 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002688
Harald Weltef989b782011-02-15 11:43:27 +01002689 switch (mode) {
2690 case NL_MODE_MANUAL_SI5SEP:
2691 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002692 /* make sure we clear the current list when switching to
2693 * manual mode */
2694 if (bts->neigh_list_manual_mode == 0)
2695 memset(&bts->si_common.data.neigh_list, 0,
2696 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002697 break;
2698 default:
2699 break;
2700 }
2701
2702 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002703
2704 return CMD_SUCCESS;
2705}
2706
2707DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002708 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002709 "Neighbor List\n" "Add to manual neighbor list\n"
2710 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2711 "ARFCN of neighbor\n")
2712{
2713 struct gsm_bts *bts = vty->index;
2714 struct bitvec *bv = &bts->si_common.neigh_list;
2715 uint16_t arfcn = atoi(argv[1]);
2716
2717 if (!bts->neigh_list_manual_mode) {
2718 vty_out(vty, "%% Cannot configure neighbor list in "
2719 "automatic mode%s", VTY_NEWLINE);
2720 return CMD_WARNING;
2721 }
2722
2723 if (!strcmp(argv[0], "add"))
2724 bitvec_set_bit_pos(bv, arfcn, 1);
2725 else
2726 bitvec_set_bit_pos(bv, arfcn, 0);
2727
2728 return CMD_SUCCESS;
2729}
2730
Harald Weltef989b782011-02-15 11:43:27 +01002731DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002732 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002733 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002734 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2735 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2736 "ARFCN of neighbor\n")
2737{
2738 struct gsm_bts *bts = vty->index;
2739 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2740 uint16_t arfcn = atoi(argv[1]);
2741
2742 if (!bts->neigh_list_manual_mode) {
2743 vty_out(vty, "%% Cannot configure neighbor list in "
2744 "automatic mode%s", VTY_NEWLINE);
2745 return CMD_WARNING;
2746 }
2747
2748 if (!strcmp(argv[0], "add"))
2749 bitvec_set_bit_pos(bv, arfcn, 1);
2750 else
2751 bitvec_set_bit_pos(bv, arfcn, 0);
2752
2753 return CMD_SUCCESS;
2754}
Harald Welted8acf142010-07-30 11:50:09 +02002755
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002756#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2757
2758DEFUN(cfg_bts_excl_rf_lock,
2759 cfg_bts_excl_rf_lock_cmd,
2760 "rf-lock-exclude",
2761 EXCL_RFLOCK_STR)
2762{
2763 struct gsm_bts *bts = vty->index;
2764 bts->excl_from_rf_lock = 1;
2765 return CMD_SUCCESS;
2766}
2767
2768DEFUN(cfg_bts_no_excl_rf_lock,
2769 cfg_bts_no_excl_rf_lock_cmd,
2770 "no rf-lock-exclude",
2771 NO_STR EXCL_RFLOCK_STR)
2772{
2773 struct gsm_bts *bts = vty->index;
2774 bts->excl_from_rf_lock = 0;
2775 return CMD_SUCCESS;
2776}
2777
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +01002778#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2779
2780DEFUN(cfg_bts_force_comb_si,
2781 cfg_bts_force_comb_si_cmd,
2782 "force-combined-si",
2783 FORCE_COMB_SI_STR)
2784{
2785 struct gsm_bts *bts = vty->index;
2786 bts->force_combined_si = 1;
2787 return CMD_SUCCESS;
2788}
2789
2790DEFUN(cfg_bts_no_force_comb_si,
2791 cfg_bts_no_force_comb_si_cmd,
2792 "no force-combined-si",
2793 NO_STR FORCE_COMB_SI_STR)
2794{
2795 struct gsm_bts *bts = vty->index;
2796 bts->force_combined_si = 0;
2797 return CMD_SUCCESS;
2798}
2799
Andreas Eversberg976493b2013-12-07 18:32:28 +01002800static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2801{
2802 struct gsm_bts *bts = vty->index;
2803 struct bts_codec_conf *codec = &bts->codec;
2804 int i;
2805
2806 codec->hr = 0;
2807 codec->efr = 0;
2808 codec->amr = 0;
2809 for (i = 0; i < argc; i++) {
2810 if (!strcmp(argv[i], "hr"))
2811 codec->hr = 1;
2812 if (!strcmp(argv[i], "efr"))
2813 codec->efr = 1;
2814 if (!strcmp(argv[i], "amr"))
2815 codec->amr = 1;
2816 }
2817}
2818
2819#define CODEC_PAR_STR " (hr|efr|amr)"
2820#define CODEC_HELP_STR "Half Rate\n" \
2821 "Enhanced Full Rate\nAdaptive Multirate\n"
2822
2823DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
2824 "codec-support fr",
2825 "Codec Support settings\nFullrate\n")
2826{
2827 _get_codec_from_arg(vty, 0, argv);
2828 return CMD_SUCCESS;
2829}
2830
2831DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
2832 "codec-support fr" CODEC_PAR_STR,
2833 "Codec Support settings\nFullrate\n"
2834 CODEC_HELP_STR)
2835{
2836 _get_codec_from_arg(vty, 1, argv);
2837 return CMD_SUCCESS;
2838}
2839
2840DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
2841 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
2842 "Codec Support settings\nFullrate\n"
2843 CODEC_HELP_STR CODEC_HELP_STR)
2844{
2845 _get_codec_from_arg(vty, 2, argv);
2846 return CMD_SUCCESS;
2847}
2848
2849DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
2850 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2851 "Codec Support settings\nFullrate\n"
2852 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2853{
2854 _get_codec_from_arg(vty, 3, argv);
2855 return CMD_SUCCESS;
2856}
2857
2858DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
2859 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2860 "Codec Support settings\nFullrate\n"
2861 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2862{
2863 _get_codec_from_arg(vty, 4, argv);
2864 return CMD_SUCCESS;
2865}
2866
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +01002867DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
2868 "depends-on-bts <0-255>",
2869 "This BTS can only be started if another one is up\n" "BTS Number\n")
2870{
2871 struct gsm_bts *bts = vty->index;
2872 struct gsm_bts *other_bts;
2873 int dep = atoi(argv[0]);
2874
2875
2876 if (!is_ipaccess_bts(bts)) {
2877 vty_out(vty, "This feature is only available for IP systems.%s",
2878 VTY_NEWLINE);
2879 return CMD_WARNING;
2880 }
2881
2882 other_bts = gsm_bts_num(bts->network, dep);
2883 if (!other_bts || !is_ipaccess_bts(other_bts)) {
2884 vty_out(vty, "This feature is only available for IP systems.%s",
2885 VTY_NEWLINE);
2886 return CMD_WARNING;
2887 }
2888
2889 if (dep >= bts->nr) {
2890 vty_out(vty, "%%Need to depend on an already declared unit.%s",
2891 VTY_NEWLINE);
2892 return CMD_WARNING;
2893 }
2894
2895 bts_depend_mark(bts, dep);
2896 return CMD_SUCCESS;
2897}
2898
2899DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
2900 "depeneds-on-bts <0-255>",
2901 NO_STR "This BTS can only be started if another one is up\n"
2902 "BTS Number\n")
2903{
2904 struct gsm_bts *bts = vty->index;
2905 int dep = atoi(argv[0]);
2906
2907 bts_depend_clear(bts, dep);
2908 return CMD_SUCCESS;
2909}
2910
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002911#define AMR_TEXT "Adaptive Multi Rate settings\n"
2912#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
2913#define AMR_START_TEXT "Initial codec to use with AMR\n" \
2914 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
2915#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
2916#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
2917
2918static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2919{
2920 struct gsm_bts *bts = vty->index;
2921 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2922 struct gsm48_multi_rate_conf *mr_conf =
2923 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2924 int i;
2925
2926 mr->gsm48_ie[1] = 0;
2927 for (i = 0; i < argc; i++)
2928 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
2929 mr_conf->icmi = 0;
2930}
2931
2932static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2933{
2934 struct gsm_bts *bts = vty->index;
2935 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002936 struct amr_mode *modes;
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002937 int i;
2938
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002939 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
2940 for (i = 0; i < argc - 1; i++)
2941 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002942}
2943
2944static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2945{
2946 struct gsm_bts *bts = vty->index;
2947 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002948 struct amr_mode *modes;
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002949 int i;
2950
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002951 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
2952 for (i = 0; i < argc - 1; i++)
2953 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002954}
2955
2956static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
2957{
2958 struct gsm_bts *bts = vty->index;
2959 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2960 struct gsm48_multi_rate_conf *mr_conf =
2961 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2962 int num = 0, i;
2963
2964 for (i = 0; i < ((full) ? 8 : 6); i++) {
2965 if ((mr->gsm48_ie[1] & (1 << i))) {
2966 num++;
2967 }
2968 }
2969
2970 if (argv[0][0] == 'a' || num == 0)
2971 mr_conf->icmi = 0;
2972 else {
2973 mr_conf->icmi = 1;
2974 if (num < atoi(argv[0]))
2975 mr_conf->smod = num - 1;
2976 else
2977 mr_conf->smod = atoi(argv[0]) - 1;
2978 }
2979}
2980
2981#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
2982#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
2983 "10,2k\n12,2k\n"
2984
2985#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
2986#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
2987
2988#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
2989#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
2990
2991DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
2992 "amr tch-f modes" AMR_TCHF_PAR_STR,
2993 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
2994 AMR_TCHF_HELP_STR)
2995{
2996 get_amr_from_arg(vty, 1, argv, 1);
2997 return CMD_SUCCESS;
2998}
2999
3000DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3001 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3002 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3003 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3004{
3005 get_amr_from_arg(vty, 2, argv, 1);
3006 return CMD_SUCCESS;
3007}
3008
3009DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3010 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3011 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3012 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3013{
3014 get_amr_from_arg(vty, 3, argv, 1);
3015 return CMD_SUCCESS;
3016}
3017
3018DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3019 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3020 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3021 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3022{
3023 get_amr_from_arg(vty, 4, argv, 1);
3024 return CMD_SUCCESS;
3025}
3026
3027DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3028 "amr tch-f start-mode (auto|1|2|3|4)",
3029 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3030{
3031 get_amr_start_from_arg(vty, argv, 1);
3032 return CMD_SUCCESS;
3033}
3034
3035DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3036 "amr tch-f threshold (ms|bts) <0-63>",
3037 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3038 AMR_TH_HELP_STR)
3039{
3040 get_amr_th_from_arg(vty, 2, argv, 1);
3041 return CMD_SUCCESS;
3042}
3043
3044DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3045 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3046 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3047 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3048{
3049 get_amr_th_from_arg(vty, 3, argv, 1);
3050 return CMD_SUCCESS;
3051}
3052
3053DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3054 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3055 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3056 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3057{
3058 get_amr_th_from_arg(vty, 4, argv, 1);
3059 return CMD_SUCCESS;
3060}
3061
3062DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3063 "amr tch-f hysteresis (ms|bts) <0-15>",
3064 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3065 AMR_HY_HELP_STR)
3066{
3067 get_amr_hy_from_arg(vty, 2, argv, 1);
3068 return CMD_SUCCESS;
3069}
3070
3071DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3072 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3073 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3074 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3075{
3076 get_amr_hy_from_arg(vty, 3, argv, 1);
3077 return CMD_SUCCESS;
3078}
3079
3080DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3081 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3082 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3083 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3084{
3085 get_amr_hy_from_arg(vty, 4, argv, 1);
3086 return CMD_SUCCESS;
3087}
3088
3089DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3090 "amr tch-h modes" AMR_TCHH_PAR_STR,
3091 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3092 AMR_TCHH_HELP_STR)
3093{
3094 get_amr_from_arg(vty, 1, argv, 0);
3095 return CMD_SUCCESS;
3096}
3097
3098DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3099 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3100 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3101 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3102{
3103 get_amr_from_arg(vty, 2, argv, 0);
3104 return CMD_SUCCESS;
3105}
3106
3107DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3108 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3109 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3110 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3111{
3112 get_amr_from_arg(vty, 3, argv, 0);
3113 return CMD_SUCCESS;
3114}
3115
3116DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3117 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3118 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3119 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3120{
3121 get_amr_from_arg(vty, 4, argv, 0);
3122 return CMD_SUCCESS;
3123}
3124
3125DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3126 "amr tch-h start-mode (auto|1|2|3|4)",
3127 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3128{
3129 get_amr_start_from_arg(vty, argv, 0);
3130 return CMD_SUCCESS;
3131}
3132
3133DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3134 "amr tch-h threshold (ms|bts) <0-63>",
3135 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3136 AMR_TH_HELP_STR)
3137{
3138 get_amr_th_from_arg(vty, 2, argv, 0);
3139 return CMD_SUCCESS;
3140}
3141
3142DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3143 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3144 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3145 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3146{
3147 get_amr_th_from_arg(vty, 3, argv, 0);
3148 return CMD_SUCCESS;
3149}
3150
3151DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3152 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3153 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3154 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3155{
3156 get_amr_th_from_arg(vty, 4, argv, 0);
3157 return CMD_SUCCESS;
3158}
3159
3160DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3161 "amr tch-h hysteresis (ms|bts) <0-15>",
3162 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3163 AMR_HY_HELP_STR)
3164{
3165 get_amr_hy_from_arg(vty, 2, argv, 0);
3166 return CMD_SUCCESS;
3167}
3168
3169DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3170 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3171 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3172 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3173{
3174 get_amr_hy_from_arg(vty, 3, argv, 0);
3175 return CMD_SUCCESS;
3176}
3177
3178DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3179 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3180 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3181 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3182{
3183 get_amr_hy_from_arg(vty, 4, argv, 0);
3184 return CMD_SUCCESS;
3185}
3186
Harald Welte9e002452010-05-11 21:53:49 +02003187#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02003188
Harald Welte59b04682009-06-10 05:40:52 +08003189/* per TRX configuration */
3190DEFUN(cfg_trx,
3191 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02003192 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02003193 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08003194 "Select a TRX to configure")
3195{
3196 int trx_nr = atoi(argv[0]);
3197 struct gsm_bts *bts = vty->index;
3198 struct gsm_bts_trx *trx;
3199
Harald Weltee712a5f2009-06-21 16:17:15 +02003200 if (trx_nr > bts->num_trx) {
3201 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3202 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08003203 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02003204 } else if (trx_nr == bts->num_trx) {
3205 /* we need to allocate a new one */
3206 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02003207 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02003208 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02003209
Harald Weltee712a5f2009-06-21 16:17:15 +02003210 if (!trx)
3211 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08003212
3213 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02003214 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08003215 vty->node = TRX_NODE;
3216
3217 return CMD_SUCCESS;
3218}
3219
3220DEFUN(cfg_trx_arfcn,
3221 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01003222 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02003223 "Set the ARFCN for this TRX\n"
3224 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08003225{
3226 int arfcn = atoi(argv[0]);
3227 struct gsm_bts_trx *trx = vty->index;
3228
3229 /* FIXME: check if this ARFCN is supported by this TRX */
3230
3231 trx->arfcn = arfcn;
3232
3233 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3234 /* FIXME: use OML layer to update the ARFCN */
3235 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3236
3237 return CMD_SUCCESS;
3238}
3239
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003240DEFUN(cfg_trx_nominal_power,
3241 cfg_trx_nominal_power_cmd,
3242 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02003243 "Nominal TRX RF Power in dBm\n"
3244 "Nominal TRX RF Power in dBm\n"
3245 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003246{
3247 struct gsm_bts_trx *trx = vty->index;
3248
3249 trx->nominal_power = atoi(argv[0]);
3250
3251 return CMD_SUCCESS;
3252}
3253
Harald Welte91afe4c2009-06-20 18:15:19 +02003254DEFUN(cfg_trx_max_power_red,
3255 cfg_trx_max_power_red_cmd,
3256 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02003257 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02003258 "Reduction of maximum BS RF Power in dB\n")
3259{
3260 int maxpwr_r = atoi(argv[0]);
3261 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01003262 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02003263
3264 /* FIXME: check if our BTS type supports more than 12 */
3265 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3266 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3267 maxpwr_r, VTY_NEWLINE);
3268 return CMD_WARNING;
3269 }
3270 if (maxpwr_r & 1) {
3271 vty_out(vty, "%% Power %d dB is not an even value%s",
3272 maxpwr_r, VTY_NEWLINE);
3273 return CMD_WARNING;
3274 }
3275
3276 trx->max_power_red = maxpwr_r;
3277
3278 /* FIXME: make sure we update this using OML */
3279
3280 return CMD_SUCCESS;
3281}
3282
Harald Welte62868882009-08-08 16:12:58 +02003283DEFUN(cfg_trx_rsl_e1,
3284 cfg_trx_rsl_e1_cmd,
3285 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02003286 "RSL Parameters\n"
3287 "E1/T1 interface to be used for RSL\n"
3288 "E1/T1 interface to be used for RSL\n"
3289 "E1/T1 Line Number to be used for RSL\n"
3290 "E1/T1 Timeslot to be used for RSL\n"
3291 "E1/T1 Timeslot to be used for RSL\n"
3292 "E1/T1 Sub-slot to be used for RSL\n"
3293 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3294 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3295 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3296 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3297 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02003298{
3299 struct gsm_bts_trx *trx = vty->index;
3300
3301 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3302
3303 return CMD_SUCCESS;
3304}
3305
3306DEFUN(cfg_trx_rsl_e1_tei,
3307 cfg_trx_rsl_e1_tei_cmd,
3308 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02003309 "RSL Parameters\n"
3310 "Set the TEI to be used for RSL\n"
3311 "Set the TEI to be used for RSL\n"
3312 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02003313{
3314 struct gsm_bts_trx *trx = vty->index;
3315
3316 trx->rsl_tei = atoi(argv[0]);
3317
3318 return CMD_SUCCESS;
3319}
3320
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003321DEFUN(cfg_trx_rf_locked,
3322 cfg_trx_rf_locked_cmd,
3323 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02003324 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3325 "TRX is NOT RF locked (active)\n"
3326 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003327{
3328 int locked = atoi(argv[0]);
3329 struct gsm_bts_trx *trx = vty->index;
3330
3331 gsm_trx_lock_rf(trx, locked);
3332 return CMD_SUCCESS;
3333}
Harald Welte62868882009-08-08 16:12:58 +02003334
Harald Welte59b04682009-06-10 05:40:52 +08003335/* per TS configuration */
3336DEFUN(cfg_ts,
3337 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02003338 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02003339 "Select a Timeslot to configure\n"
3340 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08003341{
3342 int ts_nr = atoi(argv[0]);
3343 struct gsm_bts_trx *trx = vty->index;
3344 struct gsm_bts_trx_ts *ts;
3345
3346 if (ts_nr >= TRX_NR_TS) {
3347 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3348 TRX_NR_TS, VTY_NEWLINE);
3349 return CMD_WARNING;
3350 }
3351
3352 ts = &trx->ts[ts_nr];
3353
3354 vty->index = ts;
3355 vty->node = TS_NODE;
3356
3357 return CMD_SUCCESS;
3358}
3359
Harald Welte3ffe1b32009-08-07 00:25:23 +02003360DEFUN(cfg_ts_pchan,
3361 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02003362 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01003363 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02003364{
3365 struct gsm_bts_trx_ts *ts = vty->index;
3366 int pchanc;
3367
3368 pchanc = gsm_pchan_parse(argv[0]);
3369 if (pchanc < 0)
3370 return CMD_WARNING;
3371
3372 ts->pchan = pchanc;
3373
3374 return CMD_SUCCESS;
3375}
3376
3377/* used for backwards compatibility with old config files that still
3378 * have uppercase pchan type names */
3379DEFUN_HIDDEN(cfg_ts_pchan_compat,
3380 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02003381 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01003382 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02003383{
3384 struct gsm_bts_trx_ts *ts = vty->index;
3385 int pchanc;
3386
3387 pchanc = gsm_pchan_parse(argv[0]);
3388 if (pchanc < 0)
3389 return CMD_WARNING;
3390
3391 ts->pchan = pchanc;
3392
3393 return CMD_SUCCESS;
3394}
3395
Harald Welte2addf852012-08-17 12:42:06 +02003396
3397
Harald Welte85771a42011-05-30 12:09:13 +02003398DEFUN(cfg_ts_tsc,
3399 cfg_ts_tsc_cmd,
3400 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02003401 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02003402{
3403 struct gsm_bts_trx_ts *ts = vty->index;
3404
Harald Welte499cd252014-01-19 17:10:50 +01003405 if (!gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_MULTI_TSC)) {
3406 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3407 "falling back to BCC%s", VTY_NEWLINE);
3408 ts->tsc = -1;
3409 return CMD_WARNING;
3410 }
3411
Harald Welte85771a42011-05-30 12:09:13 +02003412 ts->tsc = atoi(argv[0]);
3413
3414 return CMD_SUCCESS;
3415}
3416
Harald Weltea42a93f2010-06-14 22:26:10 +02003417#define HOPPING_STR "Configure frequency hopping\n"
3418
3419DEFUN(cfg_ts_hopping,
3420 cfg_ts_hopping_cmd,
3421 "hopping enabled (0|1)",
3422 HOPPING_STR "Enable or disable frequency hopping\n"
3423 "Disable frequency hopping\n" "Enable frequency hopping\n")
3424{
3425 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02003426 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02003427
Harald Welte059c1ef2010-06-14 22:47:37 +02003428 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
3429 vty_out(vty, "BTS model does not support hopping%s",
3430 VTY_NEWLINE);
3431 return CMD_WARNING;
3432 }
3433
3434 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02003435
3436 return CMD_SUCCESS;
3437}
3438
Harald Welte67104d12009-09-12 13:05:33 +02003439DEFUN(cfg_ts_hsn,
3440 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02003441 "hopping sequence-number <0-63>",
3442 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02003443 "Which hopping sequence to use for this channel\n"
3444 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02003445{
3446 struct gsm_bts_trx_ts *ts = vty->index;
3447
3448 ts->hopping.hsn = atoi(argv[0]);
3449
3450 return CMD_SUCCESS;
3451}
3452
3453DEFUN(cfg_ts_maio,
3454 cfg_ts_maio_cmd,
3455 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003456 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02003457 "Which hopping MAIO to use for this channel\n"
3458 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02003459{
3460 struct gsm_bts_trx_ts *ts = vty->index;
3461
3462 ts->hopping.maio = atoi(argv[0]);
3463
3464 return CMD_SUCCESS;
3465}
3466
3467DEFUN(cfg_ts_arfcn_add,
3468 cfg_ts_arfcn_add_cmd,
3469 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003470 HOPPING_STR "Configure hopping ARFCN list\n"
3471 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003472{
3473 struct gsm_bts_trx_ts *ts = vty->index;
3474 int arfcn = atoi(argv[0]);
3475
Harald Weltea42a93f2010-06-14 22:26:10 +02003476 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3477
Harald Welte67104d12009-09-12 13:05:33 +02003478 return CMD_SUCCESS;
3479}
3480
3481DEFUN(cfg_ts_arfcn_del,
3482 cfg_ts_arfcn_del_cmd,
3483 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003484 HOPPING_STR "Configure hopping ARFCN list\n"
3485 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003486{
3487 struct gsm_bts_trx_ts *ts = vty->index;
3488 int arfcn = atoi(argv[0]);
3489
Harald Weltea42a93f2010-06-14 22:26:10 +02003490 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3491
Harald Welte67104d12009-09-12 13:05:33 +02003492 return CMD_SUCCESS;
3493}
3494
Harald Welte3ffe1b32009-08-07 00:25:23 +02003495DEFUN(cfg_ts_e1_subslot,
3496 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02003497 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02003498 "E1/T1 channel connected to this on-air timeslot\n"
3499 "E1/T1 channel connected to this on-air timeslot\n"
3500 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02003501 "E1/T1 timeslot connected to this on-air timeslot\n"
3502 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02003503 "E1/T1 sub-slot connected to this on-air timeslot\n"
3504 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3505 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3506 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3507 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3508 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02003509{
3510 struct gsm_bts_trx_ts *ts = vty->index;
3511
Harald Welte62868882009-08-08 16:12:58 +02003512 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003513
3514 return CMD_SUCCESS;
3515}
Harald Welte59b04682009-06-10 05:40:52 +08003516
Harald Weltea5b1dae2010-05-16 21:47:13 +02003517void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3518{
3519 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003520 osmo_counter_get(net->stats.chreq.total),
3521 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003522 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003523 osmo_counter_get(net->stats.chan.rf_fail),
3524 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003525 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003526 osmo_counter_get(net->stats.paging.attempted),
3527 osmo_counter_get(net->stats.paging.completed),
3528 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003529 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003530 osmo_counter_get(net->stats.bts.oml_fail),
3531 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003532}
3533
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003534DEFUN(drop_bts,
3535 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02003536 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02003537 "Debug/Simulation command to drop Abis/IP BTS\n"
3538 "Debug/Simulation command to drop Abis/IP BTS\n"
3539 "Debug/Simulation command to drop Abis/IP BTS\n"
3540 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003541{
3542 struct gsm_network *gsmnet;
3543 struct gsm_bts_trx *trx;
3544 struct gsm_bts *bts;
3545 unsigned int bts_nr;
3546
3547 gsmnet = gsmnet_from_vty(vty);
3548
3549 bts_nr = atoi(argv[0]);
3550 if (bts_nr >= gsmnet->num_bts) {
3551 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3552 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3553 return CMD_WARNING;
3554 }
3555
3556 bts = gsm_bts_num(gsmnet, bts_nr);
3557 if (!bts) {
3558 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3559 return CMD_WARNING;
3560 }
3561
3562 if (!is_ipaccess_bts(bts)) {
3563 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3564 return CMD_WARNING;
3565 }
3566
3567
3568 /* close all connections */
3569 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003570 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003571 } else if (strcmp(argv[1], "rsl") == 0) {
3572 /* close all rsl connections */
3573 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003574 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003575 }
3576 } else {
3577 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3578 return CMD_WARNING;
3579 }
3580
3581 return CMD_SUCCESS;
3582}
3583
Harald Weltebf4ba722014-12-28 15:00:45 +01003584DEFUN(smscb_cmd, smscb_cmd_cmd,
3585 "bts <0-255> smscb-command <1-4> HEXSTRING",
3586 "BTS related commands\n" "BTS Number\n"
3587 "SMS Cell Broadcast\n" "Last Valid Block\n"
3588 "Hex Encoded SMSCB message (up to 88 octets)\n")
3589{
3590 struct gsm_bts *bts;
3591 int bts_nr = atoi(argv[0]);
3592 int last_block = atoi(argv[1]);
3593 struct rsl_ie_cb_cmd_type cb_cmd;
3594 uint8_t buf[88];
3595 int rc;
3596
3597 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3598 if (!bts) {
3599 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3600 return CMD_WARNING;
3601 }
3602 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3603 if (rc < 0 || rc > sizeof(buf)) {
3604 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3605 return CMD_WARNING;
3606 }
3607
3608 cb_cmd.spare = 0;
3609 cb_cmd.def_bcast = 0;
3610 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3611
3612 switch (last_block) {
3613 case 1:
3614 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3615 break;
3616 case 2:
3617 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3618 break;
3619 case 3:
3620 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3621 break;
3622 case 4:
3623 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3624 break;
3625 }
3626
3627 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3628
3629 return CMD_SUCCESS;
3630}
3631
3632
Harald Welte5213e992010-12-23 13:18:07 +01003633DEFUN(pdch_act, pdch_act_cmd,
3634 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3635 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3636 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3637 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3638 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3639{
3640 struct gsm_bts *bts;
3641 struct gsm_bts_trx *trx;
3642 struct gsm_bts_trx_ts *ts;
3643 int bts_nr = atoi(argv[0]);
3644 int trx_nr = atoi(argv[1]);
3645 int ts_nr = atoi(argv[2]);
3646 int activate;
3647
3648 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3649 if (!bts) {
3650 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3651 return CMD_WARNING;
3652 }
3653
3654 if (!is_ipaccess_bts(bts)) {
3655 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3656 VTY_NEWLINE);
3657 return CMD_WARNING;
3658 }
3659
3660 trx = gsm_bts_trx_num(bts, trx_nr);
3661 if (!trx) {
3662 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3663 return CMD_WARNING;
3664 }
3665
3666 ts = &trx->ts[ts_nr];
3667 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3668 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3669 "mode%s", ts_nr, VTY_NEWLINE);
3670 return CMD_WARNING;
3671 }
3672
3673 if (!strcmp(argv[3], "activate"))
3674 activate = 1;
3675 else
3676 activate = 0;
3677
3678 rsl_ipacc_pdch_activate(ts, activate);
3679
3680 return CMD_SUCCESS;
3681
3682}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003683
Harald Welte40152872010-05-16 20:52:23 +02003684extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02003685extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02003686
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003687int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08003688{
Harald Welte2addf852012-08-17 12:42:06 +02003689 cfg_ts_pchan_cmd.string =
3690 vty_cmd_string_from_valstr(tall_bsc_ctx,
3691 gsm_pchant_names,
3692 "phys_chan_config (", "|", ")",
3693 VTY_DO_LOWER);
3694 cfg_ts_pchan_cmd.doc =
3695 vty_cmd_string_from_valstr(tall_bsc_ctx,
3696 gsm_pchant_descs,
3697 "Physical Channel Combination\n",
3698 "\n", "", 0);
3699
Harald Welte85a77b12012-08-17 13:02:12 +02003700 cfg_bts_type_cmd.string =
3701 vty_cmd_string_from_valstr(tall_bsc_ctx,
3702 bts_type_names,
3703 "type (", "|", ")",
3704 VTY_DO_LOWER);
3705 cfg_bts_type_cmd.doc =
3706 vty_cmd_string_from_valstr(tall_bsc_ctx,
3707 bts_type_descs,
3708 "BTS Vendor/Type\n",
3709 "\n", "", 0);
3710
3711
Harald Welte7bc28f62010-05-12 16:10:35 +00003712 install_element_ve(&show_net_cmd);
3713 install_element_ve(&show_bts_cmd);
3714 install_element_ve(&show_trx_cmd);
3715 install_element_ve(&show_ts_cmd);
3716 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08003717 install_element_ve(&show_lchan_summary_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003718
Harald Welte7bc28f62010-05-12 16:10:35 +00003719 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01003720 install_element_ve(&show_paging_group_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003721
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003722 logging_vty_add_cmds(cat);
Jacob Erlbeck63fac682015-10-26 16:25:37 +01003723 osmo_stats_vty_add_cmds();
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01003724
Harald Weltee87eb462009-08-07 13:29:14 +02003725 install_element(CONFIG_NODE, &cfg_net_cmd);
3726 install_node(&net_node, config_write_net);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003727 vty_install_default(GSMNET_NODE);
Harald Welte62868882009-08-08 16:12:58 +02003728 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003729 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3730 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3731 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02003732 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01003733 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09003734 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01003735 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01003736 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01003737 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003738 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003739 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3740 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3741 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3742 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3743 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3744 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003745 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003746 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3747 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3748 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3749 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3750 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3751 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3752 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3753 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3754 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003755 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003756 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003757 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003758 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003759 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003760
3761 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003762 install_node(&bts_node, config_write_bts);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003763 vty_install_default(BTS_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003764 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003765 install_element(BTS_NODE, &cfg_description_cmd);
3766 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003767 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003768 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003769 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3770 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003771 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003772 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003773 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003774 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02003775 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003776 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003777 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversbergac27b952013-12-05 13:25:06 +01003778 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csabadef87b42015-02-07 13:27:36 +01003779 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003780 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003781 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3782 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003783 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003784 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3785 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003786 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3787 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3788 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003789 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3790 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003791 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003792 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04003793 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003794 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003795 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02003796 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003797 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3798 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003799 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3800 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3801 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3802 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3803 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3804 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversbergf9248d92013-03-10 11:49:35 +01003805 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003806 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003807 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003808 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003809 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003810 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003811 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003812 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003813 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003814 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3815 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3816 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003817 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003818 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3819 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003820 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3821 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003822 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003823 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3824 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +01003825 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
3826 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberg976493b2013-12-07 18:32:28 +01003827 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
3828 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
3829 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
3830 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
3831 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +01003832 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
3833 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01003834 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
3835 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
3836 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
3837 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
3838 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
3839 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
3840 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
3841 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
3842 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
3843 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
3844 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
3845 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
3846 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
3847 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
3848 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
3849 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
3850 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
3851 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
3852 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
3853 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
3854 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
3855 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003856
3857 install_element(BTS_NODE, &cfg_trx_cmd);
3858 install_node(&trx_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003859 vty_install_default(TRX_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003860 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003861 install_element(TRX_NODE, &cfg_description_cmd);
3862 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003863 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003864 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003865 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3866 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003867 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003868
3869 install_element(TRX_NODE, &cfg_ts_cmd);
3870 install_node(&ts_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003871 vty_install_default(TS_NODE);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003872 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003873 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003874 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003875 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003876 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3877 install_element(TS_NODE, &cfg_ts_maio_cmd);
3878 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3879 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003880 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003881
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003882 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003883 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Weltebf4ba722014-12-28 15:00:45 +01003884 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003885
Harald Welte63b964e2010-05-31 16:40:40 +02003886 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003887 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003888 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003889
Harald Welte40152872010-05-16 20:52:23 +02003890 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003891
3892 return 0;
3893}