blob: 83d15753fd9be5744e0c32d22e5a25aeb5bc0732 [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>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte2addf852012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte59b04682009-06-10 05:40:52 +080029
30#include <arpa/inet.h>
31
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010032#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/gsm_data.h>
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +020034#include <osmocom/abis/e1_input.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010036#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010037#include <osmocom/core/utils.h>
38#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020039#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010040#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010041#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080042#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010043#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020044#include <openbsc/vty.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080045#include <osmocom/gprs/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020046#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020047#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010048#include <openbsc/paging.h>
Harald Welte64fcd772011-08-20 18:25:02 +020049#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010050#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010051#include <openbsc/osmo_msc_data.h>
52#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080053
Harald Welted9dea592011-03-04 13:53:51 +010054#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020055
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +020056
57#define NETWORK_STR "Configure the GSM network\n"
58#define CODE_CMD_STR "Code commands\n"
59#define NAME_CMD_STR "Name Commands\n"
60#define NAME_STR "Name to use\n"
61#define LCHAN_NR_STR "Logical Channel Number\n"
62
63
Harald Welted6b62e32010-05-12 17:19:53 +000064/* FIXME: this should go to some common file */
65static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020066 { 0, "tns-block" },
67 { 1, "tns-block-retries" },
68 { 2, "tns-reset" },
69 { 3, "tns-reset-retries" },
70 { 4, "tns-test" },
71 { 5, "tns-alive" },
72 { 6, "tns-alive-retries" },
73 { 0, NULL }
74};
75
Harald Welted6b62e32010-05-12 17:19:53 +000076static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020077 { 0, "blocking-timer" },
78 { 1, "blocking-retries" },
79 { 2, "unblocking-retries" },
80 { 3, "reset-timer" },
81 { 4, "reset-retries" },
82 { 5, "suspend-timer" },
83 { 6, "suspend-retries" },
84 { 7, "resume-timer" },
85 { 8, "resume-retries" },
86 { 9, "capability-update-timer" },
87 { 10, "capability-update-retries" },
88 { 0, NULL }
89};
90
Harald Weltef989b782011-02-15 11:43:27 +010091static const struct value_string bts_neigh_mode_strs[] = {
92 { NL_MODE_AUTOMATIC, "automatic" },
93 { NL_MODE_MANUAL, "manual" },
94 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
95 { 0, NULL }
96};
97
Harald Weltee87eb462009-08-07 13:29:14 +020098struct cmd_node net_node = {
99 GSMNET_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200100 "%s(config-net)# ",
Harald Weltee87eb462009-08-07 13:29:14 +0200101 1,
102};
103
Harald Welte59b04682009-06-10 05:40:52 +0800104struct cmd_node bts_node = {
105 BTS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200106 "%s(config-net-bts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800107 1,
108};
109
110struct cmd_node trx_node = {
111 TRX_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200112 "%s(config-net-bts-trx)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800113 1,
114};
115
116struct cmd_node ts_node = {
117 TS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200118 "%s(config-net-bts-trx-ts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800119 1,
120};
121
Harald Welte61daf6d2010-05-27 13:39:40 +0200122extern struct gsm_network *bsc_gsmnet;
123
Harald Welte40152872010-05-16 20:52:23 +0200124struct gsm_network *gsmnet_from_vty(struct vty *v)
125{
Harald Welte61daf6d2010-05-27 13:39:40 +0200126 /* In case we read from the config file, the vty->priv cannot
127 * point to a struct telnet_connection, and thus conn->priv
128 * will not point to the gsm_network structure */
129#if 0
Harald Welte40152872010-05-16 20:52:23 +0200130 struct telnet_connection *conn = v->priv;
131 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200132#else
133 return bsc_gsmnet;
134#endif
Harald Welte40152872010-05-16 20:52:23 +0200135}
136
Harald Welte59b04682009-06-10 05:40:52 +0800137static int dummy_config_write(struct vty *v)
138{
139 return CMD_SUCCESS;
140}
141
142static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
143{
144 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte306a8892011-05-23 20:30:39 +0200145 abis_nm_opstate_name(nms->operational), nms->administrative,
146 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800147}
148
Harald Weltefe96f382009-12-22 13:09:29 +0100149static void dump_pchan_load_vty(struct vty *vty, char *prefix,
150 const struct pchan_load *pl)
151{
152 int i;
153
154 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
155 const struct load_counter *lc = &pl->pchan[i];
156 unsigned int percent;
157
158 if (lc->total == 0)
159 continue;
160
161 percent = (lc->used * 100) / lc->total;
162
163 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
164 gsm_pchan_name(i), percent, lc->used, lc->total,
165 VTY_NEWLINE);
166 }
167}
168
Harald Welte59b04682009-06-10 05:40:52 +0800169static void net_dump_vty(struct vty *vty, struct gsm_network *net)
170{
Harald Weltefe96f382009-12-22 13:09:29 +0100171 struct pchan_load pl;
172
Harald Welte59b04682009-06-10 05:40:52 +0800173 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
174 "and has %u BTS%s", net->country_code, net->network_code,
175 net->num_bts, VTY_NEWLINE);
176 vty_out(vty, " Long network name: '%s'%s",
177 net->name_long, VTY_NEWLINE);
178 vty_out(vty, " Short network name: '%s'%s",
179 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200180 vty_out(vty, " Authentication policy: %s%s",
181 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100182 vty_out(vty, " Location updating reject cause: %u%s",
183 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900184 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
185 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100186 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
187 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800188 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
189 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100190 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
191 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100192 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
193 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100194 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
195 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100196 network_chan_load(&pl, net);
197 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
198 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100199
200 /* show rf */
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200201 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100202 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200203 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100204 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800205}
206
207DEFUN(show_net, show_net_cmd, "show network",
208 SHOW_STR "Display information about a GSM NETWORK\n")
209{
Harald Welte40152872010-05-16 20:52:23 +0200210 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800211 net_dump_vty(vty, net);
212
213 return CMD_SUCCESS;
214}
215
216static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
217{
218 struct e1inp_line *line;
219
220 if (!e1l) {
221 vty_out(vty, " None%s", VTY_NEWLINE);
222 return;
223 }
224
225 line = e1l->ts->line;
226
227 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
228 line->num, line->driver->name, e1l->ts->num,
229 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
230 vty_out(vty, " E1 TEI %u, SAPI %u%s",
231 e1l->tei, e1l->sapi, VTY_NEWLINE);
232}
233
234static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
235{
Harald Weltefe96f382009-12-22 13:09:29 +0100236 struct pchan_load pl;
237
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200238 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200239 "BSIC %u, TSC %u and %u TRX%s",
240 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200241 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200242 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200243 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200244 vty_out(vty, "Description: %s%s",
245 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100246 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100247 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100248 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
249 VTY_NEWLINE);
250 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100251 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100252 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
253 VTY_NEWLINE);
254 vty_out(vty, "RACH Max transmissions: %u%s",
255 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
256 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100257 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200258 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200259 vty_out(vty, "Channel Description Attachment: %s%s",
260 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
261 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
262 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
263 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
264 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200265 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
266 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800267 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200268 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800269 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200270 bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100271 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
272 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200273 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
274 vty_out(vty, " Skip Reset: %d%s",
275 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800276 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200277 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800278 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200279 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200280 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
281 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800282 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100283 if (is_ipaccess_bts(bts)) {
284 vty_out(vty, " OML Link state: %s.%s",
285 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
286 } else {
Harald Welte25572872009-10-20 00:22:00 +0200287 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
288 e1isl_dump_vty(vty, bts->oml_link);
289 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100290
291 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100292 memset(&pl, 0, sizeof(pl));
293 bts_chan_load(&pl, bts);
294 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
295 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800296}
297
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100298DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800299 SHOW_STR "Display information about a BTS\n"
300 "BTS number")
301{
Harald Welte40152872010-05-16 20:52:23 +0200302 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800303 int bts_nr;
304
305 if (argc != 0) {
306 /* use the BTS number that the user has specified */
307 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100308 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800309 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
310 VTY_NEWLINE);
311 return CMD_WARNING;
312 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200313 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800314 return CMD_SUCCESS;
315 }
316 /* print all BTS's */
317 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200318 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800319
320 return CMD_SUCCESS;
321}
322
Harald Welte62868882009-08-08 16:12:58 +0200323/* utility functions */
324static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
325 const char *ts, const char *ss)
326{
327 e1_link->e1_nr = atoi(line);
328 e1_link->e1_ts = atoi(ts);
329 if (!strcmp(ss, "full"))
330 e1_link->e1_ts_ss = 255;
331 else
332 e1_link->e1_ts_ss = atoi(ss);
333}
334
335static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
336 const char *prefix)
337{
338 if (!e1_link->e1_ts)
339 return;
340
341 if (e1_link->e1_ts_ss == 255)
342 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
343 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
344 else
345 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
346 prefix, e1_link->e1_nr, e1_link->e1_ts,
347 e1_link->e1_ts_ss, VTY_NEWLINE);
348}
349
350
Harald Welte97ceef92009-08-06 19:06:46 +0200351static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
352{
Harald Welte62868882009-08-08 16:12:58 +0200353 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200354 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
355 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200356 if (ts->pchan != GSM_PCHAN_NONE)
357 vty_out(vty, " phys_chan_config %s%s",
358 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200359 vty_out(vty, " hopping enabled %u%s",
360 ts->hopping.enabled, VTY_NEWLINE);
361 if (ts->hopping.enabled) {
362 unsigned int i;
363 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200364 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200365 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200366 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200367 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
368 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
369 continue;
370 vty_out(vty, " hopping arfcn add %u%s",
371 i, VTY_NEWLINE);
372 }
Harald Welteff598092010-12-24 12:07:07 +0100373 }
Harald Welte62868882009-08-08 16:12:58 +0200374 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100375
376 if (ts->trx->bts->model->config_write_ts)
377 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200378}
379
380static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
381{
382 int i;
383
Harald Weltee87eb462009-08-07 13:29:14 +0200384 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200385 if (trx->description)
386 vty_out(vty, " description %s%s", trx->description,
387 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200388 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200389 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200390 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200391 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100392 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200393 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200394 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
395 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200396
Harald Weltec02789e2011-02-14 16:15:21 +0100397 if (trx->bts->model->config_write_trx)
398 trx->bts->model->config_write_trx(vty, trx);
399
Harald Welte97ceef92009-08-06 19:06:46 +0200400 for (i = 0; i < TRX_NR_TS; i++)
401 config_write_ts_single(vty, &trx->ts[i]);
402}
403
Harald Weltea9251762010-05-11 23:50:21 +0200404static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
405{
406 unsigned int i;
407 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
408 VTY_NEWLINE);
409 if (bts->gprs.mode == BTS_GPRS_NONE)
410 return;
411
412 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
413 VTY_NEWLINE);
414 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
415 VTY_NEWLINE);
416 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
417 vty_out(vty, " gprs cell timer %s %u%s",
418 get_value_string(gprs_bssgp_cfg_strs, i),
419 bts->gprs.cell.timer[i], VTY_NEWLINE);
420 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
421 VTY_NEWLINE);
422 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
423 vty_out(vty, " gprs ns timer %s %u%s",
424 get_value_string(gprs_ns_timer_strs, i),
425 bts->gprs.nse.timer[i], VTY_NEWLINE);
426 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
427 struct gsm_bts_gprs_nsvc *nsvc =
428 &bts->gprs.nsvc[i];
429 struct in_addr ia;
430
431 ia.s_addr = htonl(nsvc->remote_ip);
432 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
433 nsvc->nsvci, VTY_NEWLINE);
434 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
435 nsvc->local_port, VTY_NEWLINE);
436 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
437 nsvc->remote_port, VTY_NEWLINE);
438 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
439 inet_ntoa(ia), VTY_NEWLINE);
440 }
441}
442
Harald Welte97ceef92009-08-06 19:06:46 +0200443static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
444{
445 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200446 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200447
Harald Weltee87eb462009-08-07 13:29:14 +0200448 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
449 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200450 if (bts->description)
451 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200452 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100453 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200454 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200455 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200456 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
457 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte5c3abf92012-07-08 16:48:11 +0200458 if (bts->tz.override != 0)
459 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200460 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100461 vty_out(vty, " cell reselection hysteresis %u%s",
462 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
463 vty_out(vty, " rxlev access min %u%s",
464 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100465
466 if (bts->si_common.cell_ro_sel_par.present) {
467 struct gsm48_si_selection_params *sp;
468 sp = &bts->si_common.cell_ro_sel_par;
469
470 if (sp->cbq)
471 vty_out(vty, " cell bar qualify %u%s",
472 sp->cbq, VTY_NEWLINE);
473
474 if (sp->cell_resel_off)
475 vty_out(vty, " cell reselection offset %u%s",
476 sp->cell_resel_off*2, VTY_NEWLINE);
477
478 if (sp->temp_offs == 7)
479 vty_out(vty, " temporary offset infinite%s",
480 VTY_NEWLINE);
481 else if (sp->temp_offs)
482 vty_out(vty, " temporary offset %u%s",
483 sp->temp_offs*10, VTY_NEWLINE);
484
485 if (sp->penalty_time == 31)
486 vty_out(vty, " penalty time reserved%s",
487 VTY_NEWLINE);
488 else if (sp->penalty_time)
489 vty_out(vty, " penalty time %u%s",
490 (sp->penalty_time*20)+20, VTY_NEWLINE);
491 }
492
Daniel Willmann3e7db9e2012-12-27 00:02:01 +0100493 vty_out(vty, " periodic location update %u%s",
494 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200495 vty_out(vty, " channel allocator %s%s",
496 bts->chan_alloc_reverse ? "descending" : "ascending",
497 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100498 vty_out(vty, " rach tx integer %u%s",
499 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
500 vty_out(vty, " rach max transmission %u%s",
501 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
502 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800503
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200504 vty_out(vty, " channel-descrption attach %u%s",
505 bts->si_common.chan_desc.att, VTY_NEWLINE);
506 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
507 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
508 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
509 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
510
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800511 if (bts->rach_b_thresh != -1)
512 vty_out(vty, " rach nm busy threshold %u%s",
513 bts->rach_b_thresh, VTY_NEWLINE);
514 if (bts->rach_ldavg_slots != -1)
515 vty_out(vty, " rach nm load average %u%s",
516 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100517 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200518 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800519 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
520 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200521 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
522 if (bts->si_mode_static & (1 << i)) {
523 vty_out(vty, " system-information %s mode static%s",
524 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
525 vty_out(vty, " system-information %s static %s%s",
526 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100527 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200528 VTY_NEWLINE);
529 }
530 }
Harald Welte08011e22011-03-04 13:41:31 +0100531 switch (bts->type) {
532 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200533 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200534 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200535 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200536 vty_out(vty, " oml ip.access stream_id %u line %u%s",
537 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100538 break;
539 case GSM_BTS_TYPE_HSL_FEMTO:
540 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200541 vty_out(vty, " oml hsl line %u%s",
542 bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100543 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200544 case GSM_BTS_TYPE_NOKIA_SITE:
545 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
546 break;
Harald Welte08011e22011-03-04 13:41:31 +0100547 default:
Harald Welte62868882009-08-08 16:12:58 +0200548 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
549 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100550 break;
Harald Welte62868882009-08-08 16:12:58 +0200551 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800552
553 /* if we have a limit, write it */
554 if (bts->paging.free_chans_need >= 0)
555 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
556
Harald Welteca46eff2011-01-11 23:44:56 +0100557 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100558 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
559 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100560 for (i = 0; i < 1024; i++) {
561 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
562 vty_out(vty, " neighbor-list add arfcn %u%s",
563 i, VTY_NEWLINE);
564 }
565 }
Harald Weltef989b782011-02-15 11:43:27 +0100566 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
567 for (i = 0; i < 1024; i++) {
568 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
569 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
570 i, VTY_NEWLINE);
571 }
572 }
Harald Welteca46eff2011-01-11 23:44:56 +0100573
Harald Weltea9251762010-05-11 23:50:21 +0200574 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200575
Harald Weltec02789e2011-02-14 16:15:21 +0100576 if (bts->model->config_write_bts)
577 bts->model->config_write_bts(vty, bts);
578
Harald Welte97ceef92009-08-06 19:06:46 +0200579 llist_for_each_entry(trx, &bts->trx_list, list)
580 config_write_trx_single(vty, trx);
581}
582
583static int config_write_bts(struct vty *v)
584{
Harald Welte40152872010-05-16 20:52:23 +0200585 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200586 struct gsm_bts *bts;
587
588 llist_for_each_entry(bts, &gsmnet->bts_list, list)
589 config_write_bts_single(v, bts);
590
591 return CMD_SUCCESS;
592}
593
Harald Weltee87eb462009-08-07 13:29:14 +0200594static int config_write_net(struct vty *vty)
595{
Harald Welte40152872010-05-16 20:52:23 +0200596 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
597
Harald Weltee87eb462009-08-07 13:29:14 +0200598 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200599 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200600 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200601 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
602 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200603 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100604 vty_out(vty, " location updating reject cause %u%s",
605 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900606 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100607 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800608 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100609 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
610 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100611 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100612 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100613 vty_out(vty, " handover window rxlev averaging %u%s",
614 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
615 vty_out(vty, " handover window rxqual averaging %u%s",
616 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
617 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
618 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
619 vty_out(vty, " handover power budget interval %u%s",
620 gsmnet->handover.pwr_interval, VTY_NEWLINE);
621 vty_out(vty, " handover power budget hysteresis %u%s",
622 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
623 vty_out(vty, " handover maximum distance %u%s",
624 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100625 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100626 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
627 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
628 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
629 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
630 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
631 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
632 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
633 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
634 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100635 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100636 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100637 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100638 vty_out(vty, " subscriber-keep-in-ram %d%s",
639 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200640
641 return CMD_SUCCESS;
642}
Harald Welte97ceef92009-08-06 19:06:46 +0200643
Harald Welte59b04682009-06-10 05:40:52 +0800644static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
645{
646 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
647 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200648 vty_out(vty, "Description: %s%s",
649 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200650 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200651 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200652 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200653 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800654 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200655 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800656 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200657 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200658 if (is_ipaccess_bts(trx->bts)) {
659 vty_out(vty, " ip.access stream ID: 0x%02x%s",
660 trx->rsl_tei, VTY_NEWLINE);
661 } else {
662 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
663 e1isl_dump_vty(vty, trx->rsl_link);
664 }
Harald Welte59b04682009-06-10 05:40:52 +0800665}
666
667DEFUN(show_trx,
668 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100669 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200670 SHOW_STR "Display information about a TRX\n"
671 "BTS Number\n"
672 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800673{
Harald Welte40152872010-05-16 20:52:23 +0200674 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800675 struct gsm_bts *bts = NULL;
676 struct gsm_bts_trx *trx;
677 int bts_nr, trx_nr;
678
679 if (argc >= 1) {
680 /* use the BTS number that the user has specified */
681 bts_nr = atoi(argv[0]);
682 if (bts_nr >= net->num_bts) {
683 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
684 VTY_NEWLINE);
685 return CMD_WARNING;
686 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200687 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800688 }
689 if (argc >= 2) {
690 trx_nr = atoi(argv[1]);
691 if (trx_nr >= bts->num_trx) {
692 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
693 VTY_NEWLINE);
694 return CMD_WARNING;
695 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200696 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800697 trx_dump_vty(vty, trx);
698 return CMD_SUCCESS;
699 }
700 if (bts) {
701 /* print all TRX in this BTS */
702 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200703 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800704 trx_dump_vty(vty, trx);
705 }
706 return CMD_SUCCESS;
707 }
708
709 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200710 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800711 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200712 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800713 trx_dump_vty(vty, trx);
714 }
715 }
716
717 return CMD_SUCCESS;
718}
719
Harald Welte97ceef92009-08-06 19:06:46 +0200720
Harald Welte59b04682009-06-10 05:40:52 +0800721static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
722{
Harald Welte85771a42011-05-30 12:09:13 +0200723 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100724 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte85771a42011-05-30 12:09:13 +0200725 gsm_pchan_name(ts->pchan), ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100726 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100727 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100728 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
729 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800730 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200731 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530732 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800733 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
734 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
735 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800736}
737
738DEFUN(show_ts,
739 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100740 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200741 SHOW_STR "Display information about a TS\n"
742 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800743{
Harald Welte40152872010-05-16 20:52:23 +0200744 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100745 struct gsm_bts *bts = NULL;
746 struct gsm_bts_trx *trx = NULL;
747 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800748 int bts_nr, trx_nr, ts_nr;
749
750 if (argc >= 1) {
751 /* use the BTS number that the user has specified */
752 bts_nr = atoi(argv[0]);
753 if (bts_nr >= net->num_bts) {
754 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
755 VTY_NEWLINE);
756 return CMD_WARNING;
757 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200758 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800759 }
760 if (argc >= 2) {
761 trx_nr = atoi(argv[1]);
762 if (trx_nr >= bts->num_trx) {
763 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
764 VTY_NEWLINE);
765 return CMD_WARNING;
766 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200767 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800768 }
769 if (argc >= 3) {
770 ts_nr = atoi(argv[2]);
771 if (ts_nr >= TRX_NR_TS) {
772 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
773 VTY_NEWLINE);
774 return CMD_WARNING;
775 }
Harald Welte06868382010-12-24 12:05:03 +0100776 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800777 ts = &trx->ts[ts_nr];
778 ts_dump_vty(vty, ts);
779 return CMD_SUCCESS;
780 }
Harald Welte06868382010-12-24 12:05:03 +0100781
782 if (bts && trx) {
783 /* Iterate over all TS in this TRX */
784 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
785 ts = &trx->ts[ts_nr];
786 ts_dump_vty(vty, ts);
787 }
788 } else if (bts) {
789 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800790 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200791 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800792 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
793 ts = &trx->ts[ts_nr];
794 ts_dump_vty(vty, ts);
795 }
796 }
Harald Welte06868382010-12-24 12:05:03 +0100797 } else {
798 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
799 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
800 bts = gsm_bts_num(net, bts_nr);
801 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
802 trx = gsm_bts_trx_num(bts, trx_nr);
803 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
804 ts = &trx->ts[ts_nr];
805 ts_dump_vty(vty, ts);
806 }
807 }
808 }
Harald Welte59b04682009-06-10 05:40:52 +0800809 }
810
811 return CMD_SUCCESS;
812}
813
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100814static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800815{
Harald Welte91afe4c2009-06-20 18:15:19 +0200816 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800817 subscr->authorized, VTY_NEWLINE);
818 if (subscr->name)
819 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
820 if (subscr->extension)
821 vty_out(vty, " Extension: %s%s", subscr->extension,
822 VTY_NEWLINE);
823 if (subscr->imsi)
824 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200825 if (subscr->tmsi != GSM_RESERVED_TMSI)
826 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200827 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100828
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200829 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800830}
831
Harald Welte44007742009-12-22 21:43:14 +0100832static void meas_rep_dump_uni_vty(struct vty *vty,
833 struct gsm_meas_rep_unidir *mru,
834 const char *prefix,
835 const char *dir)
836{
837 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
838 prefix, dir, rxlev2dbm(mru->full.rx_lev),
839 dir, rxlev2dbm(mru->sub.rx_lev));
840 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
841 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
842 VTY_NEWLINE);
843}
844
845static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
846 const char *prefix)
847{
848 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
849 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
850 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
851 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
852 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
853 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
854 VTY_NEWLINE);
855 if (mr->flags & MEAS_REP_F_MS_TO)
856 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
857 mr->ms_timing_offset, VTY_NEWLINE);
858 if (mr->flags & MEAS_REP_F_MS_L1)
859 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
860 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
861 if (mr->flags & MEAS_REP_F_DL_VALID)
862 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
863 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
864}
865
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800866static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800867{
Harald Welte44007742009-12-22 21:43:14 +0100868 int idx;
869
Harald Weltef62dad62010-12-24 12:22:34 +0100870 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
871 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
872 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800873 vty_out(vty, " Connection: %u, State: %s%s",
874 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100875 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100876 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
877 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
878 - lchan->bs_power*2,
879 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
880 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800881 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800882 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800883 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800884 } else
885 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530886 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
887 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200888 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530889 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
890 inet_ntoa(ia), lchan->abis_ip.bound_port,
891 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
892 VTY_NEWLINE);
893 }
Harald Welte44007742009-12-22 21:43:14 +0100894
895 /* we want to report the last measurement report */
896 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
897 lchan->meas_rep_idx, 1);
898 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800899}
900
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800901static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
902{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800903 struct gsm_meas_rep *mr;
904 int idx;
905
906 /* we want to report the last measurement report */
907 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
908 lchan->meas_rep_idx, 1);
909 mr = &lchan->meas_rep[idx];
910
Harald Weltef62dad62010-12-24 12:22:34 +0100911 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
912 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
913 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100914 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800915 rxlev2dbm(mr->dl.full.rx_lev),
916 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800917 VTY_NEWLINE);
918}
919
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100920
921static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
922 void (*dump_cb)(struct vty *, struct gsm_lchan *))
923{
924 int lchan_nr;
925 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
926 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
927 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
928 continue;
929 dump_cb(vty, lchan);
930 }
931
932 return CMD_SUCCESS;
933}
934
935static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
936 void (*dump_cb)(struct vty *, struct gsm_lchan *))
937{
938 int ts_nr;
939
940 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
941 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
942 dump_lchan_trx_ts(ts, vty, dump_cb);
943 }
944
945 return CMD_SUCCESS;
946}
947
948static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
949 void (*dump_cb)(struct vty *, struct gsm_lchan *))
950{
951 int trx_nr;
952
953 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
954 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
955 dump_lchan_trx(trx, vty, dump_cb);
956 }
957
958 return CMD_SUCCESS;
959}
960
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800961static int lchan_summary(struct vty *vty, int argc, const char **argv,
962 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800963{
Harald Welte40152872010-05-16 20:52:23 +0200964 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800965 struct gsm_bts *bts;
966 struct gsm_bts_trx *trx;
967 struct gsm_bts_trx_ts *ts;
968 struct gsm_lchan *lchan;
969 int bts_nr, trx_nr, ts_nr, lchan_nr;
970
971 if (argc >= 1) {
972 /* use the BTS number that the user has specified */
973 bts_nr = atoi(argv[0]);
974 if (bts_nr >= net->num_bts) {
975 vty_out(vty, "%% can't find BTS %s%s", argv[0],
976 VTY_NEWLINE);
977 return CMD_WARNING;
978 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200979 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100980
981 if (argc == 1)
982 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +0800983 }
984 if (argc >= 2) {
985 trx_nr = atoi(argv[1]);
986 if (trx_nr >= bts->num_trx) {
987 vty_out(vty, "%% can't find TRX %s%s", argv[1],
988 VTY_NEWLINE);
989 return CMD_WARNING;
990 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200991 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100992
993 if (argc == 2)
994 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +0800995 }
996 if (argc >= 3) {
997 ts_nr = atoi(argv[2]);
998 if (ts_nr >= TRX_NR_TS) {
999 vty_out(vty, "%% can't find TS %s%s", argv[2],
1000 VTY_NEWLINE);
1001 return CMD_WARNING;
1002 }
1003 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001004
1005 if (argc == 3)
1006 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001007 }
1008 if (argc >= 4) {
1009 lchan_nr = atoi(argv[3]);
1010 if (lchan_nr >= TS_MAX_LCHAN) {
1011 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1012 VTY_NEWLINE);
1013 return CMD_WARNING;
1014 }
1015 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001016 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001017 return CMD_SUCCESS;
1018 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001019
1020
Harald Welte59b04682009-06-10 05:40:52 +08001021 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001022 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001023 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001024 }
1025
1026 return CMD_SUCCESS;
1027}
1028
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001029
1030DEFUN(show_lchan,
1031 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001032 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001033 SHOW_STR "Display information about a logical channel\n"
1034 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001035 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001036
1037{
1038 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1039}
1040
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001041DEFUN(show_lchan_summary,
1042 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001043 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001044 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001045 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001046 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001047 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001048{
1049 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1050}
1051
Harald Welte59b04682009-06-10 05:40:52 +08001052static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1053{
1054 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1055 subscr_dump_vty(vty, pag->subscr);
1056}
1057
1058static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1059{
1060 struct gsm_paging_request *pag;
1061
1062 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1063 paging_dump_vty(vty, pag);
1064}
1065
1066DEFUN(show_paging,
1067 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001068 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001069 SHOW_STR "Display information about paging reuqests of a BTS\n"
1070 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001071{
Harald Welte40152872010-05-16 20:52:23 +02001072 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001073 struct gsm_bts *bts;
1074 int bts_nr;
1075
1076 if (argc >= 1) {
1077 /* use the BTS number that the user has specified */
1078 bts_nr = atoi(argv[0]);
1079 if (bts_nr >= net->num_bts) {
1080 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1081 VTY_NEWLINE);
1082 return CMD_WARNING;
1083 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001084 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001085 bts_paging_dump_vty(vty, bts);
1086
1087 return CMD_SUCCESS;
1088 }
1089 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001090 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001091 bts_paging_dump_vty(vty, bts);
1092 }
1093
1094 return CMD_SUCCESS;
1095}
1096
Harald Weltee87eb462009-08-07 13:29:14 +02001097DEFUN(cfg_net,
1098 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001099 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001100{
Harald Welte40152872010-05-16 20:52:23 +02001101 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001102 vty->node = GSMNET_NODE;
1103
1104 return CMD_SUCCESS;
1105}
1106
Harald Weltee87eb462009-08-07 13:29:14 +02001107DEFUN(cfg_net_ncc,
1108 cfg_net_ncc_cmd,
1109 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001110 "Set the GSM network country code\n"
1111 "Country commands\n"
1112 CODE_CMD_STR
1113 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001114{
Harald Welte40152872010-05-16 20:52:23 +02001115 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1116
Harald Weltee87eb462009-08-07 13:29:14 +02001117 gsmnet->country_code = atoi(argv[0]);
1118
1119 return CMD_SUCCESS;
1120}
1121
1122DEFUN(cfg_net_mnc,
1123 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001124 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001125 "Set the GSM mobile network code\n"
1126 "Network Commands\n"
1127 CODE_CMD_STR
1128 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001129{
Harald Welte40152872010-05-16 20:52:23 +02001130 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1131
Harald Weltee87eb462009-08-07 13:29:14 +02001132 gsmnet->network_code = atoi(argv[0]);
1133
1134 return CMD_SUCCESS;
1135}
1136
1137DEFUN(cfg_net_name_short,
1138 cfg_net_name_short_cmd,
1139 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001140 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001141{
Harald Welte40152872010-05-16 20:52:23 +02001142 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1143
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001144 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001145 return CMD_SUCCESS;
1146}
1147
1148DEFUN(cfg_net_name_long,
1149 cfg_net_name_long_cmd,
1150 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001151 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001152{
Harald Welte40152872010-05-16 20:52:23 +02001153 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1154
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001155 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001156 return CMD_SUCCESS;
1157}
Harald Welte59b04682009-06-10 05:40:52 +08001158
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001159DEFUN(cfg_net_auth_policy,
1160 cfg_net_auth_policy_cmd,
1161 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001162 "Authentication (not cryptographic)\n"
1163 "Set the GSM network authentication policy\n"
1164 "Require the MS to be activated in HLR\n"
1165 "Accept all MS, whether in HLR or not\n"
1166 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001167{
1168 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001169 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001170
1171 gsmnet->auth_policy = policy;
1172
1173 return CMD_SUCCESS;
1174}
1175
Harald Welte59936d72009-11-18 20:33:19 +01001176DEFUN(cfg_net_reject_cause,
1177 cfg_net_reject_cause_cmd,
1178 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001179 "Set the reject cause of location updating reject\n"
1180 "Set the reject cause of location updating reject\n"
1181 "Set the reject cause of location updating reject\n"
1182 "Set the reject cause of location updating reject\n"
1183 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001184{
Harald Welte40152872010-05-16 20:52:23 +02001185 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1186
Harald Welte59936d72009-11-18 20:33:19 +01001187 gsmnet->reject_cause = atoi(argv[0]);
1188
1189 return CMD_SUCCESS;
1190}
1191
Harald Weltecca253a2009-08-30 15:47:06 +09001192DEFUN(cfg_net_encryption,
1193 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001194 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001195 "Encryption options\n"
1196 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001197 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1198 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001199{
Harald Welte40152872010-05-16 20:52:23 +02001200 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1201
Andreas.Eversberg53293292009-11-17 09:55:26 +01001202 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001203
1204 return CMD_SUCCESS;
1205}
1206
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001207DEFUN(cfg_net_neci,
1208 cfg_net_neci_cmd,
1209 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001210 "New Establish Cause Indication\n"
1211 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001212{
Harald Welte40152872010-05-16 20:52:23 +02001213 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1214
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001215 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001216 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001217 return CMD_SUCCESS;
1218}
1219
Harald Welte52af1952009-12-13 10:53:12 +01001220DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1221 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001222 "Radio Resource Location Protocol\n"
1223 "Set the Radio Resource Location Protocol Mode\n"
1224 "Don't send RRLP request\n"
1225 "Request MS-based location\n"
1226 "Request any location, prefer MS-based\n"
1227 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001228{
Harald Welte40152872010-05-16 20:52:23 +02001229 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1230
Harald Welte52af1952009-12-13 10:53:12 +01001231 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1232
1233 return CMD_SUCCESS;
1234}
1235
Harald Weltea310f3e2009-12-14 09:00:24 +01001236DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1237 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001238 "Mobility Management\n"
1239 "Send MM INFO after LOC UPD ACCEPT\n"
1240 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001241{
Harald Welte40152872010-05-16 20:52:23 +02001242 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1243
Harald Weltea310f3e2009-12-14 09:00:24 +01001244 gsmnet->send_mm_info = atoi(argv[0]);
1245
1246 return CMD_SUCCESS;
1247}
1248
Harald Welte9e002452010-05-11 21:53:49 +02001249#define HANDOVER_STR "Handover Options\n"
1250
Harald Welte0af9c9f2009-12-19 21:41:52 +01001251DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1252 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001253 HANDOVER_STR
1254 "Don't perform in-call handover\n"
1255 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001256{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001257 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001258 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001259
1260 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001261 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1262 "is enabled by using the -P command line option%s",
1263 VTY_NEWLINE);
1264 return CMD_WARNING;
1265 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001266 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001267
1268 return CMD_SUCCESS;
1269}
1270
Harald Welte9e002452010-05-11 21:53:49 +02001271#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1272#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1273#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1274#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001275#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001276
Harald Weltea8062f12009-12-21 16:51:50 +01001277DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1278 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001279 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001280 "How many RxLev measurements are used for averaging\n"
1281 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001282{
Harald Welte40152872010-05-16 20:52:23 +02001283 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001284 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1285 return CMD_SUCCESS;
1286}
1287
1288DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1289 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001290 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001291 "How many RxQual measurements are used for averaging\n"
1292 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001293{
Harald Welte40152872010-05-16 20:52:23 +02001294 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001295 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1296 return CMD_SUCCESS;
1297}
1298
1299DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1300 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001301 HO_WIN_RXLEV_STR "Neighbor\n"
1302 "How many RxQual measurements are used for averaging\n"
1303 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001304{
Harald Welte40152872010-05-16 20:52:23 +02001305 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001306 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1307 return CMD_SUCCESS;
1308}
1309
1310DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1311 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001312 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001313 "How often to check if we have a better cell (SACCH frames)\n"
1314 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001315{
Harald Welte40152872010-05-16 20:52:23 +02001316 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001317 gsmnet->handover.pwr_interval = atoi(argv[0]);
1318 return CMD_SUCCESS;
1319}
1320
1321DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1322 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001323 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001324 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1325 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001326{
Harald Welte40152872010-05-16 20:52:23 +02001327 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001328 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1329 return CMD_SUCCESS;
1330}
1331
1332DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1333 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001334 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001335 "How big is the maximum timing advance before HO is forced\n"
1336 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001337{
Harald Welte40152872010-05-16 20:52:23 +02001338 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001339 gsmnet->handover.max_distance = atoi(argv[0]);
1340 return CMD_SUCCESS;
1341}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001342
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001343DEFUN(cfg_net_pag_any_tch,
1344 cfg_net_pag_any_tch_cmd,
1345 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001346 "Assign a TCH when receiving a Paging Any request\n"
1347 "Any Channel\n" "Use\n" "TCH\n"
1348 "Do not use TCH for Paging Request Any\n"
1349 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001350{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001351 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001352 gsmnet->pag_any_tch = atoi(argv[0]);
1353 gsm_net_update_ctype(gsmnet);
1354 return CMD_SUCCESS;
1355}
1356
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001357#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001358 DEFUN(cfg_net_T##number, \
1359 cfg_net_T##number##_cmd, \
1360 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001361 "Configure GSM Timers\n" \
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001362 doc "Timer Value\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001363{ \
Harald Welte40152872010-05-16 20:52:23 +02001364 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001365 int value = atoi(argv[0]); \
1366 \
1367 if (value < 0 || value > 65535) { \
1368 vty_out(vty, "Timer value %s out of range.%s", \
1369 argv[0], VTY_NEWLINE); \
1370 return CMD_WARNING; \
1371 } \
1372 \
1373 gsmnet->T##number = value; \
1374 return CMD_SUCCESS; \
1375}
1376
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001377DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1378DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001379DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001380DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001381DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001382DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1383DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1384DECLARE_TIMER(3115, "Currently not used.\n")
1385DECLARE_TIMER(3117, "Currently not used.\n")
1386DECLARE_TIMER(3119, "Currently not used.\n")
1387DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1388DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001389
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001390DEFUN(cfg_net_dtx,
1391 cfg_net_dtx_cmd,
1392 "dtx-used (0|1)",
1393 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001394 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001395{
1396 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1397 gsmnet->dtx_enabled = atoi(argv[0]);
1398 return CMD_SUCCESS;
1399}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001400
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001401DEFUN(cfg_net_subscr_keep,
1402 cfg_net_subscr_keep_cmd,
1403 "subscriber-keep-in-ram (0|1)",
1404 "Keep unused subscribers in RAM.\n"
1405 "Delete unused subscribers\n" "Keep unused subscribers\n")
1406{
1407 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1408 gsmnet->keep_subscr = atoi(argv[0]);
1409 return CMD_SUCCESS;
1410}
1411
Harald Welte59b04682009-06-10 05:40:52 +08001412/* per-BTS configuration */
1413DEFUN(cfg_bts,
1414 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001415 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001416 "Select a BTS to configure\n"
1417 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001418{
Harald Welte40152872010-05-16 20:52:23 +02001419 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001420 int bts_nr = atoi(argv[0]);
1421 struct gsm_bts *bts;
1422
Harald Weltee712a5f2009-06-21 16:17:15 +02001423 if (bts_nr > gsmnet->num_bts) {
1424 vty_out(vty, "%% The next unused BTS number is %u%s",
1425 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001426 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001427 } else if (bts_nr == gsmnet->num_bts) {
1428 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001429 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1430 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001431 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001432 bts = gsm_bts_num(gsmnet, bts_nr);
1433
Daniel Willmann580085f2010-01-11 13:43:07 +01001434 if (!bts) {
1435 vty_out(vty, "%% Unable to allocate BTS %u%s",
1436 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001437 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001438 }
Harald Welte59b04682009-06-10 05:40:52 +08001439
1440 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001441 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001442 vty->node = BTS_NODE;
1443
1444 return CMD_SUCCESS;
1445}
1446
1447DEFUN(cfg_bts_type,
1448 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001449 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001450 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001451{
1452 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001453 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001454
Harald Welte59698fb2010-01-10 18:01:52 +01001455 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1456 if (rc < 0)
1457 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001458
Harald Welte59b04682009-06-10 05:40:52 +08001459 return CMD_SUCCESS;
1460}
1461
Harald Welte91afe4c2009-06-20 18:15:19 +02001462DEFUN(cfg_bts_band,
1463 cfg_bts_band_cmd,
1464 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001465 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001466{
1467 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001468 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001469
1470 if (band < 0) {
1471 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1472 band, VTY_NEWLINE);
1473 return CMD_WARNING;
1474 }
1475
1476 bts->band = band;
1477
1478 return CMD_SUCCESS;
1479}
1480
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001481DEFUN(cfg_bts_ci,
1482 cfg_bts_ci_cmd,
1483 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001484 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001485{
1486 struct gsm_bts *bts = vty->index;
1487 int ci = atoi(argv[0]);
1488
1489 if (ci < 0 || ci > 0xffff) {
1490 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1491 ci, VTY_NEWLINE);
1492 return CMD_WARNING;
1493 }
1494 bts->cell_identity = ci;
1495
1496 return CMD_SUCCESS;
1497}
1498
Harald Welte59b04682009-06-10 05:40:52 +08001499DEFUN(cfg_bts_lac,
1500 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001501 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001502 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001503{
1504 struct gsm_bts *bts = vty->index;
1505 int lac = atoi(argv[0]);
1506
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001507 if (lac < 0 || lac > 0xffff) {
1508 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001509 lac, VTY_NEWLINE);
1510 return CMD_WARNING;
1511 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001512
1513 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1514 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1515 lac, VTY_NEWLINE);
1516 return CMD_WARNING;
1517 }
1518
Harald Welte59b04682009-06-10 05:40:52 +08001519 bts->location_area_code = lac;
1520
1521 return CMD_SUCCESS;
1522}
1523
Harald Weltea54a2bb2009-12-01 18:04:30 +05301524
Harald Welte59b04682009-06-10 05:40:52 +08001525DEFUN(cfg_bts_tsc,
1526 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001527 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001528 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001529{
1530 struct gsm_bts *bts = vty->index;
1531 int tsc = atoi(argv[0]);
1532
Harald Welte59b04682009-06-10 05:40:52 +08001533 bts->tsc = tsc;
1534
1535 return CMD_SUCCESS;
1536}
1537
1538DEFUN(cfg_bts_bsic,
1539 cfg_bts_bsic_cmd,
1540 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001541 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1542 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001543{
1544 struct gsm_bts *bts = vty->index;
1545 int bsic = atoi(argv[0]);
1546
1547 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001548 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001549 bsic, VTY_NEWLINE);
1550 return CMD_WARNING;
1551 }
1552 bts->bsic = bsic;
1553
1554 return CMD_SUCCESS;
1555}
1556
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001557DEFUN(cfg_bts_timezone,
1558 cfg_bts_timezone_cmd,
1559 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001560 "Set the Timezone Offset of this BTS\n"
1561 "Timezone offset (hours)\n"
1562 "Timezone offset (00 minutes)\n"
1563 "Timezone offset (15 minutes)\n"
1564 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001565 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001566 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001567{
1568 struct gsm_bts *bts = vty->index;
1569 int tzhr = atoi(argv[0]);
1570 int tzmn = atoi(argv[1]);
1571
Harald Welte5c3abf92012-07-08 16:48:11 +02001572 bts->tz.hr = tzhr;
1573 bts->tz.mn = tzmn;
1574 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001575
1576 return CMD_SUCCESS;
1577}
1578
1579DEFUN(cfg_bts_no_timezone,
1580 cfg_bts_no_timezone_cmd,
1581 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001582 NO_STR
1583 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001584{
1585 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001586
1587 bts->tz.override = 0;
1588
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001589 return CMD_SUCCESS;
1590}
Harald Welte59b04682009-06-10 05:40:52 +08001591
1592DEFUN(cfg_bts_unit_id,
1593 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001594 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001595 "Abis/IP specific options\n"
1596 "Set the IPA BTS Unit ID\n"
1597 "Unit ID (Site)\n"
1598 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001599{
1600 struct gsm_bts *bts = vty->index;
1601 int site_id = atoi(argv[0]);
1602 int bts_id = atoi(argv[1]);
1603
Harald Weltef515aa02009-08-07 13:27:09 +02001604 if (!is_ipaccess_bts(bts)) {
1605 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1606 return CMD_WARNING;
1607 }
1608
Harald Welte59b04682009-06-10 05:40:52 +08001609 bts->ip_access.site_id = site_id;
1610 bts->ip_access.bts_id = bts_id;
1611
1612 return CMD_SUCCESS;
1613}
1614
Harald Welte08011e22011-03-04 13:41:31 +01001615DEFUN(cfg_bts_serno,
1616 cfg_bts_serno_cmd,
1617 "hsl serial-number STRING",
Harald Welte557f3992012-08-16 23:23:50 +02001618 "HSL BTS specific options\n"
1619 "Set the HSL Serial Number of this BTS\n"
1620 "Serial Number of this HSL BTS\n")
Harald Welte08011e22011-03-04 13:41:31 +01001621{
1622 struct gsm_bts *bts = vty->index;
1623
1624 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1625 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1626 return CMD_WARNING;
1627 }
1628
1629 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1630
1631 return CMD_SUCCESS;
1632}
1633
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001634DEFUN(cfg_bts_nokia_site_skip_reset,
1635 cfg_bts_nokia_site_skip_reset_cmd,
1636 "nokia_site skip-reset (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001637 "Nokia *Site related commands\n"
1638 "Skip the reset step during bootstrap process of this BTS\n"
1639 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001640{
1641 struct gsm_bts *bts = vty->index;
1642
1643 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1644 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1645 return CMD_WARNING;
1646 }
1647
1648 bts->nokia.skip_reset = atoi(argv[0]);
1649
1650 return CMD_SUCCESS;
1651}
1652
Harald Welte9e002452010-05-11 21:53:49 +02001653#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001654#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001655
Harald Welte25572872009-10-20 00:22:00 +02001656DEFUN(cfg_bts_stream_id,
1657 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001658 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001659 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001660 "Set the ip.access Stream ID of the OML link of this BTS\n"
1661 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001662{
1663 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001664 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001665
1666 if (!is_ipaccess_bts(bts)) {
1667 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1668 return CMD_WARNING;
1669 }
1670
1671 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001672 /* This is used by e1inp_bind_ops callback for each BTS model. */
1673 bts->oml_e1_link.e1_nr = linenr;
1674
1675 return CMD_SUCCESS;
1676}
1677
1678DEFUN(cfg_bts_hsl_oml,
1679 cfg_bts_hsl_oml_cmd,
1680 "oml hsl line E1_LINE",
Harald Welte557f3992012-08-16 23:23:50 +02001681 OML_STR "HSL femto Specific Options\n"
Harald Welte764c8e12012-08-17 09:57:25 +02001682 "Set OML link of this HSL femto BTS\n"
1683 "Virtual E1/T1 line number\n")
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001684{
1685 struct gsm_bts *bts = vty->index;
1686 int linenr = atoi(argv[0]);
1687
1688 if (!(bts->type == GSM_BTS_TYPE_HSL_FEMTO)) {
1689 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1690 return CMD_WARNING;
1691 }
1692
1693 bts->oml_e1_link.e1_nr = linenr;
Harald Welte25572872009-10-20 00:22:00 +02001694
1695 return CMD_SUCCESS;
1696}
1697
Harald Weltefa2015f2012-08-17 09:52:03 +02001698#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001699
Harald Welte62868882009-08-08 16:12:58 +02001700DEFUN(cfg_bts_oml_e1,
1701 cfg_bts_oml_e1_cmd,
1702 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001703 OML_E1_STR
1704 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001705 "E1/T1 line number to be used for OML\n"
1706 "E1/T1 timeslot to be used for OML\n"
1707 "E1/T1 timeslot to be used for OML\n"
1708 "E1/T1 sub-slot to be used for OML\n"
1709 "Use E1/T1 sub-slot 0\n"
1710 "Use E1/T1 sub-slot 1\n"
1711 "Use E1/T1 sub-slot 2\n"
1712 "Use E1/T1 sub-slot 3\n"
1713 "Use full E1 slot 3\n"
1714 )
Harald Welte62868882009-08-08 16:12:58 +02001715{
1716 struct gsm_bts *bts = vty->index;
1717
1718 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1719
1720 return CMD_SUCCESS;
1721}
1722
1723
1724DEFUN(cfg_bts_oml_e1_tei,
1725 cfg_bts_oml_e1_tei_cmd,
1726 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001727 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001728 "Set the TEI to be used for OML\n"
1729 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001730{
1731 struct gsm_bts *bts = vty->index;
1732
1733 bts->oml_tei = atoi(argv[0]);
1734
1735 return CMD_SUCCESS;
1736}
1737
Harald Welte3e774612009-08-10 13:48:16 +02001738DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1739 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001740 "Channnel Allocator\n" "Channel Allocator\n"
1741 "Allocate Timeslots and Transceivers in ascending order\n"
1742 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001743{
1744 struct gsm_bts *bts = vty->index;
1745
1746 if (!strcmp(argv[0], "ascending"))
1747 bts->chan_alloc_reverse = 0;
1748 else
1749 bts->chan_alloc_reverse = 1;
1750
1751 return CMD_SUCCESS;
1752}
1753
Harald Welte9e002452010-05-11 21:53:49 +02001754#define RACH_STR "Random Access Control Channel\n"
1755
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001756DEFUN(cfg_bts_rach_tx_integer,
1757 cfg_bts_rach_tx_integer_cmd,
1758 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001759 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001760 "Set the raw tx integer value in RACH Control parameters IE\n"
1761 "Set the raw tx integer value in RACH Control parameters IE\n"
1762 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001763{
1764 struct gsm_bts *bts = vty->index;
1765 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1766 return CMD_SUCCESS;
1767}
1768
1769DEFUN(cfg_bts_rach_max_trans,
1770 cfg_bts_rach_max_trans_cmd,
1771 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001772 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001773 "Set the maximum number of RACH burst transmissions\n"
1774 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001775 "Maximum number of 1 RACH burst transmissions\n"
1776 "Maximum number of 2 RACH burst transmissions\n"
1777 "Maximum number of 4 RACH burst transmissions\n"
1778 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001779{
1780 struct gsm_bts *bts = vty->index;
1781 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1782 return CMD_SUCCESS;
1783}
1784
Andreas Eversberg14e12f22012-10-13 07:27:47 +02001785#define CD_STR "Channel Description\n"
1786
1787DEFUN(cfg_bts_chan_desc_att,
1788 cfg_bts_chan_desc_att_cmd,
1789 "channel-descrption attach (0|1)",
1790 CD_STR
1791 "Set if attachment is required\n"
1792 "Attachment is NOT required\n"
1793 "Attachment is required (standard)\n")
1794{
1795 struct gsm_bts *bts = vty->index;
1796 bts->si_common.chan_desc.att = atoi(argv[0]);
1797 return CMD_SUCCESS;
1798}
1799
1800DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1801 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1802 "channel-descrption bs-pa-mfrms <2-9>",
1803 CD_STR
1804 "Set number of multiframe periods for paging groups\n"
1805 "Number of multiframe periods for paging groups\n")
1806{
1807 struct gsm_bts *bts = vty->index;
1808 int bs_pa_mfrms = atoi(argv[0]);
1809
1810 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1811 return CMD_SUCCESS;
1812}
1813
1814DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1815 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1816 "channel-descrption bs-ag-blks-res <0-7>",
1817 CD_STR
1818 "Set number of blocks reserved for access grant\n"
1819 "Number of blocks reserved for access grant\n")
1820{
1821 struct gsm_bts *bts = vty->index;
1822 int bs_ag_blks_res = atoi(argv[0]);
1823
1824 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1825 return CMD_SUCCESS;
1826}
1827
Harald Welte9e002452010-05-11 21:53:49 +02001828#define NM_STR "Network Management\n"
1829
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001830DEFUN(cfg_bts_rach_nm_b_thresh,
1831 cfg_bts_rach_nm_b_thresh_cmd,
1832 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001833 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001834 "Set the NM Busy Threshold\n"
1835 "Set the NM Busy Threshold\n"
1836 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001837{
1838 struct gsm_bts *bts = vty->index;
1839 bts->rach_b_thresh = atoi(argv[0]);
1840 return CMD_SUCCESS;
1841}
1842
1843DEFUN(cfg_bts_rach_nm_ldavg,
1844 cfg_bts_rach_nm_ldavg_cmd,
1845 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001846 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001847 "Set the NM Loadaverage Slots value\n"
1848 "Set the NM Loadaverage Slots value\n"
1849 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001850{
1851 struct gsm_bts *bts = vty->index;
1852 bts->rach_ldavg_slots = atoi(argv[0]);
1853 return CMD_SUCCESS;
1854}
1855
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001856DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1857 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001858 "Should this cell be barred from access?\n"
1859 "Should this cell be barred from access?\n"
1860 "Cell should NOT be barred\n"
1861 "Cell should be barred\n")
1862
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001863{
1864 struct gsm_bts *bts = vty->index;
1865
Harald Welte8c973ba2009-12-21 23:08:18 +01001866 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001867
1868 return CMD_SUCCESS;
1869}
1870
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001871DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1872 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001873 RACH_STR
1874 "Should this cell allow emergency calls?\n"
1875 "Should this cell allow emergency calls?\n"
1876 "Should this cell allow emergency calls?\n"
1877 "Do NOT allow emergency calls\n"
1878 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001879{
1880 struct gsm_bts *bts = vty->index;
1881
1882 if (atoi(argv[0]) == 0)
1883 bts->si_common.rach_control.t2 |= 0x4;
1884 else
1885 bts->si_common.rach_control.t2 &= ~0x4;
1886
1887 return CMD_SUCCESS;
1888}
1889
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001890DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1891 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02001892 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001893 "Maximum transmit power of the MS\n"
1894 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02001895 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001896{
1897 struct gsm_bts *bts = vty->index;
1898
1899 bts->ms_max_power = atoi(argv[0]);
1900
1901 return CMD_SUCCESS;
1902}
1903
Harald Welte557f3992012-08-16 23:23:50 +02001904#define CELL_STR "Cell Parameters\n"
1905
Harald Welteb761bf82009-12-12 18:17:25 +01001906DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1907 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02001908 CELL_STR "Cell re-selection parameters\n"
1909 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001910 "Cell Re-Selection Hysteresis in dB")
1911{
1912 struct gsm_bts *bts = vty->index;
1913
1914 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1915
1916 return CMD_SUCCESS;
1917}
1918
1919DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1920 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001921 "Minimum RxLev needed for cell access\n"
1922 "Minimum RxLev needed for cell access\n"
1923 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001924 "Minimum RxLev needed for cell access (better than -110dBm)")
1925{
1926 struct gsm_bts *bts = vty->index;
1927
1928 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1929
1930 return CMD_SUCCESS;
1931}
1932
Sylvain Munaut00d71462010-11-28 18:17:28 +01001933DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1934 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001935 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1936 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01001937{
1938 struct gsm_bts *bts = vty->index;
1939
1940 bts->si_common.cell_ro_sel_par.present = 1;
1941 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1942
1943 return CMD_SUCCESS;
1944}
1945
1946DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1947 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02001948 CELL_STR "Cell Re-Selection Parameters\n"
1949 "Cell Re-Selection Offset (CRO) in dB\n"
1950 "Cell Re-Selection Offset (CRO) in dB\n"
1951 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01001952{
1953 struct gsm_bts *bts = vty->index;
1954
1955 bts->si_common.cell_ro_sel_par.present = 1;
1956 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1957
1958 return CMD_SUCCESS;
1959}
1960
1961DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1962 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02001963 "Cell selection temporary negative offset\n"
1964 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01001965 "Cell selection temporary negative offset in dB")
1966{
1967 struct gsm_bts *bts = vty->index;
1968
1969 bts->si_common.cell_ro_sel_par.present = 1;
1970 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1971
1972 return CMD_SUCCESS;
1973}
1974
1975DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1976 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02001977 "Cell selection temporary negative offset\n"
1978 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01001979 "Sets cell selection temporary negative offset to infinity")
1980{
1981 struct gsm_bts *bts = vty->index;
1982
1983 bts->si_common.cell_ro_sel_par.present = 1;
1984 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1985
1986 return CMD_SUCCESS;
1987}
1988
1989DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1990 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02001991 "Cell selection penalty time\n"
1992 "Cell selection penalty time\n"
1993 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01001994{
1995 struct gsm_bts *bts = vty->index;
1996
1997 bts->si_common.cell_ro_sel_par.present = 1;
1998 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
1999
2000 return CMD_SUCCESS;
2001}
2002
2003DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2004 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002005 "Cell selection penalty time\n"
2006 "Cell selection penalty time\n"
2007 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002008 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2009 "and TEMPORARY_OFFSET is ignored)")
2010{
2011 struct gsm_bts *bts = vty->index;
2012
2013 bts->si_common.cell_ro_sel_par.present = 1;
2014 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2015
2016 return CMD_SUCCESS;
2017}
2018
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002019DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002020 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002021 "Periodic Location Updating Interval\n"
2022 "Periodic Location Updating Interval\n"
2023 "Periodic Location Updating Interval\n"
2024 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002025{
2026 struct gsm_bts *bts = vty->index;
2027
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002028 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002029
2030 return CMD_SUCCESS;
2031}
2032
Harald Welte9e002452010-05-11 21:53:49 +02002033#define GPRS_TEXT "GPRS Packet Network\n"
2034
Harald Welte410575a2010-03-14 23:30:30 +08002035DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002036 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002037 GPRS_TEXT
2038 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002039 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002040 "GPRS BSSGP VC Identifier")
2041{
2042 struct gsm_bts *bts = vty->index;
2043
Harald Weltecb20b7a2010-04-18 15:51:20 +02002044 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002045 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2046 return CMD_WARNING;
2047 }
2048
Harald Welte3055e332010-03-14 15:37:43 +08002049 bts->gprs.cell.bvci = atoi(argv[0]);
2050
2051 return CMD_SUCCESS;
2052}
2053
Harald Welte4a048c52010-03-22 11:48:36 +08002054DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2055 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002056 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002057 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002058 "GPRS NS Entity Identifier")
2059{
2060 struct gsm_bts *bts = vty->index;
2061
Harald Weltecb20b7a2010-04-18 15:51:20 +02002062 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002063 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2064 return CMD_WARNING;
2065 }
2066
2067 bts->gprs.nse.nsei = atoi(argv[0]);
2068
2069 return CMD_SUCCESS;
2070}
2071
Harald Welte9e002452010-05-11 21:53:49 +02002072#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2073 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002074
Harald Welte3055e332010-03-14 15:37:43 +08002075DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2076 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002077 GPRS_TEXT NSVC_TEXT
2078 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002079 "GPRS NS VC Identifier")
2080{
2081 struct gsm_bts *bts = vty->index;
2082 int idx = atoi(argv[0]);
2083
Harald Weltecb20b7a2010-04-18 15:51:20 +02002084 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002085 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2086 return CMD_WARNING;
2087 }
2088
Harald Welte3055e332010-03-14 15:37:43 +08002089 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2090
2091 return CMD_SUCCESS;
2092}
2093
Harald Welte410575a2010-03-14 23:30:30 +08002094DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2095 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002096 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002097 "GPRS NS Local UDP Port\n"
2098 "GPRS NS Local UDP Port\n"
2099 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002100 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002101{
2102 struct gsm_bts *bts = vty->index;
2103 int idx = atoi(argv[0]);
2104
Harald Weltecb20b7a2010-04-18 15:51:20 +02002105 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002106 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2107 return CMD_WARNING;
2108 }
2109
Harald Welte410575a2010-03-14 23:30:30 +08002110 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2111
2112 return CMD_SUCCESS;
2113}
2114
2115DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2116 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002117 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002118 "GPRS NS Remote UDP Port\n"
2119 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002120 "GPRS NS Remote UDP Port\n"
2121 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002122{
2123 struct gsm_bts *bts = vty->index;
2124 int idx = atoi(argv[0]);
2125
Harald Weltecb20b7a2010-04-18 15:51:20 +02002126 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002127 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2128 return CMD_WARNING;
2129 }
2130
Harald Welte410575a2010-03-14 23:30:30 +08002131 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2132
2133 return CMD_SUCCESS;
2134}
2135
2136DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2137 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002138 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002139 "GPRS NS Remote IP Address\n"
2140 "GPRS NS Remote IP Address\n"
2141 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002142{
2143 struct gsm_bts *bts = vty->index;
2144 int idx = atoi(argv[0]);
2145 struct in_addr ia;
2146
Harald Weltecb20b7a2010-04-18 15:51:20 +02002147 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002148 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2149 return CMD_WARNING;
2150 }
2151
Harald Welte410575a2010-03-14 23:30:30 +08002152 inet_aton(argv[1], &ia);
2153 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2154
2155 return CMD_SUCCESS;
2156}
2157
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002158DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002159 "paging free <-1-1024>",
2160 "Paging options\n"
2161 "Only page when having a certain amount of free slots\n"
2162 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002163{
2164 struct gsm_bts *bts = vty->index;
2165
2166 bts->paging.free_chans_need = atoi(argv[0]);
2167 return CMD_SUCCESS;
2168}
2169
Harald Weltea9251762010-05-11 23:50:21 +02002170DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2171 "gprs ns timer " NS_TIMERS " <0-255>",
2172 GPRS_TEXT "Network Service\n"
2173 "Network Service Timer\n"
2174 NS_TIMERS_HELP "Timer Value\n")
2175{
2176 struct gsm_bts *bts = vty->index;
2177 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2178 int val = atoi(argv[1]);
2179
2180 if (bts->gprs.mode == BTS_GPRS_NONE) {
2181 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2182 return CMD_WARNING;
2183 }
2184
2185 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2186 return CMD_WARNING;
2187
2188 bts->gprs.nse.timer[idx] = val;
2189
2190 return CMD_SUCCESS;
2191}
2192
2193#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 +02002194#define BSSGP_TIMERS_HELP \
2195 "Tbvc-block timeout\n" \
2196 "Tbvc-block retries\n" \
2197 "Tbvc-unblock retries\n" \
2198 "Tbvcc-reset timeout\n" \
2199 "Tbvc-reset retries\n" \
2200 "Tbvc-suspend timeout\n" \
2201 "Tbvc-suspend retries\n" \
2202 "Tbvc-resume timeout\n" \
2203 "Tbvc-resume retries\n" \
2204 "Tbvc-capa-update timeout\n" \
2205 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002206
2207DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2208 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2209 GPRS_TEXT "Cell / BSSGP\n"
2210 "Cell/BSSGP Timer\n"
2211 BSSGP_TIMERS_HELP "Timer Value\n")
2212{
2213 struct gsm_bts *bts = vty->index;
2214 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2215 int val = atoi(argv[1]);
2216
2217 if (bts->gprs.mode == BTS_GPRS_NONE) {
2218 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2219 return CMD_WARNING;
2220 }
2221
2222 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2223 return CMD_WARNING;
2224
2225 bts->gprs.cell.timer[idx] = val;
2226
2227 return CMD_SUCCESS;
2228}
2229
Harald Welte3055e332010-03-14 15:37:43 +08002230DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2231 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002232 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002233 "GPRS Routing Area Code\n"
2234 "GPRS Routing Area Code\n"
2235 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002236{
2237 struct gsm_bts *bts = vty->index;
2238
Harald Weltecb20b7a2010-04-18 15:51:20 +02002239 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002240 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2241 return CMD_WARNING;
2242 }
2243
Harald Welte3055e332010-03-14 15:37:43 +08002244 bts->gprs.rac = atoi(argv[0]);
2245
2246 return CMD_SUCCESS;
2247}
2248
Harald Weltecb20b7a2010-04-18 15:51:20 +02002249DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2250 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002251 GPRS_TEXT
2252 "GPRS Mode for this BTS\n"
2253 "GPRS Disabled on this BTS\n"
2254 "GPRS Enabled on this BTS\n"
2255 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002256{
2257 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002258 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002259
Harald Welte20e275a2010-06-14 22:44:42 +02002260 if (mode != BTS_GPRS_NONE &&
2261 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2262 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2263 VTY_NEWLINE);
2264 return CMD_WARNING;
2265 }
2266 if (mode == BTS_GPRS_EGPRS &&
2267 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2268 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2269 VTY_NEWLINE);
2270 return CMD_WARNING;
2271 }
2272
2273 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002274
2275 return CMD_SUCCESS;
2276}
2277
Harald Welted8acf142010-07-30 11:50:09 +02002278#define SI_TEXT "System Information Messages\n"
2279#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)"
2280#define SI_TYPE_HELP "System Information Type 1\n" \
2281 "System Information Type 2\n" \
2282 "System Information Type 3\n" \
2283 "System Information Type 4\n" \
2284 "System Information Type 5\n" \
2285 "System Information Type 6\n" \
2286 "System Information Type 7\n" \
2287 "System Information Type 8\n" \
2288 "System Information Type 9\n" \
2289 "System Information Type 10\n" \
2290 "System Information Type 13\n" \
2291 "System Information Type 16\n" \
2292 "System Information Type 17\n" \
2293 "System Information Type 18\n" \
2294 "System Information Type 19\n" \
2295 "System Information Type 20\n" \
2296 "System Information Type 2bis\n" \
2297 "System Information Type 2ter\n" \
2298 "System Information Type 2quater\n" \
2299 "System Information Type 5bis\n" \
2300 "System Information Type 5ter\n"
2301
2302DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2303 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2304 SI_TEXT SI_TYPE_HELP
2305 "System Information Mode\n"
2306 "Static user-specified\n"
2307 "Dynamic, BSC-computed\n")
2308{
2309 struct gsm_bts *bts = vty->index;
2310 int type;
2311
2312 type = get_string_value(osmo_sitype_strs, argv[0]);
2313 if (type < 0) {
2314 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2315 return CMD_WARNING;
2316 }
2317
2318 if (!strcmp(argv[1], "static"))
2319 bts->si_mode_static |= (1 << type);
2320 else
2321 bts->si_mode_static &= ~(1 << type);
2322
2323 return CMD_SUCCESS;
2324}
2325
2326DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2327 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2328 SI_TEXT SI_TYPE_HELP
2329 "Static System Information filling\n"
2330 "Static user-specified SI content in HEX notation\n")
2331{
2332 struct gsm_bts *bts = vty->index;
2333 int rc, type;
2334
2335 type = get_string_value(osmo_sitype_strs, argv[0]);
2336 if (type < 0) {
2337 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2338 return CMD_WARNING;
2339 }
2340
2341 if (!(bts->si_mode_static & (1 << type))) {
2342 vty_out(vty, "SI Type %s is not configured in static mode%s",
2343 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2344 return CMD_WARNING;
2345 }
2346
Harald Welte9f09ac32010-07-30 11:53:18 +02002347 /* Fill buffer with padding pattern */
2348 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2349
2350 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002351 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002352 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2353 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2354 return CMD_WARNING;
2355 }
2356
2357 /* Mark this SI as present */
2358 bts->si_valid |= (1 << type);
2359
2360 return CMD_SUCCESS;
2361}
2362
Harald Welteca46eff2011-01-11 23:44:56 +01002363DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002364 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002365 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002366 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2367 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002368{
2369 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002370 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002371
Harald Weltef989b782011-02-15 11:43:27 +01002372 switch (mode) {
2373 case NL_MODE_MANUAL_SI5SEP:
2374 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002375 /* make sure we clear the current list when switching to
2376 * manual mode */
2377 if (bts->neigh_list_manual_mode == 0)
2378 memset(&bts->si_common.data.neigh_list, 0,
2379 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002380 break;
2381 default:
2382 break;
2383 }
2384
2385 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002386
2387 return CMD_SUCCESS;
2388}
2389
2390DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002391 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002392 "Neighbor List\n" "Add to manual neighbor list\n"
2393 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2394 "ARFCN of neighbor\n")
2395{
2396 struct gsm_bts *bts = vty->index;
2397 struct bitvec *bv = &bts->si_common.neigh_list;
2398 uint16_t arfcn = atoi(argv[1]);
2399
2400 if (!bts->neigh_list_manual_mode) {
2401 vty_out(vty, "%% Cannot configure neighbor list in "
2402 "automatic mode%s", VTY_NEWLINE);
2403 return CMD_WARNING;
2404 }
2405
2406 if (!strcmp(argv[0], "add"))
2407 bitvec_set_bit_pos(bv, arfcn, 1);
2408 else
2409 bitvec_set_bit_pos(bv, arfcn, 0);
2410
2411 return CMD_SUCCESS;
2412}
2413
Harald Weltef989b782011-02-15 11:43:27 +01002414DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002415 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002416 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002417 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2418 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2419 "ARFCN of neighbor\n")
2420{
2421 struct gsm_bts *bts = vty->index;
2422 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2423 uint16_t arfcn = atoi(argv[1]);
2424
2425 if (!bts->neigh_list_manual_mode) {
2426 vty_out(vty, "%% Cannot configure neighbor list in "
2427 "automatic mode%s", VTY_NEWLINE);
2428 return CMD_WARNING;
2429 }
2430
2431 if (!strcmp(argv[0], "add"))
2432 bitvec_set_bit_pos(bv, arfcn, 1);
2433 else
2434 bitvec_set_bit_pos(bv, arfcn, 0);
2435
2436 return CMD_SUCCESS;
2437}
Harald Welted8acf142010-07-30 11:50:09 +02002438
Harald Welte9e002452010-05-11 21:53:49 +02002439#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002440
Harald Welte59b04682009-06-10 05:40:52 +08002441/* per TRX configuration */
2442DEFUN(cfg_trx,
2443 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02002444 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002445 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002446 "Select a TRX to configure")
2447{
2448 int trx_nr = atoi(argv[0]);
2449 struct gsm_bts *bts = vty->index;
2450 struct gsm_bts_trx *trx;
2451
Harald Weltee712a5f2009-06-21 16:17:15 +02002452 if (trx_nr > bts->num_trx) {
2453 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2454 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002455 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002456 } else if (trx_nr == bts->num_trx) {
2457 /* we need to allocate a new one */
2458 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002459 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002460 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002461
Harald Weltee712a5f2009-06-21 16:17:15 +02002462 if (!trx)
2463 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002464
2465 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002466 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002467 vty->node = TRX_NODE;
2468
2469 return CMD_SUCCESS;
2470}
2471
2472DEFUN(cfg_trx_arfcn,
2473 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002474 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02002475 "Set the ARFCN for this TRX\n"
2476 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002477{
2478 int arfcn = atoi(argv[0]);
2479 struct gsm_bts_trx *trx = vty->index;
2480
2481 /* FIXME: check if this ARFCN is supported by this TRX */
2482
2483 trx->arfcn = arfcn;
2484
2485 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2486 /* FIXME: use OML layer to update the ARFCN */
2487 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2488
2489 return CMD_SUCCESS;
2490}
2491
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002492DEFUN(cfg_trx_nominal_power,
2493 cfg_trx_nominal_power_cmd,
2494 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002495 "Nominal TRX RF Power in dBm\n"
2496 "Nominal TRX RF Power in dBm\n"
2497 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002498{
2499 struct gsm_bts_trx *trx = vty->index;
2500
2501 trx->nominal_power = atoi(argv[0]);
2502
2503 return CMD_SUCCESS;
2504}
2505
Harald Welte91afe4c2009-06-20 18:15:19 +02002506DEFUN(cfg_trx_max_power_red,
2507 cfg_trx_max_power_red_cmd,
2508 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002509 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02002510 "Reduction of maximum BS RF Power in dB\n")
2511{
2512 int maxpwr_r = atoi(argv[0]);
2513 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002514 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002515
2516 /* FIXME: check if our BTS type supports more than 12 */
2517 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2518 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2519 maxpwr_r, VTY_NEWLINE);
2520 return CMD_WARNING;
2521 }
2522 if (maxpwr_r & 1) {
2523 vty_out(vty, "%% Power %d dB is not an even value%s",
2524 maxpwr_r, VTY_NEWLINE);
2525 return CMD_WARNING;
2526 }
2527
2528 trx->max_power_red = maxpwr_r;
2529
2530 /* FIXME: make sure we update this using OML */
2531
2532 return CMD_SUCCESS;
2533}
2534
Harald Welte62868882009-08-08 16:12:58 +02002535DEFUN(cfg_trx_rsl_e1,
2536 cfg_trx_rsl_e1_cmd,
2537 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002538 "RSL Parameters\n"
2539 "E1/T1 interface to be used for RSL\n"
2540 "E1/T1 interface to be used for RSL\n"
2541 "E1/T1 Line Number to be used for RSL\n"
2542 "E1/T1 Timeslot to be used for RSL\n"
2543 "E1/T1 Timeslot to be used for RSL\n"
2544 "E1/T1 Sub-slot to be used for RSL\n"
2545 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2546 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2547 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2548 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2549 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002550{
2551 struct gsm_bts_trx *trx = vty->index;
2552
2553 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2554
2555 return CMD_SUCCESS;
2556}
2557
2558DEFUN(cfg_trx_rsl_e1_tei,
2559 cfg_trx_rsl_e1_tei_cmd,
2560 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002561 "RSL Parameters\n"
2562 "Set the TEI to be used for RSL\n"
2563 "Set the TEI to be used for RSL\n"
2564 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002565{
2566 struct gsm_bts_trx *trx = vty->index;
2567
2568 trx->rsl_tei = atoi(argv[0]);
2569
2570 return CMD_SUCCESS;
2571}
2572
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002573DEFUN(cfg_trx_rf_locked,
2574 cfg_trx_rf_locked_cmd,
2575 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002576 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2577 "TRX is NOT RF locked (active)\n"
2578 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002579{
2580 int locked = atoi(argv[0]);
2581 struct gsm_bts_trx *trx = vty->index;
2582
2583 gsm_trx_lock_rf(trx, locked);
2584 return CMD_SUCCESS;
2585}
Harald Welte62868882009-08-08 16:12:58 +02002586
Harald Welte59b04682009-06-10 05:40:52 +08002587/* per TS configuration */
2588DEFUN(cfg_ts,
2589 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002590 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002591 "Select a Timeslot to configure\n"
2592 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002593{
2594 int ts_nr = atoi(argv[0]);
2595 struct gsm_bts_trx *trx = vty->index;
2596 struct gsm_bts_trx_ts *ts;
2597
2598 if (ts_nr >= TRX_NR_TS) {
2599 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2600 TRX_NR_TS, VTY_NEWLINE);
2601 return CMD_WARNING;
2602 }
2603
2604 ts = &trx->ts[ts_nr];
2605
2606 vty->index = ts;
2607 vty->node = TS_NODE;
2608
2609 return CMD_SUCCESS;
2610}
2611
Harald Welte3ffe1b32009-08-07 00:25:23 +02002612DEFUN(cfg_ts_pchan,
2613 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02002614 "phys_chan_config PCHAN", /* dynamically generated! */
2615 "Physical Channel configuration (TCH/SDCCH/...)")
2616{
2617 struct gsm_bts_trx_ts *ts = vty->index;
2618 int pchanc;
2619
2620 pchanc = gsm_pchan_parse(argv[0]);
2621 if (pchanc < 0)
2622 return CMD_WARNING;
2623
2624 ts->pchan = pchanc;
2625
2626 return CMD_SUCCESS;
2627}
2628
2629/* used for backwards compatibility with old config files that still
2630 * have uppercase pchan type names */
2631DEFUN_HIDDEN(cfg_ts_pchan_compat,
2632 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02002633 "phys_chan_config PCHAN",
2634 "Physical Channel configuration (TCH/SDCCH/...)")
2635{
2636 struct gsm_bts_trx_ts *ts = vty->index;
2637 int pchanc;
2638
2639 pchanc = gsm_pchan_parse(argv[0]);
2640 if (pchanc < 0)
2641 return CMD_WARNING;
2642
2643 ts->pchan = pchanc;
2644
2645 return CMD_SUCCESS;
2646}
2647
Harald Welte2addf852012-08-17 12:42:06 +02002648
2649
Harald Welte85771a42011-05-30 12:09:13 +02002650DEFUN(cfg_ts_tsc,
2651 cfg_ts_tsc_cmd,
2652 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002653 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02002654{
2655 struct gsm_bts_trx_ts *ts = vty->index;
2656
2657 ts->tsc = atoi(argv[0]);
2658
2659 return CMD_SUCCESS;
2660}
2661
Harald Weltea42a93f2010-06-14 22:26:10 +02002662#define HOPPING_STR "Configure frequency hopping\n"
2663
2664DEFUN(cfg_ts_hopping,
2665 cfg_ts_hopping_cmd,
2666 "hopping enabled (0|1)",
2667 HOPPING_STR "Enable or disable frequency hopping\n"
2668 "Disable frequency hopping\n" "Enable frequency hopping\n")
2669{
2670 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002671 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002672
Harald Welte059c1ef2010-06-14 22:47:37 +02002673 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2674 vty_out(vty, "BTS model does not support hopping%s",
2675 VTY_NEWLINE);
2676 return CMD_WARNING;
2677 }
2678
2679 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002680
2681 return CMD_SUCCESS;
2682}
2683
Harald Welte67104d12009-09-12 13:05:33 +02002684DEFUN(cfg_ts_hsn,
2685 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002686 "hopping sequence-number <0-63>",
2687 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002688 "Which hopping sequence to use for this channel\n"
2689 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002690{
2691 struct gsm_bts_trx_ts *ts = vty->index;
2692
2693 ts->hopping.hsn = atoi(argv[0]);
2694
2695 return CMD_SUCCESS;
2696}
2697
2698DEFUN(cfg_ts_maio,
2699 cfg_ts_maio_cmd,
2700 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002701 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002702 "Which hopping MAIO to use for this channel\n"
2703 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002704{
2705 struct gsm_bts_trx_ts *ts = vty->index;
2706
2707 ts->hopping.maio = atoi(argv[0]);
2708
2709 return CMD_SUCCESS;
2710}
2711
2712DEFUN(cfg_ts_arfcn_add,
2713 cfg_ts_arfcn_add_cmd,
2714 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002715 HOPPING_STR "Configure hopping ARFCN list\n"
2716 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002717{
2718 struct gsm_bts_trx_ts *ts = vty->index;
2719 int arfcn = atoi(argv[0]);
2720
Harald Weltea42a93f2010-06-14 22:26:10 +02002721 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2722
Harald Welte67104d12009-09-12 13:05:33 +02002723 return CMD_SUCCESS;
2724}
2725
2726DEFUN(cfg_ts_arfcn_del,
2727 cfg_ts_arfcn_del_cmd,
2728 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002729 HOPPING_STR "Configure hopping ARFCN list\n"
2730 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002731{
2732 struct gsm_bts_trx_ts *ts = vty->index;
2733 int arfcn = atoi(argv[0]);
2734
Harald Weltea42a93f2010-06-14 22:26:10 +02002735 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2736
Harald Welte67104d12009-09-12 13:05:33 +02002737 return CMD_SUCCESS;
2738}
2739
Harald Welte3ffe1b32009-08-07 00:25:23 +02002740DEFUN(cfg_ts_e1_subslot,
2741 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002742 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002743 "E1/T1 channel connected to this on-air timeslot\n"
2744 "E1/T1 channel connected to this on-air timeslot\n"
2745 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002746 "E1/T1 timeslot connected to this on-air timeslot\n"
2747 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02002748 "E1/T1 sub-slot connected to this on-air timeslot\n"
2749 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2750 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2751 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2752 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2753 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002754{
2755 struct gsm_bts_trx_ts *ts = vty->index;
2756
Harald Welte62868882009-08-08 16:12:58 +02002757 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002758
2759 return CMD_SUCCESS;
2760}
Harald Welte59b04682009-06-10 05:40:52 +08002761
Harald Weltea5b1dae2010-05-16 21:47:13 +02002762void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2763{
2764 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002765 osmo_counter_get(net->stats.chreq.total),
2766 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002767 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002768 osmo_counter_get(net->stats.chan.rf_fail),
2769 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002770 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002771 osmo_counter_get(net->stats.paging.attempted),
2772 osmo_counter_get(net->stats.paging.completed),
2773 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002774 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002775 osmo_counter_get(net->stats.bts.oml_fail),
2776 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002777}
2778
Harald Welte682ee5f2010-05-16 22:02:16 +02002779DEFUN(logging_fltr_imsi,
2780 logging_fltr_imsi_cmd,
2781 "logging filter imsi IMSI",
2782 LOGGING_STR FILTER_STR
2783 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2784{
Harald Welte58bef962011-02-18 21:10:05 +01002785 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002786
Harald Welte58bef962011-02-18 21:10:05 +01002787 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002788 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002789
Harald Welte58bef962011-02-18 21:10:05 +01002790 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002791 return CMD_SUCCESS;
2792}
2793
Harald Welte58bef962011-02-18 21:10:05 +01002794
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002795DEFUN(drop_bts,
2796 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002797 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02002798 "Debug/Simulation command to drop Abis/IP BTS\n"
2799 "Debug/Simulation command to drop Abis/IP BTS\n"
2800 "Debug/Simulation command to drop Abis/IP BTS\n"
2801 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002802{
2803 struct gsm_network *gsmnet;
2804 struct gsm_bts_trx *trx;
2805 struct gsm_bts *bts;
2806 unsigned int bts_nr;
2807
2808 gsmnet = gsmnet_from_vty(vty);
2809
2810 bts_nr = atoi(argv[0]);
2811 if (bts_nr >= gsmnet->num_bts) {
2812 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2813 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2814 return CMD_WARNING;
2815 }
2816
2817 bts = gsm_bts_num(gsmnet, bts_nr);
2818 if (!bts) {
2819 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2820 return CMD_WARNING;
2821 }
2822
2823 if (!is_ipaccess_bts(bts)) {
2824 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2825 return CMD_WARNING;
2826 }
2827
2828
2829 /* close all connections */
2830 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002831 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002832 } else if (strcmp(argv[1], "rsl") == 0) {
2833 /* close all rsl connections */
2834 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002835 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002836 }
2837 } else {
2838 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2839 return CMD_WARNING;
2840 }
2841
2842 return CMD_SUCCESS;
2843}
2844
Harald Welte5213e992010-12-23 13:18:07 +01002845DEFUN(pdch_act, pdch_act_cmd,
2846 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2847 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2848 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2849 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2850 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2851{
2852 struct gsm_bts *bts;
2853 struct gsm_bts_trx *trx;
2854 struct gsm_bts_trx_ts *ts;
2855 int bts_nr = atoi(argv[0]);
2856 int trx_nr = atoi(argv[1]);
2857 int ts_nr = atoi(argv[2]);
2858 int activate;
2859
2860 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2861 if (!bts) {
2862 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2863 return CMD_WARNING;
2864 }
2865
2866 if (!is_ipaccess_bts(bts)) {
2867 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2868 VTY_NEWLINE);
2869 return CMD_WARNING;
2870 }
2871
2872 trx = gsm_bts_trx_num(bts, trx_nr);
2873 if (!trx) {
2874 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2875 return CMD_WARNING;
2876 }
2877
2878 ts = &trx->ts[ts_nr];
2879 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2880 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2881 "mode%s", ts_nr, VTY_NEWLINE);
2882 return CMD_WARNING;
2883 }
2884
2885 if (!strcmp(argv[3], "activate"))
2886 activate = 1;
2887 else
2888 activate = 0;
2889
2890 rsl_ipacc_pdch_activate(ts, activate);
2891
2892 return CMD_SUCCESS;
2893
2894}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002895
Harald Welte40152872010-05-16 20:52:23 +02002896extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002897extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002898
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002899int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002900{
Harald Welte2addf852012-08-17 12:42:06 +02002901 cfg_ts_pchan_cmd.string =
2902 vty_cmd_string_from_valstr(tall_bsc_ctx,
2903 gsm_pchant_names,
2904 "phys_chan_config (", "|", ")",
2905 VTY_DO_LOWER);
2906 cfg_ts_pchan_cmd.doc =
2907 vty_cmd_string_from_valstr(tall_bsc_ctx,
2908 gsm_pchant_descs,
2909 "Physical Channel Combination\n",
2910 "\n", "", 0);
2911
Harald Welte85a77b12012-08-17 13:02:12 +02002912 cfg_bts_type_cmd.string =
2913 vty_cmd_string_from_valstr(tall_bsc_ctx,
2914 bts_type_names,
2915 "type (", "|", ")",
2916 VTY_DO_LOWER);
2917 cfg_bts_type_cmd.doc =
2918 vty_cmd_string_from_valstr(tall_bsc_ctx,
2919 bts_type_descs,
2920 "BTS Vendor/Type\n",
2921 "\n", "", 0);
2922
2923
Harald Welte7bc28f62010-05-12 16:10:35 +00002924 install_element_ve(&show_net_cmd);
2925 install_element_ve(&show_bts_cmd);
2926 install_element_ve(&show_trx_cmd);
2927 install_element_ve(&show_ts_cmd);
2928 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08002929 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02002930 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002931
Harald Welte7bc28f62010-05-12 16:10:35 +00002932 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002933
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002934 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01002935 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01002936
Harald Weltee87eb462009-08-07 13:29:14 +02002937 install_element(CONFIG_NODE, &cfg_net_cmd);
2938 install_node(&net_node, config_write_net);
2939 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002940 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002941 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002942 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002943 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2944 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2945 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02002946 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01002947 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09002948 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01002949 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01002950 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01002951 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01002952 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01002953 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2954 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2955 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2956 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2957 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2958 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01002959 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002960 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2961 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2962 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2963 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2964 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2965 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2966 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2967 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2968 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01002969 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002970 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08002971 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01002972 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08002973 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002974
2975 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02002976 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08002977 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002978 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002979 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002980 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002981 install_element(BTS_NODE, &cfg_description_cmd);
2982 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02002983 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02002984 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002985 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2986 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002987 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002988 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01002989 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
2990 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Harald Welte08011e22011-03-04 13:41:31 +01002991 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02002992 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte25572872009-10-20 00:22:00 +02002993 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02002994 install_element(BTS_NODE, &cfg_bts_hsl_oml_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002995 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2996 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02002997 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002998 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2999 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003000 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3001 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3002 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003003 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3004 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003005 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003006 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003007 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003008 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003009 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3010 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003011 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3012 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3013 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3014 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3015 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3016 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003017 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003018 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003019 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
3020 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003021 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003022 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003023 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003024 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3025 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3026 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003027 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003028 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3029 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003030 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3031 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003032 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003033
3034 install_element(BTS_NODE, &cfg_trx_cmd);
3035 install_node(&trx_node, dummy_config_write);
3036 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003037 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003038 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003039 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003040 install_element(TRX_NODE, &cfg_description_cmd);
3041 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003042 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003043 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003044 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3045 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003046 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003047
3048 install_element(TRX_NODE, &cfg_ts_cmd);
3049 install_node(&ts_node, dummy_config_write);
3050 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003051 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003052 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003053 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003054 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003055 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003056 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003057 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3058 install_element(TS_NODE, &cfg_ts_maio_cmd);
3059 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3060 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003061 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003062
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003063 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003064 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003065
Harald Welte63b964e2010-05-31 16:40:40 +02003066 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003067 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003068 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003069
Harald Welte40152872010-05-16 20:52:23 +02003070 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003071
3072 return 0;
3073}