blob: 24bae97994d785a97929c037b068a22973c33d95 [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 Welte91afe4c2009-06-20 18:15:19 +0200256 "BSIC %u, TSC %u and %u TRX%s",
257 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200258 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200259 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200260 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200261 vty_out(vty, "Description: %s%s",
262 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100263 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100264 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100265 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
266 VTY_NEWLINE);
267 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100268 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100269 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
270 VTY_NEWLINE);
271 vty_out(vty, "RACH Max transmissions: %u%s",
272 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
273 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100274 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200275 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200276 vty_out(vty, "Channel Description Attachment: %s%s",
277 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
278 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
279 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
280 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
281 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200282 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
283 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800284 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200285 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800286 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200287 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200288 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
289 vty_out(vty, " Skip Reset: %d%s",
290 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800291 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200292 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800293 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200294 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther03d80af2013-05-29 16:22:09 +0200295 vty_out(vty, " GPRS NSE: ");
296 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
297 vty_out(vty, " GPRS CELL: ");
298 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
299 vty_out(vty, " GPRS NSVC0: ");
300 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
301 vty_out(vty, " GPRS NSVC1: ");
302 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200303 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
304 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800305 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100306 if (is_ipaccess_bts(bts)) {
307 vty_out(vty, " OML Link state: %s.%s",
308 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
309 } else {
Harald Welte25572872009-10-20 00:22:00 +0200310 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
311 e1isl_dump_vty(vty, bts->oml_link);
312 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100313
314 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100315 memset(&pl, 0, sizeof(pl));
316 bts_chan_load(&pl, bts);
317 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
318 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800319}
320
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100321DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800322 SHOW_STR "Display information about a BTS\n"
323 "BTS number")
324{
Harald Welte40152872010-05-16 20:52:23 +0200325 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800326 int bts_nr;
327
328 if (argc != 0) {
329 /* use the BTS number that the user has specified */
330 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100331 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800332 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
333 VTY_NEWLINE);
334 return CMD_WARNING;
335 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200336 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800337 return CMD_SUCCESS;
338 }
339 /* print all BTS's */
340 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200341 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800342
343 return CMD_SUCCESS;
344}
345
Harald Welte62868882009-08-08 16:12:58 +0200346/* utility functions */
347static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
348 const char *ts, const char *ss)
349{
350 e1_link->e1_nr = atoi(line);
351 e1_link->e1_ts = atoi(ts);
352 if (!strcmp(ss, "full"))
353 e1_link->e1_ts_ss = 255;
354 else
355 e1_link->e1_ts_ss = atoi(ss);
356}
357
358static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
359 const char *prefix)
360{
361 if (!e1_link->e1_ts)
362 return;
363
364 if (e1_link->e1_ts_ss == 255)
365 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
366 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
367 else
368 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
369 prefix, e1_link->e1_nr, e1_link->e1_ts,
370 e1_link->e1_ts_ss, VTY_NEWLINE);
371}
372
373
Harald Welte97ceef92009-08-06 19:06:46 +0200374static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
375{
Harald Welte62868882009-08-08 16:12:58 +0200376 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200377 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
378 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200379 if (ts->pchan != GSM_PCHAN_NONE)
380 vty_out(vty, " phys_chan_config %s%s",
381 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200382 vty_out(vty, " hopping enabled %u%s",
383 ts->hopping.enabled, VTY_NEWLINE);
384 if (ts->hopping.enabled) {
385 unsigned int i;
386 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200387 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200388 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200389 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200390 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
391 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
392 continue;
393 vty_out(vty, " hopping arfcn add %u%s",
394 i, VTY_NEWLINE);
395 }
Harald Welteff598092010-12-24 12:07:07 +0100396 }
Harald Welte62868882009-08-08 16:12:58 +0200397 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100398
399 if (ts->trx->bts->model->config_write_ts)
400 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200401}
402
403static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
404{
405 int i;
406
Harald Weltee87eb462009-08-07 13:29:14 +0200407 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200408 if (trx->description)
409 vty_out(vty, " description %s%s", trx->description,
410 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200411 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200412 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200413 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200414 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100415 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200416 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200417 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
418 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200419
Harald Weltec02789e2011-02-14 16:15:21 +0100420 if (trx->bts->model->config_write_trx)
421 trx->bts->model->config_write_trx(vty, trx);
422
Harald Welte97ceef92009-08-06 19:06:46 +0200423 for (i = 0; i < TRX_NR_TS; i++)
424 config_write_ts_single(vty, &trx->ts[i]);
425}
426
Harald Weltea9251762010-05-11 23:50:21 +0200427static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
428{
429 unsigned int i;
430 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
431 VTY_NEWLINE);
432 if (bts->gprs.mode == BTS_GPRS_NONE)
433 return;
434
435 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
436 VTY_NEWLINE);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +0100437 vty_out(vty, " gprs network-control-order nc%u%s",
438 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Weltea9251762010-05-11 23:50:21 +0200439 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
440 VTY_NEWLINE);
441 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
442 vty_out(vty, " gprs cell timer %s %u%s",
443 get_value_string(gprs_bssgp_cfg_strs, i),
444 bts->gprs.cell.timer[i], VTY_NEWLINE);
445 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
446 VTY_NEWLINE);
447 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
448 vty_out(vty, " gprs ns timer %s %u%s",
449 get_value_string(gprs_ns_timer_strs, i),
450 bts->gprs.nse.timer[i], VTY_NEWLINE);
451 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
452 struct gsm_bts_gprs_nsvc *nsvc =
453 &bts->gprs.nsvc[i];
454 struct in_addr ia;
455
456 ia.s_addr = htonl(nsvc->remote_ip);
457 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
458 nsvc->nsvci, VTY_NEWLINE);
459 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
460 nsvc->local_port, VTY_NEWLINE);
461 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
462 nsvc->remote_port, VTY_NEWLINE);
463 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
464 inet_ntoa(ia), VTY_NEWLINE);
465 }
466}
467
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200468/* Write the model data if there is one */
469static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte97ceef92009-08-06 19:06:46 +0200470{
471 struct gsm_bts_trx *trx;
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200472
473 if (!bts->model)
474 return;
475
476 if (bts->model->config_write_bts)
477 bts->model->config_write_bts(vty, bts);
478
479 llist_for_each_entry(trx, &bts->trx_list, list)
480 config_write_trx_single(vty, trx);
481}
482
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +0200483static void write_amr_modes(struct vty *vty, const char *prefix,
484 const char *name, struct amr_mode *modes, int num)
485{
486 int i;
487
488 vty_out(vty, " %s threshold %s", prefix, name);
489 for (i = 0; i < num - 1; i++)
490 vty_out(vty, " %d", modes[i].threshold);
491 vty_out(vty, "%s", VTY_NEWLINE);
492 vty_out(vty, " %s hysteresis %s", prefix, name);
493 for (i = 0; i < num - 1; i++)
494 vty_out(vty, " %d", modes[i].hysteresis);
495 vty_out(vty, "%s", VTY_NEWLINE);
496}
497
Andreas Eversbergfa163e82014-01-19 11:47:44 +0100498static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
499 struct amr_multirate_conf *mr, int full)
500{
501 struct gsm48_multi_rate_conf *mr_conf;
502 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
503 int i, num;
504
505 if (!(mr->gsm48_ie[1]))
506 return;
507
508 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
509
510 num = 0;
511 vty_out(vty, " %s modes", prefix);
512 for (i = 0; i < ((full) ? 8 : 6); i++) {
513 if ((mr->gsm48_ie[1] & (1 << i))) {
514 vty_out(vty, " %d", i);
515 num++;
516 }
517 }
518 vty_out(vty, "%s", VTY_NEWLINE);
519 if (num > 4)
520 num = 4;
521 if (num > 1) {
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +0200522 write_amr_modes(vty, prefix, "ms", mr->ms_mode, num);
523 write_amr_modes(vty, prefix, "bts", mr->bts_mode, num);
Andreas Eversbergfa163e82014-01-19 11:47:44 +0100524 }
525 vty_out(vty, " %s start-mode ", prefix);
526 if (mr_conf->icmi) {
527 num = 0;
528 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
529 if ((mr->gsm48_ie[1] & (1 << i)))
530 num++;
531 if (mr_conf->smod == num - 1) {
532 vty_out(vty, "%d%s", num, VTY_NEWLINE);
533 break;
534 }
535 }
536 } else
537 vty_out(vty, "auto%s", VTY_NEWLINE);
538}
539
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200540static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
541{
Harald Welted8acf142010-07-30 11:50:09 +0200542 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200543
Harald Weltee87eb462009-08-07 13:29:14 +0200544 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
545 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200546 if (bts->description)
547 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200548 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100549 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200550 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200551 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200552 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte499cd252014-01-19 17:10:50 +0100553 if (bts->tsc != (bts->bsic & 7))
554 vty_out(vty, " training_sequence_code %u%s", bts->tsc,
555 VTY_NEWLINE);
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +0200556 if (bts->tz.override != 0) {
557 if (bts->tz.dst)
558 vty_out(vty, " timezone %d %d %d%s",
559 bts->tz.hr, bts->tz.mn, bts->tz.dst, VTY_NEWLINE);
560 else
561 vty_out(vty, " timezone %d %d%s",
562 bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
563 }
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200564 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100565 vty_out(vty, " cell reselection hysteresis %u%s",
566 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
567 vty_out(vty, " rxlev access min %u%s",
568 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100569
570 if (bts->si_common.cell_ro_sel_par.present) {
571 struct gsm48_si_selection_params *sp;
572 sp = &bts->si_common.cell_ro_sel_par;
573
574 if (sp->cbq)
575 vty_out(vty, " cell bar qualify %u%s",
576 sp->cbq, VTY_NEWLINE);
577
578 if (sp->cell_resel_off)
579 vty_out(vty, " cell reselection offset %u%s",
580 sp->cell_resel_off*2, VTY_NEWLINE);
581
582 if (sp->temp_offs == 7)
583 vty_out(vty, " temporary offset infinite%s",
584 VTY_NEWLINE);
585 else if (sp->temp_offs)
586 vty_out(vty, " temporary offset %u%s",
587 sp->temp_offs*10, VTY_NEWLINE);
588
589 if (sp->penalty_time == 31)
590 vty_out(vty, " penalty time reserved%s",
591 VTY_NEWLINE);
592 else if (sp->penalty_time)
593 vty_out(vty, " penalty time %u%s",
594 (sp->penalty_time*20)+20, VTY_NEWLINE);
595 }
596
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +0200597 /* Is periodic LU enabled or disabled? */
598 if (bts->si_common.chan_desc.t3212 == 0)
599 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
600 else
601 vty_out(vty, " periodic location update %u%s",
602 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
603
Andreas Eversbergf9248d92013-03-10 11:49:35 +0100604 vty_out(vty, " radio-link-timeout %d%s",
605 get_radio_link_timeout(&bts->si_common.cell_options),
606 VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200607 vty_out(vty, " channel allocator %s%s",
608 bts->chan_alloc_reverse ? "descending" : "ascending",
609 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100610 vty_out(vty, " rach tx integer %u%s",
611 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
612 vty_out(vty, " rach max transmission %u%s",
613 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
614 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800615
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200616 vty_out(vty, " channel-descrption attach %u%s",
617 bts->si_common.chan_desc.att, VTY_NEWLINE);
618 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
619 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
620 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
621 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
622
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800623 if (bts->rach_b_thresh != -1)
624 vty_out(vty, " rach nm busy threshold %u%s",
625 bts->rach_b_thresh, VTY_NEWLINE);
626 if (bts->rach_ldavg_slots != -1)
627 vty_out(vty, " rach nm load average %u%s",
628 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100629 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200630 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800631 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
632 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov80d58432013-09-16 13:13:04 +0400633 if ((bts->si_common.rach_control.t3) != 0)
634 for (i = 0; i < 8; i++)
635 if (bts->si_common.rach_control.t3 & (0x1 << i))
636 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
637 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
638 for (i = 0; i < 8; i++)
639 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
640 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200641 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
642 if (bts->si_mode_static & (1 << i)) {
643 vty_out(vty, " system-information %s mode static%s",
644 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
645 vty_out(vty, " system-information %s static %s%s",
646 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100647 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200648 VTY_NEWLINE);
649 }
650 }
Harald Welte08011e22011-03-04 13:41:31 +0100651 switch (bts->type) {
652 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200653 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200654 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200655 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-03-12 13:57:05 +0100656 if (bts->ip_access.rsl_ip) {
657 struct in_addr ia;
658 ia.s_addr = htonl(bts->ip_access.rsl_ip);
659 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
660 VTY_NEWLINE);
661 }
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200662 vty_out(vty, " oml ip.access stream_id %u line %u%s",
663 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100664 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200665 case GSM_BTS_TYPE_NOKIA_SITE:
666 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversbergac27b952013-12-05 13:25:06 +0100667 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
668 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csabadef87b42015-02-07 13:27:36 +0100669 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 +0100670 /* fall through: Nokia requires "oml e1" parameters also */
Harald Welte08011e22011-03-04 13:41:31 +0100671 default:
Harald Welte62868882009-08-08 16:12:58 +0200672 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
673 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100674 break;
Harald Welte62868882009-08-08 16:12:58 +0200675 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800676
677 /* if we have a limit, write it */
678 if (bts->paging.free_chans_need >= 0)
679 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
680
Harald Welteca46eff2011-01-11 23:44:56 +0100681 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100682 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
683 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100684 for (i = 0; i < 1024; i++) {
685 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
686 vty_out(vty, " neighbor-list add arfcn %u%s",
687 i, VTY_NEWLINE);
688 }
689 }
Harald Weltef989b782011-02-15 11:43:27 +0100690 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
691 for (i = 0; i < 1024; i++) {
692 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
693 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
694 i, VTY_NEWLINE);
695 }
696 }
Harald Welteca46eff2011-01-11 23:44:56 +0100697
Andreas Eversberg976493b2013-12-07 18:32:28 +0100698 vty_out(vty, " codec-support fr");
699 if (bts->codec.hr)
700 vty_out(vty, " hr");
701 if (bts->codec.efr)
702 vty_out(vty, " efr");
703 if (bts->codec.amr)
704 vty_out(vty, " amr");
705 vty_out(vty, "%s", VTY_NEWLINE);
706
Andreas Eversbergfa163e82014-01-19 11:47:44 +0100707 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
708 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
709
Harald Weltea9251762010-05-11 23:50:21 +0200710 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200711
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200712 if (bts->excl_from_rf_lock)
713 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
714
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +0100715 vty_out(vty, " %sforce-combined-si%s",
716 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
717
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +0100718 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
719 int j;
720
721 if (bts->depends_on[i] == 0)
722 continue;
723
724 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
725 int bts_nr;
726
727 if ((bts->depends_on[i] & (1<<j)) == 0)
728 continue;
729
730 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
731 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
732 }
733 }
734
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200735 config_write_bts_model(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200736}
737
738static int config_write_bts(struct vty *v)
739{
Harald Welte40152872010-05-16 20:52:23 +0200740 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200741 struct gsm_bts *bts;
742
743 llist_for_each_entry(bts, &gsmnet->bts_list, list)
744 config_write_bts_single(v, bts);
745
746 return CMD_SUCCESS;
747}
748
Harald Weltee87eb462009-08-07 13:29:14 +0200749static int config_write_net(struct vty *vty)
750{
Harald Welte40152872010-05-16 20:52:23 +0200751 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
752
Harald Weltee87eb462009-08-07 13:29:14 +0200753 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200754 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200755 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200756 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
757 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200758 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100759 vty_out(vty, " location updating reject cause %u%s",
760 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900761 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100762 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800763 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100764 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
765 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100766 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100767 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100768 vty_out(vty, " handover window rxlev averaging %u%s",
769 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
770 vty_out(vty, " handover window rxqual averaging %u%s",
771 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
772 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
773 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
774 vty_out(vty, " handover power budget interval %u%s",
775 gsmnet->handover.pwr_interval, VTY_NEWLINE);
776 vty_out(vty, " handover power budget hysteresis %u%s",
777 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
778 vty_out(vty, " handover maximum distance %u%s",
779 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100780 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100781 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
782 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
783 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
784 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
785 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
786 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
787 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
788 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
789 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100790 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100791 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100792 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100793 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeckda8770b2014-12-03 09:28:24 +0100794 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200795
796 return CMD_SUCCESS;
797}
Harald Welte97ceef92009-08-06 19:06:46 +0200798
Harald Welte59b04682009-06-10 05:40:52 +0800799static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
800{
801 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
802 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200803 vty_out(vty, "Description: %s%s",
804 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200805 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200806 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200807 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200808 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800809 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200810 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800811 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200812 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200813 if (is_ipaccess_bts(trx->bts)) {
814 vty_out(vty, " ip.access stream ID: 0x%02x%s",
815 trx->rsl_tei, VTY_NEWLINE);
816 } else {
817 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
818 e1isl_dump_vty(vty, trx->rsl_link);
819 }
Harald Welte59b04682009-06-10 05:40:52 +0800820}
821
822DEFUN(show_trx,
823 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100824 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200825 SHOW_STR "Display information about a TRX\n"
826 "BTS Number\n"
827 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800828{
Harald Welte40152872010-05-16 20:52:23 +0200829 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800830 struct gsm_bts *bts = NULL;
831 struct gsm_bts_trx *trx;
832 int bts_nr, trx_nr;
833
834 if (argc >= 1) {
835 /* use the BTS number that the user has specified */
836 bts_nr = atoi(argv[0]);
837 if (bts_nr >= net->num_bts) {
838 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
839 VTY_NEWLINE);
840 return CMD_WARNING;
841 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200842 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800843 }
844 if (argc >= 2) {
845 trx_nr = atoi(argv[1]);
846 if (trx_nr >= bts->num_trx) {
847 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
848 VTY_NEWLINE);
849 return CMD_WARNING;
850 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200851 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800852 trx_dump_vty(vty, trx);
853 return CMD_SUCCESS;
854 }
855 if (bts) {
856 /* print all TRX in this BTS */
857 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200858 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800859 trx_dump_vty(vty, trx);
860 }
861 return CMD_SUCCESS;
862 }
863
864 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200865 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800866 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200867 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800868 trx_dump_vty(vty, trx);
869 }
870 }
871
872 return CMD_SUCCESS;
873}
874
Harald Welte97ceef92009-08-06 19:06:46 +0200875
Harald Welte59b04682009-06-10 05:40:52 +0800876static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
877{
Harald Welte85771a42011-05-30 12:09:13 +0200878 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100879 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte025e6c92014-01-19 17:18:21 +0100880 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Welte98d2bb82010-12-24 12:14:52 +0100881 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100882 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100883 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
884 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800885 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200886 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530887 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800888 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
889 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
890 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800891}
892
893DEFUN(show_ts,
894 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100895 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200896 SHOW_STR "Display information about a TS\n"
897 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800898{
Harald Welte40152872010-05-16 20:52:23 +0200899 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100900 struct gsm_bts *bts = NULL;
901 struct gsm_bts_trx *trx = NULL;
902 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800903 int bts_nr, trx_nr, ts_nr;
904
905 if (argc >= 1) {
906 /* use the BTS number that the user has specified */
907 bts_nr = atoi(argv[0]);
908 if (bts_nr >= net->num_bts) {
909 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
910 VTY_NEWLINE);
911 return CMD_WARNING;
912 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200913 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800914 }
915 if (argc >= 2) {
916 trx_nr = atoi(argv[1]);
917 if (trx_nr >= bts->num_trx) {
918 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
919 VTY_NEWLINE);
920 return CMD_WARNING;
921 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200922 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800923 }
924 if (argc >= 3) {
925 ts_nr = atoi(argv[2]);
926 if (ts_nr >= TRX_NR_TS) {
927 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
928 VTY_NEWLINE);
929 return CMD_WARNING;
930 }
Harald Welte06868382010-12-24 12:05:03 +0100931 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800932 ts = &trx->ts[ts_nr];
933 ts_dump_vty(vty, ts);
934 return CMD_SUCCESS;
935 }
Harald Welte06868382010-12-24 12:05:03 +0100936
937 if (bts && trx) {
938 /* Iterate over all TS in this TRX */
939 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
940 ts = &trx->ts[ts_nr];
941 ts_dump_vty(vty, ts);
942 }
943 } else if (bts) {
944 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800945 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200946 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800947 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
948 ts = &trx->ts[ts_nr];
949 ts_dump_vty(vty, ts);
950 }
951 }
Harald Welte06868382010-12-24 12:05:03 +0100952 } else {
953 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
954 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
955 bts = gsm_bts_num(net, bts_nr);
956 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
957 trx = gsm_bts_trx_num(bts, trx_nr);
958 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
959 ts = &trx->ts[ts_nr];
960 ts_dump_vty(vty, ts);
961 }
962 }
963 }
Harald Welte59b04682009-06-10 05:40:52 +0800964 }
965
966 return CMD_SUCCESS;
967}
968
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100969static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800970{
Harald Welte91afe4c2009-06-20 18:15:19 +0200971 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800972 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7d552fc2013-12-12 15:45:41 +0100973 if (strlen(subscr->name))
Harald Welte59b04682009-06-10 05:40:52 +0800974 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freyther4fcba8e2014-04-04 11:53:18 +0200975 if (strlen(subscr->extension))
Harald Welte59b04682009-06-10 05:40:52 +0800976 vty_out(vty, " Extension: %s%s", subscr->extension,
977 VTY_NEWLINE);
Holger Hans Peter Freytherb0be39b2013-07-14 08:38:24 +0200978 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200979 if (subscr->tmsi != GSM_RESERVED_TMSI)
980 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200981 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100982
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200983 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800984}
985
Harald Welte44007742009-12-22 21:43:14 +0100986static void meas_rep_dump_uni_vty(struct vty *vty,
987 struct gsm_meas_rep_unidir *mru,
988 const char *prefix,
989 const char *dir)
990{
991 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
992 prefix, dir, rxlev2dbm(mru->full.rx_lev),
993 dir, rxlev2dbm(mru->sub.rx_lev));
994 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
995 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
996 VTY_NEWLINE);
997}
998
999static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1000 const char *prefix)
1001{
1002 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1003 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1004 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1005 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1006 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1007 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1008 VTY_NEWLINE);
1009 if (mr->flags & MEAS_REP_F_MS_TO)
1010 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
1011 mr->ms_timing_offset, VTY_NEWLINE);
1012 if (mr->flags & MEAS_REP_F_MS_L1)
1013 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1014 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1015 if (mr->flags & MEAS_REP_F_DL_VALID)
1016 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1017 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1018}
1019
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001020static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +08001021{
Harald Welte44007742009-12-22 21:43:14 +01001022 int idx;
1023
Harald Weltef62dad62010-12-24 12:22:34 +01001024 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1025 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1026 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther960adfe2014-12-28 12:08:28 +01001027 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +08001028 lchan->conn ? 1: 0,
Holger Hans Peter Freyther960adfe2014-12-28 12:08:28 +01001029 gsm_lchans_name(lchan->state),
1030 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1031 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1032 VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +01001033 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1034 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1035 - lchan->bs_power*2,
1036 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1037 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +08001038 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +08001039 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +08001040 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +08001041 } else
1042 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +05301043 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1044 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +02001045 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +05301046 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1047 inet_ntoa(ia), lchan->abis_ip.bound_port,
1048 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1049 VTY_NEWLINE);
1050 }
Harald Welte44007742009-12-22 21:43:14 +01001051
1052 /* we want to report the last measurement report */
1053 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1054 lchan->meas_rep_idx, 1);
1055 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +08001056}
1057
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001058static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1059{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +08001060 struct gsm_meas_rep *mr;
1061 int idx;
1062
1063 /* we want to report the last measurement report */
1064 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1065 lchan->meas_rep_idx, 1);
1066 mr = &lchan->meas_rep[idx];
1067
Harald Weltef62dad62010-12-24 12:22:34 +01001068 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
1069 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
1070 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +01001071 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +08001072 rxlev2dbm(mr->dl.full.rx_lev),
1073 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001074 VTY_NEWLINE);
1075}
1076
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001077
1078static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1079 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1080{
1081 int lchan_nr;
1082 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1083 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1084 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1085 continue;
1086 dump_cb(vty, lchan);
1087 }
1088
1089 return CMD_SUCCESS;
1090}
1091
1092static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1093 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1094{
1095 int ts_nr;
1096
1097 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1098 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1099 dump_lchan_trx_ts(ts, vty, dump_cb);
1100 }
1101
1102 return CMD_SUCCESS;
1103}
1104
1105static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1106 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1107{
1108 int trx_nr;
1109
1110 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1111 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1112 dump_lchan_trx(trx, vty, dump_cb);
1113 }
1114
1115 return CMD_SUCCESS;
1116}
1117
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001118static int lchan_summary(struct vty *vty, int argc, const char **argv,
1119 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +08001120{
Harald Welte40152872010-05-16 20:52:23 +02001121 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001122 struct gsm_bts *bts;
1123 struct gsm_bts_trx *trx;
1124 struct gsm_bts_trx_ts *ts;
1125 struct gsm_lchan *lchan;
1126 int bts_nr, trx_nr, ts_nr, lchan_nr;
1127
1128 if (argc >= 1) {
1129 /* use the BTS number that the user has specified */
1130 bts_nr = atoi(argv[0]);
1131 if (bts_nr >= net->num_bts) {
1132 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1133 VTY_NEWLINE);
1134 return CMD_WARNING;
1135 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001136 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001137
1138 if (argc == 1)
1139 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001140 }
1141 if (argc >= 2) {
1142 trx_nr = atoi(argv[1]);
1143 if (trx_nr >= bts->num_trx) {
1144 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1145 VTY_NEWLINE);
1146 return CMD_WARNING;
1147 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001148 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001149
1150 if (argc == 2)
1151 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001152 }
1153 if (argc >= 3) {
1154 ts_nr = atoi(argv[2]);
1155 if (ts_nr >= TRX_NR_TS) {
1156 vty_out(vty, "%% can't find TS %s%s", argv[2],
1157 VTY_NEWLINE);
1158 return CMD_WARNING;
1159 }
1160 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001161
1162 if (argc == 3)
1163 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001164 }
1165 if (argc >= 4) {
1166 lchan_nr = atoi(argv[3]);
1167 if (lchan_nr >= TS_MAX_LCHAN) {
1168 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1169 VTY_NEWLINE);
1170 return CMD_WARNING;
1171 }
1172 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001173 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001174 return CMD_SUCCESS;
1175 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001176
1177
Harald Welte59b04682009-06-10 05:40:52 +08001178 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001179 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001180 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001181 }
1182
1183 return CMD_SUCCESS;
1184}
1185
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001186
1187DEFUN(show_lchan,
1188 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001189 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001190 SHOW_STR "Display information about a logical channel\n"
1191 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001192 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001193
1194{
1195 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1196}
1197
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001198DEFUN(show_lchan_summary,
1199 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001200 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001201 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001202 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001203 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001204 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001205{
1206 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1207}
1208
Harald Welte59b04682009-06-10 05:40:52 +08001209static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1210{
1211 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1212 subscr_dump_vty(vty, pag->subscr);
1213}
1214
1215static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1216{
1217 struct gsm_paging_request *pag;
1218
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001219 if (!bts->paging.bts)
1220 return;
1221
Harald Welte59b04682009-06-10 05:40:52 +08001222 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1223 paging_dump_vty(vty, pag);
1224}
1225
1226DEFUN(show_paging,
1227 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001228 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001229 SHOW_STR "Display information about paging reuqests of a BTS\n"
1230 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001231{
Harald Welte40152872010-05-16 20:52:23 +02001232 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001233 struct gsm_bts *bts;
1234 int bts_nr;
1235
1236 if (argc >= 1) {
1237 /* use the BTS number that the user has specified */
1238 bts_nr = atoi(argv[0]);
1239 if (bts_nr >= net->num_bts) {
1240 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1241 VTY_NEWLINE);
1242 return CMD_WARNING;
1243 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001244 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001245 bts_paging_dump_vty(vty, bts);
1246
1247 return CMD_SUCCESS;
1248 }
1249 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001250 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001251 bts_paging_dump_vty(vty, bts);
1252 }
1253
1254 return CMD_SUCCESS;
1255}
1256
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01001257DEFUN(show_paging_group,
1258 show_paging_group_cmd,
1259 "show paging-group <0-255> IMSI",
1260 SHOW_STR "Display the paging group\n"
1261 "BTS Number\n" "IMSI\n")
1262{
1263 struct gsm_network *net = gsmnet_from_vty(vty);
1264 struct gsm_bts *bts;
1265 unsigned int page_group;
1266 int bts_nr = atoi(argv[0]);
1267
1268 if (bts_nr >= net->num_bts) {
1269 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1270 return CMD_WARNING;
1271 }
1272
1273 bts = gsm_bts_num(net, bts_nr);
1274 if (!bts) {
1275 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1276 return CMD_WARNING;
1277 }
1278
1279 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1280 str_to_imsi(argv[1]));
1281 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1282 str_to_imsi(argv[1]), bts->nr,
1283 page_group, VTY_NEWLINE);
1284 return CMD_SUCCESS;
1285}
1286
Harald Weltee87eb462009-08-07 13:29:14 +02001287DEFUN(cfg_net,
1288 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001289 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001290{
Harald Welte40152872010-05-16 20:52:23 +02001291 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001292 vty->node = GSMNET_NODE;
1293
1294 return CMD_SUCCESS;
1295}
1296
Harald Weltee87eb462009-08-07 13:29:14 +02001297DEFUN(cfg_net_ncc,
1298 cfg_net_ncc_cmd,
1299 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001300 "Set the GSM network country code\n"
1301 "Country commands\n"
1302 CODE_CMD_STR
1303 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001304{
Harald Welte40152872010-05-16 20:52:23 +02001305 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1306
Harald Weltee87eb462009-08-07 13:29:14 +02001307 gsmnet->country_code = atoi(argv[0]);
1308
1309 return CMD_SUCCESS;
1310}
1311
1312DEFUN(cfg_net_mnc,
1313 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001314 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001315 "Set the GSM mobile network code\n"
1316 "Network Commands\n"
1317 CODE_CMD_STR
1318 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001319{
Harald Welte40152872010-05-16 20:52:23 +02001320 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1321
Harald Weltee87eb462009-08-07 13:29:14 +02001322 gsmnet->network_code = atoi(argv[0]);
1323
1324 return CMD_SUCCESS;
1325}
1326
1327DEFUN(cfg_net_name_short,
1328 cfg_net_name_short_cmd,
1329 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001330 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001331{
Harald Welte40152872010-05-16 20:52:23 +02001332 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1333
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001334 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001335 return CMD_SUCCESS;
1336}
1337
1338DEFUN(cfg_net_name_long,
1339 cfg_net_name_long_cmd,
1340 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001341 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001342{
Harald Welte40152872010-05-16 20:52:23 +02001343 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1344
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001345 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001346 return CMD_SUCCESS;
1347}
Harald Welte59b04682009-06-10 05:40:52 +08001348
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001349DEFUN(cfg_net_auth_policy,
1350 cfg_net_auth_policy_cmd,
1351 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001352 "Authentication (not cryptographic)\n"
1353 "Set the GSM network authentication policy\n"
1354 "Require the MS to be activated in HLR\n"
1355 "Accept all MS, whether in HLR or not\n"
1356 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001357{
1358 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001359 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001360
1361 gsmnet->auth_policy = policy;
1362
1363 return CMD_SUCCESS;
1364}
1365
Harald Welte59936d72009-11-18 20:33:19 +01001366DEFUN(cfg_net_reject_cause,
1367 cfg_net_reject_cause_cmd,
1368 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001369 "Set the reject cause of location updating reject\n"
1370 "Set the reject cause of location updating reject\n"
1371 "Set the reject cause of location updating reject\n"
1372 "Set the reject cause of location updating reject\n"
1373 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001374{
Harald Welte40152872010-05-16 20:52:23 +02001375 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1376
Harald Welte59936d72009-11-18 20:33:19 +01001377 gsmnet->reject_cause = atoi(argv[0]);
1378
1379 return CMD_SUCCESS;
1380}
1381
Harald Weltecca253a2009-08-30 15:47:06 +09001382DEFUN(cfg_net_encryption,
1383 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001384 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001385 "Encryption options\n"
1386 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001387 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1388 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001389{
Harald Welte40152872010-05-16 20:52:23 +02001390 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1391
Andreas.Eversberg53293292009-11-17 09:55:26 +01001392 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001393
1394 return CMD_SUCCESS;
1395}
1396
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001397DEFUN(cfg_net_neci,
1398 cfg_net_neci_cmd,
1399 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001400 "New Establish Cause Indication\n"
1401 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001402{
Harald Welte40152872010-05-16 20:52:23 +02001403 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1404
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001405 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001406 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001407 return CMD_SUCCESS;
1408}
1409
Harald Welte52af1952009-12-13 10:53:12 +01001410DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1411 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001412 "Radio Resource Location Protocol\n"
1413 "Set the Radio Resource Location Protocol Mode\n"
1414 "Don't send RRLP request\n"
1415 "Request MS-based location\n"
1416 "Request any location, prefer MS-based\n"
1417 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001418{
Harald Welte40152872010-05-16 20:52:23 +02001419 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1420
Harald Welte52af1952009-12-13 10:53:12 +01001421 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1422
1423 return CMD_SUCCESS;
1424}
1425
Harald Weltea310f3e2009-12-14 09:00:24 +01001426DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1427 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001428 "Mobility Management\n"
1429 "Send MM INFO after LOC UPD ACCEPT\n"
1430 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001431{
Harald Welte40152872010-05-16 20:52:23 +02001432 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1433
Harald Weltea310f3e2009-12-14 09:00:24 +01001434 gsmnet->send_mm_info = atoi(argv[0]);
1435
1436 return CMD_SUCCESS;
1437}
1438
Harald Welte9e002452010-05-11 21:53:49 +02001439#define HANDOVER_STR "Handover Options\n"
1440
Harald Welte0af9c9f2009-12-19 21:41:52 +01001441DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1442 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001443 HANDOVER_STR
1444 "Don't perform in-call handover\n"
1445 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001446{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001447 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001448 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001449
1450 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001451 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1452 "is enabled by using the -P command line option%s",
1453 VTY_NEWLINE);
1454 return CMD_WARNING;
1455 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001456 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001457
1458 return CMD_SUCCESS;
1459}
1460
Harald Welte9e002452010-05-11 21:53:49 +02001461#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1462#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1463#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1464#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001465#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001466
Harald Weltea8062f12009-12-21 16:51:50 +01001467DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1468 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001469 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001470 "How many RxLev measurements are used for averaging\n"
1471 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001472{
Harald Welte40152872010-05-16 20:52:23 +02001473 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001474 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1475 return CMD_SUCCESS;
1476}
1477
1478DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1479 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001480 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001481 "How many RxQual measurements are used for averaging\n"
1482 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001483{
Harald Welte40152872010-05-16 20:52:23 +02001484 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001485 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1486 return CMD_SUCCESS;
1487}
1488
1489DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1490 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001491 HO_WIN_RXLEV_STR "Neighbor\n"
1492 "How many RxQual measurements are used for averaging\n"
1493 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001494{
Harald Welte40152872010-05-16 20:52:23 +02001495 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001496 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1497 return CMD_SUCCESS;
1498}
1499
1500DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1501 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001502 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001503 "How often to check if we have a better cell (SACCH frames)\n"
1504 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001505{
Harald Welte40152872010-05-16 20:52:23 +02001506 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001507 gsmnet->handover.pwr_interval = atoi(argv[0]);
1508 return CMD_SUCCESS;
1509}
1510
1511DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1512 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001513 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001514 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1515 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001516{
Harald Welte40152872010-05-16 20:52:23 +02001517 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001518 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1519 return CMD_SUCCESS;
1520}
1521
1522DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1523 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001524 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001525 "How big is the maximum timing advance before HO is forced\n"
1526 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001527{
Harald Welte40152872010-05-16 20:52:23 +02001528 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001529 gsmnet->handover.max_distance = atoi(argv[0]);
1530 return CMD_SUCCESS;
1531}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001532
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001533DEFUN(cfg_net_pag_any_tch,
1534 cfg_net_pag_any_tch_cmd,
1535 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001536 "Assign a TCH when receiving a Paging Any request\n"
1537 "Any Channel\n" "Use\n" "TCH\n"
1538 "Do not use TCH for Paging Request Any\n"
1539 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001540{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001541 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001542 gsmnet->pag_any_tch = atoi(argv[0]);
1543 gsm_net_update_ctype(gsmnet);
1544 return CMD_SUCCESS;
1545}
1546
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001547#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001548 DEFUN(cfg_net_T##number, \
1549 cfg_net_T##number##_cmd, \
1550 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001551 "Configure GSM Timers\n" \
Holger Hans Peter Freyther18dd1a32014-04-11 19:30:27 +02001552 doc "Timer Value in seconds\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001553{ \
Harald Welte40152872010-05-16 20:52:23 +02001554 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001555 int value = atoi(argv[0]); \
1556 \
1557 if (value < 0 || value > 65535) { \
1558 vty_out(vty, "Timer value %s out of range.%s", \
1559 argv[0], VTY_NEWLINE); \
1560 return CMD_WARNING; \
1561 } \
1562 \
1563 gsmnet->T##number = value; \
1564 return CMD_SUCCESS; \
1565}
1566
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001567DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1568DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001569DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001570DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001571DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001572DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1573DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1574DECLARE_TIMER(3115, "Currently not used.\n")
1575DECLARE_TIMER(3117, "Currently not used.\n")
1576DECLARE_TIMER(3119, "Currently not used.\n")
1577DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1578DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001579
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001580DEFUN(cfg_net_dtx,
1581 cfg_net_dtx_cmd,
1582 "dtx-used (0|1)",
1583 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001584 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001585{
1586 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1587 gsmnet->dtx_enabled = atoi(argv[0]);
1588 return CMD_SUCCESS;
1589}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001590
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001591DEFUN(cfg_net_subscr_keep,
1592 cfg_net_subscr_keep_cmd,
1593 "subscriber-keep-in-ram (0|1)",
1594 "Keep unused subscribers in RAM.\n"
1595 "Delete unused subscribers\n" "Keep unused subscribers\n")
1596{
1597 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Jacob Erlbeckda8770b2014-12-03 09:28:24 +01001598 gsmnet->subscr_group->keep_subscr = atoi(argv[0]);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001599 return CMD_SUCCESS;
1600}
1601
Harald Welte59b04682009-06-10 05:40:52 +08001602/* per-BTS configuration */
1603DEFUN(cfg_bts,
1604 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001605 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001606 "Select a BTS to configure\n"
1607 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001608{
Harald Welte40152872010-05-16 20:52:23 +02001609 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001610 int bts_nr = atoi(argv[0]);
1611 struct gsm_bts *bts;
1612
Harald Weltee712a5f2009-06-21 16:17:15 +02001613 if (bts_nr > gsmnet->num_bts) {
1614 vty_out(vty, "%% The next unused BTS number is %u%s",
1615 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001616 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001617 } else if (bts_nr == gsmnet->num_bts) {
1618 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001619 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1620 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001621 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001622 bts = gsm_bts_num(gsmnet, bts_nr);
1623
Daniel Willmann580085f2010-01-11 13:43:07 +01001624 if (!bts) {
1625 vty_out(vty, "%% Unable to allocate BTS %u%s",
1626 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001627 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001628 }
Harald Welte59b04682009-06-10 05:40:52 +08001629
1630 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001631 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001632 vty->node = BTS_NODE;
1633
1634 return CMD_SUCCESS;
1635}
1636
1637DEFUN(cfg_bts_type,
1638 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001639 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001640 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001641{
1642 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001643 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001644
Harald Welte59698fb2010-01-10 18:01:52 +01001645 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1646 if (rc < 0)
1647 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001648
Harald Welte59b04682009-06-10 05:40:52 +08001649 return CMD_SUCCESS;
1650}
1651
Harald Welte91afe4c2009-06-20 18:15:19 +02001652DEFUN(cfg_bts_band,
1653 cfg_bts_band_cmd,
1654 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001655 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001656{
1657 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001658 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001659
1660 if (band < 0) {
1661 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1662 band, VTY_NEWLINE);
1663 return CMD_WARNING;
1664 }
1665
1666 bts->band = band;
1667
1668 return CMD_SUCCESS;
1669}
1670
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001671DEFUN(cfg_bts_ci,
1672 cfg_bts_ci_cmd,
1673 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001674 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001675{
1676 struct gsm_bts *bts = vty->index;
1677 int ci = atoi(argv[0]);
1678
1679 if (ci < 0 || ci > 0xffff) {
1680 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1681 ci, VTY_NEWLINE);
1682 return CMD_WARNING;
1683 }
1684 bts->cell_identity = ci;
1685
1686 return CMD_SUCCESS;
1687}
1688
Harald Welte59b04682009-06-10 05:40:52 +08001689DEFUN(cfg_bts_lac,
1690 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001691 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001692 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001693{
1694 struct gsm_bts *bts = vty->index;
1695 int lac = atoi(argv[0]);
1696
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001697 if (lac < 0 || lac > 0xffff) {
1698 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001699 lac, VTY_NEWLINE);
1700 return CMD_WARNING;
1701 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001702
1703 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1704 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1705 lac, VTY_NEWLINE);
1706 return CMD_WARNING;
1707 }
1708
Harald Welte59b04682009-06-10 05:40:52 +08001709 bts->location_area_code = lac;
1710
1711 return CMD_SUCCESS;
1712}
1713
Harald Weltea54a2bb2009-12-01 18:04:30 +05301714
Harald Welte59b04682009-06-10 05:40:52 +08001715DEFUN(cfg_bts_tsc,
1716 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001717 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001718 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001719{
1720 struct gsm_bts *bts = vty->index;
1721 int tsc = atoi(argv[0]);
1722
Harald Welte499cd252014-01-19 17:10:50 +01001723 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC)) {
1724 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
1725 "falling back to BCC%s", VTY_NEWLINE);
1726 bts->tsc = bts->bsic & 7;
1727 return CMD_WARNING;
1728 }
1729
Harald Welte59b04682009-06-10 05:40:52 +08001730 bts->tsc = tsc;
1731
1732 return CMD_SUCCESS;
1733}
1734
1735DEFUN(cfg_bts_bsic,
1736 cfg_bts_bsic_cmd,
1737 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001738 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1739 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001740{
1741 struct gsm_bts *bts = vty->index;
1742 int bsic = atoi(argv[0]);
1743
1744 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001745 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001746 bsic, VTY_NEWLINE);
1747 return CMD_WARNING;
1748 }
1749 bts->bsic = bsic;
1750
Harald Welte499cd252014-01-19 17:10:50 +01001751 /* automatically re-configuer the TSC if we change the BCC
1752 * which is the lower 3 bits of the BSIC */
1753 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC))
1754 bts->tsc = bts->bsic & 7;
1755
Harald Welte59b04682009-06-10 05:40:52 +08001756 return CMD_SUCCESS;
1757}
1758
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001759DEFUN(cfg_bts_timezone,
1760 cfg_bts_timezone_cmd,
1761 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001762 "Set the Timezone Offset of this BTS\n"
1763 "Timezone offset (hours)\n"
1764 "Timezone offset (00 minutes)\n"
1765 "Timezone offset (15 minutes)\n"
1766 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001767 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001768 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001769{
1770 struct gsm_bts *bts = vty->index;
1771 int tzhr = atoi(argv[0]);
1772 int tzmn = atoi(argv[1]);
1773
Harald Welte5c3abf92012-07-08 16:48:11 +02001774 bts->tz.hr = tzhr;
1775 bts->tz.mn = tzmn;
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02001776 bts->tz.dst = 0;
1777 bts->tz.override = 1;
1778
1779 return CMD_SUCCESS;
1780}
1781
1782DEFUN(cfg_bts_timezone_dst,
1783 cfg_bts_timezone_dst_cmd,
1784 "timezone <-19-19> (0|15|30|45) <0-2>",
1785 "Set the Timezone Offset of this BTS\n"
1786 "Timezone offset (hours)\n"
1787 "Timezone offset (00 minutes)\n"
1788 "Timezone offset (15 minutes)\n"
1789 "Timezone offset (30 minutes)\n"
1790 "Timezone offset (45 minutes)\n"
1791 "DST offset (hours)\n"
1792 )
1793{
1794 struct gsm_bts *bts = vty->index;
1795 int tzhr = atoi(argv[0]);
1796 int tzmn = atoi(argv[1]);
1797 int tzdst = atoi(argv[2]);
1798
1799 bts->tz.hr = tzhr;
1800 bts->tz.mn = tzmn;
1801 bts->tz.dst = tzdst;
Harald Welte5c3abf92012-07-08 16:48:11 +02001802 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001803
1804 return CMD_SUCCESS;
1805}
1806
1807DEFUN(cfg_bts_no_timezone,
1808 cfg_bts_no_timezone_cmd,
1809 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001810 NO_STR
1811 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001812{
1813 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001814
1815 bts->tz.override = 0;
1816
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001817 return CMD_SUCCESS;
1818}
Harald Welte59b04682009-06-10 05:40:52 +08001819
1820DEFUN(cfg_bts_unit_id,
1821 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001822 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001823 "Abis/IP specific options\n"
1824 "Set the IPA BTS Unit ID\n"
1825 "Unit ID (Site)\n"
1826 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001827{
1828 struct gsm_bts *bts = vty->index;
1829 int site_id = atoi(argv[0]);
1830 int bts_id = atoi(argv[1]);
1831
Harald Weltef515aa02009-08-07 13:27:09 +02001832 if (!is_ipaccess_bts(bts)) {
1833 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1834 return CMD_WARNING;
1835 }
1836
Harald Welte59b04682009-06-10 05:40:52 +08001837 bts->ip_access.site_id = site_id;
1838 bts->ip_access.bts_id = bts_id;
1839
1840 return CMD_SUCCESS;
1841}
1842
Harald Welte8b3c5952013-03-12 13:57:05 +01001843DEFUN(cfg_bts_rsl_ip,
1844 cfg_bts_rsl_ip_cmd,
1845 "ip.access rsl-ip A.B.C.D",
1846 "Abis/IP specific options\n"
1847 "Set the IPA RSL IP Address of the BSC\n"
1848 "Destination IP address for RSL connection\n")
1849{
1850 struct gsm_bts *bts = vty->index;
1851 struct in_addr ia;
1852
1853 if (!is_ipaccess_bts(bts)) {
1854 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1855 return CMD_WARNING;
1856 }
1857
1858 inet_aton(argv[0], &ia);
1859 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1860
1861 return CMD_SUCCESS;
1862}
1863
Andreas Eversbergac27b952013-12-05 13:25:06 +01001864#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b3c5952013-03-12 13:57:05 +01001865
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001866DEFUN(cfg_bts_nokia_site_skip_reset,
1867 cfg_bts_nokia_site_skip_reset_cmd,
1868 "nokia_site skip-reset (0|1)",
Andreas Eversbergac27b952013-12-05 13:25:06 +01001869 NOKIA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001870 "Skip the reset step during bootstrap process of this BTS\n"
1871 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001872{
1873 struct gsm_bts *bts = vty->index;
1874
1875 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1876 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1877 return CMD_WARNING;
1878 }
1879
1880 bts->nokia.skip_reset = atoi(argv[0]);
1881
1882 return CMD_SUCCESS;
1883}
1884
Andreas Eversbergac27b952013-12-05 13:25:06 +01001885DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1886 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1887 "nokia_site no-local-rel-conf (0|1)",
1888 NOKIA_STR
1889 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1890 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1891{
1892 struct gsm_bts *bts = vty->index;
1893
1894 if (!is_nokia_bts(bts)) {
1895 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1896 VTY_NEWLINE);
1897 return CMD_WARNING;
1898 }
1899
1900 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1901
1902 return CMD_SUCCESS;
1903}
1904
Sipos Csabadef87b42015-02-07 13:27:36 +01001905DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1906 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1907 "nokia_site bts-reset-timer <15-100>",
1908 NOKIA_STR
1909 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1910 "and the BTS is being bootstrapped.\n")
1911{
1912 struct gsm_bts *bts = vty->index;
1913
1914 if (!is_nokia_bts(bts)) {
1915 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1916 VTY_NEWLINE);
1917 return CMD_WARNING;
1918 }
1919
1920 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1921
1922 return CMD_SUCCESS;
1923}
Harald Welte9e002452010-05-11 21:53:49 +02001924#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001925#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001926
Harald Welte25572872009-10-20 00:22:00 +02001927DEFUN(cfg_bts_stream_id,
1928 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001929 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001930 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001931 "Set the ip.access Stream ID of the OML link of this BTS\n"
1932 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001933{
1934 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001935 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001936
1937 if (!is_ipaccess_bts(bts)) {
1938 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1939 return CMD_WARNING;
1940 }
1941
1942 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001943 /* This is used by e1inp_bind_ops callback for each BTS model. */
1944 bts->oml_e1_link.e1_nr = linenr;
1945
1946 return CMD_SUCCESS;
1947}
1948
Harald Weltefa2015f2012-08-17 09:52:03 +02001949#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001950
Harald Welte62868882009-08-08 16:12:58 +02001951DEFUN(cfg_bts_oml_e1,
1952 cfg_bts_oml_e1_cmd,
1953 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001954 OML_E1_STR
1955 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001956 "E1/T1 line number to be used for OML\n"
1957 "E1/T1 timeslot to be used for OML\n"
1958 "E1/T1 timeslot to be used for OML\n"
1959 "E1/T1 sub-slot to be used for OML\n"
1960 "Use E1/T1 sub-slot 0\n"
1961 "Use E1/T1 sub-slot 1\n"
1962 "Use E1/T1 sub-slot 2\n"
1963 "Use E1/T1 sub-slot 3\n"
1964 "Use full E1 slot 3\n"
1965 )
Harald Welte62868882009-08-08 16:12:58 +02001966{
1967 struct gsm_bts *bts = vty->index;
1968
1969 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1970
1971 return CMD_SUCCESS;
1972}
1973
1974
1975DEFUN(cfg_bts_oml_e1_tei,
1976 cfg_bts_oml_e1_tei_cmd,
1977 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001978 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001979 "Set the TEI to be used for OML\n"
1980 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001981{
1982 struct gsm_bts *bts = vty->index;
1983
1984 bts->oml_tei = atoi(argv[0]);
1985
1986 return CMD_SUCCESS;
1987}
1988
Harald Welte3e774612009-08-10 13:48:16 +02001989DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1990 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001991 "Channnel Allocator\n" "Channel Allocator\n"
1992 "Allocate Timeslots and Transceivers in ascending order\n"
1993 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001994{
1995 struct gsm_bts *bts = vty->index;
1996
1997 if (!strcmp(argv[0], "ascending"))
1998 bts->chan_alloc_reverse = 0;
1999 else
2000 bts->chan_alloc_reverse = 1;
2001
2002 return CMD_SUCCESS;
2003}
2004
Harald Welte9e002452010-05-11 21:53:49 +02002005#define RACH_STR "Random Access Control Channel\n"
2006
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002007DEFUN(cfg_bts_rach_tx_integer,
2008 cfg_bts_rach_tx_integer_cmd,
2009 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02002010 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02002011 "Set the raw tx integer value in RACH Control parameters IE\n"
2012 "Set the raw tx integer value in RACH Control parameters IE\n"
2013 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002014{
2015 struct gsm_bts *bts = vty->index;
2016 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
2017 return CMD_SUCCESS;
2018}
2019
2020DEFUN(cfg_bts_rach_max_trans,
2021 cfg_bts_rach_max_trans_cmd,
2022 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02002023 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02002024 "Set the maximum number of RACH burst transmissions\n"
2025 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002026 "Maximum number of 1 RACH burst transmissions\n"
2027 "Maximum number of 2 RACH burst transmissions\n"
2028 "Maximum number of 4 RACH burst transmissions\n"
2029 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002030{
2031 struct gsm_bts *bts = vty->index;
2032 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
2033 return CMD_SUCCESS;
2034}
2035
Andreas Eversberg14e12f22012-10-13 07:27:47 +02002036#define CD_STR "Channel Description\n"
2037
2038DEFUN(cfg_bts_chan_desc_att,
2039 cfg_bts_chan_desc_att_cmd,
2040 "channel-descrption attach (0|1)",
2041 CD_STR
2042 "Set if attachment is required\n"
2043 "Attachment is NOT required\n"
2044 "Attachment is required (standard)\n")
2045{
2046 struct gsm_bts *bts = vty->index;
2047 bts->si_common.chan_desc.att = atoi(argv[0]);
2048 return CMD_SUCCESS;
2049}
2050
2051DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2052 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2053 "channel-descrption bs-pa-mfrms <2-9>",
2054 CD_STR
2055 "Set number of multiframe periods for paging groups\n"
2056 "Number of multiframe periods for paging groups\n")
2057{
2058 struct gsm_bts *bts = vty->index;
2059 int bs_pa_mfrms = atoi(argv[0]);
2060
2061 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2062 return CMD_SUCCESS;
2063}
2064
2065DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2066 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2067 "channel-descrption bs-ag-blks-res <0-7>",
2068 CD_STR
2069 "Set number of blocks reserved for access grant\n"
2070 "Number of blocks reserved for access grant\n")
2071{
2072 struct gsm_bts *bts = vty->index;
2073 int bs_ag_blks_res = atoi(argv[0]);
2074
2075 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2076 return CMD_SUCCESS;
2077}
2078
Harald Welte9e002452010-05-11 21:53:49 +02002079#define NM_STR "Network Management\n"
2080
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002081DEFUN(cfg_bts_rach_nm_b_thresh,
2082 cfg_bts_rach_nm_b_thresh_cmd,
2083 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002084 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02002085 "Set the NM Busy Threshold\n"
2086 "Set the NM Busy Threshold\n"
2087 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002088{
2089 struct gsm_bts *bts = vty->index;
2090 bts->rach_b_thresh = atoi(argv[0]);
2091 return CMD_SUCCESS;
2092}
2093
2094DEFUN(cfg_bts_rach_nm_ldavg,
2095 cfg_bts_rach_nm_ldavg_cmd,
2096 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002097 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02002098 "Set the NM Loadaverage Slots value\n"
2099 "Set the NM Loadaverage Slots value\n"
2100 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002101{
2102 struct gsm_bts *bts = vty->index;
2103 bts->rach_ldavg_slots = atoi(argv[0]);
2104 return CMD_SUCCESS;
2105}
2106
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002107DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2108 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002109 "Should this cell be barred from access?\n"
2110 "Should this cell be barred from access?\n"
2111 "Cell should NOT be barred\n"
2112 "Cell should be barred\n")
2113
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002114{
2115 struct gsm_bts *bts = vty->index;
2116
Harald Welte8c973ba2009-12-21 23:08:18 +01002117 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002118
2119 return CMD_SUCCESS;
2120}
2121
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002122DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2123 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002124 RACH_STR
2125 "Should this cell allow emergency calls?\n"
2126 "Should this cell allow emergency calls?\n"
2127 "Should this cell allow emergency calls?\n"
2128 "Do NOT allow emergency calls\n"
2129 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002130{
2131 struct gsm_bts *bts = vty->index;
2132
2133 if (atoi(argv[0]) == 0)
2134 bts->si_common.rach_control.t2 |= 0x4;
2135 else
2136 bts->si_common.rach_control.t2 &= ~0x4;
2137
2138 return CMD_SUCCESS;
2139}
2140
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04002141DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2142 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2143 RACH_STR
2144 "Set access control class\n"
2145 "Access control class 0\n"
2146 "Access control class 1\n"
2147 "Access control class 2\n"
2148 "Access control class 3\n"
2149 "Access control class 4\n"
2150 "Access control class 5\n"
2151 "Access control class 6\n"
2152 "Access control class 7\n"
2153 "Access control class 8\n"
2154 "Access control class 9\n"
2155 "Access control class 11 for PLMN use\n"
2156 "Access control class 12 for security services\n"
2157 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2158 "Access control class 14 for emergency services\n"
2159 "Access control class 15 for PLMN staff\n"
2160 "barred to use access control class\n"
2161 "allowed to use access control class\n")
2162{
2163 struct gsm_bts *bts = vty->index;
2164
2165 uint8_t control_class;
2166 uint8_t allowed = 0;
2167
2168 if (strcmp(argv[1], "allowed") == 0)
2169 allowed = 1;
2170
2171 control_class = atoi(argv[0]);
2172 if (control_class < 8)
2173 if (allowed)
2174 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2175 else
2176 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2177 else
2178 if (allowed)
2179 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2180 else
2181 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2182
2183 return CMD_SUCCESS;
2184}
2185
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002186DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2187 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02002188 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002189 "Maximum transmit power of the MS\n"
2190 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02002191 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002192{
2193 struct gsm_bts *bts = vty->index;
2194
2195 bts->ms_max_power = atoi(argv[0]);
2196
2197 return CMD_SUCCESS;
2198}
2199
Harald Welte557f3992012-08-16 23:23:50 +02002200#define CELL_STR "Cell Parameters\n"
2201
Harald Welteb761bf82009-12-12 18:17:25 +01002202DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2203 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02002204 CELL_STR "Cell re-selection parameters\n"
2205 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002206 "Cell Re-Selection Hysteresis in dB")
2207{
2208 struct gsm_bts *bts = vty->index;
2209
2210 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2211
2212 return CMD_SUCCESS;
2213}
2214
2215DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2216 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002217 "Minimum RxLev needed for cell access\n"
2218 "Minimum RxLev needed for cell access\n"
2219 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002220 "Minimum RxLev needed for cell access (better than -110dBm)")
2221{
2222 struct gsm_bts *bts = vty->index;
2223
2224 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2225
2226 return CMD_SUCCESS;
2227}
2228
Sylvain Munaut00d71462010-11-28 18:17:28 +01002229DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2230 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002231 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2232 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002233{
2234 struct gsm_bts *bts = vty->index;
2235
2236 bts->si_common.cell_ro_sel_par.present = 1;
2237 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2238
2239 return CMD_SUCCESS;
2240}
2241
2242DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2243 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02002244 CELL_STR "Cell Re-Selection Parameters\n"
2245 "Cell Re-Selection Offset (CRO) in dB\n"
2246 "Cell Re-Selection Offset (CRO) in dB\n"
2247 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01002248{
2249 struct gsm_bts *bts = vty->index;
2250
2251 bts->si_common.cell_ro_sel_par.present = 1;
2252 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2253
2254 return CMD_SUCCESS;
2255}
2256
2257DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2258 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02002259 "Cell selection temporary negative offset\n"
2260 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002261 "Cell selection temporary negative offset in dB")
2262{
2263 struct gsm_bts *bts = vty->index;
2264
2265 bts->si_common.cell_ro_sel_par.present = 1;
2266 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2267
2268 return CMD_SUCCESS;
2269}
2270
2271DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2272 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02002273 "Cell selection temporary negative offset\n"
2274 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002275 "Sets cell selection temporary negative offset to infinity")
2276{
2277 struct gsm_bts *bts = vty->index;
2278
2279 bts->si_common.cell_ro_sel_par.present = 1;
2280 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2281
2282 return CMD_SUCCESS;
2283}
2284
2285DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2286 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02002287 "Cell selection penalty time\n"
2288 "Cell selection penalty time\n"
2289 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002290{
2291 struct gsm_bts *bts = vty->index;
2292
2293 bts->si_common.cell_ro_sel_par.present = 1;
2294 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2295
2296 return CMD_SUCCESS;
2297}
2298
2299DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2300 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002301 "Cell selection penalty time\n"
2302 "Cell selection penalty time\n"
2303 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002304 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2305 "and TEMPORARY_OFFSET is ignored)")
2306{
2307 struct gsm_bts *bts = vty->index;
2308
2309 bts->si_common.cell_ro_sel_par.present = 1;
2310 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2311
2312 return CMD_SUCCESS;
2313}
2314
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002315DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002316 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002317 "Periodic Location Updating Interval\n"
2318 "Periodic Location Updating Interval\n"
2319 "Periodic Location Updating Interval\n"
2320 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002321{
2322 struct gsm_bts *bts = vty->index;
2323
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002324 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002325
2326 return CMD_SUCCESS;
2327}
2328
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02002329DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2330 "no periodic location update",
2331 NO_STR
2332 "Periodic Location Updating Interval\n"
2333 "Periodic Location Updating Interval\n"
2334 "Periodic Location Updating Interval\n")
2335{
2336 struct gsm_bts *bts = vty->index;
2337
2338 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversbergf9248d92013-03-10 11:49:35 +01002339
2340 return CMD_SUCCESS;
2341}
2342
2343DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2344 "radio-link-timeout <4-64>",
2345 "Radio link timeout criterion (BTS side)\n"
2346 "Radio link timeout value (lost SACCH block)\n")
2347{
2348 struct gsm_bts *bts = vty->index;
2349
2350 set_radio_link_timeout(&bts->si_common.cell_options, atoi(argv[0]));
2351
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02002352 return CMD_SUCCESS;
2353}
2354
Harald Welte9e002452010-05-11 21:53:49 +02002355#define GPRS_TEXT "GPRS Packet Network\n"
2356
Harald Welte410575a2010-03-14 23:30:30 +08002357DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002358 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002359 GPRS_TEXT
2360 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002361 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002362 "GPRS BSSGP VC 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 Weltec05a4b12010-03-14 23:56:56 +08002367 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2368 return CMD_WARNING;
2369 }
2370
Harald Welte3055e332010-03-14 15:37:43 +08002371 bts->gprs.cell.bvci = atoi(argv[0]);
2372
2373 return CMD_SUCCESS;
2374}
2375
Harald Welte4a048c52010-03-22 11:48:36 +08002376DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2377 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002378 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002379 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002380 "GPRS NS Entity Identifier")
2381{
2382 struct gsm_bts *bts = vty->index;
2383
Harald Weltecb20b7a2010-04-18 15:51:20 +02002384 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002385 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2386 return CMD_WARNING;
2387 }
2388
2389 bts->gprs.nse.nsei = atoi(argv[0]);
2390
2391 return CMD_SUCCESS;
2392}
2393
Harald Welte9e002452010-05-11 21:53:49 +02002394#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2395 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002396
Harald Welte3055e332010-03-14 15:37:43 +08002397DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2398 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002399 GPRS_TEXT NSVC_TEXT
2400 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002401 "GPRS NS VC Identifier")
2402{
2403 struct gsm_bts *bts = vty->index;
2404 int idx = atoi(argv[0]);
2405
Harald Weltecb20b7a2010-04-18 15:51:20 +02002406 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002407 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2408 return CMD_WARNING;
2409 }
2410
Harald Welte3055e332010-03-14 15:37:43 +08002411 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2412
2413 return CMD_SUCCESS;
2414}
2415
Harald Welte410575a2010-03-14 23:30:30 +08002416DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2417 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002418 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002419 "GPRS NS Local UDP Port\n"
2420 "GPRS NS Local UDP Port\n"
2421 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002422 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002423{
2424 struct gsm_bts *bts = vty->index;
2425 int idx = atoi(argv[0]);
2426
Harald Weltecb20b7a2010-04-18 15:51:20 +02002427 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002428 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2429 return CMD_WARNING;
2430 }
2431
Harald Welte410575a2010-03-14 23:30:30 +08002432 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2433
2434 return CMD_SUCCESS;
2435}
2436
2437DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2438 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002439 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002440 "GPRS NS Remote UDP Port\n"
2441 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002442 "GPRS NS Remote UDP Port\n"
2443 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002444{
2445 struct gsm_bts *bts = vty->index;
2446 int idx = atoi(argv[0]);
2447
Harald Weltecb20b7a2010-04-18 15:51:20 +02002448 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002449 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2450 return CMD_WARNING;
2451 }
2452
Harald Welte410575a2010-03-14 23:30:30 +08002453 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2454
2455 return CMD_SUCCESS;
2456}
2457
2458DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2459 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002460 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002461 "GPRS NS Remote IP Address\n"
2462 "GPRS NS Remote IP Address\n"
2463 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002464{
2465 struct gsm_bts *bts = vty->index;
2466 int idx = atoi(argv[0]);
2467 struct in_addr ia;
2468
Harald Weltecb20b7a2010-04-18 15:51:20 +02002469 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002470 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2471 return CMD_WARNING;
2472 }
2473
Harald Welte410575a2010-03-14 23:30:30 +08002474 inet_aton(argv[1], &ia);
2475 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2476
2477 return CMD_SUCCESS;
2478}
2479
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002480DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002481 "paging free <-1-1024>",
2482 "Paging options\n"
2483 "Only page when having a certain amount of free slots\n"
2484 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002485{
2486 struct gsm_bts *bts = vty->index;
2487
2488 bts->paging.free_chans_need = atoi(argv[0]);
2489 return CMD_SUCCESS;
2490}
2491
Harald Weltea9251762010-05-11 23:50:21 +02002492DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2493 "gprs ns timer " NS_TIMERS " <0-255>",
2494 GPRS_TEXT "Network Service\n"
2495 "Network Service Timer\n"
2496 NS_TIMERS_HELP "Timer Value\n")
2497{
2498 struct gsm_bts *bts = vty->index;
2499 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2500 int val = atoi(argv[1]);
2501
2502 if (bts->gprs.mode == BTS_GPRS_NONE) {
2503 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2504 return CMD_WARNING;
2505 }
2506
2507 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2508 return CMD_WARNING;
2509
2510 bts->gprs.nse.timer[idx] = val;
2511
2512 return CMD_SUCCESS;
2513}
2514
2515#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 +02002516#define BSSGP_TIMERS_HELP \
2517 "Tbvc-block timeout\n" \
2518 "Tbvc-block retries\n" \
2519 "Tbvc-unblock retries\n" \
2520 "Tbvcc-reset timeout\n" \
2521 "Tbvc-reset retries\n" \
2522 "Tbvc-suspend timeout\n" \
2523 "Tbvc-suspend retries\n" \
2524 "Tbvc-resume timeout\n" \
2525 "Tbvc-resume retries\n" \
2526 "Tbvc-capa-update timeout\n" \
2527 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002528
2529DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2530 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2531 GPRS_TEXT "Cell / BSSGP\n"
2532 "Cell/BSSGP Timer\n"
2533 BSSGP_TIMERS_HELP "Timer Value\n")
2534{
2535 struct gsm_bts *bts = vty->index;
2536 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2537 int val = atoi(argv[1]);
2538
2539 if (bts->gprs.mode == BTS_GPRS_NONE) {
2540 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2541 return CMD_WARNING;
2542 }
2543
2544 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2545 return CMD_WARNING;
2546
2547 bts->gprs.cell.timer[idx] = val;
2548
2549 return CMD_SUCCESS;
2550}
2551
Harald Welte3055e332010-03-14 15:37:43 +08002552DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2553 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002554 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002555 "GPRS Routing Area Code\n"
2556 "GPRS Routing Area Code\n"
2557 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002558{
2559 struct gsm_bts *bts = vty->index;
2560
Harald Weltecb20b7a2010-04-18 15:51:20 +02002561 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002562 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2563 return CMD_WARNING;
2564 }
2565
Harald Welte3055e332010-03-14 15:37:43 +08002566 bts->gprs.rac = atoi(argv[0]);
2567
2568 return CMD_SUCCESS;
2569}
2570
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002571DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2572 "gprs network-control-order (nc0|nc1|nc2)",
2573 GPRS_TEXT
2574 "GPRS Network Control Order\n"
2575 "MS controlled cell re-selection, no measurement reporting\n"
2576 "MS controlled cell re-selection, MS sends measurement reports\n"
2577 "Network controlled cell re-selection, MS sends measurement reports\n")
2578{
2579 struct gsm_bts *bts = vty->index;
2580
2581 if (bts->gprs.mode == BTS_GPRS_NONE) {
2582 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2583 return CMD_WARNING;
2584 }
2585
2586 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2587
2588 return CMD_SUCCESS;
2589}
2590
Harald Weltecb20b7a2010-04-18 15:51:20 +02002591DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2592 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002593 GPRS_TEXT
2594 "GPRS Mode for this BTS\n"
2595 "GPRS Disabled on this BTS\n"
2596 "GPRS Enabled on this BTS\n"
2597 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002598{
2599 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther611f7752015-01-31 22:16:00 +01002600 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welte410575a2010-03-14 23:30:30 +08002601
Holger Hans Peter Freyther611f7752015-01-31 22:16:00 +01002602 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Welte20e275a2010-06-14 22:44:42 +02002603 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2604 VTY_NEWLINE);
2605 return CMD_WARNING;
2606 }
2607
2608 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002609
2610 return CMD_SUCCESS;
2611}
2612
Harald Welted8acf142010-07-30 11:50:09 +02002613#define SI_TEXT "System Information Messages\n"
2614#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)"
2615#define SI_TYPE_HELP "System Information Type 1\n" \
2616 "System Information Type 2\n" \
2617 "System Information Type 3\n" \
2618 "System Information Type 4\n" \
2619 "System Information Type 5\n" \
2620 "System Information Type 6\n" \
2621 "System Information Type 7\n" \
2622 "System Information Type 8\n" \
2623 "System Information Type 9\n" \
2624 "System Information Type 10\n" \
2625 "System Information Type 13\n" \
2626 "System Information Type 16\n" \
2627 "System Information Type 17\n" \
2628 "System Information Type 18\n" \
2629 "System Information Type 19\n" \
2630 "System Information Type 20\n" \
2631 "System Information Type 2bis\n" \
2632 "System Information Type 2ter\n" \
2633 "System Information Type 2quater\n" \
2634 "System Information Type 5bis\n" \
2635 "System Information Type 5ter\n"
2636
2637DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2638 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2639 SI_TEXT SI_TYPE_HELP
2640 "System Information Mode\n"
2641 "Static user-specified\n"
2642 "Dynamic, BSC-computed\n")
2643{
2644 struct gsm_bts *bts = vty->index;
2645 int type;
2646
2647 type = get_string_value(osmo_sitype_strs, argv[0]);
2648 if (type < 0) {
2649 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2650 return CMD_WARNING;
2651 }
2652
2653 if (!strcmp(argv[1], "static"))
2654 bts->si_mode_static |= (1 << type);
2655 else
2656 bts->si_mode_static &= ~(1 << type);
2657
2658 return CMD_SUCCESS;
2659}
2660
2661DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2662 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2663 SI_TEXT SI_TYPE_HELP
2664 "Static System Information filling\n"
2665 "Static user-specified SI content in HEX notation\n")
2666{
2667 struct gsm_bts *bts = vty->index;
2668 int rc, type;
2669
2670 type = get_string_value(osmo_sitype_strs, argv[0]);
2671 if (type < 0) {
2672 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2673 return CMD_WARNING;
2674 }
2675
2676 if (!(bts->si_mode_static & (1 << type))) {
2677 vty_out(vty, "SI Type %s is not configured in static mode%s",
2678 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2679 return CMD_WARNING;
2680 }
2681
Harald Welte9f09ac32010-07-30 11:53:18 +02002682 /* Fill buffer with padding pattern */
2683 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2684
2685 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002686 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002687 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2688 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2689 return CMD_WARNING;
2690 }
2691
2692 /* Mark this SI as present */
2693 bts->si_valid |= (1 << type);
2694
2695 return CMD_SUCCESS;
2696}
2697
Harald Welteca46eff2011-01-11 23:44:56 +01002698DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002699 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002700 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002701 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2702 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002703{
2704 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002705 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002706
Harald Weltef989b782011-02-15 11:43:27 +01002707 switch (mode) {
2708 case NL_MODE_MANUAL_SI5SEP:
2709 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002710 /* make sure we clear the current list when switching to
2711 * manual mode */
2712 if (bts->neigh_list_manual_mode == 0)
2713 memset(&bts->si_common.data.neigh_list, 0,
2714 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002715 break;
2716 default:
2717 break;
2718 }
2719
2720 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002721
2722 return CMD_SUCCESS;
2723}
2724
2725DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002726 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002727 "Neighbor List\n" "Add to manual neighbor list\n"
2728 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2729 "ARFCN of neighbor\n")
2730{
2731 struct gsm_bts *bts = vty->index;
2732 struct bitvec *bv = &bts->si_common.neigh_list;
2733 uint16_t arfcn = atoi(argv[1]);
2734
2735 if (!bts->neigh_list_manual_mode) {
2736 vty_out(vty, "%% Cannot configure neighbor list in "
2737 "automatic mode%s", VTY_NEWLINE);
2738 return CMD_WARNING;
2739 }
2740
2741 if (!strcmp(argv[0], "add"))
2742 bitvec_set_bit_pos(bv, arfcn, 1);
2743 else
2744 bitvec_set_bit_pos(bv, arfcn, 0);
2745
2746 return CMD_SUCCESS;
2747}
2748
Harald Weltef989b782011-02-15 11:43:27 +01002749DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002750 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002751 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002752 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2753 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2754 "ARFCN of neighbor\n")
2755{
2756 struct gsm_bts *bts = vty->index;
2757 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2758 uint16_t arfcn = atoi(argv[1]);
2759
2760 if (!bts->neigh_list_manual_mode) {
2761 vty_out(vty, "%% Cannot configure neighbor list in "
2762 "automatic mode%s", VTY_NEWLINE);
2763 return CMD_WARNING;
2764 }
2765
2766 if (!strcmp(argv[0], "add"))
2767 bitvec_set_bit_pos(bv, arfcn, 1);
2768 else
2769 bitvec_set_bit_pos(bv, arfcn, 0);
2770
2771 return CMD_SUCCESS;
2772}
Harald Welted8acf142010-07-30 11:50:09 +02002773
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002774#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2775
2776DEFUN(cfg_bts_excl_rf_lock,
2777 cfg_bts_excl_rf_lock_cmd,
2778 "rf-lock-exclude",
2779 EXCL_RFLOCK_STR)
2780{
2781 struct gsm_bts *bts = vty->index;
2782 bts->excl_from_rf_lock = 1;
2783 return CMD_SUCCESS;
2784}
2785
2786DEFUN(cfg_bts_no_excl_rf_lock,
2787 cfg_bts_no_excl_rf_lock_cmd,
2788 "no rf-lock-exclude",
2789 NO_STR EXCL_RFLOCK_STR)
2790{
2791 struct gsm_bts *bts = vty->index;
2792 bts->excl_from_rf_lock = 0;
2793 return CMD_SUCCESS;
2794}
2795
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +01002796#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2797
2798DEFUN(cfg_bts_force_comb_si,
2799 cfg_bts_force_comb_si_cmd,
2800 "force-combined-si",
2801 FORCE_COMB_SI_STR)
2802{
2803 struct gsm_bts *bts = vty->index;
2804 bts->force_combined_si = 1;
2805 return CMD_SUCCESS;
2806}
2807
2808DEFUN(cfg_bts_no_force_comb_si,
2809 cfg_bts_no_force_comb_si_cmd,
2810 "no force-combined-si",
2811 NO_STR FORCE_COMB_SI_STR)
2812{
2813 struct gsm_bts *bts = vty->index;
2814 bts->force_combined_si = 0;
2815 return CMD_SUCCESS;
2816}
2817
Andreas Eversberg976493b2013-12-07 18:32:28 +01002818static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2819{
2820 struct gsm_bts *bts = vty->index;
2821 struct bts_codec_conf *codec = &bts->codec;
2822 int i;
2823
2824 codec->hr = 0;
2825 codec->efr = 0;
2826 codec->amr = 0;
2827 for (i = 0; i < argc; i++) {
2828 if (!strcmp(argv[i], "hr"))
2829 codec->hr = 1;
2830 if (!strcmp(argv[i], "efr"))
2831 codec->efr = 1;
2832 if (!strcmp(argv[i], "amr"))
2833 codec->amr = 1;
2834 }
2835}
2836
2837#define CODEC_PAR_STR " (hr|efr|amr)"
2838#define CODEC_HELP_STR "Half Rate\n" \
2839 "Enhanced Full Rate\nAdaptive Multirate\n"
2840
2841DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
2842 "codec-support fr",
2843 "Codec Support settings\nFullrate\n")
2844{
2845 _get_codec_from_arg(vty, 0, argv);
2846 return CMD_SUCCESS;
2847}
2848
2849DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
2850 "codec-support fr" CODEC_PAR_STR,
2851 "Codec Support settings\nFullrate\n"
2852 CODEC_HELP_STR)
2853{
2854 _get_codec_from_arg(vty, 1, argv);
2855 return CMD_SUCCESS;
2856}
2857
2858DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
2859 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
2860 "Codec Support settings\nFullrate\n"
2861 CODEC_HELP_STR CODEC_HELP_STR)
2862{
2863 _get_codec_from_arg(vty, 2, argv);
2864 return CMD_SUCCESS;
2865}
2866
2867DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
2868 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2869 "Codec Support settings\nFullrate\n"
2870 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2871{
2872 _get_codec_from_arg(vty, 3, argv);
2873 return CMD_SUCCESS;
2874}
2875
2876DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
2877 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2878 "Codec Support settings\nFullrate\n"
2879 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2880{
2881 _get_codec_from_arg(vty, 4, argv);
2882 return CMD_SUCCESS;
2883}
2884
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +01002885DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
2886 "depends-on-bts <0-255>",
2887 "This BTS can only be started if another one is up\n" "BTS Number\n")
2888{
2889 struct gsm_bts *bts = vty->index;
2890 struct gsm_bts *other_bts;
2891 int dep = atoi(argv[0]);
2892
2893
2894 if (!is_ipaccess_bts(bts)) {
2895 vty_out(vty, "This feature is only available for IP systems.%s",
2896 VTY_NEWLINE);
2897 return CMD_WARNING;
2898 }
2899
2900 other_bts = gsm_bts_num(bts->network, dep);
2901 if (!other_bts || !is_ipaccess_bts(other_bts)) {
2902 vty_out(vty, "This feature is only available for IP systems.%s",
2903 VTY_NEWLINE);
2904 return CMD_WARNING;
2905 }
2906
2907 if (dep >= bts->nr) {
2908 vty_out(vty, "%%Need to depend on an already declared unit.%s",
2909 VTY_NEWLINE);
2910 return CMD_WARNING;
2911 }
2912
2913 bts_depend_mark(bts, dep);
2914 return CMD_SUCCESS;
2915}
2916
2917DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
2918 "depeneds-on-bts <0-255>",
2919 NO_STR "This BTS can only be started if another one is up\n"
2920 "BTS Number\n")
2921{
2922 struct gsm_bts *bts = vty->index;
2923 int dep = atoi(argv[0]);
2924
2925 bts_depend_clear(bts, dep);
2926 return CMD_SUCCESS;
2927}
2928
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002929#define AMR_TEXT "Adaptive Multi Rate settings\n"
2930#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
2931#define AMR_START_TEXT "Initial codec to use with AMR\n" \
2932 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
2933#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
2934#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
2935
2936static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2937{
2938 struct gsm_bts *bts = vty->index;
2939 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2940 struct gsm48_multi_rate_conf *mr_conf =
2941 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2942 int i;
2943
2944 mr->gsm48_ie[1] = 0;
2945 for (i = 0; i < argc; i++)
2946 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
2947 mr_conf->icmi = 0;
2948}
2949
2950static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2951{
2952 struct gsm_bts *bts = vty->index;
2953 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002954 struct amr_mode *modes;
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002955 int i;
2956
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002957 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
2958 for (i = 0; i < argc - 1; i++)
2959 modes[i].threshold = atoi(argv[i + 1]);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002960}
2961
2962static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2963{
2964 struct gsm_bts *bts = vty->index;
2965 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002966 struct amr_mode *modes;
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002967 int i;
2968
Holger Hans Peter Freyther8083cc92015-09-24 11:39:38 +02002969 modes = argv[0][0]=='m' ? mr->ms_mode : mr->bts_mode;
2970 for (i = 0; i < argc - 1; i++)
2971 modes[i].hysteresis = atoi(argv[i + 1]);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01002972}
2973
2974static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
2975{
2976 struct gsm_bts *bts = vty->index;
2977 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2978 struct gsm48_multi_rate_conf *mr_conf =
2979 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2980 int num = 0, i;
2981
2982 for (i = 0; i < ((full) ? 8 : 6); i++) {
2983 if ((mr->gsm48_ie[1] & (1 << i))) {
2984 num++;
2985 }
2986 }
2987
2988 if (argv[0][0] == 'a' || num == 0)
2989 mr_conf->icmi = 0;
2990 else {
2991 mr_conf->icmi = 1;
2992 if (num < atoi(argv[0]))
2993 mr_conf->smod = num - 1;
2994 else
2995 mr_conf->smod = atoi(argv[0]) - 1;
2996 }
2997}
2998
2999#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3000#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3001 "10,2k\n12,2k\n"
3002
3003#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3004#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3005
3006#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3007#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3008
3009DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3010 "amr tch-f modes" AMR_TCHF_PAR_STR,
3011 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3012 AMR_TCHF_HELP_STR)
3013{
3014 get_amr_from_arg(vty, 1, argv, 1);
3015 return CMD_SUCCESS;
3016}
3017
3018DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3019 "amr tch-f modes" 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)
3022{
3023 get_amr_from_arg(vty, 2, argv, 1);
3024 return CMD_SUCCESS;
3025}
3026
3027DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3028 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3029 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3030 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3031{
3032 get_amr_from_arg(vty, 3, argv, 1);
3033 return CMD_SUCCESS;
3034}
3035
3036DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3037 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3038 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3039 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3040{
3041 get_amr_from_arg(vty, 4, argv, 1);
3042 return CMD_SUCCESS;
3043}
3044
3045DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3046 "amr tch-f start-mode (auto|1|2|3|4)",
3047 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3048{
3049 get_amr_start_from_arg(vty, argv, 1);
3050 return CMD_SUCCESS;
3051}
3052
3053DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3054 "amr tch-f threshold (ms|bts) <0-63>",
3055 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3056 AMR_TH_HELP_STR)
3057{
3058 get_amr_th_from_arg(vty, 2, argv, 1);
3059 return CMD_SUCCESS;
3060}
3061
3062DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3063 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3064 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3065 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3066{
3067 get_amr_th_from_arg(vty, 3, argv, 1);
3068 return CMD_SUCCESS;
3069}
3070
3071DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3072 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3073 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3074 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3075{
3076 get_amr_th_from_arg(vty, 4, argv, 1);
3077 return CMD_SUCCESS;
3078}
3079
3080DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3081 "amr tch-f hysteresis (ms|bts) <0-15>",
3082 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3083 AMR_HY_HELP_STR)
3084{
3085 get_amr_hy_from_arg(vty, 2, argv, 1);
3086 return CMD_SUCCESS;
3087}
3088
3089DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3090 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3091 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3092 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3093{
3094 get_amr_hy_from_arg(vty, 3, argv, 1);
3095 return CMD_SUCCESS;
3096}
3097
3098DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3099 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3100 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3101 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3102{
3103 get_amr_hy_from_arg(vty, 4, argv, 1);
3104 return CMD_SUCCESS;
3105}
3106
3107DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3108 "amr tch-h modes" AMR_TCHH_PAR_STR,
3109 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3110 AMR_TCHH_HELP_STR)
3111{
3112 get_amr_from_arg(vty, 1, argv, 0);
3113 return CMD_SUCCESS;
3114}
3115
3116DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3117 "amr tch-h modes" 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)
3120{
3121 get_amr_from_arg(vty, 2, argv, 0);
3122 return CMD_SUCCESS;
3123}
3124
3125DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3126 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3127 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3128 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3129{
3130 get_amr_from_arg(vty, 3, argv, 0);
3131 return CMD_SUCCESS;
3132}
3133
3134DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3135 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3136 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3137 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3138{
3139 get_amr_from_arg(vty, 4, argv, 0);
3140 return CMD_SUCCESS;
3141}
3142
3143DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3144 "amr tch-h start-mode (auto|1|2|3|4)",
3145 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3146{
3147 get_amr_start_from_arg(vty, argv, 0);
3148 return CMD_SUCCESS;
3149}
3150
3151DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3152 "amr tch-h threshold (ms|bts) <0-63>",
3153 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3154 AMR_TH_HELP_STR)
3155{
3156 get_amr_th_from_arg(vty, 2, argv, 0);
3157 return CMD_SUCCESS;
3158}
3159
3160DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3161 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3162 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3163 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3164{
3165 get_amr_th_from_arg(vty, 3, argv, 0);
3166 return CMD_SUCCESS;
3167}
3168
3169DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3170 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3171 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3172 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3173{
3174 get_amr_th_from_arg(vty, 4, argv, 0);
3175 return CMD_SUCCESS;
3176}
3177
3178DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3179 "amr tch-h hysteresis (ms|bts) <0-15>",
3180 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3181 AMR_HY_HELP_STR)
3182{
3183 get_amr_hy_from_arg(vty, 2, argv, 0);
3184 return CMD_SUCCESS;
3185}
3186
3187DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3188 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3189 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3190 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3191{
3192 get_amr_hy_from_arg(vty, 3, argv, 0);
3193 return CMD_SUCCESS;
3194}
3195
3196DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3197 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3198 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3199 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3200{
3201 get_amr_hy_from_arg(vty, 4, argv, 0);
3202 return CMD_SUCCESS;
3203}
3204
Harald Welte9e002452010-05-11 21:53:49 +02003205#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02003206
Harald Welte59b04682009-06-10 05:40:52 +08003207/* per TRX configuration */
3208DEFUN(cfg_trx,
3209 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02003210 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02003211 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08003212 "Select a TRX to configure")
3213{
3214 int trx_nr = atoi(argv[0]);
3215 struct gsm_bts *bts = vty->index;
3216 struct gsm_bts_trx *trx;
3217
Harald Weltee712a5f2009-06-21 16:17:15 +02003218 if (trx_nr > bts->num_trx) {
3219 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3220 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08003221 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02003222 } else if (trx_nr == bts->num_trx) {
3223 /* we need to allocate a new one */
3224 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02003225 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02003226 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02003227
Harald Weltee712a5f2009-06-21 16:17:15 +02003228 if (!trx)
3229 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08003230
3231 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02003232 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08003233 vty->node = TRX_NODE;
3234
3235 return CMD_SUCCESS;
3236}
3237
3238DEFUN(cfg_trx_arfcn,
3239 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01003240 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02003241 "Set the ARFCN for this TRX\n"
3242 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08003243{
3244 int arfcn = atoi(argv[0]);
3245 struct gsm_bts_trx *trx = vty->index;
3246
3247 /* FIXME: check if this ARFCN is supported by this TRX */
3248
3249 trx->arfcn = arfcn;
3250
3251 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3252 /* FIXME: use OML layer to update the ARFCN */
3253 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3254
3255 return CMD_SUCCESS;
3256}
3257
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003258DEFUN(cfg_trx_nominal_power,
3259 cfg_trx_nominal_power_cmd,
3260 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02003261 "Nominal TRX RF Power in dBm\n"
3262 "Nominal TRX RF Power in dBm\n"
3263 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003264{
3265 struct gsm_bts_trx *trx = vty->index;
3266
3267 trx->nominal_power = atoi(argv[0]);
3268
3269 return CMD_SUCCESS;
3270}
3271
Harald Welte91afe4c2009-06-20 18:15:19 +02003272DEFUN(cfg_trx_max_power_red,
3273 cfg_trx_max_power_red_cmd,
3274 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02003275 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02003276 "Reduction of maximum BS RF Power in dB\n")
3277{
3278 int maxpwr_r = atoi(argv[0]);
3279 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01003280 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02003281
3282 /* FIXME: check if our BTS type supports more than 12 */
3283 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3284 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3285 maxpwr_r, VTY_NEWLINE);
3286 return CMD_WARNING;
3287 }
3288 if (maxpwr_r & 1) {
3289 vty_out(vty, "%% Power %d dB is not an even value%s",
3290 maxpwr_r, VTY_NEWLINE);
3291 return CMD_WARNING;
3292 }
3293
3294 trx->max_power_red = maxpwr_r;
3295
3296 /* FIXME: make sure we update this using OML */
3297
3298 return CMD_SUCCESS;
3299}
3300
Harald Welte62868882009-08-08 16:12:58 +02003301DEFUN(cfg_trx_rsl_e1,
3302 cfg_trx_rsl_e1_cmd,
3303 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02003304 "RSL Parameters\n"
3305 "E1/T1 interface to be used for RSL\n"
3306 "E1/T1 interface to be used for RSL\n"
3307 "E1/T1 Line Number to be used for RSL\n"
3308 "E1/T1 Timeslot to be used for RSL\n"
3309 "E1/T1 Timeslot to be used for RSL\n"
3310 "E1/T1 Sub-slot to be used for RSL\n"
3311 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3312 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3313 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3314 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3315 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02003316{
3317 struct gsm_bts_trx *trx = vty->index;
3318
3319 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3320
3321 return CMD_SUCCESS;
3322}
3323
3324DEFUN(cfg_trx_rsl_e1_tei,
3325 cfg_trx_rsl_e1_tei_cmd,
3326 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02003327 "RSL Parameters\n"
3328 "Set the TEI to be used for RSL\n"
3329 "Set the TEI to be used for RSL\n"
3330 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02003331{
3332 struct gsm_bts_trx *trx = vty->index;
3333
3334 trx->rsl_tei = atoi(argv[0]);
3335
3336 return CMD_SUCCESS;
3337}
3338
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003339DEFUN(cfg_trx_rf_locked,
3340 cfg_trx_rf_locked_cmd,
3341 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02003342 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3343 "TRX is NOT RF locked (active)\n"
3344 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003345{
3346 int locked = atoi(argv[0]);
3347 struct gsm_bts_trx *trx = vty->index;
3348
3349 gsm_trx_lock_rf(trx, locked);
3350 return CMD_SUCCESS;
3351}
Harald Welte62868882009-08-08 16:12:58 +02003352
Harald Welte59b04682009-06-10 05:40:52 +08003353/* per TS configuration */
3354DEFUN(cfg_ts,
3355 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02003356 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02003357 "Select a Timeslot to configure\n"
3358 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08003359{
3360 int ts_nr = atoi(argv[0]);
3361 struct gsm_bts_trx *trx = vty->index;
3362 struct gsm_bts_trx_ts *ts;
3363
3364 if (ts_nr >= TRX_NR_TS) {
3365 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3366 TRX_NR_TS, VTY_NEWLINE);
3367 return CMD_WARNING;
3368 }
3369
3370 ts = &trx->ts[ts_nr];
3371
3372 vty->index = ts;
3373 vty->node = TS_NODE;
3374
3375 return CMD_SUCCESS;
3376}
3377
Harald Welte3ffe1b32009-08-07 00:25:23 +02003378DEFUN(cfg_ts_pchan,
3379 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02003380 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01003381 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02003382{
3383 struct gsm_bts_trx_ts *ts = vty->index;
3384 int pchanc;
3385
3386 pchanc = gsm_pchan_parse(argv[0]);
3387 if (pchanc < 0)
3388 return CMD_WARNING;
3389
3390 ts->pchan = pchanc;
3391
3392 return CMD_SUCCESS;
3393}
3394
3395/* used for backwards compatibility with old config files that still
3396 * have uppercase pchan type names */
3397DEFUN_HIDDEN(cfg_ts_pchan_compat,
3398 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02003399 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01003400 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02003401{
3402 struct gsm_bts_trx_ts *ts = vty->index;
3403 int pchanc;
3404
3405 pchanc = gsm_pchan_parse(argv[0]);
3406 if (pchanc < 0)
3407 return CMD_WARNING;
3408
3409 ts->pchan = pchanc;
3410
3411 return CMD_SUCCESS;
3412}
3413
Harald Welte2addf852012-08-17 12:42:06 +02003414
3415
Harald Welte85771a42011-05-30 12:09:13 +02003416DEFUN(cfg_ts_tsc,
3417 cfg_ts_tsc_cmd,
3418 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02003419 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02003420{
3421 struct gsm_bts_trx_ts *ts = vty->index;
3422
Harald Welte499cd252014-01-19 17:10:50 +01003423 if (!gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_MULTI_TSC)) {
3424 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3425 "falling back to BCC%s", VTY_NEWLINE);
3426 ts->tsc = -1;
3427 return CMD_WARNING;
3428 }
3429
Harald Welte85771a42011-05-30 12:09:13 +02003430 ts->tsc = atoi(argv[0]);
3431
3432 return CMD_SUCCESS;
3433}
3434
Harald Weltea42a93f2010-06-14 22:26:10 +02003435#define HOPPING_STR "Configure frequency hopping\n"
3436
3437DEFUN(cfg_ts_hopping,
3438 cfg_ts_hopping_cmd,
3439 "hopping enabled (0|1)",
3440 HOPPING_STR "Enable or disable frequency hopping\n"
3441 "Disable frequency hopping\n" "Enable frequency hopping\n")
3442{
3443 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02003444 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02003445
Harald Welte059c1ef2010-06-14 22:47:37 +02003446 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
3447 vty_out(vty, "BTS model does not support hopping%s",
3448 VTY_NEWLINE);
3449 return CMD_WARNING;
3450 }
3451
3452 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02003453
3454 return CMD_SUCCESS;
3455}
3456
Harald Welte67104d12009-09-12 13:05:33 +02003457DEFUN(cfg_ts_hsn,
3458 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02003459 "hopping sequence-number <0-63>",
3460 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02003461 "Which hopping sequence to use for this channel\n"
3462 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02003463{
3464 struct gsm_bts_trx_ts *ts = vty->index;
3465
3466 ts->hopping.hsn = atoi(argv[0]);
3467
3468 return CMD_SUCCESS;
3469}
3470
3471DEFUN(cfg_ts_maio,
3472 cfg_ts_maio_cmd,
3473 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003474 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02003475 "Which hopping MAIO to use for this channel\n"
3476 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02003477{
3478 struct gsm_bts_trx_ts *ts = vty->index;
3479
3480 ts->hopping.maio = atoi(argv[0]);
3481
3482 return CMD_SUCCESS;
3483}
3484
3485DEFUN(cfg_ts_arfcn_add,
3486 cfg_ts_arfcn_add_cmd,
3487 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003488 HOPPING_STR "Configure hopping ARFCN list\n"
3489 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003490{
3491 struct gsm_bts_trx_ts *ts = vty->index;
3492 int arfcn = atoi(argv[0]);
3493
Harald Weltea42a93f2010-06-14 22:26:10 +02003494 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3495
Harald Welte67104d12009-09-12 13:05:33 +02003496 return CMD_SUCCESS;
3497}
3498
3499DEFUN(cfg_ts_arfcn_del,
3500 cfg_ts_arfcn_del_cmd,
3501 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003502 HOPPING_STR "Configure hopping ARFCN list\n"
3503 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003504{
3505 struct gsm_bts_trx_ts *ts = vty->index;
3506 int arfcn = atoi(argv[0]);
3507
Harald Weltea42a93f2010-06-14 22:26:10 +02003508 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3509
Harald Welte67104d12009-09-12 13:05:33 +02003510 return CMD_SUCCESS;
3511}
3512
Harald Welte3ffe1b32009-08-07 00:25:23 +02003513DEFUN(cfg_ts_e1_subslot,
3514 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02003515 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02003516 "E1/T1 channel connected to this on-air timeslot\n"
3517 "E1/T1 channel connected to this on-air timeslot\n"
3518 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02003519 "E1/T1 timeslot connected to this on-air timeslot\n"
3520 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02003521 "E1/T1 sub-slot connected to this on-air timeslot\n"
3522 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3523 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3524 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3525 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3526 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02003527{
3528 struct gsm_bts_trx_ts *ts = vty->index;
3529
Harald Welte62868882009-08-08 16:12:58 +02003530 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003531
3532 return CMD_SUCCESS;
3533}
Harald Welte59b04682009-06-10 05:40:52 +08003534
Harald Weltea5b1dae2010-05-16 21:47:13 +02003535void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3536{
3537 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003538 osmo_counter_get(net->stats.chreq.total),
3539 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003540 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003541 osmo_counter_get(net->stats.chan.rf_fail),
3542 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003543 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003544 osmo_counter_get(net->stats.paging.attempted),
3545 osmo_counter_get(net->stats.paging.completed),
3546 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003547 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003548 osmo_counter_get(net->stats.bts.oml_fail),
3549 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003550}
3551
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003552DEFUN(drop_bts,
3553 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02003554 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02003555 "Debug/Simulation command to drop Abis/IP BTS\n"
3556 "Debug/Simulation command to drop Abis/IP BTS\n"
3557 "Debug/Simulation command to drop Abis/IP BTS\n"
3558 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003559{
3560 struct gsm_network *gsmnet;
3561 struct gsm_bts_trx *trx;
3562 struct gsm_bts *bts;
3563 unsigned int bts_nr;
3564
3565 gsmnet = gsmnet_from_vty(vty);
3566
3567 bts_nr = atoi(argv[0]);
3568 if (bts_nr >= gsmnet->num_bts) {
3569 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3570 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3571 return CMD_WARNING;
3572 }
3573
3574 bts = gsm_bts_num(gsmnet, bts_nr);
3575 if (!bts) {
3576 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3577 return CMD_WARNING;
3578 }
3579
3580 if (!is_ipaccess_bts(bts)) {
3581 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3582 return CMD_WARNING;
3583 }
3584
3585
3586 /* close all connections */
3587 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003588 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003589 } else if (strcmp(argv[1], "rsl") == 0) {
3590 /* close all rsl connections */
3591 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003592 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003593 }
3594 } else {
3595 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3596 return CMD_WARNING;
3597 }
3598
3599 return CMD_SUCCESS;
3600}
3601
Harald Weltebf4ba722014-12-28 15:00:45 +01003602DEFUN(smscb_cmd, smscb_cmd_cmd,
3603 "bts <0-255> smscb-command <1-4> HEXSTRING",
3604 "BTS related commands\n" "BTS Number\n"
3605 "SMS Cell Broadcast\n" "Last Valid Block\n"
3606 "Hex Encoded SMSCB message (up to 88 octets)\n")
3607{
3608 struct gsm_bts *bts;
3609 int bts_nr = atoi(argv[0]);
3610 int last_block = atoi(argv[1]);
3611 struct rsl_ie_cb_cmd_type cb_cmd;
3612 uint8_t buf[88];
3613 int rc;
3614
3615 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3616 if (!bts) {
3617 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3618 return CMD_WARNING;
3619 }
3620 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3621 if (rc < 0 || rc > sizeof(buf)) {
3622 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3623 return CMD_WARNING;
3624 }
3625
3626 cb_cmd.spare = 0;
3627 cb_cmd.def_bcast = 0;
3628 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3629
3630 switch (last_block) {
3631 case 1:
3632 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3633 break;
3634 case 2:
3635 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3636 break;
3637 case 3:
3638 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3639 break;
3640 case 4:
3641 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3642 break;
3643 }
3644
3645 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3646
3647 return CMD_SUCCESS;
3648}
3649
3650
Harald Welte5213e992010-12-23 13:18:07 +01003651DEFUN(pdch_act, pdch_act_cmd,
3652 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3653 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3654 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3655 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3656 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3657{
3658 struct gsm_bts *bts;
3659 struct gsm_bts_trx *trx;
3660 struct gsm_bts_trx_ts *ts;
3661 int bts_nr = atoi(argv[0]);
3662 int trx_nr = atoi(argv[1]);
3663 int ts_nr = atoi(argv[2]);
3664 int activate;
3665
3666 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3667 if (!bts) {
3668 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3669 return CMD_WARNING;
3670 }
3671
3672 if (!is_ipaccess_bts(bts)) {
3673 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3674 VTY_NEWLINE);
3675 return CMD_WARNING;
3676 }
3677
3678 trx = gsm_bts_trx_num(bts, trx_nr);
3679 if (!trx) {
3680 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3681 return CMD_WARNING;
3682 }
3683
3684 ts = &trx->ts[ts_nr];
3685 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3686 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3687 "mode%s", ts_nr, VTY_NEWLINE);
3688 return CMD_WARNING;
3689 }
3690
3691 if (!strcmp(argv[3], "activate"))
3692 activate = 1;
3693 else
3694 activate = 0;
3695
3696 rsl_ipacc_pdch_activate(ts, activate);
3697
3698 return CMD_SUCCESS;
3699
3700}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003701
Harald Welte40152872010-05-16 20:52:23 +02003702extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02003703extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02003704
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003705int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08003706{
Harald Welte2addf852012-08-17 12:42:06 +02003707 cfg_ts_pchan_cmd.string =
3708 vty_cmd_string_from_valstr(tall_bsc_ctx,
3709 gsm_pchant_names,
3710 "phys_chan_config (", "|", ")",
3711 VTY_DO_LOWER);
3712 cfg_ts_pchan_cmd.doc =
3713 vty_cmd_string_from_valstr(tall_bsc_ctx,
3714 gsm_pchant_descs,
3715 "Physical Channel Combination\n",
3716 "\n", "", 0);
3717
Harald Welte85a77b12012-08-17 13:02:12 +02003718 cfg_bts_type_cmd.string =
3719 vty_cmd_string_from_valstr(tall_bsc_ctx,
3720 bts_type_names,
3721 "type (", "|", ")",
3722 VTY_DO_LOWER);
3723 cfg_bts_type_cmd.doc =
3724 vty_cmd_string_from_valstr(tall_bsc_ctx,
3725 bts_type_descs,
3726 "BTS Vendor/Type\n",
3727 "\n", "", 0);
3728
3729
Harald Welte7bc28f62010-05-12 16:10:35 +00003730 install_element_ve(&show_net_cmd);
3731 install_element_ve(&show_bts_cmd);
3732 install_element_ve(&show_trx_cmd);
3733 install_element_ve(&show_ts_cmd);
3734 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08003735 install_element_ve(&show_lchan_summary_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003736
Harald Welte7bc28f62010-05-12 16:10:35 +00003737 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01003738 install_element_ve(&show_paging_group_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003739
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003740 logging_vty_add_cmds(cat);
Jacob Erlbeck63fac682015-10-26 16:25:37 +01003741 osmo_stats_vty_add_cmds();
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01003742
Harald Weltee87eb462009-08-07 13:29:14 +02003743 install_element(CONFIG_NODE, &cfg_net_cmd);
3744 install_node(&net_node, config_write_net);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003745 vty_install_default(GSMNET_NODE);
Harald Welte62868882009-08-08 16:12:58 +02003746 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003747 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3748 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3749 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02003750 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01003751 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09003752 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01003753 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01003754 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01003755 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003756 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003757 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3758 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3759 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3760 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3761 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3762 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003763 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003764 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3765 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3766 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3767 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3768 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3769 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3770 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3771 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3772 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003773 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003774 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003775 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003776 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003777 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003778
3779 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003780 install_node(&bts_node, config_write_bts);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003781 vty_install_default(BTS_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003782 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003783 install_element(BTS_NODE, &cfg_description_cmd);
3784 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003785 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003786 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003787 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3788 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003789 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003790 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003791 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003792 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02003793 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003794 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003795 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversbergac27b952013-12-05 13:25:06 +01003796 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csabadef87b42015-02-07 13:27:36 +01003797 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003798 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003799 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3800 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003801 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003802 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3803 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003804 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3805 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3806 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003807 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3808 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003809 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003810 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04003811 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003812 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003813 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02003814 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003815 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3816 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003817 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3818 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3819 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3820 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3821 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3822 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversbergf9248d92013-03-10 11:49:35 +01003823 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003824 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003825 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003826 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003827 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003828 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003829 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003830 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003831 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003832 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3833 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3834 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003835 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003836 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3837 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003838 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3839 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003840 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003841 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3842 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck8f8e5bf2014-01-16 11:02:14 +01003843 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
3844 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberg976493b2013-12-07 18:32:28 +01003845 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
3846 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
3847 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
3848 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
3849 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freyther15152612014-12-17 14:46:17 +01003850 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
3851 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversbergfa163e82014-01-19 11:47:44 +01003852 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
3853 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
3854 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
3855 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
3856 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
3857 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
3858 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
3859 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
3860 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
3861 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
3862 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
3863 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
3864 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
3865 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
3866 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
3867 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
3868 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
3869 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
3870 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
3871 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
3872 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
3873 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003874
3875 install_element(BTS_NODE, &cfg_trx_cmd);
3876 install_node(&trx_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003877 vty_install_default(TRX_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003878 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003879 install_element(TRX_NODE, &cfg_description_cmd);
3880 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003881 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003882 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003883 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3884 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003885 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003886
3887 install_element(TRX_NODE, &cfg_ts_cmd);
3888 install_node(&ts_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003889 vty_install_default(TS_NODE);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003890 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003891 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003892 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003893 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003894 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3895 install_element(TS_NODE, &cfg_ts_maio_cmd);
3896 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3897 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003898 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003899
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003900 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003901 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Weltebf4ba722014-12-28 15:00:45 +01003902 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003903
Harald Welte63b964e2010-05-31 16:40:40 +02003904 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003905 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003906 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003907
Harald Welte40152872010-05-16 20:52:23 +02003908 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003909
3910 return 0;
3911}