blob: e052bdae787a68eaf892656c0edc82f690c7f3c9 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte68628e82009-03-10 12:17:57 +00008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000022
Harald Welte4b037e42010-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 Welte68628e82009-03-10 12:17:57 +000028
29#include <arpa/inet.h>
30
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010031#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000032#include <openbsc/gsm_data.h>
Harald Welte68628e82009-03-10 12:17:57 +000033#include <openbsc/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000034#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010035#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/utils.h>
37#include <osmocom/gsm/gsm_utils.h>
Harald Welteb908cb72009-12-22 13:09:29 +010038#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010039#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000040#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010041#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020042#include <openbsc/vty.h>
Harald Welte22229d62010-05-12 20:28:04 +020043#include <openbsc/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020044#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020045#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010046#include <openbsc/paging.h>
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +010047#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010048#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010049#include <openbsc/osmo_msc_data.h>
50#include <openbsc/osmo_bsc_rf.h>
Harald Welte68628e82009-03-10 12:17:57 +000051
Harald Weltec08e8be2011-03-04 13:53:51 +010052#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020053
Harald Welteea4647d2010-05-12 17:19:53 +000054/* FIXME: this should go to some common file */
55static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020056 { 0, "tns-block" },
57 { 1, "tns-block-retries" },
58 { 2, "tns-reset" },
59 { 3, "tns-reset-retries" },
60 { 4, "tns-test" },
61 { 5, "tns-alive" },
62 { 6, "tns-alive-retries" },
63 { 0, NULL }
64};
65
Harald Welteea4647d2010-05-12 17:19:53 +000066static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020067 { 0, "blocking-timer" },
68 { 1, "blocking-retries" },
69 { 2, "unblocking-retries" },
70 { 3, "reset-timer" },
71 { 4, "reset-retries" },
72 { 5, "suspend-timer" },
73 { 6, "suspend-retries" },
74 { 7, "resume-timer" },
75 { 8, "resume-retries" },
76 { 9, "capability-update-timer" },
77 { 10, "capability-update-retries" },
78 { 0, NULL }
79};
80
Harald Welte64c07d22011-02-15 11:43:27 +010081static const struct value_string bts_neigh_mode_strs[] = {
82 { NL_MODE_AUTOMATIC, "automatic" },
83 { NL_MODE_MANUAL, "manual" },
84 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
85 { 0, NULL }
86};
87
Harald Welte5013b2a2009-08-07 13:29:14 +020088struct cmd_node net_node = {
89 GSMNET_NODE,
90 "%s(network)#",
91 1,
92};
93
Harald Welte68628e82009-03-10 12:17:57 +000094struct cmd_node bts_node = {
95 BTS_NODE,
96 "%s(bts)#",
97 1,
98};
99
100struct cmd_node trx_node = {
101 TRX_NODE,
102 "%s(trx)#",
103 1,
104};
105
106struct cmd_node ts_node = {
107 TS_NODE,
108 "%s(ts)#",
109 1,
110};
111
Harald Welte39231152010-05-27 13:39:40 +0200112extern struct gsm_network *bsc_gsmnet;
113
Harald Weltedcccb182010-05-16 20:52:23 +0200114struct gsm_network *gsmnet_from_vty(struct vty *v)
115{
Harald Welte39231152010-05-27 13:39:40 +0200116 /* In case we read from the config file, the vty->priv cannot
117 * point to a struct telnet_connection, and thus conn->priv
118 * will not point to the gsm_network structure */
119#if 0
Harald Weltedcccb182010-05-16 20:52:23 +0200120 struct telnet_connection *conn = v->priv;
121 return (struct gsm_network *) conn->priv;
Harald Welte39231152010-05-27 13:39:40 +0200122#else
123 return bsc_gsmnet;
124#endif
Harald Weltedcccb182010-05-16 20:52:23 +0200125}
126
Harald Welte68628e82009-03-10 12:17:57 +0000127static int dummy_config_write(struct vty *v)
128{
129 return CMD_SUCCESS;
130}
131
132static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
133{
Harald Welte1bc77352009-03-10 19:47:51 +0000134 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
135 nm_opstate_name(nms->operational), nms->administrative,
136 nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000137}
138
Harald Welteb908cb72009-12-22 13:09:29 +0100139static void dump_pchan_load_vty(struct vty *vty, char *prefix,
140 const struct pchan_load *pl)
141{
142 int i;
143
144 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
145 const struct load_counter *lc = &pl->pchan[i];
146 unsigned int percent;
147
148 if (lc->total == 0)
149 continue;
150
151 percent = (lc->used * 100) / lc->total;
152
153 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
154 gsm_pchan_name(i), percent, lc->used, lc->total,
155 VTY_NEWLINE);
156 }
157}
158
Harald Welte68628e82009-03-10 12:17:57 +0000159static void net_dump_vty(struct vty *vty, struct gsm_network *net)
160{
Harald Welteb908cb72009-12-22 13:09:29 +0100161 struct pchan_load pl;
162
Harald Welteef235b52009-03-10 12:34:02 +0000163 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
164 "and has %u BTS%s", net->country_code, net->network_code,
165 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000166 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000167 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000168 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000169 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200170 vty_out(vty, " Authentication policy: %s%s",
171 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100172 vty_out(vty, " Location updating reject cause: %u%s",
173 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900174 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
175 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100176 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
177 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800178 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
179 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100180 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
181 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100182 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
183 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100184 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
185 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100186 network_chan_load(&pl, net);
187 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
188 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100189
190 /* show rf */
Pablo Neira Ayuso68258772011-03-08 13:35:17 +0100191 if (net->msc_data && net->msc_data->rf_ctl)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100192 vty_out(vty, " Last RF Command: %s%s",
193 net->msc_data->rf_ctl->last_state_command,
194 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000195}
196
197DEFUN(show_net, show_net_cmd, "show network",
198 SHOW_STR "Display information about a GSM NETWORK\n")
199{
Harald Weltedcccb182010-05-16 20:52:23 +0200200 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000201 net_dump_vty(vty, net);
202
203 return CMD_SUCCESS;
204}
205
206static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
207{
Harald Welteedb37782009-05-01 14:59:07 +0000208 struct e1inp_line *line;
209
210 if (!e1l) {
211 vty_out(vty, " None%s", VTY_NEWLINE);
212 return;
213 }
214
215 line = e1l->ts->line;
216
217 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
218 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000219 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000220 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000221 e1l->tei, e1l->sapi, VTY_NEWLINE);
222}
223
224static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
225{
Harald Welteb908cb72009-12-22 13:09:29 +0100226 struct pchan_load pl;
227
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200228 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200229 "BSIC %u, TSC %u and %u TRX%s",
230 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200231 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200232 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200233 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200234 vty_out(vty, "Description: %s%s",
235 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100236 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100237 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100238 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
239 VTY_NEWLINE);
240 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100241 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100242 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
243 VTY_NEWLINE);
244 vty_out(vty, "RACH Max transmissions: %u%s",
245 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
246 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100247 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200248 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200249 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
250 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000251 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200252 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000253 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200254 bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100255 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
256 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000257 vty_out(vty, " NM State: ");
258 net_dump_nmstate(vty, &bts->nm_state);
259 vty_out(vty, " Site Mgr NM State: ");
260 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
261 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
262 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100263 if (is_ipaccess_bts(bts)) {
264 vty_out(vty, " OML Link state: %s.%s",
265 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
266 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200267 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
268 e1isl_dump_vty(vty, bts->oml_link);
269 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100270
271 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100272 memset(&pl, 0, sizeof(pl));
273 bts_chan_load(&pl, bts);
274 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
275 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000276}
277
278DEFUN(show_bts, show_bts_cmd, "show bts [number]",
279 SHOW_STR "Display information about a BTS\n"
280 "BTS number")
281{
Harald Weltedcccb182010-05-16 20:52:23 +0200282 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000283 int bts_nr;
284
285 if (argc != 0) {
286 /* use the BTS number that the user has specified */
287 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100288 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000289 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000290 VTY_NEWLINE);
291 return CMD_WARNING;
292 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200293 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000294 return CMD_SUCCESS;
295 }
296 /* print all BTS's */
297 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200298 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000299
300 return CMD_SUCCESS;
301}
302
Harald Welte42581822009-08-08 16:12:58 +0200303/* utility functions */
304static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
305 const char *ts, const char *ss)
306{
307 e1_link->e1_nr = atoi(line);
308 e1_link->e1_ts = atoi(ts);
309 if (!strcmp(ss, "full"))
310 e1_link->e1_ts_ss = 255;
311 else
312 e1_link->e1_ts_ss = atoi(ss);
313}
314
315static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
316 const char *prefix)
317{
318 if (!e1_link->e1_ts)
319 return;
320
321 if (e1_link->e1_ts_ss == 255)
322 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
323 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
324 else
325 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
326 prefix, e1_link->e1_nr, e1_link->e1_ts,
327 e1_link->e1_ts_ss, VTY_NEWLINE);
328}
329
330
Harald Welte67ce0732009-08-06 19:06:46 +0200331static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
332{
Harald Welte42581822009-08-08 16:12:58 +0200333 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
334 if (ts->pchan != GSM_PCHAN_NONE)
335 vty_out(vty, " phys_chan_config %s%s",
336 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200337 vty_out(vty, " hopping enabled %u%s",
338 ts->hopping.enabled, VTY_NEWLINE);
339 if (ts->hopping.enabled) {
340 unsigned int i;
341 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200342 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200343 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200344 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200345 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
346 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
347 continue;
348 vty_out(vty, " hopping arfcn add %u%s",
349 i, VTY_NEWLINE);
350 }
Harald Welte127af342010-12-24 12:07:07 +0100351 }
Harald Welte42581822009-08-08 16:12:58 +0200352 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100353
354 if (ts->trx->bts->model->config_write_ts)
355 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200356}
357
358static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
359{
360 int i;
361
Harald Welte5013b2a2009-08-07 13:29:14 +0200362 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200363 if (trx->description)
364 vty_out(vty, " description %s%s", trx->description,
365 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200366 vty_out(vty, " rf_locked %u%s",
367 trx->nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
368 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200369 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100370 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200371 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200372 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
373 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200374
Harald Welteface7ed2011-02-14 16:15:21 +0100375 if (trx->bts->model->config_write_trx)
376 trx->bts->model->config_write_trx(vty, trx);
377
Harald Welte67ce0732009-08-06 19:06:46 +0200378 for (i = 0; i < TRX_NR_TS; i++)
379 config_write_ts_single(vty, &trx->ts[i]);
380}
381
Harald Welte615e9562010-05-11 23:50:21 +0200382static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
383{
384 unsigned int i;
385 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
386 VTY_NEWLINE);
387 if (bts->gprs.mode == BTS_GPRS_NONE)
388 return;
389
390 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
391 VTY_NEWLINE);
392 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
393 VTY_NEWLINE);
394 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
395 vty_out(vty, " gprs cell timer %s %u%s",
396 get_value_string(gprs_bssgp_cfg_strs, i),
397 bts->gprs.cell.timer[i], VTY_NEWLINE);
398 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
399 VTY_NEWLINE);
400 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
401 vty_out(vty, " gprs ns timer %s %u%s",
402 get_value_string(gprs_ns_timer_strs, i),
403 bts->gprs.nse.timer[i], VTY_NEWLINE);
404 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
405 struct gsm_bts_gprs_nsvc *nsvc =
406 &bts->gprs.nsvc[i];
407 struct in_addr ia;
408
409 ia.s_addr = htonl(nsvc->remote_ip);
410 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
411 nsvc->nsvci, VTY_NEWLINE);
412 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
413 nsvc->local_port, VTY_NEWLINE);
414 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
415 nsvc->remote_port, VTY_NEWLINE);
416 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
417 inet_ntoa(ia), VTY_NEWLINE);
418 }
419}
420
Harald Welte67ce0732009-08-06 19:06:46 +0200421static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
422{
423 struct gsm_bts_trx *trx;
Harald Welte9fbff4a2010-07-30 11:50:09 +0200424 int i;
Harald Welte67ce0732009-08-06 19:06:46 +0200425
Harald Welte5013b2a2009-08-07 13:29:14 +0200426 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
427 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200428 if (bts->description)
429 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200430 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100431 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200432 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200433 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200434 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
435 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200436 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100437 vty_out(vty, " cell reselection hysteresis %u%s",
438 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
439 vty_out(vty, " rxlev access min %u%s",
440 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100441
442 if (bts->si_common.cell_ro_sel_par.present) {
443 struct gsm48_si_selection_params *sp;
444 sp = &bts->si_common.cell_ro_sel_par;
445
446 if (sp->cbq)
447 vty_out(vty, " cell bar qualify %u%s",
448 sp->cbq, VTY_NEWLINE);
449
450 if (sp->cell_resel_off)
451 vty_out(vty, " cell reselection offset %u%s",
452 sp->cell_resel_off*2, VTY_NEWLINE);
453
454 if (sp->temp_offs == 7)
455 vty_out(vty, " temporary offset infinite%s",
456 VTY_NEWLINE);
457 else if (sp->temp_offs)
458 vty_out(vty, " temporary offset %u%s",
459 sp->temp_offs*10, VTY_NEWLINE);
460
461 if (sp->penalty_time == 31)
462 vty_out(vty, " penalty time reserved%s",
463 VTY_NEWLINE);
464 else if (sp->penalty_time)
465 vty_out(vty, " penalty time %u%s",
466 (sp->penalty_time*20)+20, VTY_NEWLINE);
467 }
468
Harald Weltea43f7892009-12-01 18:04:30 +0530469 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200470 vty_out(vty, " periodic location update %u%s",
Dieter Spaard6613e02010-10-05 21:10:55 +0200471 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200472 vty_out(vty, " channel allocator %s%s",
473 bts->chan_alloc_reverse ? "descending" : "ascending",
474 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100475 vty_out(vty, " rach tx integer %u%s",
476 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
477 vty_out(vty, " rach max transmission %u%s",
478 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
479 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800480
481 if (bts->rach_b_thresh != -1)
482 vty_out(vty, " rach nm busy threshold %u%s",
483 bts->rach_b_thresh, VTY_NEWLINE);
484 if (bts->rach_ldavg_slots != -1)
485 vty_out(vty, " rach nm load average %u%s",
486 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100487 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200488 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800489 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
490 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200491 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
492 if (bts->si_mode_static & (1 << i)) {
493 vty_out(vty, " system-information %s mode static%s",
494 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
495 vty_out(vty, " system-information %s static %s%s",
496 get_value_string(osmo_sitype_strs, i),
497 hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
498 VTY_NEWLINE);
499 }
500 }
Harald Weltefd355a32011-03-04 13:41:31 +0100501 switch (bts->type) {
502 case GSM_BTS_TYPE_NANOBTS:
Harald Welte5013b2a2009-08-07 13:29:14 +0200503 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200504 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200505 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100506 break;
507 case GSM_BTS_TYPE_HSL_FEMTO:
508 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
509 break;
510 default:
Harald Welte42581822009-08-08 16:12:58 +0200511 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
512 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100513 break;
Harald Welte42581822009-08-08 16:12:58 +0200514 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800515
516 /* if we have a limit, write it */
517 if (bts->paging.free_chans_need >= 0)
518 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
519
Harald Welte32c09622011-01-11 23:44:56 +0100520 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100521 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
522 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100523 for (i = 0; i < 1024; i++) {
524 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
525 vty_out(vty, " neighbor-list add arfcn %u%s",
526 i, VTY_NEWLINE);
527 }
528 }
Harald Welte64c07d22011-02-15 11:43:27 +0100529 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
530 for (i = 0; i < 1024; i++) {
531 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
532 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
533 i, VTY_NEWLINE);
534 }
535 }
Harald Welte32c09622011-01-11 23:44:56 +0100536
Harald Welte615e9562010-05-11 23:50:21 +0200537 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200538
Harald Welteface7ed2011-02-14 16:15:21 +0100539 if (bts->model->config_write_bts)
540 bts->model->config_write_bts(vty, bts);
541
Harald Welte67ce0732009-08-06 19:06:46 +0200542 llist_for_each_entry(trx, &bts->trx_list, list)
543 config_write_trx_single(vty, trx);
544}
545
546static int config_write_bts(struct vty *v)
547{
Harald Weltedcccb182010-05-16 20:52:23 +0200548 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200549 struct gsm_bts *bts;
550
551 llist_for_each_entry(bts, &gsmnet->bts_list, list)
552 config_write_bts_single(v, bts);
553
554 return CMD_SUCCESS;
555}
556
Harald Welte5013b2a2009-08-07 13:29:14 +0200557static int config_write_net(struct vty *vty)
558{
Harald Weltedcccb182010-05-16 20:52:23 +0200559 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
560
Harald Welte5013b2a2009-08-07 13:29:14 +0200561 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200562 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200563 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200564 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
565 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200566 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100567 vty_out(vty, " location updating reject cause %u%s",
568 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900569 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100570 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800571 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100572 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
573 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100574 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100575 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100576 vty_out(vty, " handover window rxlev averaging %u%s",
577 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
578 vty_out(vty, " handover window rxqual averaging %u%s",
579 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
580 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
581 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
582 vty_out(vty, " handover power budget interval %u%s",
583 gsmnet->handover.pwr_interval, VTY_NEWLINE);
584 vty_out(vty, " handover power budget hysteresis %u%s",
585 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
586 vty_out(vty, " handover maximum distance %u%s",
587 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100588 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100589 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
590 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
591 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
592 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
593 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
594 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
595 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
596 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
597 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100598 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100599 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100600 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100601 vty_out(vty, " subscriber-keep-in-ram %d%s",
602 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200603
604 return CMD_SUCCESS;
605}
Harald Welte67ce0732009-08-06 19:06:46 +0200606
Harald Welte68628e82009-03-10 12:17:57 +0000607static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
608{
609 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
610 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200611 vty_out(vty, "Description: %s%s",
612 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200613 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200614 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200615 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200616 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000617 vty_out(vty, " NM State: ");
618 net_dump_nmstate(vty, &trx->nm_state);
619 vty_out(vty, " Baseband Transceiver NM State: ");
620 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200621 if (is_ipaccess_bts(trx->bts)) {
622 vty_out(vty, " ip.access stream ID: 0x%02x%s",
623 trx->rsl_tei, VTY_NEWLINE);
624 } else {
625 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
626 e1isl_dump_vty(vty, trx->rsl_link);
627 }
Harald Welte68628e82009-03-10 12:17:57 +0000628}
629
630DEFUN(show_trx,
631 show_trx_cmd,
632 "show trx [bts_nr] [trx_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200633 SHOW_STR "Display information about a TRX\n"
634 "BTS Number\n"
635 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000636{
Harald Weltedcccb182010-05-16 20:52:23 +0200637 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000638 struct gsm_bts *bts = NULL;
639 struct gsm_bts_trx *trx;
640 int bts_nr, trx_nr;
641
642 if (argc >= 1) {
643 /* use the BTS number that the user has specified */
644 bts_nr = atoi(argv[0]);
645 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000646 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000647 VTY_NEWLINE);
648 return CMD_WARNING;
649 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200650 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000651 }
652 if (argc >= 2) {
653 trx_nr = atoi(argv[1]);
654 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000655 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000656 VTY_NEWLINE);
657 return CMD_WARNING;
658 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200659 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000660 trx_dump_vty(vty, trx);
661 return CMD_SUCCESS;
662 }
663 if (bts) {
664 /* print all TRX in this BTS */
665 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200666 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000667 trx_dump_vty(vty, trx);
668 }
669 return CMD_SUCCESS;
670 }
671
672 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200673 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000674 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200675 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000676 trx_dump_vty(vty, trx);
677 }
678 }
679
680 return CMD_SUCCESS;
681}
682
Harald Welte67ce0732009-08-06 19:06:46 +0200683
Harald Welte68628e82009-03-10 12:17:57 +0000684static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
685{
Harald Weltecd103a92010-12-24 12:14:52 +0100686 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s",
Harald Welte026b4ca2010-12-24 12:12:10 +0100687 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Weltecd103a92010-12-24 12:14:52 +0100688 gsm_pchan_name(ts->pchan));
689 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100690 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100691 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
692 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000693 vty_out(vty, " NM State: ");
694 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530695 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000696 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
697 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
698 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000699}
700
701DEFUN(show_ts,
702 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000703 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200704 SHOW_STR "Display information about a TS\n"
705 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000706{
Harald Weltedcccb182010-05-16 20:52:23 +0200707 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100708 struct gsm_bts *bts = NULL;
709 struct gsm_bts_trx *trx = NULL;
710 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000711 int bts_nr, trx_nr, ts_nr;
712
713 if (argc >= 1) {
714 /* use the BTS number that the user has specified */
715 bts_nr = atoi(argv[0]);
716 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000717 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000718 VTY_NEWLINE);
719 return CMD_WARNING;
720 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200721 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000722 }
723 if (argc >= 2) {
724 trx_nr = atoi(argv[1]);
725 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000726 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000727 VTY_NEWLINE);
728 return CMD_WARNING;
729 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200730 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000731 }
732 if (argc >= 3) {
733 ts_nr = atoi(argv[2]);
734 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000735 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000736 VTY_NEWLINE);
737 return CMD_WARNING;
738 }
Harald Welte274d0152010-12-24 12:05:03 +0100739 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000740 ts = &trx->ts[ts_nr];
741 ts_dump_vty(vty, ts);
742 return CMD_SUCCESS;
743 }
Harald Welte274d0152010-12-24 12:05:03 +0100744
745 if (bts && trx) {
746 /* Iterate over all TS in this TRX */
747 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
748 ts = &trx->ts[ts_nr];
749 ts_dump_vty(vty, ts);
750 }
751 } else if (bts) {
752 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000753 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200754 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000755 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
756 ts = &trx->ts[ts_nr];
757 ts_dump_vty(vty, ts);
758 }
759 }
Harald Welte274d0152010-12-24 12:05:03 +0100760 } else {
761 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
762 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
763 bts = gsm_bts_num(net, bts_nr);
764 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
765 trx = gsm_bts_trx_num(bts, trx_nr);
766 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
767 ts = &trx->ts[ts_nr];
768 ts_dump_vty(vty, ts);
769 }
770 }
771 }
Harald Welte68628e82009-03-10 12:17:57 +0000772 }
773
774 return CMD_SUCCESS;
775}
776
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100777static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000778{
Harald Weltefcd24452009-06-20 18:15:19 +0200779 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000780 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000781 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000782 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000783 if (subscr->extension)
784 vty_out(vty, " Extension: %s%s", subscr->extension,
785 VTY_NEWLINE);
786 if (subscr->imsi)
787 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200788 if (subscr->tmsi != GSM_RESERVED_TMSI)
789 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200790 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100791
Harald Welte (local)15920de2009-08-14 20:27:16 +0200792 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000793}
794
Harald Welte8387a492009-12-22 21:43:14 +0100795static void meas_rep_dump_uni_vty(struct vty *vty,
796 struct gsm_meas_rep_unidir *mru,
797 const char *prefix,
798 const char *dir)
799{
800 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
801 prefix, dir, rxlev2dbm(mru->full.rx_lev),
802 dir, rxlev2dbm(mru->sub.rx_lev));
803 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
804 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
805 VTY_NEWLINE);
806}
807
808static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
809 const char *prefix)
810{
811 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
812 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
813 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
814 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
815 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
816 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
817 VTY_NEWLINE);
818 if (mr->flags & MEAS_REP_F_MS_TO)
819 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
820 mr->ms_timing_offset, VTY_NEWLINE);
821 if (mr->flags & MEAS_REP_F_MS_L1)
822 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
823 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
824 if (mr->flags & MEAS_REP_F_DL_VALID)
825 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
826 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
827}
828
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800829static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000830{
Harald Welte8387a492009-12-22 21:43:14 +0100831 int idx;
832
Harald Welte85bded82010-12-24 12:22:34 +0100833 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
834 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
835 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800836 vty_out(vty, " Connection: %u, State: %s%s",
837 lchan->conn ? 1: 0,
Harald Welte1887f9d2009-12-29 10:52:38 +0100838 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100839 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
840 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
841 - lchan->bs_power*2,
842 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
843 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800844 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000845 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800846 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000847 } else
848 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530849 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
850 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200851 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530852 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
853 inet_ntoa(ia), lchan->abis_ip.bound_port,
854 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
855 VTY_NEWLINE);
856 }
Harald Welte8387a492009-12-22 21:43:14 +0100857
858 /* we want to report the last measurement report */
859 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
860 lchan->meas_rep_idx, 1);
861 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000862}
863
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800864static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
865{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800866 struct gsm_meas_rep *mr;
867 int idx;
868
869 /* we want to report the last measurement report */
870 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
871 lchan->meas_rep_idx, 1);
872 mr = &lchan->meas_rep[idx];
873
Harald Welte85bded82010-12-24 12:22:34 +0100874 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
875 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
876 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +0100877 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800878 rxlev2dbm(mr->dl.full.rx_lev),
879 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800880 VTY_NEWLINE);
881}
882
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800883static int lchan_summary(struct vty *vty, int argc, const char **argv,
884 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +0000885{
Harald Weltedcccb182010-05-16 20:52:23 +0200886 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000887 struct gsm_bts *bts;
888 struct gsm_bts_trx *trx;
889 struct gsm_bts_trx_ts *ts;
890 struct gsm_lchan *lchan;
891 int bts_nr, trx_nr, ts_nr, lchan_nr;
892
893 if (argc >= 1) {
894 /* use the BTS number that the user has specified */
895 bts_nr = atoi(argv[0]);
896 if (bts_nr >= net->num_bts) {
897 vty_out(vty, "%% can't find BTS %s%s", argv[0],
898 VTY_NEWLINE);
899 return CMD_WARNING;
900 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200901 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000902 }
903 if (argc >= 2) {
904 trx_nr = atoi(argv[1]);
905 if (trx_nr >= bts->num_trx) {
906 vty_out(vty, "%% can't find TRX %s%s", argv[1],
907 VTY_NEWLINE);
908 return CMD_WARNING;
909 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200910 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000911 }
912 if (argc >= 3) {
913 ts_nr = atoi(argv[2]);
914 if (ts_nr >= TRX_NR_TS) {
915 vty_out(vty, "%% can't find TS %s%s", argv[2],
916 VTY_NEWLINE);
917 return CMD_WARNING;
918 }
919 ts = &trx->ts[ts_nr];
920 }
921 if (argc >= 4) {
922 lchan_nr = atoi(argv[3]);
923 if (lchan_nr >= TS_MAX_LCHAN) {
924 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
925 VTY_NEWLINE);
926 return CMD_WARNING;
927 }
928 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800929 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000930 return CMD_SUCCESS;
931 }
932 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200933 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000934 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200935 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000936 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
937 ts = &trx->ts[ts_nr];
938 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
939 lchan_nr++) {
940 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000941 if (lchan->type == GSM_LCHAN_NONE)
942 continue;
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800943 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000944 }
945 }
946 }
947 }
948
949 return CMD_SUCCESS;
950}
951
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800952
953DEFUN(show_lchan,
954 show_lchan_cmd,
955 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
956 SHOW_STR "Display information about a logical channel\n"
957 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
958 "Logical Channel Number\n")
959
960{
961 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
962}
963
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800964DEFUN(show_lchan_summary,
965 show_lchan_summary_cmd,
966 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
967 SHOW_STR "Display information about a logical channel\n"
968 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
969 "Logical Channel Number\n")
970{
971 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
972}
973
Harald Welte1bc77352009-03-10 19:47:51 +0000974static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
975{
976 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
977}
978
979DEFUN(show_e1drv,
980 show_e1drv_cmd,
981 "show e1_driver",
982 SHOW_STR "Display information about available E1 drivers\n")
983{
984 struct e1inp_driver *drv;
985
986 llist_for_each_entry(drv, &e1inp_driver_list, list)
987 e1drv_dump_vty(vty, drv);
988
989 return CMD_SUCCESS;
990}
991
Harald Welte68628e82009-03-10 12:17:57 +0000992static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
993{
994 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
995 line->num, line->name ? line->name : "",
996 line->driver->name, VTY_NEWLINE);
997}
998
999DEFUN(show_e1line,
1000 show_e1line_cmd,
1001 "show e1_line [line_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001002 SHOW_STR "Display information about a E1 line\n"
1003 "E1 Line Number\n")
Harald Welte68628e82009-03-10 12:17:57 +00001004{
Harald Welte1bc77352009-03-10 19:47:51 +00001005 struct e1inp_line *line;
1006
1007 if (argc >= 1) {
1008 int num = atoi(argv[0]);
1009 llist_for_each_entry(line, &e1inp_line_list, list) {
1010 if (line->num == num) {
1011 e1line_dump_vty(vty, line);
1012 return CMD_SUCCESS;
1013 }
1014 }
1015 return CMD_WARNING;
1016 }
1017
1018 llist_for_each_entry(line, &e1inp_line_list, list)
1019 e1line_dump_vty(vty, line);
1020
1021 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +00001022}
1023
1024static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
1025{
Harald Welte42581822009-08-08 16:12:58 +02001026 if (ts->type == E1INP_TS_TYPE_NONE)
1027 return;
Harald Welte1bc77352009-03-10 19:47:51 +00001028 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
1029 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
1030 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +00001031}
1032
1033DEFUN(show_e1ts,
1034 show_e1ts_cmd,
1035 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001036 SHOW_STR "Display information about a E1 timeslot\n"
1037 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +00001038{
Harald Welte986c3d72009-11-17 06:12:16 +01001039 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +00001040 struct e1inp_ts *ts;
1041 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +00001042
Harald Welte1bc77352009-03-10 19:47:51 +00001043 if (argc == 0) {
1044 llist_for_each_entry(line, &e1inp_line_list, list) {
1045 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
1046 ts = &line->ts[ts_nr];
1047 e1ts_dump_vty(vty, ts);
1048 }
1049 }
1050 return CMD_SUCCESS;
1051 }
1052 if (argc >= 1) {
1053 int num = atoi(argv[0]);
1054 llist_for_each_entry(line, &e1inp_line_list, list) {
1055 if (line->num == num)
1056 break;
1057 }
1058 if (!line || line->num != num) {
1059 vty_out(vty, "E1 line %s is invalid%s",
1060 argv[0], VTY_NEWLINE);
1061 return CMD_WARNING;
1062 }
1063 }
1064 if (argc >= 2) {
1065 ts_nr = atoi(argv[1]);
1066 if (ts_nr > NUM_E1_TS) {
1067 vty_out(vty, "E1 timeslot %s is invalid%s",
1068 argv[1], VTY_NEWLINE);
1069 return CMD_WARNING;
1070 }
1071 ts = &line->ts[ts_nr];
1072 e1ts_dump_vty(vty, ts);
1073 return CMD_SUCCESS;
1074 } else {
1075 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
1076 ts = &line->ts[ts_nr];
1077 e1ts_dump_vty(vty, ts);
1078 }
1079 return CMD_SUCCESS;
1080 }
1081 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +00001082}
1083
Harald Weltebe4b7302009-05-23 16:59:33 +00001084static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001085{
1086 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1087 subscr_dump_vty(vty, pag->subscr);
1088}
1089
Harald Weltebe4b7302009-05-23 16:59:33 +00001090static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001091{
1092 struct gsm_paging_request *pag;
1093
1094 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1095 paging_dump_vty(vty, pag);
1096}
1097
1098DEFUN(show_paging,
1099 show_paging_cmd,
1100 "show paging [bts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001101 SHOW_STR "Display information about paging reuqests of a BTS\n"
1102 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001103{
Harald Weltedcccb182010-05-16 20:52:23 +02001104 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001105 struct gsm_bts *bts;
1106 int bts_nr;
1107
1108 if (argc >= 1) {
1109 /* use the BTS number that the user has specified */
1110 bts_nr = atoi(argv[0]);
1111 if (bts_nr >= net->num_bts) {
1112 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1113 VTY_NEWLINE);
1114 return CMD_WARNING;
1115 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001116 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001117 bts_paging_dump_vty(vty, bts);
1118
1119 return CMD_SUCCESS;
1120 }
1121 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001122 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001123 bts_paging_dump_vty(vty, bts);
1124 }
1125
1126 return CMD_SUCCESS;
1127}
1128
Harald Welte8f0ed552010-05-11 21:53:49 +02001129#define NETWORK_STR "Configure the GSM network\n"
1130
Harald Welte5013b2a2009-08-07 13:29:14 +02001131DEFUN(cfg_net,
1132 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001133 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001134{
Harald Weltedcccb182010-05-16 20:52:23 +02001135 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001136 vty->node = GSMNET_NODE;
1137
1138 return CMD_SUCCESS;
1139}
1140
1141
1142DEFUN(cfg_net_ncc,
1143 cfg_net_ncc_cmd,
1144 "network country code <1-999>",
1145 "Set the GSM network country code")
1146{
Harald Weltedcccb182010-05-16 20:52:23 +02001147 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1148
Harald Welte5013b2a2009-08-07 13:29:14 +02001149 gsmnet->country_code = atoi(argv[0]);
1150
1151 return CMD_SUCCESS;
1152}
1153
1154DEFUN(cfg_net_mnc,
1155 cfg_net_mnc_cmd,
1156 "mobile network code <1-999>",
1157 "Set the GSM mobile network code")
1158{
Harald Weltedcccb182010-05-16 20:52:23 +02001159 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1160
Harald Welte5013b2a2009-08-07 13:29:14 +02001161 gsmnet->network_code = atoi(argv[0]);
1162
1163 return CMD_SUCCESS;
1164}
1165
1166DEFUN(cfg_net_name_short,
1167 cfg_net_name_short_cmd,
1168 "short name NAME",
1169 "Set the short GSM network name")
1170{
Harald Weltedcccb182010-05-16 20:52:23 +02001171 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1172
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001173 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001174 return CMD_SUCCESS;
1175}
1176
1177DEFUN(cfg_net_name_long,
1178 cfg_net_name_long_cmd,
1179 "long name NAME",
1180 "Set the long GSM network name")
1181{
Harald Weltedcccb182010-05-16 20:52:23 +02001182 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1183
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001184 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001185 return CMD_SUCCESS;
1186}
Harald Welte40f82892009-05-23 17:31:39 +00001187
Harald Welte (local)69de3972009-08-12 14:42:23 +02001188DEFUN(cfg_net_auth_policy,
1189 cfg_net_auth_policy_cmd,
1190 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001191 "Authentication (not cryptographic)\n"
1192 "Set the GSM network authentication policy\n"
1193 "Require the MS to be activated in HLR\n"
1194 "Accept all MS, whether in HLR or not\n"
1195 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001196{
1197 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001198 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001199
1200 gsmnet->auth_policy = policy;
1201
1202 return CMD_SUCCESS;
1203}
1204
Harald Welte1085c092009-11-18 20:33:19 +01001205DEFUN(cfg_net_reject_cause,
1206 cfg_net_reject_cause_cmd,
1207 "location updating reject cause <2-111>",
1208 "Set the reject cause of location updating reject\n")
1209{
Harald Weltedcccb182010-05-16 20:52:23 +02001210 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1211
Harald Welte1085c092009-11-18 20:33:19 +01001212 gsmnet->reject_cause = atoi(argv[0]);
1213
1214 return CMD_SUCCESS;
1215}
1216
Harald Welte4381cfe2009-08-30 15:47:06 +09001217DEFUN(cfg_net_encryption,
1218 cfg_net_encryption_cmd,
1219 "encryption a5 (0|1|2)",
Harald Welte28326062010-05-14 20:05:17 +02001220 "Encryption options\n"
1221 "A5 encryption\n" "A5/0: No encryption\n"
1222 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001223{
Harald Weltedcccb182010-05-16 20:52:23 +02001224 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1225
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001226 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001227
1228 return CMD_SUCCESS;
1229}
1230
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001231DEFUN(cfg_net_neci,
1232 cfg_net_neci_cmd,
1233 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001234 "New Establish Cause Indication\n"
1235 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001236{
Harald Weltedcccb182010-05-16 20:52:23 +02001237 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1238
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001239 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001240 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001241 return CMD_SUCCESS;
1242}
1243
Harald Welteeab84a12009-12-13 10:53:12 +01001244DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1245 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001246 "Radio Resource Location Protocol\n"
1247 "Set the Radio Resource Location Protocol Mode\n"
1248 "Don't send RRLP request\n"
1249 "Request MS-based location\n"
1250 "Request any location, prefer MS-based\n"
1251 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001252{
Harald Weltedcccb182010-05-16 20:52:23 +02001253 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1254
Harald Welteeab84a12009-12-13 10:53:12 +01001255 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1256
1257 return CMD_SUCCESS;
1258}
1259
Harald Welte648b6ce2009-12-14 09:00:24 +01001260DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1261 "mm info (0|1)",
1262 "Whether to send MM INFO after LOC UPD ACCEPT")
1263{
Harald Weltedcccb182010-05-16 20:52:23 +02001264 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1265
Harald Welte648b6ce2009-12-14 09:00:24 +01001266 gsmnet->send_mm_info = atoi(argv[0]);
1267
1268 return CMD_SUCCESS;
1269}
1270
Harald Welte8f0ed552010-05-11 21:53:49 +02001271#define HANDOVER_STR "Handover Options\n"
1272
Harald Weltebc814502009-12-19 21:41:52 +01001273DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1274 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001275 HANDOVER_STR
1276 "Don't perform in-call handover\n"
1277 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001278{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001279 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001280 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001281
1282 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001283 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1284 "is enabled by using the -P command line option%s",
1285 VTY_NEWLINE);
1286 return CMD_WARNING;
1287 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001288 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001289
1290 return CMD_SUCCESS;
1291}
1292
Harald Welte8f0ed552010-05-11 21:53:49 +02001293#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1294#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1295#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1296#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1297
Harald Welteb720bd32009-12-21 16:51:50 +01001298DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1299 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001300 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001301 "How many RxLev measurements are used for averaging")
1302{
Harald Weltedcccb182010-05-16 20:52:23 +02001303 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001304 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1305 return CMD_SUCCESS;
1306}
1307
1308DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1309 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001310 HO_WIN_RXQUAL_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001311 "How many RxQual measurements are used for averaging")
1312{
Harald Weltedcccb182010-05-16 20:52:23 +02001313 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001314 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1315 return CMD_SUCCESS;
1316}
1317
1318DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1319 "handover window rxlev neighbor averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001320 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001321 "How many RxQual measurements are used for averaging")
1322{
Harald Weltedcccb182010-05-16 20:52:23 +02001323 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001324 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1325 return CMD_SUCCESS;
1326}
1327
1328DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1329 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001330 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001331 "How often to check if we have a better cell (SACCH frames)")
1332{
Harald Weltedcccb182010-05-16 20:52:23 +02001333 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001334 gsmnet->handover.pwr_interval = atoi(argv[0]);
1335 return CMD_SUCCESS;
1336}
1337
1338DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1339 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001340 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001341 "How many dB does a neighbor to be stronger to become a HO candidate")
1342{
Harald Weltedcccb182010-05-16 20:52:23 +02001343 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001344 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1345 return CMD_SUCCESS;
1346}
1347
1348DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1349 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001350 HANDOVER_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001351 "How big is the maximum timing advance before HO is forced")
1352{
Harald Weltedcccb182010-05-16 20:52:23 +02001353 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001354 gsmnet->handover.max_distance = atoi(argv[0]);
1355 return CMD_SUCCESS;
1356}
Harald Weltebc814502009-12-19 21:41:52 +01001357
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001358DEFUN(cfg_net_pag_any_tch,
1359 cfg_net_pag_any_tch_cmd,
1360 "paging any use tch (0|1)",
1361 "Assign a TCH when receiving a Paging Any request")
1362{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001363 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001364 gsmnet->pag_any_tch = atoi(argv[0]);
1365 gsm_net_update_ctype(gsmnet);
1366 return CMD_SUCCESS;
1367}
1368
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001369#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001370 DEFUN(cfg_net_T##number, \
1371 cfg_net_T##number##_cmd, \
1372 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001373 "Configure GSM Timers\n" \
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001374 doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001375{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001376 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001377 int value = atoi(argv[0]); \
1378 \
1379 if (value < 0 || value > 65535) { \
1380 vty_out(vty, "Timer value %s out of range.%s", \
1381 argv[0], VTY_NEWLINE); \
1382 return CMD_WARNING; \
1383 } \
1384 \
1385 gsmnet->T##number = value; \
1386 return CMD_SUCCESS; \
1387}
1388
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001389DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1390DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1391DECLARE_TIMER(3105, "Currently not used.")
1392DECLARE_TIMER(3107, "Currently not used.")
1393DECLARE_TIMER(3109, "Currently not used.")
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001394DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.")
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001395DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1396DECLARE_TIMER(3115, "Currently not used.")
1397DECLARE_TIMER(3117, "Currently not used.")
1398DECLARE_TIMER(3119, "Currently not used.")
Harald Welte2862dca2010-12-23 14:39:29 +01001399DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT")
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001400DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001401
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001402DEFUN(cfg_net_dtx,
1403 cfg_net_dtx_cmd,
1404 "dtx-used (0|1)",
1405 "Enable the usage of DTX.\n"
1406 "DTX is enabled/disabled")
1407{
1408 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1409 gsmnet->dtx_enabled = atoi(argv[0]);
1410 return CMD_SUCCESS;
1411}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001412
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001413DEFUN(cfg_net_subscr_keep,
1414 cfg_net_subscr_keep_cmd,
1415 "subscriber-keep-in-ram (0|1)",
1416 "Keep unused subscribers in RAM.\n"
1417 "Delete unused subscribers\n" "Keep unused subscribers\n")
1418{
1419 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1420 gsmnet->keep_subscr = atoi(argv[0]);
1421 return CMD_SUCCESS;
1422}
1423
Harald Welte5258fc42009-03-28 19:07:53 +00001424/* per-BTS configuration */
1425DEFUN(cfg_bts,
1426 cfg_bts_cmd,
1427 "bts BTS_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001428 "Select a BTS to configure\n"
1429 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001430{
Harald Weltedcccb182010-05-16 20:52:23 +02001431 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001432 int bts_nr = atoi(argv[0]);
1433 struct gsm_bts *bts;
1434
Harald Weltee441d9c2009-06-21 16:17:15 +02001435 if (bts_nr > gsmnet->num_bts) {
1436 vty_out(vty, "%% The next unused BTS number is %u%s",
1437 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001438 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001439 } else if (bts_nr == gsmnet->num_bts) {
1440 /* allocate a new one */
1441 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1442 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001443 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001444 bts = gsm_bts_num(gsmnet, bts_nr);
1445
Daniel Willmannf15c2762010-01-11 13:43:07 +01001446 if (!bts) {
1447 vty_out(vty, "%% Unable to allocate BTS %u%s",
1448 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001449 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001450 }
Harald Welte5258fc42009-03-28 19:07:53 +00001451
1452 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001453 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001454 vty->node = BTS_NODE;
1455
1456 return CMD_SUCCESS;
1457}
1458
1459DEFUN(cfg_bts_type,
1460 cfg_bts_type_cmd,
1461 "type TYPE",
1462 "Set the BTS type\n")
1463{
1464 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001465 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001466
Harald Welte39315c42010-01-10 18:01:52 +01001467 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1468 if (rc < 0)
1469 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001470
Harald Welte5258fc42009-03-28 19:07:53 +00001471 return CMD_SUCCESS;
1472}
1473
Harald Weltefcd24452009-06-20 18:15:19 +02001474DEFUN(cfg_bts_band,
1475 cfg_bts_band_cmd,
1476 "band BAND",
1477 "Set the frequency band of this BTS\n")
1478{
1479 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001480 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001481
1482 if (band < 0) {
1483 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1484 band, VTY_NEWLINE);
1485 return CMD_WARNING;
1486 }
1487
1488 bts->band = band;
1489
1490 return CMD_SUCCESS;
1491}
1492
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001493DEFUN(cfg_bts_ci,
1494 cfg_bts_ci_cmd,
1495 "cell_identity <0-65535>",
1496 "Set the Cell identity of this BTS\n")
1497{
1498 struct gsm_bts *bts = vty->index;
1499 int ci = atoi(argv[0]);
1500
1501 if (ci < 0 || ci > 0xffff) {
1502 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1503 ci, VTY_NEWLINE);
1504 return CMD_WARNING;
1505 }
1506 bts->cell_identity = ci;
1507
1508 return CMD_SUCCESS;
1509}
1510
Harald Welte5258fc42009-03-28 19:07:53 +00001511DEFUN(cfg_bts_lac,
1512 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001513 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001514 "Set the Location Area Code (LAC) of this BTS\n")
1515{
1516 struct gsm_bts *bts = vty->index;
1517 int lac = atoi(argv[0]);
1518
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001519 if (lac < 0 || lac > 0xffff) {
1520 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001521 lac, VTY_NEWLINE);
1522 return CMD_WARNING;
1523 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001524
1525 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1526 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1527 lac, VTY_NEWLINE);
1528 return CMD_WARNING;
1529 }
1530
Harald Welte5258fc42009-03-28 19:07:53 +00001531 bts->location_area_code = lac;
1532
1533 return CMD_SUCCESS;
1534}
1535
Harald Weltea43f7892009-12-01 18:04:30 +05301536
Harald Welte5258fc42009-03-28 19:07:53 +00001537DEFUN(cfg_bts_tsc,
1538 cfg_bts_tsc_cmd,
1539 "training_sequence_code <0-255>",
1540 "Set the Training Sequence Code (TSC) of this BTS\n")
1541{
1542 struct gsm_bts *bts = vty->index;
1543 int tsc = atoi(argv[0]);
1544
1545 if (tsc < 0 || tsc > 0xff) {
1546 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1547 tsc, VTY_NEWLINE);
1548 return CMD_WARNING;
1549 }
1550 bts->tsc = tsc;
1551
1552 return CMD_SUCCESS;
1553}
1554
Harald Welte78f2f502009-05-23 16:56:52 +00001555DEFUN(cfg_bts_bsic,
1556 cfg_bts_bsic_cmd,
1557 "base_station_id_code <0-63>",
1558 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1559{
1560 struct gsm_bts *bts = vty->index;
1561 int bsic = atoi(argv[0]);
1562
1563 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001564 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001565 bsic, VTY_NEWLINE);
1566 return CMD_WARNING;
1567 }
1568 bts->bsic = bsic;
1569
1570 return CMD_SUCCESS;
1571}
1572
1573
Harald Welte4cc34222009-05-01 15:12:31 +00001574DEFUN(cfg_bts_unit_id,
1575 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001576 "ip.access unit_id <0-65534> <0-255>",
1577 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001578{
1579 struct gsm_bts *bts = vty->index;
1580 int site_id = atoi(argv[0]);
1581 int bts_id = atoi(argv[1]);
1582
Harald Welte07dc73d2009-08-07 13:27:09 +02001583 if (!is_ipaccess_bts(bts)) {
1584 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1585 return CMD_WARNING;
1586 }
1587
Harald Welte4cc34222009-05-01 15:12:31 +00001588 bts->ip_access.site_id = site_id;
1589 bts->ip_access.bts_id = bts_id;
1590
1591 return CMD_SUCCESS;
1592}
1593
Harald Weltefd355a32011-03-04 13:41:31 +01001594DEFUN(cfg_bts_serno,
1595 cfg_bts_serno_cmd,
1596 "hsl serial-number STRING",
1597 "Set the HSL Serial Number of this BTS\n")
1598{
1599 struct gsm_bts *bts = vty->index;
1600
1601 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1602 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1603 return CMD_WARNING;
1604 }
1605
1606 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1607
1608 return CMD_SUCCESS;
1609}
1610
Harald Welte8f0ed552010-05-11 21:53:49 +02001611#define OML_STR "Organization & Maintenance Link\n"
1612#define IPA_STR "ip.access Specific Options\n"
1613
Harald Welte8175e952009-10-20 00:22:00 +02001614DEFUN(cfg_bts_stream_id,
1615 cfg_bts_stream_id_cmd,
1616 "oml ip.access stream_id <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001617 OML_STR IPA_STR
Harald Welte8175e952009-10-20 00:22:00 +02001618 "Set the ip.access Stream ID of the OML link of this BTS\n")
1619{
1620 struct gsm_bts *bts = vty->index;
1621 int stream_id = atoi(argv[0]);
1622
1623 if (!is_ipaccess_bts(bts)) {
1624 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1625 return CMD_WARNING;
1626 }
1627
1628 bts->oml_tei = stream_id;
1629
1630 return CMD_SUCCESS;
1631}
1632
Harald Welte8f0ed552010-05-11 21:53:49 +02001633#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte8175e952009-10-20 00:22:00 +02001634
Harald Welte42581822009-08-08 16:12:58 +02001635DEFUN(cfg_bts_oml_e1,
1636 cfg_bts_oml_e1_cmd,
1637 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001638 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001639 "E1 interface to be used for OML\n")
1640{
1641 struct gsm_bts *bts = vty->index;
1642
1643 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1644
1645 return CMD_SUCCESS;
1646}
1647
1648
1649DEFUN(cfg_bts_oml_e1_tei,
1650 cfg_bts_oml_e1_tei_cmd,
1651 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001652 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001653 "Set the TEI to be used for OML")
1654{
1655 struct gsm_bts *bts = vty->index;
1656
1657 bts->oml_tei = atoi(argv[0]);
1658
1659 return CMD_SUCCESS;
1660}
1661
Harald Welte7a8fa412009-08-10 13:48:16 +02001662DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1663 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001664 "Channnel Allocator\n" "Channel Allocator\n"
1665 "Allocate Timeslots and Transceivers in ascending order\n"
1666 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001667{
1668 struct gsm_bts *bts = vty->index;
1669
1670 if (!strcmp(argv[0], "ascending"))
1671 bts->chan_alloc_reverse = 0;
1672 else
1673 bts->chan_alloc_reverse = 1;
1674
1675 return CMD_SUCCESS;
1676}
1677
Harald Welte8f0ed552010-05-11 21:53:49 +02001678#define RACH_STR "Random Access Control Channel\n"
1679
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001680DEFUN(cfg_bts_rach_tx_integer,
1681 cfg_bts_rach_tx_integer_cmd,
1682 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001683 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001684 "Set the raw tx integer value in RACH Control parameters IE")
1685{
1686 struct gsm_bts *bts = vty->index;
1687 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1688 return CMD_SUCCESS;
1689}
1690
1691DEFUN(cfg_bts_rach_max_trans,
1692 cfg_bts_rach_max_trans_cmd,
1693 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001694 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001695 "Set the maximum number of RACH burst transmissions")
1696{
1697 struct gsm_bts *bts = vty->index;
1698 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1699 return CMD_SUCCESS;
1700}
1701
Harald Welte8f0ed552010-05-11 21:53:49 +02001702#define NM_STR "Network Management\n"
1703
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001704DEFUN(cfg_bts_rach_nm_b_thresh,
1705 cfg_bts_rach_nm_b_thresh_cmd,
1706 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001707 RACH_STR NM_STR
1708 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001709{
1710 struct gsm_bts *bts = vty->index;
1711 bts->rach_b_thresh = atoi(argv[0]);
1712 return CMD_SUCCESS;
1713}
1714
1715DEFUN(cfg_bts_rach_nm_ldavg,
1716 cfg_bts_rach_nm_ldavg_cmd,
1717 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001718 RACH_STR NM_STR
1719 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001720{
1721 struct gsm_bts *bts = vty->index;
1722 bts->rach_ldavg_slots = atoi(argv[0]);
1723 return CMD_SUCCESS;
1724}
1725
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001726DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1727 "cell barred (0|1)",
1728 "Should this cell be barred from access?")
1729{
1730 struct gsm_bts *bts = vty->index;
1731
Harald Welte71355012009-12-21 23:08:18 +01001732 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001733
1734 return CMD_SUCCESS;
1735}
1736
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001737DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1738 "rach emergency call allowed (0|1)",
1739 "Should this cell allow emergency calls?")
1740{
1741 struct gsm_bts *bts = vty->index;
1742
1743 if (atoi(argv[0]) == 0)
1744 bts->si_common.rach_control.t2 |= 0x4;
1745 else
1746 bts->si_common.rach_control.t2 &= ~0x4;
1747
1748 return CMD_SUCCESS;
1749}
1750
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001751DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1752 "ms max power <0-40>",
1753 "Maximum transmit power of the MS")
1754{
1755 struct gsm_bts *bts = vty->index;
1756
1757 bts->ms_max_power = atoi(argv[0]);
1758
1759 return CMD_SUCCESS;
1760}
1761
Harald Welte73225282009-12-12 18:17:25 +01001762DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1763 "cell reselection hysteresis <0-14>",
1764 "Cell Re-Selection Hysteresis in dB")
1765{
1766 struct gsm_bts *bts = vty->index;
1767
1768 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1769
1770 return CMD_SUCCESS;
1771}
1772
1773DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1774 "rxlev access min <0-63>",
1775 "Minimum RxLev needed for cell access (better than -110dBm)")
1776{
1777 struct gsm_bts *bts = vty->index;
1778
1779 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1780
1781 return CMD_SUCCESS;
1782}
1783
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001784DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1785 "cell bar qualify (0|1)",
1786 "Cell Bar Qualify")
1787{
1788 struct gsm_bts *bts = vty->index;
1789
1790 bts->si_common.cell_ro_sel_par.present = 1;
1791 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1792
1793 return CMD_SUCCESS;
1794}
1795
1796DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1797 "cell reselection offset <0-126>",
1798 "Cell Re-Selection Offset in dB")
1799{
1800 struct gsm_bts *bts = vty->index;
1801
1802 bts->si_common.cell_ro_sel_par.present = 1;
1803 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1804
1805 return CMD_SUCCESS;
1806}
1807
1808DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1809 "temporary offset <0-60>",
1810 "Cell selection temporary negative offset in dB")
1811{
1812 struct gsm_bts *bts = vty->index;
1813
1814 bts->si_common.cell_ro_sel_par.present = 1;
1815 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1816
1817 return CMD_SUCCESS;
1818}
1819
1820DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1821 "temporary offset infinite",
1822 "Sets cell selection temporary negative offset to infinity")
1823{
1824 struct gsm_bts *bts = vty->index;
1825
1826 bts->si_common.cell_ro_sel_par.present = 1;
1827 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1828
1829 return CMD_SUCCESS;
1830}
1831
1832DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1833 "penalty time <20-620>",
1834 "Cell selection penalty time in seconds (by 20s increments)")
1835{
1836 struct gsm_bts *bts = vty->index;
1837
1838 bts->si_common.cell_ro_sel_par.present = 1;
1839 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
1840
1841 return CMD_SUCCESS;
1842}
1843
1844DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
1845 "penalty time reserved",
1846 "Set cell selection penalty time to reserved value 31\n"
1847 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
1848 "and TEMPORARY_OFFSET is ignored)")
1849{
1850 struct gsm_bts *bts = vty->index;
1851
1852 bts->si_common.cell_ro_sel_par.present = 1;
1853 bts->si_common.cell_ro_sel_par.penalty_time = 31;
1854
1855 return CMD_SUCCESS;
1856}
1857
Harald Welte (local)efc92312009-08-14 23:09:25 +02001858DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1859 "periodic location update <0-1530>",
1860 "Periodic Location Updating Interval in Minutes")
1861{
1862 struct gsm_bts *bts = vty->index;
1863
Dieter Spaard6613e02010-10-05 21:10:55 +02001864 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001865
1866 return CMD_SUCCESS;
1867}
1868
Harald Welte8f0ed552010-05-11 21:53:49 +02001869#define GPRS_TEXT "GPRS Packet Network\n"
1870
Harald Welteaf387632010-03-14 23:30:30 +08001871DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02001872 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001873 GPRS_TEXT
1874 "GPRS Cell Settings\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001875 "GPRS BSSGP VC Identifier")
1876{
1877 struct gsm_bts *bts = vty->index;
1878
Harald Welte4511d892010-04-18 15:51:20 +02001879 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001880 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1881 return CMD_WARNING;
1882 }
1883
Harald Welte97a282b2010-03-14 15:37:43 +08001884 bts->gprs.cell.bvci = atoi(argv[0]);
1885
1886 return CMD_SUCCESS;
1887}
1888
Harald Weltea5731cf2010-03-22 11:48:36 +08001889DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1890 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001891 GPRS_TEXT
Harald Weltea5731cf2010-03-22 11:48:36 +08001892 "GPRS NS Entity Identifier")
1893{
1894 struct gsm_bts *bts = vty->index;
1895
Harald Welte4511d892010-04-18 15:51:20 +02001896 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08001897 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1898 return CMD_WARNING;
1899 }
1900
1901 bts->gprs.nse.nsei = atoi(argv[0]);
1902
1903 return CMD_SUCCESS;
1904}
1905
Harald Welte8f0ed552010-05-11 21:53:49 +02001906#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1907 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08001908
Harald Welte97a282b2010-03-14 15:37:43 +08001909DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1910 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001911 GPRS_TEXT NSVC_TEXT
1912 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001913 "GPRS NS VC Identifier")
1914{
1915 struct gsm_bts *bts = vty->index;
1916 int idx = atoi(argv[0]);
1917
Harald Welte4511d892010-04-18 15:51:20 +02001918 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001919 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1920 return CMD_WARNING;
1921 }
1922
Harald Welte97a282b2010-03-14 15:37:43 +08001923 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1924
1925 return CMD_SUCCESS;
1926}
1927
Harald Welteaf387632010-03-14 23:30:30 +08001928DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1929 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001930 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001931 "GPRS NS Local UDP Port")
1932{
1933 struct gsm_bts *bts = vty->index;
1934 int idx = atoi(argv[0]);
1935
Harald Welte4511d892010-04-18 15:51:20 +02001936 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001937 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1938 return CMD_WARNING;
1939 }
1940
Harald Welteaf387632010-03-14 23:30:30 +08001941 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1942
1943 return CMD_SUCCESS;
1944}
1945
1946DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1947 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001948 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001949 "GPRS NS Remote UDP Port")
1950{
1951 struct gsm_bts *bts = vty->index;
1952 int idx = atoi(argv[0]);
1953
Harald Welte4511d892010-04-18 15:51:20 +02001954 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001955 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1956 return CMD_WARNING;
1957 }
1958
Harald Welteaf387632010-03-14 23:30:30 +08001959 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1960
1961 return CMD_SUCCESS;
1962}
1963
1964DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1965 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02001966 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001967 "GPRS NS Remote IP Address")
1968{
1969 struct gsm_bts *bts = vty->index;
1970 int idx = atoi(argv[0]);
1971 struct in_addr ia;
1972
Harald Welte4511d892010-04-18 15:51:20 +02001973 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001974 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1975 return CMD_WARNING;
1976 }
1977
Harald Welteaf387632010-03-14 23:30:30 +08001978 inet_aton(argv[1], &ia);
1979 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1980
1981 return CMD_SUCCESS;
1982}
1983
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08001984DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
1985 "paging free FREE_NR",
1986 "Only page when having a certain amount of free slots. -1 to disable")
1987{
1988 struct gsm_bts *bts = vty->index;
1989
1990 bts->paging.free_chans_need = atoi(argv[0]);
1991 return CMD_SUCCESS;
1992}
1993
Harald Welte615e9562010-05-11 23:50:21 +02001994DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1995 "gprs ns timer " NS_TIMERS " <0-255>",
1996 GPRS_TEXT "Network Service\n"
1997 "Network Service Timer\n"
1998 NS_TIMERS_HELP "Timer Value\n")
1999{
2000 struct gsm_bts *bts = vty->index;
2001 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2002 int val = atoi(argv[1]);
2003
2004 if (bts->gprs.mode == BTS_GPRS_NONE) {
2005 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2006 return CMD_WARNING;
2007 }
2008
2009 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2010 return CMD_WARNING;
2011
2012 bts->gprs.nse.timer[idx] = val;
2013
2014 return CMD_SUCCESS;
2015}
2016
2017#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02002018#define BSSGP_TIMERS_HELP \
2019 "Tbvc-block timeout\n" \
2020 "Tbvc-block retries\n" \
2021 "Tbvc-unblock retries\n" \
2022 "Tbvcc-reset timeout\n" \
2023 "Tbvc-reset retries\n" \
2024 "Tbvc-suspend timeout\n" \
2025 "Tbvc-suspend retries\n" \
2026 "Tbvc-resume timeout\n" \
2027 "Tbvc-resume retries\n" \
2028 "Tbvc-capa-update timeout\n" \
2029 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002030
2031DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2032 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2033 GPRS_TEXT "Cell / BSSGP\n"
2034 "Cell/BSSGP Timer\n"
2035 BSSGP_TIMERS_HELP "Timer Value\n")
2036{
2037 struct gsm_bts *bts = vty->index;
2038 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2039 int val = atoi(argv[1]);
2040
2041 if (bts->gprs.mode == BTS_GPRS_NONE) {
2042 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2043 return CMD_WARNING;
2044 }
2045
2046 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2047 return CMD_WARNING;
2048
2049 bts->gprs.cell.timer[idx] = val;
2050
2051 return CMD_SUCCESS;
2052}
2053
Harald Welte97a282b2010-03-14 15:37:43 +08002054DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2055 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002056 GPRS_TEXT
Harald Welte97a282b2010-03-14 15:37:43 +08002057 "GPRS Routing Area Code")
2058{
2059 struct gsm_bts *bts = vty->index;
2060
Harald Welte4511d892010-04-18 15:51:20 +02002061 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002062 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2063 return CMD_WARNING;
2064 }
2065
Harald Welte97a282b2010-03-14 15:37:43 +08002066 bts->gprs.rac = atoi(argv[0]);
2067
2068 return CMD_SUCCESS;
2069}
2070
Harald Welte4511d892010-04-18 15:51:20 +02002071DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2072 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002073 GPRS_TEXT
2074 "GPRS Mode for this BTS\n"
2075 "GPRS Disabled on this BTS\n"
2076 "GPRS Enabled on this BTS\n"
2077 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002078{
2079 struct gsm_bts *bts = vty->index;
Harald Weltef3d8e922010-06-14 22:44:42 +02002080 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08002081
Harald Weltef3d8e922010-06-14 22:44:42 +02002082 if (mode != BTS_GPRS_NONE &&
2083 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2084 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2085 VTY_NEWLINE);
2086 return CMD_WARNING;
2087 }
2088 if (mode == BTS_GPRS_EGPRS &&
2089 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2090 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2091 VTY_NEWLINE);
2092 return CMD_WARNING;
2093 }
2094
2095 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002096
2097 return CMD_SUCCESS;
2098}
2099
Harald Welte9fbff4a2010-07-30 11:50:09 +02002100#define SI_TEXT "System Information Messages\n"
2101#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)"
2102#define SI_TYPE_HELP "System Information Type 1\n" \
2103 "System Information Type 2\n" \
2104 "System Information Type 3\n" \
2105 "System Information Type 4\n" \
2106 "System Information Type 5\n" \
2107 "System Information Type 6\n" \
2108 "System Information Type 7\n" \
2109 "System Information Type 8\n" \
2110 "System Information Type 9\n" \
2111 "System Information Type 10\n" \
2112 "System Information Type 13\n" \
2113 "System Information Type 16\n" \
2114 "System Information Type 17\n" \
2115 "System Information Type 18\n" \
2116 "System Information Type 19\n" \
2117 "System Information Type 20\n" \
2118 "System Information Type 2bis\n" \
2119 "System Information Type 2ter\n" \
2120 "System Information Type 2quater\n" \
2121 "System Information Type 5bis\n" \
2122 "System Information Type 5ter\n"
2123
2124DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2125 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2126 SI_TEXT SI_TYPE_HELP
2127 "System Information Mode\n"
2128 "Static user-specified\n"
2129 "Dynamic, BSC-computed\n")
2130{
2131 struct gsm_bts *bts = vty->index;
2132 int type;
2133
2134 type = get_string_value(osmo_sitype_strs, argv[0]);
2135 if (type < 0) {
2136 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2137 return CMD_WARNING;
2138 }
2139
2140 if (!strcmp(argv[1], "static"))
2141 bts->si_mode_static |= (1 << type);
2142 else
2143 bts->si_mode_static &= ~(1 << type);
2144
2145 return CMD_SUCCESS;
2146}
2147
2148DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2149 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2150 SI_TEXT SI_TYPE_HELP
2151 "Static System Information filling\n"
2152 "Static user-specified SI content in HEX notation\n")
2153{
2154 struct gsm_bts *bts = vty->index;
2155 int rc, type;
2156
2157 type = get_string_value(osmo_sitype_strs, argv[0]);
2158 if (type < 0) {
2159 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2160 return CMD_WARNING;
2161 }
2162
2163 if (!(bts->si_mode_static & (1 << type))) {
2164 vty_out(vty, "SI Type %s is not configured in static mode%s",
2165 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2166 return CMD_WARNING;
2167 }
2168
Harald Welte290aaed2010-07-30 11:53:18 +02002169 /* Fill buffer with padding pattern */
2170 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2171
2172 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Harald Welte9fbff4a2010-07-30 11:50:09 +02002173 rc = hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
2174 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2175 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2176 return CMD_WARNING;
2177 }
2178
2179 /* Mark this SI as present */
2180 bts->si_valid |= (1 << type);
2181
2182 return CMD_SUCCESS;
2183}
2184
Harald Welte32c09622011-01-11 23:44:56 +01002185DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002186 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002187 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002188 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2189 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002190{
2191 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002192 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002193
Harald Welte64c07d22011-02-15 11:43:27 +01002194 switch (mode) {
2195 case NL_MODE_MANUAL_SI5SEP:
2196 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002197 /* make sure we clear the current list when switching to
2198 * manual mode */
2199 if (bts->neigh_list_manual_mode == 0)
2200 memset(&bts->si_common.data.neigh_list, 0,
2201 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002202 break;
2203 default:
2204 break;
2205 }
2206
2207 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002208
2209 return CMD_SUCCESS;
2210}
2211
2212DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
2213 "neighbor-list (add|del) arfcn <0-1024>",
2214 "Neighbor List\n" "Add to manual neighbor list\n"
2215 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2216 "ARFCN of neighbor\n")
2217{
2218 struct gsm_bts *bts = vty->index;
2219 struct bitvec *bv = &bts->si_common.neigh_list;
2220 uint16_t arfcn = atoi(argv[1]);
2221
2222 if (!bts->neigh_list_manual_mode) {
2223 vty_out(vty, "%% Cannot configure neighbor list in "
2224 "automatic mode%s", VTY_NEWLINE);
2225 return CMD_WARNING;
2226 }
2227
2228 if (!strcmp(argv[0], "add"))
2229 bitvec_set_bit_pos(bv, arfcn, 1);
2230 else
2231 bitvec_set_bit_pos(bv, arfcn, 0);
2232
2233 return CMD_SUCCESS;
2234}
2235
Harald Welte64c07d22011-02-15 11:43:27 +01002236DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
2237 "si5 neighbor-list (add|del) arfcn <0-1024>",
2238 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2239 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2240 "ARFCN of neighbor\n")
2241{
2242 struct gsm_bts *bts = vty->index;
2243 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2244 uint16_t arfcn = atoi(argv[1]);
2245
2246 if (!bts->neigh_list_manual_mode) {
2247 vty_out(vty, "%% Cannot configure neighbor list in "
2248 "automatic mode%s", VTY_NEWLINE);
2249 return CMD_WARNING;
2250 }
2251
2252 if (!strcmp(argv[0], "add"))
2253 bitvec_set_bit_pos(bv, arfcn, 1);
2254 else
2255 bitvec_set_bit_pos(bv, arfcn, 0);
2256
2257 return CMD_SUCCESS;
2258}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002259
Harald Welte8f0ed552010-05-11 21:53:49 +02002260#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02002261
Harald Welte5258fc42009-03-28 19:07:53 +00002262/* per TRX configuration */
2263DEFUN(cfg_trx,
2264 cfg_trx_cmd,
2265 "trx TRX_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02002266 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00002267 "Select a TRX to configure")
2268{
2269 int trx_nr = atoi(argv[0]);
2270 struct gsm_bts *bts = vty->index;
2271 struct gsm_bts_trx *trx;
2272
Harald Weltee441d9c2009-06-21 16:17:15 +02002273 if (trx_nr > bts->num_trx) {
2274 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2275 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00002276 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02002277 } else if (trx_nr == bts->num_trx) {
2278 /* we need to allocate a new one */
2279 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002280 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02002281 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002282
Harald Weltee441d9c2009-06-21 16:17:15 +02002283 if (!trx)
2284 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00002285
2286 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02002287 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00002288 vty->node = TRX_NODE;
2289
2290 return CMD_SUCCESS;
2291}
2292
2293DEFUN(cfg_trx_arfcn,
2294 cfg_trx_arfcn_cmd,
Harald Welte93e90202010-05-14 19:00:52 +02002295 "arfcn <0-1024>",
Harald Welte5258fc42009-03-28 19:07:53 +00002296 "Set the ARFCN for this TRX\n")
2297{
2298 int arfcn = atoi(argv[0]);
2299 struct gsm_bts_trx *trx = vty->index;
2300
2301 /* FIXME: check if this ARFCN is supported by this TRX */
2302
2303 trx->arfcn = arfcn;
2304
2305 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2306 /* FIXME: use OML layer to update the ARFCN */
2307 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2308
2309 return CMD_SUCCESS;
2310}
2311
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002312DEFUN(cfg_trx_nominal_power,
2313 cfg_trx_nominal_power_cmd,
2314 "nominal power <0-100>",
2315 "Nominal TRX RF Power in dB\n")
2316{
2317 struct gsm_bts_trx *trx = vty->index;
2318
2319 trx->nominal_power = atoi(argv[0]);
2320
2321 return CMD_SUCCESS;
2322}
2323
Harald Weltefcd24452009-06-20 18:15:19 +02002324DEFUN(cfg_trx_max_power_red,
2325 cfg_trx_max_power_red_cmd,
2326 "max_power_red <0-100>",
2327 "Reduction of maximum BS RF Power in dB\n")
2328{
2329 int maxpwr_r = atoi(argv[0]);
2330 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01002331 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02002332
2333 /* FIXME: check if our BTS type supports more than 12 */
2334 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2335 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2336 maxpwr_r, VTY_NEWLINE);
2337 return CMD_WARNING;
2338 }
2339 if (maxpwr_r & 1) {
2340 vty_out(vty, "%% Power %d dB is not an even value%s",
2341 maxpwr_r, VTY_NEWLINE);
2342 return CMD_WARNING;
2343 }
2344
2345 trx->max_power_red = maxpwr_r;
2346
2347 /* FIXME: make sure we update this using OML */
2348
2349 return CMD_SUCCESS;
2350}
2351
Harald Welte42581822009-08-08 16:12:58 +02002352DEFUN(cfg_trx_rsl_e1,
2353 cfg_trx_rsl_e1_cmd,
2354 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
2355 "E1 interface to be used for RSL\n")
2356{
2357 struct gsm_bts_trx *trx = vty->index;
2358
2359 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2360
2361 return CMD_SUCCESS;
2362}
2363
2364DEFUN(cfg_trx_rsl_e1_tei,
2365 cfg_trx_rsl_e1_tei_cmd,
2366 "rsl e1 tei <0-63>",
2367 "Set the TEI to be used for RSL")
2368{
2369 struct gsm_bts_trx *trx = vty->index;
2370
2371 trx->rsl_tei = atoi(argv[0]);
2372
2373 return CMD_SUCCESS;
2374}
2375
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002376DEFUN(cfg_trx_rf_locked,
2377 cfg_trx_rf_locked_cmd,
2378 "rf_locked (0|1)",
2379 "Turn off RF of the TRX.\n")
2380{
2381 int locked = atoi(argv[0]);
2382 struct gsm_bts_trx *trx = vty->index;
2383
2384 gsm_trx_lock_rf(trx, locked);
2385 return CMD_SUCCESS;
2386}
Harald Welte42581822009-08-08 16:12:58 +02002387
Harald Welte5258fc42009-03-28 19:07:53 +00002388/* per TS configuration */
2389DEFUN(cfg_ts,
2390 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002391 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00002392 "Select a Timeslot to configure")
2393{
2394 int ts_nr = atoi(argv[0]);
2395 struct gsm_bts_trx *trx = vty->index;
2396 struct gsm_bts_trx_ts *ts;
2397
2398 if (ts_nr >= TRX_NR_TS) {
2399 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2400 TRX_NR_TS, VTY_NEWLINE);
2401 return CMD_WARNING;
2402 }
2403
2404 ts = &trx->ts[ts_nr];
2405
2406 vty->index = ts;
2407 vty->node = TS_NODE;
2408
2409 return CMD_SUCCESS;
2410}
2411
Harald Weltea6fd58e2009-08-07 00:25:23 +02002412DEFUN(cfg_ts_pchan,
2413 cfg_ts_pchan_cmd,
2414 "phys_chan_config PCHAN",
2415 "Physical Channel configuration (TCH/SDCCH/...)")
2416{
2417 struct gsm_bts_trx_ts *ts = vty->index;
2418 int pchanc;
2419
2420 pchanc = gsm_pchan_parse(argv[0]);
2421 if (pchanc < 0)
2422 return CMD_WARNING;
2423
2424 ts->pchan = pchanc;
2425
2426 return CMD_SUCCESS;
2427}
2428
Harald Weltea39b0f22010-06-14 22:26:10 +02002429#define HOPPING_STR "Configure frequency hopping\n"
2430
2431DEFUN(cfg_ts_hopping,
2432 cfg_ts_hopping_cmd,
2433 "hopping enabled (0|1)",
2434 HOPPING_STR "Enable or disable frequency hopping\n"
2435 "Disable frequency hopping\n" "Enable frequency hopping\n")
2436{
2437 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02002438 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02002439
Harald Weltec2fb3d02010-06-14 22:47:37 +02002440 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2441 vty_out(vty, "BTS model does not support hopping%s",
2442 VTY_NEWLINE);
2443 return CMD_WARNING;
2444 }
2445
2446 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02002447
2448 return CMD_SUCCESS;
2449}
2450
Harald Welte6e0cd042009-09-12 13:05:33 +02002451DEFUN(cfg_ts_hsn,
2452 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02002453 "hopping sequence-number <0-63>",
2454 HOPPING_STR
Harald Welte6e0cd042009-09-12 13:05:33 +02002455 "Which hopping sequence to use for this channel")
2456{
2457 struct gsm_bts_trx_ts *ts = vty->index;
2458
2459 ts->hopping.hsn = atoi(argv[0]);
2460
2461 return CMD_SUCCESS;
2462}
2463
2464DEFUN(cfg_ts_maio,
2465 cfg_ts_maio_cmd,
2466 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002467 HOPPING_STR
Harald Welte6e0cd042009-09-12 13:05:33 +02002468 "Which hopping MAIO to use for this channel")
2469{
2470 struct gsm_bts_trx_ts *ts = vty->index;
2471
2472 ts->hopping.maio = atoi(argv[0]);
2473
2474 return CMD_SUCCESS;
2475}
2476
2477DEFUN(cfg_ts_arfcn_add,
2478 cfg_ts_arfcn_add_cmd,
2479 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002480 HOPPING_STR "Configure hopping ARFCN list\n"
2481 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002482{
2483 struct gsm_bts_trx_ts *ts = vty->index;
2484 int arfcn = atoi(argv[0]);
2485
Harald Weltea39b0f22010-06-14 22:26:10 +02002486 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2487
Harald Welte6e0cd042009-09-12 13:05:33 +02002488 return CMD_SUCCESS;
2489}
2490
2491DEFUN(cfg_ts_arfcn_del,
2492 cfg_ts_arfcn_del_cmd,
2493 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002494 HOPPING_STR "Configure hopping ARFCN list\n"
2495 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002496{
2497 struct gsm_bts_trx_ts *ts = vty->index;
2498 int arfcn = atoi(argv[0]);
2499
Harald Weltea39b0f22010-06-14 22:26:10 +02002500 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2501
Harald Welte6e0cd042009-09-12 13:05:33 +02002502 return CMD_SUCCESS;
2503}
2504
Harald Weltea6fd58e2009-08-07 00:25:23 +02002505DEFUN(cfg_ts_e1_subslot,
2506 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002507 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02002508 "E1 sub-slot connected to this on-air timeslot")
2509{
2510 struct gsm_bts_trx_ts *ts = vty->index;
2511
Harald Welte42581822009-08-08 16:12:58 +02002512 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002513
2514 return CMD_SUCCESS;
2515}
Harald Welte5258fc42009-03-28 19:07:53 +00002516
Harald Welte4f10c252010-05-16 21:47:13 +02002517void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2518{
2519 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
2520 counter_get(net->stats.chreq.total),
2521 counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
2522 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
2523 counter_get(net->stats.chan.rf_fail),
2524 counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
2525 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
2526 counter_get(net->stats.paging.attempted),
2527 counter_get(net->stats.paging.completed),
2528 counter_get(net->stats.paging.expired), VTY_NEWLINE);
2529 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
2530 counter_get(net->stats.bts.oml_fail),
2531 counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
2532}
2533
Harald Welte5bc61dc2010-05-16 22:02:16 +02002534DEFUN(logging_fltr_imsi,
2535 logging_fltr_imsi_cmd,
2536 "logging filter imsi IMSI",
2537 LOGGING_STR FILTER_STR
2538 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2539{
Harald Welte8dcebd32011-02-18 21:10:05 +01002540 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002541
Harald Welte8dcebd32011-02-18 21:10:05 +01002542 if (!tgt)
Harald Welte5bc61dc2010-05-16 22:02:16 +02002543 return CMD_WARNING;
Harald Welte5bc61dc2010-05-16 22:02:16 +02002544
Harald Welte8dcebd32011-02-18 21:10:05 +01002545 log_set_imsi_filter(tgt, argv[0]);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002546 return CMD_SUCCESS;
2547}
2548
Harald Welte8dcebd32011-02-18 21:10:05 +01002549
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002550DEFUN(drop_bts,
2551 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02002552 "drop bts connection <0-65535> (oml|rsl)",
2553 "Debug/Simulation command to drop ipaccess BTS\n"
2554 "BTS NR\n" "Connection Type\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002555{
2556 struct gsm_network *gsmnet;
2557 struct gsm_bts_trx *trx;
2558 struct gsm_bts *bts;
2559 unsigned int bts_nr;
2560
2561 gsmnet = gsmnet_from_vty(vty);
2562
2563 bts_nr = atoi(argv[0]);
2564 if (bts_nr >= gsmnet->num_bts) {
2565 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2566 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2567 return CMD_WARNING;
2568 }
2569
2570 bts = gsm_bts_num(gsmnet, bts_nr);
2571 if (!bts) {
2572 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2573 return CMD_WARNING;
2574 }
2575
2576 if (!is_ipaccess_bts(bts)) {
2577 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2578 return CMD_WARNING;
2579 }
2580
2581
2582 /* close all connections */
2583 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002584 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002585 } else if (strcmp(argv[1], "rsl") == 0) {
2586 /* close all rsl connections */
2587 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002588 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002589 }
2590 } else {
2591 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2592 return CMD_WARNING;
2593 }
2594
2595 return CMD_SUCCESS;
2596}
2597
Harald Welted0d2b0b2010-12-23 13:18:07 +01002598DEFUN(pdch_act, pdch_act_cmd,
2599 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2600 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2601 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2602 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2603 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2604{
2605 struct gsm_bts *bts;
2606 struct gsm_bts_trx *trx;
2607 struct gsm_bts_trx_ts *ts;
2608 int bts_nr = atoi(argv[0]);
2609 int trx_nr = atoi(argv[1]);
2610 int ts_nr = atoi(argv[2]);
2611 int activate;
2612
2613 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2614 if (!bts) {
2615 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2616 return CMD_WARNING;
2617 }
2618
2619 if (!is_ipaccess_bts(bts)) {
2620 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2621 VTY_NEWLINE);
2622 return CMD_WARNING;
2623 }
2624
2625 trx = gsm_bts_trx_num(bts, trx_nr);
2626 if (!trx) {
2627 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2628 return CMD_WARNING;
2629 }
2630
2631 ts = &trx->ts[ts_nr];
2632 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2633 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2634 "mode%s", ts_nr, VTY_NEWLINE);
2635 return CMD_WARNING;
2636 }
2637
2638 if (!strcmp(argv[3], "activate"))
2639 activate = 1;
2640 else
2641 activate = 0;
2642
2643 rsl_ipacc_pdch_activate(ts, activate);
2644
2645 return CMD_SUCCESS;
2646
2647}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002648
Harald Weltedcccb182010-05-16 20:52:23 +02002649extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02002650extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02002651
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002652int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00002653{
Harald Welteb4d5b172010-05-12 16:10:35 +00002654 install_element_ve(&show_net_cmd);
2655 install_element_ve(&show_bts_cmd);
2656 install_element_ve(&show_trx_cmd);
2657 install_element_ve(&show_ts_cmd);
2658 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08002659 install_element_ve(&show_lchan_summary_cmd);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002660 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00002661
Harald Welteb4d5b172010-05-12 16:10:35 +00002662 install_element_ve(&show_e1drv_cmd);
2663 install_element_ve(&show_e1line_cmd);
2664 install_element_ve(&show_e1ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002665
Harald Welteb4d5b172010-05-12 16:10:35 +00002666 install_element_ve(&show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002667
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002668 logging_vty_add_cmds(cat);
Harald Welte8dcebd32011-02-18 21:10:05 +01002669 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01002670
Harald Welte5013b2a2009-08-07 13:29:14 +02002671 install_element(CONFIG_NODE, &cfg_net_cmd);
2672 install_node(&net_node, config_write_net);
2673 install_default(GSMNET_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002674 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002675 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002676 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002677 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2678 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2679 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02002680 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01002681 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09002682 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01002683 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01002684 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01002685 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01002686 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01002687 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2688 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2689 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2690 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2691 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2692 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01002693 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002694 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2695 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2696 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2697 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2698 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2699 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2700 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2701 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2702 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01002703 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002704 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08002705 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01002706 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08002707 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002708
2709 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02002710 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00002711 install_default(BTS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002712 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002713 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002714 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002715 install_element(BTS_NODE, &cfg_description_cmd);
2716 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02002717 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02002718 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002719 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2720 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002721 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00002722 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Weltefd355a32011-03-04 13:41:31 +01002723 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02002724 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002725 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2726 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02002727 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002728 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2729 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002730 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2731 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002732 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002733 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002734 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02002735 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01002736 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2737 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002738 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
2739 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
2740 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
2741 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
2742 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
2743 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02002744 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002745 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002746 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2747 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002748 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08002749 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002750 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08002751 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2752 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2753 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002754 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02002755 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
2756 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01002757 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
2758 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01002759 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002760
Harald Welte5258fc42009-03-28 19:07:53 +00002761 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002762 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002763 install_default(TRX_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002764 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002765 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002766 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002767 install_element(TRX_NODE, &cfg_description_cmd);
2768 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002769 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02002770 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002771 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2772 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002773 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002774
Harald Welte5258fc42009-03-28 19:07:53 +00002775 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002776 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002777 install_default(TS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002778 install_element(TS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002779 install_element(TS_NODE, &ournode_end_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002780 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02002781 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02002782 install_element(TS_NODE, &cfg_ts_hsn_cmd);
2783 install_element(TS_NODE, &cfg_ts_maio_cmd);
2784 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
2785 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002786 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002787
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002788 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01002789 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002790
Harald Welte81c9b9c2010-05-31 16:40:40 +02002791 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01002792 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01002793 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02002794
Harald Weltedcccb182010-05-16 20:52:23 +02002795 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00002796
Harald Welte68628e82009-03-10 12:17:57 +00002797 return 0;
2798}