blob: 37a1e2f17e1a887ce5da2b51273d0692b1aa57f2 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte59b04682009-06-10 05:40:52 +08008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte0e3e88e2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080014 *
Harald Welte0e3e88e2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080022
Harald Weltebd9591f2010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte59b04682009-06-10 05:40:52 +080028
29#include <arpa/inet.h>
30
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010031#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080032#include <openbsc/gsm_data.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/e1_input.h>
34#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010035#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010036#include <osmocom/core/utils.h>
37#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020038#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010039#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010040#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080041#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010042#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020043#include <openbsc/vty.h>
Harald Weltef45981f2010-05-12 20:28:04 +020044#include <openbsc/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020045#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020046#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010047#include <openbsc/paging.h>
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +010048#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010049#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010050#include <openbsc/osmo_msc_data.h>
51#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080052
Harald Welted9dea592011-03-04 13:53:51 +010053#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020054
Harald Welted6b62e32010-05-12 17:19:53 +000055/* FIXME: this should go to some common file */
56static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020057 { 0, "tns-block" },
58 { 1, "tns-block-retries" },
59 { 2, "tns-reset" },
60 { 3, "tns-reset-retries" },
61 { 4, "tns-test" },
62 { 5, "tns-alive" },
63 { 6, "tns-alive-retries" },
64 { 0, NULL }
65};
66
Harald Welted6b62e32010-05-12 17:19:53 +000067static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020068 { 0, "blocking-timer" },
69 { 1, "blocking-retries" },
70 { 2, "unblocking-retries" },
71 { 3, "reset-timer" },
72 { 4, "reset-retries" },
73 { 5, "suspend-timer" },
74 { 6, "suspend-retries" },
75 { 7, "resume-timer" },
76 { 8, "resume-retries" },
77 { 9, "capability-update-timer" },
78 { 10, "capability-update-retries" },
79 { 0, NULL }
80};
81
Harald Weltef989b782011-02-15 11:43:27 +010082static const struct value_string bts_neigh_mode_strs[] = {
83 { NL_MODE_AUTOMATIC, "automatic" },
84 { NL_MODE_MANUAL, "manual" },
85 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
86 { 0, NULL }
87};
88
Harald Weltee87eb462009-08-07 13:29:14 +020089struct cmd_node net_node = {
90 GSMNET_NODE,
91 "%s(network)#",
92 1,
93};
94
Harald Welte59b04682009-06-10 05:40:52 +080095struct cmd_node bts_node = {
96 BTS_NODE,
97 "%s(bts)#",
98 1,
99};
100
101struct cmd_node trx_node = {
102 TRX_NODE,
103 "%s(trx)#",
104 1,
105};
106
107struct cmd_node ts_node = {
108 TS_NODE,
109 "%s(ts)#",
110 1,
111};
112
Harald Welte61daf6d2010-05-27 13:39:40 +0200113extern struct gsm_network *bsc_gsmnet;
114
Harald Welte40152872010-05-16 20:52:23 +0200115struct gsm_network *gsmnet_from_vty(struct vty *v)
116{
Harald Welte61daf6d2010-05-27 13:39:40 +0200117 /* In case we read from the config file, the vty->priv cannot
118 * point to a struct telnet_connection, and thus conn->priv
119 * will not point to the gsm_network structure */
120#if 0
Harald Welte40152872010-05-16 20:52:23 +0200121 struct telnet_connection *conn = v->priv;
122 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200123#else
124 return bsc_gsmnet;
125#endif
Harald Welte40152872010-05-16 20:52:23 +0200126}
127
Harald Welte59b04682009-06-10 05:40:52 +0800128static int dummy_config_write(struct vty *v)
129{
130 return CMD_SUCCESS;
131}
132
133static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
134{
135 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte306a8892011-05-23 20:30:39 +0200136 abis_nm_opstate_name(nms->operational), nms->administrative,
137 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800138}
139
Harald Weltefe96f382009-12-22 13:09:29 +0100140static void dump_pchan_load_vty(struct vty *vty, char *prefix,
141 const struct pchan_load *pl)
142{
143 int i;
144
145 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
146 const struct load_counter *lc = &pl->pchan[i];
147 unsigned int percent;
148
149 if (lc->total == 0)
150 continue;
151
152 percent = (lc->used * 100) / lc->total;
153
154 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
155 gsm_pchan_name(i), percent, lc->used, lc->total,
156 VTY_NEWLINE);
157 }
158}
159
Harald Welte59b04682009-06-10 05:40:52 +0800160static void net_dump_vty(struct vty *vty, struct gsm_network *net)
161{
Harald Weltefe96f382009-12-22 13:09:29 +0100162 struct pchan_load pl;
163
Harald Welte59b04682009-06-10 05:40:52 +0800164 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
165 "and has %u BTS%s", net->country_code, net->network_code,
166 net->num_bts, VTY_NEWLINE);
167 vty_out(vty, " Long network name: '%s'%s",
168 net->name_long, VTY_NEWLINE);
169 vty_out(vty, " Short network name: '%s'%s",
170 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200171 vty_out(vty, " Authentication policy: %s%s",
172 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100173 vty_out(vty, " Location updating reject cause: %u%s",
174 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900175 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
176 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100177 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
178 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800179 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
180 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100181 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
182 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100183 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
184 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100185 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
186 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100187 network_chan_load(&pl, net);
188 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
189 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100190
191 /* show rf */
Pablo Neira Ayuso44b8a4c2011-03-08 13:35:17 +0100192 if (net->msc_data && net->msc_data->rf_ctl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100193 vty_out(vty, " Last RF Command: %s%s",
194 net->msc_data->rf_ctl->last_state_command,
195 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800196}
197
198DEFUN(show_net, show_net_cmd, "show network",
199 SHOW_STR "Display information about a GSM NETWORK\n")
200{
Harald Welte40152872010-05-16 20:52:23 +0200201 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800202 net_dump_vty(vty, net);
203
204 return CMD_SUCCESS;
205}
206
207static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
208{
209 struct e1inp_line *line;
210
211 if (!e1l) {
212 vty_out(vty, " None%s", VTY_NEWLINE);
213 return;
214 }
215
216 line = e1l->ts->line;
217
218 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
219 line->num, line->driver->name, e1l->ts->num,
220 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
221 vty_out(vty, " E1 TEI %u, SAPI %u%s",
222 e1l->tei, e1l->sapi, VTY_NEWLINE);
223}
224
225static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
226{
Harald Weltefe96f382009-12-22 13:09:29 +0100227 struct pchan_load pl;
228
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200229 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200230 "BSIC %u, TSC %u and %u TRX%s",
231 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200232 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200233 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200234 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200235 vty_out(vty, "Description: %s%s",
236 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100237 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100238 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100239 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
240 VTY_NEWLINE);
241 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100242 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100243 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
244 VTY_NEWLINE);
245 vty_out(vty, "RACH Max transmissions: %u%s",
246 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
247 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100248 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200249 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200250 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
251 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800252 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200253 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800254 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200255 bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100256 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
257 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800258 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200259 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800260 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200261 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200262 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
263 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800264 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100265 if (is_ipaccess_bts(bts)) {
266 vty_out(vty, " OML Link state: %s.%s",
267 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
268 } else {
Harald Welte25572872009-10-20 00:22:00 +0200269 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
270 e1isl_dump_vty(vty, bts->oml_link);
271 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100272
273 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100274 memset(&pl, 0, sizeof(pl));
275 bts_chan_load(&pl, bts);
276 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
277 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800278}
279
280DEFUN(show_bts, show_bts_cmd, "show bts [number]",
281 SHOW_STR "Display information about a BTS\n"
282 "BTS number")
283{
Harald Welte40152872010-05-16 20:52:23 +0200284 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800285 int bts_nr;
286
287 if (argc != 0) {
288 /* use the BTS number that the user has specified */
289 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100290 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800291 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
292 VTY_NEWLINE);
293 return CMD_WARNING;
294 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200295 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800296 return CMD_SUCCESS;
297 }
298 /* print all BTS's */
299 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200300 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800301
302 return CMD_SUCCESS;
303}
304
Harald Welte62868882009-08-08 16:12:58 +0200305/* utility functions */
306static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
307 const char *ts, const char *ss)
308{
309 e1_link->e1_nr = atoi(line);
310 e1_link->e1_ts = atoi(ts);
311 if (!strcmp(ss, "full"))
312 e1_link->e1_ts_ss = 255;
313 else
314 e1_link->e1_ts_ss = atoi(ss);
315}
316
317static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
318 const char *prefix)
319{
320 if (!e1_link->e1_ts)
321 return;
322
323 if (e1_link->e1_ts_ss == 255)
324 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
325 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
326 else
327 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
328 prefix, e1_link->e1_nr, e1_link->e1_ts,
329 e1_link->e1_ts_ss, VTY_NEWLINE);
330}
331
332
Harald Welte97ceef92009-08-06 19:06:46 +0200333static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
334{
Harald Welte62868882009-08-08 16:12:58 +0200335 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200336 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
337 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200338 if (ts->pchan != GSM_PCHAN_NONE)
339 vty_out(vty, " phys_chan_config %s%s",
340 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200341 vty_out(vty, " hopping enabled %u%s",
342 ts->hopping.enabled, VTY_NEWLINE);
343 if (ts->hopping.enabled) {
344 unsigned int i;
345 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200346 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200347 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200348 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200349 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
350 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
351 continue;
352 vty_out(vty, " hopping arfcn add %u%s",
353 i, VTY_NEWLINE);
354 }
Harald Welteff598092010-12-24 12:07:07 +0100355 }
Harald Welte62868882009-08-08 16:12:58 +0200356 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100357
358 if (ts->trx->bts->model->config_write_ts)
359 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200360}
361
362static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
363{
364 int i;
365
Harald Weltee87eb462009-08-07 13:29:14 +0200366 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200367 if (trx->description)
368 vty_out(vty, " description %s%s", trx->description,
369 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200370 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200371 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200372 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200373 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100374 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200375 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200376 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
377 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200378
Harald Weltec02789e2011-02-14 16:15:21 +0100379 if (trx->bts->model->config_write_trx)
380 trx->bts->model->config_write_trx(vty, trx);
381
Harald Welte97ceef92009-08-06 19:06:46 +0200382 for (i = 0; i < TRX_NR_TS; i++)
383 config_write_ts_single(vty, &trx->ts[i]);
384}
385
Harald Weltea9251762010-05-11 23:50:21 +0200386static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
387{
388 unsigned int i;
389 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
390 VTY_NEWLINE);
391 if (bts->gprs.mode == BTS_GPRS_NONE)
392 return;
393
394 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
395 VTY_NEWLINE);
396 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
397 VTY_NEWLINE);
398 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
399 vty_out(vty, " gprs cell timer %s %u%s",
400 get_value_string(gprs_bssgp_cfg_strs, i),
401 bts->gprs.cell.timer[i], VTY_NEWLINE);
402 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
403 VTY_NEWLINE);
404 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
405 vty_out(vty, " gprs ns timer %s %u%s",
406 get_value_string(gprs_ns_timer_strs, i),
407 bts->gprs.nse.timer[i], VTY_NEWLINE);
408 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
409 struct gsm_bts_gprs_nsvc *nsvc =
410 &bts->gprs.nsvc[i];
411 struct in_addr ia;
412
413 ia.s_addr = htonl(nsvc->remote_ip);
414 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
415 nsvc->nsvci, VTY_NEWLINE);
416 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
417 nsvc->local_port, VTY_NEWLINE);
418 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
419 nsvc->remote_port, VTY_NEWLINE);
420 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
421 inet_ntoa(ia), VTY_NEWLINE);
422 }
423}
424
Harald Welte97ceef92009-08-06 19:06:46 +0200425static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
426{
427 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200428 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200429
Harald Weltee87eb462009-08-07 13:29:14 +0200430 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
431 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200432 if (bts->description)
433 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200434 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100435 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200436 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200437 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200438 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
439 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200440 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100441 vty_out(vty, " cell reselection hysteresis %u%s",
442 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
443 vty_out(vty, " rxlev access min %u%s",
444 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100445
446 if (bts->si_common.cell_ro_sel_par.present) {
447 struct gsm48_si_selection_params *sp;
448 sp = &bts->si_common.cell_ro_sel_par;
449
450 if (sp->cbq)
451 vty_out(vty, " cell bar qualify %u%s",
452 sp->cbq, VTY_NEWLINE);
453
454 if (sp->cell_resel_off)
455 vty_out(vty, " cell reselection offset %u%s",
456 sp->cell_resel_off*2, VTY_NEWLINE);
457
458 if (sp->temp_offs == 7)
459 vty_out(vty, " temporary offset infinite%s",
460 VTY_NEWLINE);
461 else if (sp->temp_offs)
462 vty_out(vty, " temporary offset %u%s",
463 sp->temp_offs*10, VTY_NEWLINE);
464
465 if (sp->penalty_time == 31)
466 vty_out(vty, " penalty time reserved%s",
467 VTY_NEWLINE);
468 else if (sp->penalty_time)
469 vty_out(vty, " penalty time %u%s",
470 (sp->penalty_time*20)+20, VTY_NEWLINE);
471 }
472
Harald Weltea54a2bb2009-12-01 18:04:30 +0530473 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +0200474 vty_out(vty, " periodic location update %u%s",
Dieter Spaarb0f746d2010-10-05 21:10:55 +0200475 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200476 vty_out(vty, " channel allocator %s%s",
477 bts->chan_alloc_reverse ? "descending" : "ascending",
478 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100479 vty_out(vty, " rach tx integer %u%s",
480 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
481 vty_out(vty, " rach max transmission %u%s",
482 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
483 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800484
485 if (bts->rach_b_thresh != -1)
486 vty_out(vty, " rach nm busy threshold %u%s",
487 bts->rach_b_thresh, VTY_NEWLINE);
488 if (bts->rach_ldavg_slots != -1)
489 vty_out(vty, " rach nm load average %u%s",
490 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100491 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200492 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800493 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
494 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200495 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
496 if (bts->si_mode_static & (1 << i)) {
497 vty_out(vty, " system-information %s mode static%s",
498 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
499 vty_out(vty, " system-information %s static %s%s",
500 get_value_string(osmo_sitype_strs, i),
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +0200501 osmo_osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200502 VTY_NEWLINE);
503 }
504 }
Harald Welte08011e22011-03-04 13:41:31 +0100505 switch (bts->type) {
506 case GSM_BTS_TYPE_NANOBTS:
Harald Weltee87eb462009-08-07 13:29:14 +0200507 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200508 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte25572872009-10-20 00:22:00 +0200509 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100510 break;
511 case GSM_BTS_TYPE_HSL_FEMTO:
512 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
513 break;
514 default:
Harald Welte62868882009-08-08 16:12:58 +0200515 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
516 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100517 break;
Harald Welte62868882009-08-08 16:12:58 +0200518 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800519
520 /* if we have a limit, write it */
521 if (bts->paging.free_chans_need >= 0)
522 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
523
Harald Welteca46eff2011-01-11 23:44:56 +0100524 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100525 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
526 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100527 for (i = 0; i < 1024; i++) {
528 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
529 vty_out(vty, " neighbor-list add arfcn %u%s",
530 i, VTY_NEWLINE);
531 }
532 }
Harald Weltef989b782011-02-15 11:43:27 +0100533 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
534 for (i = 0; i < 1024; i++) {
535 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
536 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
537 i, VTY_NEWLINE);
538 }
539 }
Harald Welteca46eff2011-01-11 23:44:56 +0100540
Harald Weltea9251762010-05-11 23:50:21 +0200541 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200542
Harald Weltec02789e2011-02-14 16:15:21 +0100543 if (bts->model->config_write_bts)
544 bts->model->config_write_bts(vty, bts);
545
Harald Welte97ceef92009-08-06 19:06:46 +0200546 llist_for_each_entry(trx, &bts->trx_list, list)
547 config_write_trx_single(vty, trx);
548}
549
550static int config_write_bts(struct vty *v)
551{
Harald Welte40152872010-05-16 20:52:23 +0200552 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200553 struct gsm_bts *bts;
554
555 llist_for_each_entry(bts, &gsmnet->bts_list, list)
556 config_write_bts_single(v, bts);
557
558 return CMD_SUCCESS;
559}
560
Harald Weltee87eb462009-08-07 13:29:14 +0200561static int config_write_net(struct vty *vty)
562{
Harald Welte40152872010-05-16 20:52:23 +0200563 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
564
Harald Weltee87eb462009-08-07 13:29:14 +0200565 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200566 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200567 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200568 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
569 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200570 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100571 vty_out(vty, " location updating reject cause %u%s",
572 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900573 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100574 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800575 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100576 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
577 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100578 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100579 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100580 vty_out(vty, " handover window rxlev averaging %u%s",
581 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
582 vty_out(vty, " handover window rxqual averaging %u%s",
583 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
584 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
585 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
586 vty_out(vty, " handover power budget interval %u%s",
587 gsmnet->handover.pwr_interval, VTY_NEWLINE);
588 vty_out(vty, " handover power budget hysteresis %u%s",
589 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
590 vty_out(vty, " handover maximum distance %u%s",
591 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100592 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100593 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
594 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
595 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
596 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
597 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
598 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
599 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
600 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
601 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100602 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100603 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100604 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100605 vty_out(vty, " subscriber-keep-in-ram %d%s",
606 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200607
608 return CMD_SUCCESS;
609}
Harald Welte97ceef92009-08-06 19:06:46 +0200610
Harald Welte59b04682009-06-10 05:40:52 +0800611static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
612{
613 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
614 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200615 vty_out(vty, "Description: %s%s",
616 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200617 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200618 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200619 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200620 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800621 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200622 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800623 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200624 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200625 if (is_ipaccess_bts(trx->bts)) {
626 vty_out(vty, " ip.access stream ID: 0x%02x%s",
627 trx->rsl_tei, VTY_NEWLINE);
628 } else {
629 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
630 e1isl_dump_vty(vty, trx->rsl_link);
631 }
Harald Welte59b04682009-06-10 05:40:52 +0800632}
633
634DEFUN(show_trx,
635 show_trx_cmd,
636 "show trx [bts_nr] [trx_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200637 SHOW_STR "Display information about a TRX\n"
638 "BTS Number\n"
639 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800640{
Harald Welte40152872010-05-16 20:52:23 +0200641 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800642 struct gsm_bts *bts = NULL;
643 struct gsm_bts_trx *trx;
644 int bts_nr, trx_nr;
645
646 if (argc >= 1) {
647 /* use the BTS number that the user has specified */
648 bts_nr = atoi(argv[0]);
649 if (bts_nr >= net->num_bts) {
650 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
651 VTY_NEWLINE);
652 return CMD_WARNING;
653 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200654 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800655 }
656 if (argc >= 2) {
657 trx_nr = atoi(argv[1]);
658 if (trx_nr >= bts->num_trx) {
659 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
660 VTY_NEWLINE);
661 return CMD_WARNING;
662 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200663 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800664 trx_dump_vty(vty, trx);
665 return CMD_SUCCESS;
666 }
667 if (bts) {
668 /* print all TRX in this BTS */
669 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200670 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800671 trx_dump_vty(vty, trx);
672 }
673 return CMD_SUCCESS;
674 }
675
676 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200677 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800678 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200679 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800680 trx_dump_vty(vty, trx);
681 }
682 }
683
684 return CMD_SUCCESS;
685}
686
Harald Welte97ceef92009-08-06 19:06:46 +0200687
Harald Welte59b04682009-06-10 05:40:52 +0800688static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
689{
Harald Welte85771a42011-05-30 12:09:13 +0200690 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100691 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte85771a42011-05-30 12:09:13 +0200692 gsm_pchan_name(ts->pchan), ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100693 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100694 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100695 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
696 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800697 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200698 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530699 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800700 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
701 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
702 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800703}
704
705DEFUN(show_ts,
706 show_ts_cmd,
707 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200708 SHOW_STR "Display information about a TS\n"
709 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800710{
Harald Welte40152872010-05-16 20:52:23 +0200711 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100712 struct gsm_bts *bts = NULL;
713 struct gsm_bts_trx *trx = NULL;
714 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800715 int bts_nr, trx_nr, ts_nr;
716
717 if (argc >= 1) {
718 /* use the BTS number that the user has specified */
719 bts_nr = atoi(argv[0]);
720 if (bts_nr >= net->num_bts) {
721 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
722 VTY_NEWLINE);
723 return CMD_WARNING;
724 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200725 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800726 }
727 if (argc >= 2) {
728 trx_nr = atoi(argv[1]);
729 if (trx_nr >= bts->num_trx) {
730 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
731 VTY_NEWLINE);
732 return CMD_WARNING;
733 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200734 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800735 }
736 if (argc >= 3) {
737 ts_nr = atoi(argv[2]);
738 if (ts_nr >= TRX_NR_TS) {
739 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
740 VTY_NEWLINE);
741 return CMD_WARNING;
742 }
Harald Welte06868382010-12-24 12:05:03 +0100743 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800744 ts = &trx->ts[ts_nr];
745 ts_dump_vty(vty, ts);
746 return CMD_SUCCESS;
747 }
Harald Welte06868382010-12-24 12:05:03 +0100748
749 if (bts && trx) {
750 /* Iterate over all TS in this TRX */
751 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
752 ts = &trx->ts[ts_nr];
753 ts_dump_vty(vty, ts);
754 }
755 } else if (bts) {
756 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800757 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200758 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800759 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
760 ts = &trx->ts[ts_nr];
761 ts_dump_vty(vty, ts);
762 }
763 }
Harald Welte06868382010-12-24 12:05:03 +0100764 } else {
765 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
766 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
767 bts = gsm_bts_num(net, bts_nr);
768 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
769 trx = gsm_bts_trx_num(bts, trx_nr);
770 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
771 ts = &trx->ts[ts_nr];
772 ts_dump_vty(vty, ts);
773 }
774 }
775 }
Harald Welte59b04682009-06-10 05:40:52 +0800776 }
777
778 return CMD_SUCCESS;
779}
780
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100781static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800782{
Harald Welte91afe4c2009-06-20 18:15:19 +0200783 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800784 subscr->authorized, VTY_NEWLINE);
785 if (subscr->name)
786 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
787 if (subscr->extension)
788 vty_out(vty, " Extension: %s%s", subscr->extension,
789 VTY_NEWLINE);
790 if (subscr->imsi)
791 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200792 if (subscr->tmsi != GSM_RESERVED_TMSI)
793 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200794 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100795
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200796 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800797}
798
Harald Welte44007742009-12-22 21:43:14 +0100799static void meas_rep_dump_uni_vty(struct vty *vty,
800 struct gsm_meas_rep_unidir *mru,
801 const char *prefix,
802 const char *dir)
803{
804 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
805 prefix, dir, rxlev2dbm(mru->full.rx_lev),
806 dir, rxlev2dbm(mru->sub.rx_lev));
807 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
808 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
809 VTY_NEWLINE);
810}
811
812static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
813 const char *prefix)
814{
815 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
816 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
817 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
818 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
819 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
820 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
821 VTY_NEWLINE);
822 if (mr->flags & MEAS_REP_F_MS_TO)
823 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
824 mr->ms_timing_offset, VTY_NEWLINE);
825 if (mr->flags & MEAS_REP_F_MS_L1)
826 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
827 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
828 if (mr->flags & MEAS_REP_F_DL_VALID)
829 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
830 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
831}
832
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800833static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800834{
Harald Welte44007742009-12-22 21:43:14 +0100835 int idx;
836
Harald Weltef62dad62010-12-24 12:22:34 +0100837 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
838 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
839 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800840 vty_out(vty, " Connection: %u, State: %s%s",
841 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100842 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100843 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
844 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
845 - lchan->bs_power*2,
846 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
847 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800848 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800849 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800850 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800851 } else
852 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530853 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
854 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200855 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530856 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
857 inet_ntoa(ia), lchan->abis_ip.bound_port,
858 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
859 VTY_NEWLINE);
860 }
Harald Welte44007742009-12-22 21:43:14 +0100861
862 /* we want to report the last measurement report */
863 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
864 lchan->meas_rep_idx, 1);
865 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800866}
867
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800868static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
869{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800870 struct gsm_meas_rep *mr;
871 int idx;
872
873 /* we want to report the last measurement report */
874 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
875 lchan->meas_rep_idx, 1);
876 mr = &lchan->meas_rep[idx];
877
Harald Weltef62dad62010-12-24 12:22:34 +0100878 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
879 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
880 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100881 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800882 rxlev2dbm(mr->dl.full.rx_lev),
883 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800884 VTY_NEWLINE);
885}
886
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800887static int lchan_summary(struct vty *vty, int argc, const char **argv,
888 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800889{
Harald Welte40152872010-05-16 20:52:23 +0200890 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800891 struct gsm_bts *bts;
892 struct gsm_bts_trx *trx;
893 struct gsm_bts_trx_ts *ts;
894 struct gsm_lchan *lchan;
895 int bts_nr, trx_nr, ts_nr, lchan_nr;
896
897 if (argc >= 1) {
898 /* use the BTS number that the user has specified */
899 bts_nr = atoi(argv[0]);
900 if (bts_nr >= net->num_bts) {
901 vty_out(vty, "%% can't find BTS %s%s", argv[0],
902 VTY_NEWLINE);
903 return CMD_WARNING;
904 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200905 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800906 }
907 if (argc >= 2) {
908 trx_nr = atoi(argv[1]);
909 if (trx_nr >= bts->num_trx) {
910 vty_out(vty, "%% can't find TRX %s%s", argv[1],
911 VTY_NEWLINE);
912 return CMD_WARNING;
913 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200914 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800915 }
916 if (argc >= 3) {
917 ts_nr = atoi(argv[2]);
918 if (ts_nr >= TRX_NR_TS) {
919 vty_out(vty, "%% can't find TS %s%s", argv[2],
920 VTY_NEWLINE);
921 return CMD_WARNING;
922 }
923 ts = &trx->ts[ts_nr];
924 }
925 if (argc >= 4) {
926 lchan_nr = atoi(argv[3]);
927 if (lchan_nr >= TS_MAX_LCHAN) {
928 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
929 VTY_NEWLINE);
930 return CMD_WARNING;
931 }
932 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800933 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800934 return CMD_SUCCESS;
935 }
936 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200937 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800938 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200939 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800940 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
941 ts = &trx->ts[ts_nr];
942 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
943 lchan_nr++) {
944 lchan = &ts->lchan[lchan_nr];
945 if (lchan->type == GSM_LCHAN_NONE)
946 continue;
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800947 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800948 }
949 }
950 }
951 }
952
953 return CMD_SUCCESS;
954}
955
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800956
957DEFUN(show_lchan,
958 show_lchan_cmd,
959 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
960 SHOW_STR "Display information about a logical channel\n"
961 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
962 "Logical Channel Number\n")
963
964{
965 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
966}
967
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800968DEFUN(show_lchan_summary,
969 show_lchan_summary_cmd,
970 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
971 SHOW_STR "Display information about a logical channel\n"
972 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
973 "Logical Channel Number\n")
974{
975 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
976}
977
Harald Welte59b04682009-06-10 05:40:52 +0800978static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
979{
980 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
981}
982
983DEFUN(show_e1drv,
984 show_e1drv_cmd,
985 "show e1_driver",
986 SHOW_STR "Display information about available E1 drivers\n")
987{
988 struct e1inp_driver *drv;
989
990 llist_for_each_entry(drv, &e1inp_driver_list, list)
991 e1drv_dump_vty(vty, drv);
992
993 return CMD_SUCCESS;
994}
995
996static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
997{
998 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
999 line->num, line->name ? line->name : "",
1000 line->driver->name, VTY_NEWLINE);
1001}
1002
1003DEFUN(show_e1line,
1004 show_e1line_cmd,
1005 "show e1_line [line_nr]",
Harald Welte9e002452010-05-11 21:53:49 +02001006 SHOW_STR "Display information about a E1 line\n"
1007 "E1 Line Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001008{
1009 struct e1inp_line *line;
1010
1011 if (argc >= 1) {
1012 int num = atoi(argv[0]);
1013 llist_for_each_entry(line, &e1inp_line_list, list) {
1014 if (line->num == num) {
1015 e1line_dump_vty(vty, line);
1016 return CMD_SUCCESS;
1017 }
1018 }
1019 return CMD_WARNING;
1020 }
1021
1022 llist_for_each_entry(line, &e1inp_line_list, list)
1023 e1line_dump_vty(vty, line);
1024
1025 return CMD_SUCCESS;
1026}
1027
1028static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
1029{
Harald Welte62868882009-08-08 16:12:58 +02001030 if (ts->type == E1INP_TS_TYPE_NONE)
1031 return;
Harald Welte59b04682009-06-10 05:40:52 +08001032 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
1033 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
1034 VTY_NEWLINE);
1035}
1036
1037DEFUN(show_e1ts,
1038 show_e1ts_cmd,
1039 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +02001040 SHOW_STR "Display information about a E1 timeslot\n"
1041 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001042{
Harald Welte49c79562009-11-17 06:12:16 +01001043 struct e1inp_line *line = NULL;
Harald Welte59b04682009-06-10 05:40:52 +08001044 struct e1inp_ts *ts;
1045 int ts_nr;
1046
1047 if (argc == 0) {
1048 llist_for_each_entry(line, &e1inp_line_list, list) {
1049 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
1050 ts = &line->ts[ts_nr];
1051 e1ts_dump_vty(vty, ts);
1052 }
1053 }
1054 return CMD_SUCCESS;
1055 }
1056 if (argc >= 1) {
1057 int num = atoi(argv[0]);
1058 llist_for_each_entry(line, &e1inp_line_list, list) {
1059 if (line->num == num)
1060 break;
1061 }
1062 if (!line || line->num != num) {
1063 vty_out(vty, "E1 line %s is invalid%s",
1064 argv[0], VTY_NEWLINE);
1065 return CMD_WARNING;
1066 }
1067 }
1068 if (argc >= 2) {
1069 ts_nr = atoi(argv[1]);
1070 if (ts_nr > NUM_E1_TS) {
1071 vty_out(vty, "E1 timeslot %s is invalid%s",
1072 argv[1], VTY_NEWLINE);
1073 return CMD_WARNING;
1074 }
1075 ts = &line->ts[ts_nr];
1076 e1ts_dump_vty(vty, ts);
1077 return CMD_SUCCESS;
1078 } else {
1079 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
1080 ts = &line->ts[ts_nr];
1081 e1ts_dump_vty(vty, ts);
1082 }
1083 return CMD_SUCCESS;
1084 }
1085 return CMD_SUCCESS;
1086}
1087
1088static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1089{
1090 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1091 subscr_dump_vty(vty, pag->subscr);
1092}
1093
1094static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1095{
1096 struct gsm_paging_request *pag;
1097
1098 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1099 paging_dump_vty(vty, pag);
1100}
1101
1102DEFUN(show_paging,
1103 show_paging_cmd,
1104 "show paging [bts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +02001105 SHOW_STR "Display information about paging reuqests of a BTS\n"
1106 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001107{
Harald Welte40152872010-05-16 20:52:23 +02001108 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001109 struct gsm_bts *bts;
1110 int bts_nr;
1111
1112 if (argc >= 1) {
1113 /* use the BTS number that the user has specified */
1114 bts_nr = atoi(argv[0]);
1115 if (bts_nr >= net->num_bts) {
1116 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1117 VTY_NEWLINE);
1118 return CMD_WARNING;
1119 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001120 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001121 bts_paging_dump_vty(vty, bts);
1122
1123 return CMD_SUCCESS;
1124 }
1125 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001126 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001127 bts_paging_dump_vty(vty, bts);
1128 }
1129
1130 return CMD_SUCCESS;
1131}
1132
Harald Welte9e002452010-05-11 21:53:49 +02001133#define NETWORK_STR "Configure the GSM network\n"
1134
Harald Weltee87eb462009-08-07 13:29:14 +02001135DEFUN(cfg_net,
1136 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001137 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001138{
Harald Welte40152872010-05-16 20:52:23 +02001139 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001140 vty->node = GSMNET_NODE;
1141
1142 return CMD_SUCCESS;
1143}
1144
1145
1146DEFUN(cfg_net_ncc,
1147 cfg_net_ncc_cmd,
1148 "network country code <1-999>",
1149 "Set the GSM network country code")
1150{
Harald Welte40152872010-05-16 20:52:23 +02001151 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1152
Harald Weltee87eb462009-08-07 13:29:14 +02001153 gsmnet->country_code = atoi(argv[0]);
1154
1155 return CMD_SUCCESS;
1156}
1157
1158DEFUN(cfg_net_mnc,
1159 cfg_net_mnc_cmd,
1160 "mobile network code <1-999>",
1161 "Set the GSM mobile network code")
1162{
Harald Welte40152872010-05-16 20:52:23 +02001163 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1164
Harald Weltee87eb462009-08-07 13:29:14 +02001165 gsmnet->network_code = atoi(argv[0]);
1166
1167 return CMD_SUCCESS;
1168}
1169
1170DEFUN(cfg_net_name_short,
1171 cfg_net_name_short_cmd,
1172 "short name NAME",
1173 "Set the short GSM network name")
1174{
Harald Welte40152872010-05-16 20:52:23 +02001175 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1176
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001177 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001178 return CMD_SUCCESS;
1179}
1180
1181DEFUN(cfg_net_name_long,
1182 cfg_net_name_long_cmd,
1183 "long name NAME",
1184 "Set the long GSM network name")
1185{
Harald Welte40152872010-05-16 20:52:23 +02001186 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1187
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001188 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001189 return CMD_SUCCESS;
1190}
Harald Welte59b04682009-06-10 05:40:52 +08001191
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001192DEFUN(cfg_net_auth_policy,
1193 cfg_net_auth_policy_cmd,
1194 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001195 "Authentication (not cryptographic)\n"
1196 "Set the GSM network authentication policy\n"
1197 "Require the MS to be activated in HLR\n"
1198 "Accept all MS, whether in HLR or not\n"
1199 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001200{
1201 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001202 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001203
1204 gsmnet->auth_policy = policy;
1205
1206 return CMD_SUCCESS;
1207}
1208
Harald Welte59936d72009-11-18 20:33:19 +01001209DEFUN(cfg_net_reject_cause,
1210 cfg_net_reject_cause_cmd,
1211 "location updating reject cause <2-111>",
1212 "Set the reject cause of location updating reject\n")
1213{
Harald Welte40152872010-05-16 20:52:23 +02001214 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1215
Harald Welte59936d72009-11-18 20:33:19 +01001216 gsmnet->reject_cause = atoi(argv[0]);
1217
1218 return CMD_SUCCESS;
1219}
1220
Harald Weltecca253a2009-08-30 15:47:06 +09001221DEFUN(cfg_net_encryption,
1222 cfg_net_encryption_cmd,
1223 "encryption a5 (0|1|2)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001224 "Encryption options\n"
1225 "A5 encryption\n" "A5/0: No encryption\n"
1226 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001227{
Harald Welte40152872010-05-16 20:52:23 +02001228 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1229
Andreas.Eversberg53293292009-11-17 09:55:26 +01001230 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001231
1232 return CMD_SUCCESS;
1233}
1234
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001235DEFUN(cfg_net_neci,
1236 cfg_net_neci_cmd,
1237 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001238 "New Establish Cause Indication\n"
1239 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001240{
Harald Welte40152872010-05-16 20:52:23 +02001241 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1242
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001243 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001244 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001245 return CMD_SUCCESS;
1246}
1247
Harald Welte52af1952009-12-13 10:53:12 +01001248DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1249 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001250 "Radio Resource Location Protocol\n"
1251 "Set the Radio Resource Location Protocol Mode\n"
1252 "Don't send RRLP request\n"
1253 "Request MS-based location\n"
1254 "Request any location, prefer MS-based\n"
1255 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001256{
Harald Welte40152872010-05-16 20:52:23 +02001257 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1258
Harald Welte52af1952009-12-13 10:53:12 +01001259 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1260
1261 return CMD_SUCCESS;
1262}
1263
Harald Weltea310f3e2009-12-14 09:00:24 +01001264DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1265 "mm info (0|1)",
1266 "Whether to send MM INFO after LOC UPD ACCEPT")
1267{
Harald Welte40152872010-05-16 20:52:23 +02001268 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1269
Harald Weltea310f3e2009-12-14 09:00:24 +01001270 gsmnet->send_mm_info = atoi(argv[0]);
1271
1272 return CMD_SUCCESS;
1273}
1274
Harald Welte9e002452010-05-11 21:53:49 +02001275#define HANDOVER_STR "Handover Options\n"
1276
Harald Welte0af9c9f2009-12-19 21:41:52 +01001277DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1278 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001279 HANDOVER_STR
1280 "Don't perform in-call handover\n"
1281 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001282{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001283 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001284 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001285
1286 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001287 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1288 "is enabled by using the -P command line option%s",
1289 VTY_NEWLINE);
1290 return CMD_WARNING;
1291 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001292 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001293
1294 return CMD_SUCCESS;
1295}
1296
Harald Welte9e002452010-05-11 21:53:49 +02001297#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1298#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1299#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1300#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1301
Harald Weltea8062f12009-12-21 16:51:50 +01001302DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1303 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001304 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001305 "How many RxLev measurements are used for averaging")
1306{
Harald Welte40152872010-05-16 20:52:23 +02001307 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001308 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1309 return CMD_SUCCESS;
1310}
1311
1312DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1313 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001314 HO_WIN_RXQUAL_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001315 "How many RxQual measurements are used for averaging")
1316{
Harald Welte40152872010-05-16 20:52:23 +02001317 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001318 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1319 return CMD_SUCCESS;
1320}
1321
1322DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1323 "handover window rxlev neighbor averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001324 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001325 "How many RxQual measurements are used for averaging")
1326{
Harald Welte40152872010-05-16 20:52:23 +02001327 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001328 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1329 return CMD_SUCCESS;
1330}
1331
1332DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1333 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001334 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001335 "How often to check if we have a better cell (SACCH frames)")
1336{
Harald Welte40152872010-05-16 20:52:23 +02001337 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001338 gsmnet->handover.pwr_interval = atoi(argv[0]);
1339 return CMD_SUCCESS;
1340}
1341
1342DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1343 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001344 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001345 "How many dB does a neighbor to be stronger to become a HO candidate")
1346{
Harald Welte40152872010-05-16 20:52:23 +02001347 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001348 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1349 return CMD_SUCCESS;
1350}
1351
1352DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1353 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001354 HANDOVER_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001355 "How big is the maximum timing advance before HO is forced")
1356{
Harald Welte40152872010-05-16 20:52:23 +02001357 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001358 gsmnet->handover.max_distance = atoi(argv[0]);
1359 return CMD_SUCCESS;
1360}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001361
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001362DEFUN(cfg_net_pag_any_tch,
1363 cfg_net_pag_any_tch_cmd,
1364 "paging any use tch (0|1)",
1365 "Assign a TCH when receiving a Paging Any request")
1366{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001367 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001368 gsmnet->pag_any_tch = atoi(argv[0]);
1369 gsm_net_update_ctype(gsmnet);
1370 return CMD_SUCCESS;
1371}
1372
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001373#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001374 DEFUN(cfg_net_T##number, \
1375 cfg_net_T##number##_cmd, \
1376 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001377 "Configure GSM Timers\n" \
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001378 doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001379{ \
Harald Welte40152872010-05-16 20:52:23 +02001380 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001381 int value = atoi(argv[0]); \
1382 \
1383 if (value < 0 || value > 65535) { \
1384 vty_out(vty, "Timer value %s out of range.%s", \
1385 argv[0], VTY_NEWLINE); \
1386 return CMD_WARNING; \
1387 } \
1388 \
1389 gsmnet->T##number = value; \
1390 return CMD_SUCCESS; \
1391}
1392
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001393DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1394DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1395DECLARE_TIMER(3105, "Currently not used.")
1396DECLARE_TIMER(3107, "Currently not used.")
1397DECLARE_TIMER(3109, "Currently not used.")
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001398DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.")
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001399DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1400DECLARE_TIMER(3115, "Currently not used.")
1401DECLARE_TIMER(3117, "Currently not used.")
1402DECLARE_TIMER(3119, "Currently not used.")
Harald Weltea00fdd72010-12-23 14:39:29 +01001403DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT")
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001404DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001405
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001406DEFUN(cfg_net_dtx,
1407 cfg_net_dtx_cmd,
1408 "dtx-used (0|1)",
1409 "Enable the usage of DTX.\n"
1410 "DTX is enabled/disabled")
1411{
1412 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1413 gsmnet->dtx_enabled = atoi(argv[0]);
1414 return CMD_SUCCESS;
1415}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001416
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001417DEFUN(cfg_net_subscr_keep,
1418 cfg_net_subscr_keep_cmd,
1419 "subscriber-keep-in-ram (0|1)",
1420 "Keep unused subscribers in RAM.\n"
1421 "Delete unused subscribers\n" "Keep unused subscribers\n")
1422{
1423 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1424 gsmnet->keep_subscr = atoi(argv[0]);
1425 return CMD_SUCCESS;
1426}
1427
Harald Welte59b04682009-06-10 05:40:52 +08001428/* per-BTS configuration */
1429DEFUN(cfg_bts,
1430 cfg_bts_cmd,
1431 "bts BTS_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001432 "Select a BTS to configure\n"
1433 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001434{
Harald Welte40152872010-05-16 20:52:23 +02001435 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001436 int bts_nr = atoi(argv[0]);
1437 struct gsm_bts *bts;
1438
Harald Weltee712a5f2009-06-21 16:17:15 +02001439 if (bts_nr > gsmnet->num_bts) {
1440 vty_out(vty, "%% The next unused BTS number is %u%s",
1441 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001442 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001443 } else if (bts_nr == gsmnet->num_bts) {
1444 /* allocate a new one */
1445 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1446 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001447 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001448 bts = gsm_bts_num(gsmnet, bts_nr);
1449
Daniel Willmann580085f2010-01-11 13:43:07 +01001450 if (!bts) {
1451 vty_out(vty, "%% Unable to allocate BTS %u%s",
1452 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001453 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001454 }
Harald Welte59b04682009-06-10 05:40:52 +08001455
1456 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001457 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001458 vty->node = BTS_NODE;
1459
1460 return CMD_SUCCESS;
1461}
1462
1463DEFUN(cfg_bts_type,
1464 cfg_bts_type_cmd,
1465 "type TYPE",
1466 "Set the BTS type\n")
1467{
1468 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001469 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001470
Harald Welte59698fb2010-01-10 18:01:52 +01001471 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1472 if (rc < 0)
1473 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001474
Harald Welte59b04682009-06-10 05:40:52 +08001475 return CMD_SUCCESS;
1476}
1477
Harald Welte91afe4c2009-06-20 18:15:19 +02001478DEFUN(cfg_bts_band,
1479 cfg_bts_band_cmd,
1480 "band BAND",
1481 "Set the frequency band of this BTS\n")
1482{
1483 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001484 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001485
1486 if (band < 0) {
1487 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1488 band, VTY_NEWLINE);
1489 return CMD_WARNING;
1490 }
1491
1492 bts->band = band;
1493
1494 return CMD_SUCCESS;
1495}
1496
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001497DEFUN(cfg_bts_ci,
1498 cfg_bts_ci_cmd,
1499 "cell_identity <0-65535>",
1500 "Set the Cell identity of this BTS\n")
1501{
1502 struct gsm_bts *bts = vty->index;
1503 int ci = atoi(argv[0]);
1504
1505 if (ci < 0 || ci > 0xffff) {
1506 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1507 ci, VTY_NEWLINE);
1508 return CMD_WARNING;
1509 }
1510 bts->cell_identity = ci;
1511
1512 return CMD_SUCCESS;
1513}
1514
Harald Welte59b04682009-06-10 05:40:52 +08001515DEFUN(cfg_bts_lac,
1516 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001517 "location_area_code <0-65535>",
Harald Welte59b04682009-06-10 05:40:52 +08001518 "Set the Location Area Code (LAC) of this BTS\n")
1519{
1520 struct gsm_bts *bts = vty->index;
1521 int lac = atoi(argv[0]);
1522
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001523 if (lac < 0 || lac > 0xffff) {
1524 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001525 lac, VTY_NEWLINE);
1526 return CMD_WARNING;
1527 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001528
1529 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1530 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1531 lac, VTY_NEWLINE);
1532 return CMD_WARNING;
1533 }
1534
Harald Welte59b04682009-06-10 05:40:52 +08001535 bts->location_area_code = lac;
1536
1537 return CMD_SUCCESS;
1538}
1539
Harald Weltea54a2bb2009-12-01 18:04:30 +05301540
Harald Welte59b04682009-06-10 05:40:52 +08001541DEFUN(cfg_bts_tsc,
1542 cfg_bts_tsc_cmd,
1543 "training_sequence_code <0-255>",
1544 "Set the Training Sequence Code (TSC) of this BTS\n")
1545{
1546 struct gsm_bts *bts = vty->index;
1547 int tsc = atoi(argv[0]);
1548
1549 if (tsc < 0 || tsc > 0xff) {
1550 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1551 tsc, VTY_NEWLINE);
1552 return CMD_WARNING;
1553 }
1554 bts->tsc = tsc;
1555
1556 return CMD_SUCCESS;
1557}
1558
1559DEFUN(cfg_bts_bsic,
1560 cfg_bts_bsic_cmd,
1561 "base_station_id_code <0-63>",
1562 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1563{
1564 struct gsm_bts *bts = vty->index;
1565 int bsic = atoi(argv[0]);
1566
1567 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001568 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001569 bsic, VTY_NEWLINE);
1570 return CMD_WARNING;
1571 }
1572 bts->bsic = bsic;
1573
1574 return CMD_SUCCESS;
1575}
1576
1577
1578DEFUN(cfg_bts_unit_id,
1579 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001580 "ip.access unit_id <0-65534> <0-255>",
1581 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001582{
1583 struct gsm_bts *bts = vty->index;
1584 int site_id = atoi(argv[0]);
1585 int bts_id = atoi(argv[1]);
1586
Harald Weltef515aa02009-08-07 13:27:09 +02001587 if (!is_ipaccess_bts(bts)) {
1588 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1589 return CMD_WARNING;
1590 }
1591
Harald Welte59b04682009-06-10 05:40:52 +08001592 bts->ip_access.site_id = site_id;
1593 bts->ip_access.bts_id = bts_id;
1594
1595 return CMD_SUCCESS;
1596}
1597
Harald Welte08011e22011-03-04 13:41:31 +01001598DEFUN(cfg_bts_serno,
1599 cfg_bts_serno_cmd,
1600 "hsl serial-number STRING",
1601 "Set the HSL Serial Number of this BTS\n")
1602{
1603 struct gsm_bts *bts = vty->index;
1604
1605 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1606 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1607 return CMD_WARNING;
1608 }
1609
1610 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1611
1612 return CMD_SUCCESS;
1613}
1614
Harald Welte9e002452010-05-11 21:53:49 +02001615#define OML_STR "Organization & Maintenance Link\n"
1616#define IPA_STR "ip.access Specific Options\n"
1617
Harald Welte25572872009-10-20 00:22:00 +02001618DEFUN(cfg_bts_stream_id,
1619 cfg_bts_stream_id_cmd,
1620 "oml ip.access stream_id <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001621 OML_STR IPA_STR
Harald Welte25572872009-10-20 00:22:00 +02001622 "Set the ip.access Stream ID of the OML link of this BTS\n")
1623{
1624 struct gsm_bts *bts = vty->index;
1625 int stream_id = atoi(argv[0]);
1626
1627 if (!is_ipaccess_bts(bts)) {
1628 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1629 return CMD_WARNING;
1630 }
1631
1632 bts->oml_tei = stream_id;
1633
1634 return CMD_SUCCESS;
1635}
1636
Harald Welte9e002452010-05-11 21:53:49 +02001637#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte25572872009-10-20 00:22:00 +02001638
Harald Welte62868882009-08-08 16:12:58 +02001639DEFUN(cfg_bts_oml_e1,
1640 cfg_bts_oml_e1_cmd,
1641 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte9e002452010-05-11 21:53:49 +02001642 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001643 "E1 interface to be used for OML\n")
1644{
1645 struct gsm_bts *bts = vty->index;
1646
1647 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1648
1649 return CMD_SUCCESS;
1650}
1651
1652
1653DEFUN(cfg_bts_oml_e1_tei,
1654 cfg_bts_oml_e1_tei_cmd,
1655 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001656 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001657 "Set the TEI to be used for OML")
1658{
1659 struct gsm_bts *bts = vty->index;
1660
1661 bts->oml_tei = atoi(argv[0]);
1662
1663 return CMD_SUCCESS;
1664}
1665
Harald Welte3e774612009-08-10 13:48:16 +02001666DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1667 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001668 "Channnel Allocator\n" "Channel Allocator\n"
1669 "Allocate Timeslots and Transceivers in ascending order\n"
1670 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001671{
1672 struct gsm_bts *bts = vty->index;
1673
1674 if (!strcmp(argv[0], "ascending"))
1675 bts->chan_alloc_reverse = 0;
1676 else
1677 bts->chan_alloc_reverse = 1;
1678
1679 return CMD_SUCCESS;
1680}
1681
Harald Welte9e002452010-05-11 21:53:49 +02001682#define RACH_STR "Random Access Control Channel\n"
1683
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001684DEFUN(cfg_bts_rach_tx_integer,
1685 cfg_bts_rach_tx_integer_cmd,
1686 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001687 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001688 "Set the raw tx integer value in RACH Control parameters IE")
1689{
1690 struct gsm_bts *bts = vty->index;
1691 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1692 return CMD_SUCCESS;
1693}
1694
1695DEFUN(cfg_bts_rach_max_trans,
1696 cfg_bts_rach_max_trans_cmd,
1697 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001698 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001699 "Set the maximum number of RACH burst transmissions")
1700{
1701 struct gsm_bts *bts = vty->index;
1702 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1703 return CMD_SUCCESS;
1704}
1705
Harald Welte9e002452010-05-11 21:53:49 +02001706#define NM_STR "Network Management\n"
1707
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001708DEFUN(cfg_bts_rach_nm_b_thresh,
1709 cfg_bts_rach_nm_b_thresh_cmd,
1710 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001711 RACH_STR NM_STR
1712 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001713{
1714 struct gsm_bts *bts = vty->index;
1715 bts->rach_b_thresh = atoi(argv[0]);
1716 return CMD_SUCCESS;
1717}
1718
1719DEFUN(cfg_bts_rach_nm_ldavg,
1720 cfg_bts_rach_nm_ldavg_cmd,
1721 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001722 RACH_STR NM_STR
1723 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001724{
1725 struct gsm_bts *bts = vty->index;
1726 bts->rach_ldavg_slots = atoi(argv[0]);
1727 return CMD_SUCCESS;
1728}
1729
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001730DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1731 "cell barred (0|1)",
1732 "Should this cell be barred from access?")
1733{
1734 struct gsm_bts *bts = vty->index;
1735
Harald Welte8c973ba2009-12-21 23:08:18 +01001736 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001737
1738 return CMD_SUCCESS;
1739}
1740
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001741DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1742 "rach emergency call allowed (0|1)",
1743 "Should this cell allow emergency calls?")
1744{
1745 struct gsm_bts *bts = vty->index;
1746
1747 if (atoi(argv[0]) == 0)
1748 bts->si_common.rach_control.t2 |= 0x4;
1749 else
1750 bts->si_common.rach_control.t2 &= ~0x4;
1751
1752 return CMD_SUCCESS;
1753}
1754
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001755DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1756 "ms max power <0-40>",
1757 "Maximum transmit power of the MS")
1758{
1759 struct gsm_bts *bts = vty->index;
1760
1761 bts->ms_max_power = atoi(argv[0]);
1762
1763 return CMD_SUCCESS;
1764}
1765
Harald Welteb761bf82009-12-12 18:17:25 +01001766DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1767 "cell reselection hysteresis <0-14>",
1768 "Cell Re-Selection Hysteresis in dB")
1769{
1770 struct gsm_bts *bts = vty->index;
1771
1772 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1773
1774 return CMD_SUCCESS;
1775}
1776
1777DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1778 "rxlev access min <0-63>",
1779 "Minimum RxLev needed for cell access (better than -110dBm)")
1780{
1781 struct gsm_bts *bts = vty->index;
1782
1783 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1784
1785 return CMD_SUCCESS;
1786}
1787
Sylvain Munaut00d71462010-11-28 18:17:28 +01001788DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1789 "cell bar qualify (0|1)",
1790 "Cell Bar Qualify")
1791{
1792 struct gsm_bts *bts = vty->index;
1793
1794 bts->si_common.cell_ro_sel_par.present = 1;
1795 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1796
1797 return CMD_SUCCESS;
1798}
1799
1800DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1801 "cell reselection offset <0-126>",
1802 "Cell Re-Selection Offset in dB")
1803{
1804 struct gsm_bts *bts = vty->index;
1805
1806 bts->si_common.cell_ro_sel_par.present = 1;
1807 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1808
1809 return CMD_SUCCESS;
1810}
1811
1812DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1813 "temporary offset <0-60>",
1814 "Cell selection temporary negative offset in dB")
1815{
1816 struct gsm_bts *bts = vty->index;
1817
1818 bts->si_common.cell_ro_sel_par.present = 1;
1819 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1820
1821 return CMD_SUCCESS;
1822}
1823
1824DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1825 "temporary offset infinite",
1826 "Sets cell selection temporary negative offset to infinity")
1827{
1828 struct gsm_bts *bts = vty->index;
1829
1830 bts->si_common.cell_ro_sel_par.present = 1;
1831 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1832
1833 return CMD_SUCCESS;
1834}
1835
1836DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1837 "penalty time <20-620>",
1838 "Cell selection penalty time in seconds (by 20s increments)")
1839{
1840 struct gsm_bts *bts = vty->index;
1841
1842 bts->si_common.cell_ro_sel_par.present = 1;
1843 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
1844
1845 return CMD_SUCCESS;
1846}
1847
1848DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
1849 "penalty time reserved",
1850 "Set cell selection penalty time to reserved value 31\n"
1851 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
1852 "and TEMPORARY_OFFSET is ignored)")
1853{
1854 struct gsm_bts *bts = vty->index;
1855
1856 bts->si_common.cell_ro_sel_par.present = 1;
1857 bts->si_common.cell_ro_sel_par.penalty_time = 31;
1858
1859 return CMD_SUCCESS;
1860}
1861
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001862DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1863 "periodic location update <0-1530>",
1864 "Periodic Location Updating Interval in Minutes")
1865{
1866 struct gsm_bts *bts = vty->index;
1867
Dieter Spaarb0f746d2010-10-05 21:10:55 +02001868 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001869
1870 return CMD_SUCCESS;
1871}
1872
Harald Welte9e002452010-05-11 21:53:49 +02001873#define GPRS_TEXT "GPRS Packet Network\n"
1874
Harald Welte410575a2010-03-14 23:30:30 +08001875DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02001876 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001877 GPRS_TEXT
1878 "GPRS Cell Settings\n"
Harald Welte3055e332010-03-14 15:37:43 +08001879 "GPRS BSSGP VC Identifier")
1880{
1881 struct gsm_bts *bts = vty->index;
1882
Harald Weltecb20b7a2010-04-18 15:51:20 +02001883 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001884 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1885 return CMD_WARNING;
1886 }
1887
Harald Welte3055e332010-03-14 15:37:43 +08001888 bts->gprs.cell.bvci = atoi(argv[0]);
1889
1890 return CMD_SUCCESS;
1891}
1892
Harald Welte4a048c52010-03-22 11:48:36 +08001893DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1894 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001895 GPRS_TEXT
Harald Welte4a048c52010-03-22 11:48:36 +08001896 "GPRS NS Entity Identifier")
1897{
1898 struct gsm_bts *bts = vty->index;
1899
Harald Weltecb20b7a2010-04-18 15:51:20 +02001900 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08001901 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1902 return CMD_WARNING;
1903 }
1904
1905 bts->gprs.nse.nsei = atoi(argv[0]);
1906
1907 return CMD_SUCCESS;
1908}
1909
Harald Welte9e002452010-05-11 21:53:49 +02001910#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1911 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08001912
Harald Welte3055e332010-03-14 15:37:43 +08001913DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1914 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001915 GPRS_TEXT NSVC_TEXT
1916 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08001917 "GPRS NS VC Identifier")
1918{
1919 struct gsm_bts *bts = vty->index;
1920 int idx = atoi(argv[0]);
1921
Harald Weltecb20b7a2010-04-18 15:51:20 +02001922 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001923 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1924 return CMD_WARNING;
1925 }
1926
Harald Welte3055e332010-03-14 15:37:43 +08001927 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1928
1929 return CMD_SUCCESS;
1930}
1931
Harald Welte410575a2010-03-14 23:30:30 +08001932DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1933 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001934 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001935 "GPRS NS Local UDP Port")
1936{
1937 struct gsm_bts *bts = vty->index;
1938 int idx = atoi(argv[0]);
1939
Harald Weltecb20b7a2010-04-18 15:51:20 +02001940 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001941 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1942 return CMD_WARNING;
1943 }
1944
Harald Welte410575a2010-03-14 23:30:30 +08001945 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1946
1947 return CMD_SUCCESS;
1948}
1949
1950DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1951 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001952 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001953 "GPRS NS Remote UDP Port")
1954{
1955 struct gsm_bts *bts = vty->index;
1956 int idx = atoi(argv[0]);
1957
Harald Weltecb20b7a2010-04-18 15:51:20 +02001958 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001959 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1960 return CMD_WARNING;
1961 }
1962
Harald Welte410575a2010-03-14 23:30:30 +08001963 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1964
1965 return CMD_SUCCESS;
1966}
1967
1968DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1969 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02001970 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001971 "GPRS NS Remote IP Address")
1972{
1973 struct gsm_bts *bts = vty->index;
1974 int idx = atoi(argv[0]);
1975 struct in_addr ia;
1976
Harald Weltecb20b7a2010-04-18 15:51:20 +02001977 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001978 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1979 return CMD_WARNING;
1980 }
1981
Harald Welte410575a2010-03-14 23:30:30 +08001982 inet_aton(argv[1], &ia);
1983 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1984
1985 return CMD_SUCCESS;
1986}
1987
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08001988DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
1989 "paging free FREE_NR",
1990 "Only page when having a certain amount of free slots. -1 to disable")
1991{
1992 struct gsm_bts *bts = vty->index;
1993
1994 bts->paging.free_chans_need = atoi(argv[0]);
1995 return CMD_SUCCESS;
1996}
1997
Harald Weltea9251762010-05-11 23:50:21 +02001998DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1999 "gprs ns timer " NS_TIMERS " <0-255>",
2000 GPRS_TEXT "Network Service\n"
2001 "Network Service Timer\n"
2002 NS_TIMERS_HELP "Timer Value\n")
2003{
2004 struct gsm_bts *bts = vty->index;
2005 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2006 int val = atoi(argv[1]);
2007
2008 if (bts->gprs.mode == BTS_GPRS_NONE) {
2009 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2010 return CMD_WARNING;
2011 }
2012
2013 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2014 return CMD_WARNING;
2015
2016 bts->gprs.nse.timer[idx] = val;
2017
2018 return CMD_SUCCESS;
2019}
2020
2021#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte18ce31c2010-05-14 20:05:17 +02002022#define BSSGP_TIMERS_HELP \
2023 "Tbvc-block timeout\n" \
2024 "Tbvc-block retries\n" \
2025 "Tbvc-unblock retries\n" \
2026 "Tbvcc-reset timeout\n" \
2027 "Tbvc-reset retries\n" \
2028 "Tbvc-suspend timeout\n" \
2029 "Tbvc-suspend retries\n" \
2030 "Tbvc-resume timeout\n" \
2031 "Tbvc-resume retries\n" \
2032 "Tbvc-capa-update timeout\n" \
2033 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002034
2035DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2036 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2037 GPRS_TEXT "Cell / BSSGP\n"
2038 "Cell/BSSGP Timer\n"
2039 BSSGP_TIMERS_HELP "Timer Value\n")
2040{
2041 struct gsm_bts *bts = vty->index;
2042 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2043 int val = atoi(argv[1]);
2044
2045 if (bts->gprs.mode == BTS_GPRS_NONE) {
2046 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2047 return CMD_WARNING;
2048 }
2049
2050 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2051 return CMD_WARNING;
2052
2053 bts->gprs.cell.timer[idx] = val;
2054
2055 return CMD_SUCCESS;
2056}
2057
Harald Welte3055e332010-03-14 15:37:43 +08002058DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2059 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002060 GPRS_TEXT
Harald Welte3055e332010-03-14 15:37:43 +08002061 "GPRS Routing Area Code")
2062{
2063 struct gsm_bts *bts = vty->index;
2064
Harald Weltecb20b7a2010-04-18 15:51:20 +02002065 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002066 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2067 return CMD_WARNING;
2068 }
2069
Harald Welte3055e332010-03-14 15:37:43 +08002070 bts->gprs.rac = atoi(argv[0]);
2071
2072 return CMD_SUCCESS;
2073}
2074
Harald Weltecb20b7a2010-04-18 15:51:20 +02002075DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2076 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002077 GPRS_TEXT
2078 "GPRS Mode for this BTS\n"
2079 "GPRS Disabled on this BTS\n"
2080 "GPRS Enabled on this BTS\n"
2081 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002082{
2083 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002084 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002085
Harald Welte20e275a2010-06-14 22:44:42 +02002086 if (mode != BTS_GPRS_NONE &&
2087 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2088 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2089 VTY_NEWLINE);
2090 return CMD_WARNING;
2091 }
2092 if (mode == BTS_GPRS_EGPRS &&
2093 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2094 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2095 VTY_NEWLINE);
2096 return CMD_WARNING;
2097 }
2098
2099 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002100
2101 return CMD_SUCCESS;
2102}
2103
Harald Welted8acf142010-07-30 11:50:09 +02002104#define SI_TEXT "System Information Messages\n"
2105#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)"
2106#define SI_TYPE_HELP "System Information Type 1\n" \
2107 "System Information Type 2\n" \
2108 "System Information Type 3\n" \
2109 "System Information Type 4\n" \
2110 "System Information Type 5\n" \
2111 "System Information Type 6\n" \
2112 "System Information Type 7\n" \
2113 "System Information Type 8\n" \
2114 "System Information Type 9\n" \
2115 "System Information Type 10\n" \
2116 "System Information Type 13\n" \
2117 "System Information Type 16\n" \
2118 "System Information Type 17\n" \
2119 "System Information Type 18\n" \
2120 "System Information Type 19\n" \
2121 "System Information Type 20\n" \
2122 "System Information Type 2bis\n" \
2123 "System Information Type 2ter\n" \
2124 "System Information Type 2quater\n" \
2125 "System Information Type 5bis\n" \
2126 "System Information Type 5ter\n"
2127
2128DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2129 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2130 SI_TEXT SI_TYPE_HELP
2131 "System Information Mode\n"
2132 "Static user-specified\n"
2133 "Dynamic, BSC-computed\n")
2134{
2135 struct gsm_bts *bts = vty->index;
2136 int type;
2137
2138 type = get_string_value(osmo_sitype_strs, argv[0]);
2139 if (type < 0) {
2140 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2141 return CMD_WARNING;
2142 }
2143
2144 if (!strcmp(argv[1], "static"))
2145 bts->si_mode_static |= (1 << type);
2146 else
2147 bts->si_mode_static &= ~(1 << type);
2148
2149 return CMD_SUCCESS;
2150}
2151
2152DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2153 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2154 SI_TEXT SI_TYPE_HELP
2155 "Static System Information filling\n"
2156 "Static user-specified SI content in HEX notation\n")
2157{
2158 struct gsm_bts *bts = vty->index;
2159 int rc, type;
2160
2161 type = get_string_value(osmo_sitype_strs, argv[0]);
2162 if (type < 0) {
2163 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2164 return CMD_WARNING;
2165 }
2166
2167 if (!(bts->si_mode_static & (1 << type))) {
2168 vty_out(vty, "SI Type %s is not configured in static mode%s",
2169 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2170 return CMD_WARNING;
2171 }
2172
Harald Welte9f09ac32010-07-30 11:53:18 +02002173 /* Fill buffer with padding pattern */
2174 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2175
2176 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002177 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002178 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2179 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2180 return CMD_WARNING;
2181 }
2182
2183 /* Mark this SI as present */
2184 bts->si_valid |= (1 << type);
2185
2186 return CMD_SUCCESS;
2187}
2188
Harald Welteca46eff2011-01-11 23:44:56 +01002189DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002190 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002191 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002192 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2193 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002194{
2195 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002196 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002197
Harald Weltef989b782011-02-15 11:43:27 +01002198 switch (mode) {
2199 case NL_MODE_MANUAL_SI5SEP:
2200 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002201 /* make sure we clear the current list when switching to
2202 * manual mode */
2203 if (bts->neigh_list_manual_mode == 0)
2204 memset(&bts->si_common.data.neigh_list, 0,
2205 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002206 break;
2207 default:
2208 break;
2209 }
2210
2211 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002212
2213 return CMD_SUCCESS;
2214}
2215
2216DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
2217 "neighbor-list (add|del) arfcn <0-1024>",
2218 "Neighbor List\n" "Add to manual neighbor list\n"
2219 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2220 "ARFCN of neighbor\n")
2221{
2222 struct gsm_bts *bts = vty->index;
2223 struct bitvec *bv = &bts->si_common.neigh_list;
2224 uint16_t arfcn = atoi(argv[1]);
2225
2226 if (!bts->neigh_list_manual_mode) {
2227 vty_out(vty, "%% Cannot configure neighbor list in "
2228 "automatic mode%s", VTY_NEWLINE);
2229 return CMD_WARNING;
2230 }
2231
2232 if (!strcmp(argv[0], "add"))
2233 bitvec_set_bit_pos(bv, arfcn, 1);
2234 else
2235 bitvec_set_bit_pos(bv, arfcn, 0);
2236
2237 return CMD_SUCCESS;
2238}
2239
Harald Weltef989b782011-02-15 11:43:27 +01002240DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
2241 "si5 neighbor-list (add|del) arfcn <0-1024>",
2242 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2243 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2244 "ARFCN of neighbor\n")
2245{
2246 struct gsm_bts *bts = vty->index;
2247 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2248 uint16_t arfcn = atoi(argv[1]);
2249
2250 if (!bts->neigh_list_manual_mode) {
2251 vty_out(vty, "%% Cannot configure neighbor list in "
2252 "automatic mode%s", VTY_NEWLINE);
2253 return CMD_WARNING;
2254 }
2255
2256 if (!strcmp(argv[0], "add"))
2257 bitvec_set_bit_pos(bv, arfcn, 1);
2258 else
2259 bitvec_set_bit_pos(bv, arfcn, 0);
2260
2261 return CMD_SUCCESS;
2262}
Harald Welted8acf142010-07-30 11:50:09 +02002263
Harald Welte9e002452010-05-11 21:53:49 +02002264#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002265
Harald Welte59b04682009-06-10 05:40:52 +08002266/* per TRX configuration */
2267DEFUN(cfg_trx,
2268 cfg_trx_cmd,
2269 "trx TRX_NR",
Harald Welte9e002452010-05-11 21:53:49 +02002270 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002271 "Select a TRX to configure")
2272{
2273 int trx_nr = atoi(argv[0]);
2274 struct gsm_bts *bts = vty->index;
2275 struct gsm_bts_trx *trx;
2276
Harald Weltee712a5f2009-06-21 16:17:15 +02002277 if (trx_nr > bts->num_trx) {
2278 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2279 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002280 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002281 } else if (trx_nr == bts->num_trx) {
2282 /* we need to allocate a new one */
2283 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002284 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002285 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002286
Harald Weltee712a5f2009-06-21 16:17:15 +02002287 if (!trx)
2288 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002289
2290 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002291 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002292 vty->node = TRX_NODE;
2293
2294 return CMD_SUCCESS;
2295}
2296
2297DEFUN(cfg_trx_arfcn,
2298 cfg_trx_arfcn_cmd,
Harald Welte00044592010-05-14 19:00:52 +02002299 "arfcn <0-1024>",
Harald Welte59b04682009-06-10 05:40:52 +08002300 "Set the ARFCN for this TRX\n")
2301{
2302 int arfcn = atoi(argv[0]);
2303 struct gsm_bts_trx *trx = vty->index;
2304
2305 /* FIXME: check if this ARFCN is supported by this TRX */
2306
2307 trx->arfcn = arfcn;
2308
2309 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2310 /* FIXME: use OML layer to update the ARFCN */
2311 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2312
2313 return CMD_SUCCESS;
2314}
2315
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002316DEFUN(cfg_trx_nominal_power,
2317 cfg_trx_nominal_power_cmd,
2318 "nominal power <0-100>",
2319 "Nominal TRX RF Power in dB\n")
2320{
2321 struct gsm_bts_trx *trx = vty->index;
2322
2323 trx->nominal_power = atoi(argv[0]);
2324
2325 return CMD_SUCCESS;
2326}
2327
Harald Welte91afe4c2009-06-20 18:15:19 +02002328DEFUN(cfg_trx_max_power_red,
2329 cfg_trx_max_power_red_cmd,
2330 "max_power_red <0-100>",
2331 "Reduction of maximum BS RF Power in dB\n")
2332{
2333 int maxpwr_r = atoi(argv[0]);
2334 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002335 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002336
2337 /* FIXME: check if our BTS type supports more than 12 */
2338 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2339 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2340 maxpwr_r, VTY_NEWLINE);
2341 return CMD_WARNING;
2342 }
2343 if (maxpwr_r & 1) {
2344 vty_out(vty, "%% Power %d dB is not an even value%s",
2345 maxpwr_r, VTY_NEWLINE);
2346 return CMD_WARNING;
2347 }
2348
2349 trx->max_power_red = maxpwr_r;
2350
2351 /* FIXME: make sure we update this using OML */
2352
2353 return CMD_SUCCESS;
2354}
2355
Harald Welte62868882009-08-08 16:12:58 +02002356DEFUN(cfg_trx_rsl_e1,
2357 cfg_trx_rsl_e1_cmd,
2358 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
2359 "E1 interface to be used for RSL\n")
2360{
2361 struct gsm_bts_trx *trx = vty->index;
2362
2363 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2364
2365 return CMD_SUCCESS;
2366}
2367
2368DEFUN(cfg_trx_rsl_e1_tei,
2369 cfg_trx_rsl_e1_tei_cmd,
2370 "rsl e1 tei <0-63>",
2371 "Set the TEI to be used for RSL")
2372{
2373 struct gsm_bts_trx *trx = vty->index;
2374
2375 trx->rsl_tei = atoi(argv[0]);
2376
2377 return CMD_SUCCESS;
2378}
2379
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002380DEFUN(cfg_trx_rf_locked,
2381 cfg_trx_rf_locked_cmd,
2382 "rf_locked (0|1)",
2383 "Turn off RF of the TRX.\n")
2384{
2385 int locked = atoi(argv[0]);
2386 struct gsm_bts_trx *trx = vty->index;
2387
2388 gsm_trx_lock_rf(trx, locked);
2389 return CMD_SUCCESS;
2390}
Harald Welte62868882009-08-08 16:12:58 +02002391
Harald Welte59b04682009-06-10 05:40:52 +08002392/* per TS configuration */
2393DEFUN(cfg_ts,
2394 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002395 "timeslot <0-7>",
Harald Welte59b04682009-06-10 05:40:52 +08002396 "Select a Timeslot to configure")
2397{
2398 int ts_nr = atoi(argv[0]);
2399 struct gsm_bts_trx *trx = vty->index;
2400 struct gsm_bts_trx_ts *ts;
2401
2402 if (ts_nr >= TRX_NR_TS) {
2403 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2404 TRX_NR_TS, VTY_NEWLINE);
2405 return CMD_WARNING;
2406 }
2407
2408 ts = &trx->ts[ts_nr];
2409
2410 vty->index = ts;
2411 vty->node = TS_NODE;
2412
2413 return CMD_SUCCESS;
2414}
2415
Harald Welte3ffe1b32009-08-07 00:25:23 +02002416DEFUN(cfg_ts_pchan,
2417 cfg_ts_pchan_cmd,
2418 "phys_chan_config PCHAN",
2419 "Physical Channel configuration (TCH/SDCCH/...)")
2420{
2421 struct gsm_bts_trx_ts *ts = vty->index;
2422 int pchanc;
2423
2424 pchanc = gsm_pchan_parse(argv[0]);
2425 if (pchanc < 0)
2426 return CMD_WARNING;
2427
2428 ts->pchan = pchanc;
2429
2430 return CMD_SUCCESS;
2431}
2432
Harald Welte85771a42011-05-30 12:09:13 +02002433DEFUN(cfg_ts_tsc,
2434 cfg_ts_tsc_cmd,
2435 "training_sequence_code <0-7>",
2436 "Training Sequence Code")
2437{
2438 struct gsm_bts_trx_ts *ts = vty->index;
2439
2440 ts->tsc = atoi(argv[0]);
2441
2442 return CMD_SUCCESS;
2443}
2444
Harald Weltea42a93f2010-06-14 22:26:10 +02002445#define HOPPING_STR "Configure frequency hopping\n"
2446
2447DEFUN(cfg_ts_hopping,
2448 cfg_ts_hopping_cmd,
2449 "hopping enabled (0|1)",
2450 HOPPING_STR "Enable or disable frequency hopping\n"
2451 "Disable frequency hopping\n" "Enable frequency hopping\n")
2452{
2453 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002454 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002455
Harald Welte059c1ef2010-06-14 22:47:37 +02002456 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2457 vty_out(vty, "BTS model does not support hopping%s",
2458 VTY_NEWLINE);
2459 return CMD_WARNING;
2460 }
2461
2462 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002463
2464 return CMD_SUCCESS;
2465}
2466
Harald Welte67104d12009-09-12 13:05:33 +02002467DEFUN(cfg_ts_hsn,
2468 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002469 "hopping sequence-number <0-63>",
2470 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002471 "Which hopping sequence to use for this channel")
2472{
2473 struct gsm_bts_trx_ts *ts = vty->index;
2474
2475 ts->hopping.hsn = atoi(argv[0]);
2476
2477 return CMD_SUCCESS;
2478}
2479
2480DEFUN(cfg_ts_maio,
2481 cfg_ts_maio_cmd,
2482 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002483 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002484 "Which hopping MAIO to use for this channel")
2485{
2486 struct gsm_bts_trx_ts *ts = vty->index;
2487
2488 ts->hopping.maio = atoi(argv[0]);
2489
2490 return CMD_SUCCESS;
2491}
2492
2493DEFUN(cfg_ts_arfcn_add,
2494 cfg_ts_arfcn_add_cmd,
2495 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002496 HOPPING_STR "Configure hopping ARFCN list\n"
2497 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002498{
2499 struct gsm_bts_trx_ts *ts = vty->index;
2500 int arfcn = atoi(argv[0]);
2501
Harald Weltea42a93f2010-06-14 22:26:10 +02002502 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2503
Harald Welte67104d12009-09-12 13:05:33 +02002504 return CMD_SUCCESS;
2505}
2506
2507DEFUN(cfg_ts_arfcn_del,
2508 cfg_ts_arfcn_del_cmd,
2509 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002510 HOPPING_STR "Configure hopping ARFCN list\n"
2511 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002512{
2513 struct gsm_bts_trx_ts *ts = vty->index;
2514 int arfcn = atoi(argv[0]);
2515
Harald Weltea42a93f2010-06-14 22:26:10 +02002516 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2517
Harald Welte67104d12009-09-12 13:05:33 +02002518 return CMD_SUCCESS;
2519}
2520
Harald Welte3ffe1b32009-08-07 00:25:23 +02002521DEFUN(cfg_ts_e1_subslot,
2522 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002523 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte3ffe1b32009-08-07 00:25:23 +02002524 "E1 sub-slot connected to this on-air timeslot")
2525{
2526 struct gsm_bts_trx_ts *ts = vty->index;
2527
Harald Welte62868882009-08-08 16:12:58 +02002528 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002529
2530 return CMD_SUCCESS;
2531}
Harald Welte59b04682009-06-10 05:40:52 +08002532
Harald Weltea5b1dae2010-05-16 21:47:13 +02002533void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2534{
2535 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002536 osmo_counter_get(net->stats.chreq.total),
2537 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002538 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002539 osmo_counter_get(net->stats.chan.rf_fail),
2540 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002541 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002542 osmo_counter_get(net->stats.paging.attempted),
2543 osmo_counter_get(net->stats.paging.completed),
2544 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002545 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002546 osmo_counter_get(net->stats.bts.oml_fail),
2547 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002548}
2549
Harald Welte682ee5f2010-05-16 22:02:16 +02002550DEFUN(logging_fltr_imsi,
2551 logging_fltr_imsi_cmd,
2552 "logging filter imsi IMSI",
2553 LOGGING_STR FILTER_STR
2554 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2555{
Harald Welte58bef962011-02-18 21:10:05 +01002556 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002557
Harald Welte58bef962011-02-18 21:10:05 +01002558 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002559 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002560
Harald Welte58bef962011-02-18 21:10:05 +01002561 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002562 return CMD_SUCCESS;
2563}
2564
Harald Welte58bef962011-02-18 21:10:05 +01002565
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002566DEFUN(drop_bts,
2567 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002568 "drop bts connection <0-65535> (oml|rsl)",
2569 "Debug/Simulation command to drop ipaccess BTS\n"
2570 "BTS NR\n" "Connection Type\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002571{
2572 struct gsm_network *gsmnet;
2573 struct gsm_bts_trx *trx;
2574 struct gsm_bts *bts;
2575 unsigned int bts_nr;
2576
2577 gsmnet = gsmnet_from_vty(vty);
2578
2579 bts_nr = atoi(argv[0]);
2580 if (bts_nr >= gsmnet->num_bts) {
2581 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2582 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2583 return CMD_WARNING;
2584 }
2585
2586 bts = gsm_bts_num(gsmnet, bts_nr);
2587 if (!bts) {
2588 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2589 return CMD_WARNING;
2590 }
2591
2592 if (!is_ipaccess_bts(bts)) {
2593 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2594 return CMD_WARNING;
2595 }
2596
2597
2598 /* close all connections */
2599 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002600 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002601 } else if (strcmp(argv[1], "rsl") == 0) {
2602 /* close all rsl connections */
2603 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002604 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002605 }
2606 } else {
2607 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2608 return CMD_WARNING;
2609 }
2610
2611 return CMD_SUCCESS;
2612}
2613
Harald Welte5213e992010-12-23 13:18:07 +01002614DEFUN(pdch_act, pdch_act_cmd,
2615 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2616 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2617 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2618 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2619 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2620{
2621 struct gsm_bts *bts;
2622 struct gsm_bts_trx *trx;
2623 struct gsm_bts_trx_ts *ts;
2624 int bts_nr = atoi(argv[0]);
2625 int trx_nr = atoi(argv[1]);
2626 int ts_nr = atoi(argv[2]);
2627 int activate;
2628
2629 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2630 if (!bts) {
2631 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2632 return CMD_WARNING;
2633 }
2634
2635 if (!is_ipaccess_bts(bts)) {
2636 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2637 VTY_NEWLINE);
2638 return CMD_WARNING;
2639 }
2640
2641 trx = gsm_bts_trx_num(bts, trx_nr);
2642 if (!trx) {
2643 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2644 return CMD_WARNING;
2645 }
2646
2647 ts = &trx->ts[ts_nr];
2648 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2649 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2650 "mode%s", ts_nr, VTY_NEWLINE);
2651 return CMD_WARNING;
2652 }
2653
2654 if (!strcmp(argv[3], "activate"))
2655 activate = 1;
2656 else
2657 activate = 0;
2658
2659 rsl_ipacc_pdch_activate(ts, activate);
2660
2661 return CMD_SUCCESS;
2662
2663}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002664
Harald Welte40152872010-05-16 20:52:23 +02002665extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002666extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002667
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002668int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002669{
Harald Welte7bc28f62010-05-12 16:10:35 +00002670 install_element_ve(&show_net_cmd);
2671 install_element_ve(&show_bts_cmd);
2672 install_element_ve(&show_trx_cmd);
2673 install_element_ve(&show_ts_cmd);
2674 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08002675 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02002676 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002677
Harald Welte7bc28f62010-05-12 16:10:35 +00002678 install_element_ve(&show_e1drv_cmd);
2679 install_element_ve(&show_e1line_cmd);
2680 install_element_ve(&show_e1ts_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002681
Harald Welte7bc28f62010-05-12 16:10:35 +00002682 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002683
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002684 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01002685 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01002686
Harald Weltee87eb462009-08-07 13:29:14 +02002687 install_element(CONFIG_NODE, &cfg_net_cmd);
2688 install_node(&net_node, config_write_net);
2689 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002690 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002691 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002692 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002693 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2694 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2695 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02002696 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01002697 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09002698 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01002699 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01002700 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01002701 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01002702 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01002703 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2704 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2705 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2706 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2707 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2708 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01002709 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002710 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2711 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2712 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2713 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2714 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2715 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2716 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2717 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2718 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01002719 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002720 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08002721 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01002722 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08002723 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002724
2725 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02002726 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08002727 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002728 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002729 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002730 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002731 install_element(BTS_NODE, &cfg_description_cmd);
2732 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02002733 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02002734 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002735 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2736 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002737 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002738 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte08011e22011-03-04 13:41:31 +01002739 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Harald Welte25572872009-10-20 00:22:00 +02002740 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002741 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2742 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02002743 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002744 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2745 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002746 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2747 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002748 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002749 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002750 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002751 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01002752 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2753 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01002754 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
2755 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
2756 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
2757 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
2758 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
2759 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02002760 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002761 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002762 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2763 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002764 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08002765 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002766 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08002767 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2768 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2769 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002770 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02002771 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
2772 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01002773 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
2774 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01002775 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002776
2777 install_element(BTS_NODE, &cfg_trx_cmd);
2778 install_node(&trx_node, dummy_config_write);
2779 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002780 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002781 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002782 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002783 install_element(TRX_NODE, &cfg_description_cmd);
2784 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002785 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02002786 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002787 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2788 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002789 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002790
2791 install_element(TRX_NODE, &cfg_ts_cmd);
2792 install_node(&ts_node, dummy_config_write);
2793 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002794 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002795 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002796 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02002797 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02002798 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02002799 install_element(TS_NODE, &cfg_ts_hsn_cmd);
2800 install_element(TS_NODE, &cfg_ts_maio_cmd);
2801 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
2802 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002803 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002804
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002805 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01002806 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002807
Harald Welte63b964e2010-05-31 16:40:40 +02002808 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01002809 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01002810 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02002811
Harald Welte40152872010-05-16 20:52:23 +02002812 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08002813
2814 return 0;
2815}