blob: 8a5c7fdf27fd1cfbbb011eea266568e95608bbb7 [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 */
Holger Hans Peter Freyther410ee272011-06-04 09:32:35 +0200192 if (net->msc_data && net->msc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100193 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther410ee272011-06-04 09:32:35 +0200194 net->msc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100195 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];
Jan Luebbed18d8f02011-08-11 04:40:00 +0200945 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
Harald Welte59b04682009-06-10 05:40:52 +0800946 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 paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
979{
980 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
981 subscr_dump_vty(vty, pag->subscr);
982}
983
984static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
985{
986 struct gsm_paging_request *pag;
987
988 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
989 paging_dump_vty(vty, pag);
990}
991
992DEFUN(show_paging,
993 show_paging_cmd,
994 "show paging [bts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200995 SHOW_STR "Display information about paging reuqests of a BTS\n"
996 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800997{
Harald Welte40152872010-05-16 20:52:23 +0200998 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800999 struct gsm_bts *bts;
1000 int bts_nr;
1001
1002 if (argc >= 1) {
1003 /* use the BTS number that the user has specified */
1004 bts_nr = atoi(argv[0]);
1005 if (bts_nr >= net->num_bts) {
1006 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1007 VTY_NEWLINE);
1008 return CMD_WARNING;
1009 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001010 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001011 bts_paging_dump_vty(vty, bts);
1012
1013 return CMD_SUCCESS;
1014 }
1015 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001016 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001017 bts_paging_dump_vty(vty, bts);
1018 }
1019
1020 return CMD_SUCCESS;
1021}
1022
Harald Welte9e002452010-05-11 21:53:49 +02001023#define NETWORK_STR "Configure the GSM network\n"
1024
Harald Weltee87eb462009-08-07 13:29:14 +02001025DEFUN(cfg_net,
1026 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001027 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001028{
Harald Welte40152872010-05-16 20:52:23 +02001029 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001030 vty->node = GSMNET_NODE;
1031
1032 return CMD_SUCCESS;
1033}
1034
1035
1036DEFUN(cfg_net_ncc,
1037 cfg_net_ncc_cmd,
1038 "network country code <1-999>",
1039 "Set the GSM network country code")
1040{
Harald Welte40152872010-05-16 20:52:23 +02001041 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1042
Harald Weltee87eb462009-08-07 13:29:14 +02001043 gsmnet->country_code = atoi(argv[0]);
1044
1045 return CMD_SUCCESS;
1046}
1047
1048DEFUN(cfg_net_mnc,
1049 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001050 "mobile network code <0-999>",
Harald Weltee87eb462009-08-07 13:29:14 +02001051 "Set the GSM mobile network code")
1052{
Harald Welte40152872010-05-16 20:52:23 +02001053 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1054
Harald Weltee87eb462009-08-07 13:29:14 +02001055 gsmnet->network_code = atoi(argv[0]);
1056
1057 return CMD_SUCCESS;
1058}
1059
1060DEFUN(cfg_net_name_short,
1061 cfg_net_name_short_cmd,
1062 "short name NAME",
1063 "Set the short GSM network name")
1064{
Harald Welte40152872010-05-16 20:52:23 +02001065 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1066
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001067 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001068 return CMD_SUCCESS;
1069}
1070
1071DEFUN(cfg_net_name_long,
1072 cfg_net_name_long_cmd,
1073 "long name NAME",
1074 "Set the long GSM network name")
1075{
Harald Welte40152872010-05-16 20:52:23 +02001076 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1077
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001078 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001079 return CMD_SUCCESS;
1080}
Harald Welte59b04682009-06-10 05:40:52 +08001081
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001082DEFUN(cfg_net_auth_policy,
1083 cfg_net_auth_policy_cmd,
1084 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001085 "Authentication (not cryptographic)\n"
1086 "Set the GSM network authentication policy\n"
1087 "Require the MS to be activated in HLR\n"
1088 "Accept all MS, whether in HLR or not\n"
1089 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001090{
1091 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001092 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001093
1094 gsmnet->auth_policy = policy;
1095
1096 return CMD_SUCCESS;
1097}
1098
Harald Welte59936d72009-11-18 20:33:19 +01001099DEFUN(cfg_net_reject_cause,
1100 cfg_net_reject_cause_cmd,
1101 "location updating reject cause <2-111>",
1102 "Set the reject cause of location updating reject\n")
1103{
Harald Welte40152872010-05-16 20:52:23 +02001104 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1105
Harald Welte59936d72009-11-18 20:33:19 +01001106 gsmnet->reject_cause = atoi(argv[0]);
1107
1108 return CMD_SUCCESS;
1109}
1110
Harald Weltecca253a2009-08-30 15:47:06 +09001111DEFUN(cfg_net_encryption,
1112 cfg_net_encryption_cmd,
1113 "encryption a5 (0|1|2)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001114 "Encryption options\n"
1115 "A5 encryption\n" "A5/0: No encryption\n"
1116 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001117{
Harald Welte40152872010-05-16 20:52:23 +02001118 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1119
Andreas.Eversberg53293292009-11-17 09:55:26 +01001120 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001121
1122 return CMD_SUCCESS;
1123}
1124
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001125DEFUN(cfg_net_neci,
1126 cfg_net_neci_cmd,
1127 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001128 "New Establish Cause Indication\n"
1129 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001130{
Harald Welte40152872010-05-16 20:52:23 +02001131 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1132
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001133 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001134 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001135 return CMD_SUCCESS;
1136}
1137
Harald Welte52af1952009-12-13 10:53:12 +01001138DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1139 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001140 "Radio Resource Location Protocol\n"
1141 "Set the Radio Resource Location Protocol Mode\n"
1142 "Don't send RRLP request\n"
1143 "Request MS-based location\n"
1144 "Request any location, prefer MS-based\n"
1145 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001146{
Harald Welte40152872010-05-16 20:52:23 +02001147 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1148
Harald Welte52af1952009-12-13 10:53:12 +01001149 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1150
1151 return CMD_SUCCESS;
1152}
1153
Harald Weltea310f3e2009-12-14 09:00:24 +01001154DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1155 "mm info (0|1)",
1156 "Whether to send MM INFO after LOC UPD ACCEPT")
1157{
Harald Welte40152872010-05-16 20:52:23 +02001158 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1159
Harald Weltea310f3e2009-12-14 09:00:24 +01001160 gsmnet->send_mm_info = atoi(argv[0]);
1161
1162 return CMD_SUCCESS;
1163}
1164
Harald Welte9e002452010-05-11 21:53:49 +02001165#define HANDOVER_STR "Handover Options\n"
1166
Harald Welte0af9c9f2009-12-19 21:41:52 +01001167DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1168 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001169 HANDOVER_STR
1170 "Don't perform in-call handover\n"
1171 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001172{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001173 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001174 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001175
1176 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001177 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1178 "is enabled by using the -P command line option%s",
1179 VTY_NEWLINE);
1180 return CMD_WARNING;
1181 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001182 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001183
1184 return CMD_SUCCESS;
1185}
1186
Harald Welte9e002452010-05-11 21:53:49 +02001187#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1188#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1189#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1190#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1191
Harald Weltea8062f12009-12-21 16:51:50 +01001192DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1193 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001194 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001195 "How many RxLev measurements are used for averaging")
1196{
Harald Welte40152872010-05-16 20:52:23 +02001197 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001198 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1199 return CMD_SUCCESS;
1200}
1201
1202DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1203 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001204 HO_WIN_RXQUAL_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001205 "How many RxQual measurements are used for averaging")
1206{
Harald Welte40152872010-05-16 20:52:23 +02001207 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001208 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1209 return CMD_SUCCESS;
1210}
1211
1212DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1213 "handover window rxlev neighbor averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001214 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001215 "How many RxQual measurements are used for averaging")
1216{
Harald Welte40152872010-05-16 20:52:23 +02001217 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001218 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1219 return CMD_SUCCESS;
1220}
1221
1222DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1223 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001224 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001225 "How often to check if we have a better cell (SACCH frames)")
1226{
Harald Welte40152872010-05-16 20:52:23 +02001227 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001228 gsmnet->handover.pwr_interval = atoi(argv[0]);
1229 return CMD_SUCCESS;
1230}
1231
1232DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1233 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001234 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001235 "How many dB does a neighbor to be stronger to become a HO candidate")
1236{
Harald Welte40152872010-05-16 20:52:23 +02001237 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001238 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1239 return CMD_SUCCESS;
1240}
1241
1242DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1243 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001244 HANDOVER_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001245 "How big is the maximum timing advance before HO is forced")
1246{
Harald Welte40152872010-05-16 20:52:23 +02001247 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001248 gsmnet->handover.max_distance = atoi(argv[0]);
1249 return CMD_SUCCESS;
1250}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001251
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001252DEFUN(cfg_net_pag_any_tch,
1253 cfg_net_pag_any_tch_cmd,
1254 "paging any use tch (0|1)",
1255 "Assign a TCH when receiving a Paging Any request")
1256{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001257 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001258 gsmnet->pag_any_tch = atoi(argv[0]);
1259 gsm_net_update_ctype(gsmnet);
1260 return CMD_SUCCESS;
1261}
1262
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001263#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001264 DEFUN(cfg_net_T##number, \
1265 cfg_net_T##number##_cmd, \
1266 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001267 "Configure GSM Timers\n" \
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001268 doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001269{ \
Harald Welte40152872010-05-16 20:52:23 +02001270 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001271 int value = atoi(argv[0]); \
1272 \
1273 if (value < 0 || value > 65535) { \
1274 vty_out(vty, "Timer value %s out of range.%s", \
1275 argv[0], VTY_NEWLINE); \
1276 return CMD_WARNING; \
1277 } \
1278 \
1279 gsmnet->T##number = value; \
1280 return CMD_SUCCESS; \
1281}
1282
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001283DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1284DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1285DECLARE_TIMER(3105, "Currently not used.")
1286DECLARE_TIMER(3107, "Currently not used.")
1287DECLARE_TIMER(3109, "Currently not used.")
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001288DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.")
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001289DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1290DECLARE_TIMER(3115, "Currently not used.")
1291DECLARE_TIMER(3117, "Currently not used.")
1292DECLARE_TIMER(3119, "Currently not used.")
Harald Weltea00fdd72010-12-23 14:39:29 +01001293DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT")
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001294DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001295
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001296DEFUN(cfg_net_dtx,
1297 cfg_net_dtx_cmd,
1298 "dtx-used (0|1)",
1299 "Enable the usage of DTX.\n"
1300 "DTX is enabled/disabled")
1301{
1302 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1303 gsmnet->dtx_enabled = atoi(argv[0]);
1304 return CMD_SUCCESS;
1305}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001306
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001307DEFUN(cfg_net_subscr_keep,
1308 cfg_net_subscr_keep_cmd,
1309 "subscriber-keep-in-ram (0|1)",
1310 "Keep unused subscribers in RAM.\n"
1311 "Delete unused subscribers\n" "Keep unused subscribers\n")
1312{
1313 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1314 gsmnet->keep_subscr = atoi(argv[0]);
1315 return CMD_SUCCESS;
1316}
1317
Harald Welte59b04682009-06-10 05:40:52 +08001318/* per-BTS configuration */
1319DEFUN(cfg_bts,
1320 cfg_bts_cmd,
1321 "bts BTS_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001322 "Select a BTS to configure\n"
1323 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001324{
Harald Welte40152872010-05-16 20:52:23 +02001325 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001326 int bts_nr = atoi(argv[0]);
1327 struct gsm_bts *bts;
1328
Harald Weltee712a5f2009-06-21 16:17:15 +02001329 if (bts_nr > gsmnet->num_bts) {
1330 vty_out(vty, "%% The next unused BTS number is %u%s",
1331 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001332 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001333 } else if (bts_nr == gsmnet->num_bts) {
1334 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001335 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1336 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001337 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001338 bts = gsm_bts_num(gsmnet, bts_nr);
1339
Daniel Willmann580085f2010-01-11 13:43:07 +01001340 if (!bts) {
1341 vty_out(vty, "%% Unable to allocate BTS %u%s",
1342 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001343 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001344 }
Harald Welte59b04682009-06-10 05:40:52 +08001345
1346 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001347 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001348 vty->node = BTS_NODE;
1349
1350 return CMD_SUCCESS;
1351}
1352
1353DEFUN(cfg_bts_type,
1354 cfg_bts_type_cmd,
1355 "type TYPE",
1356 "Set the BTS type\n")
1357{
1358 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001359 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001360
Harald Welte59698fb2010-01-10 18:01:52 +01001361 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1362 if (rc < 0)
1363 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001364
Harald Welte59b04682009-06-10 05:40:52 +08001365 return CMD_SUCCESS;
1366}
1367
Harald Welte91afe4c2009-06-20 18:15:19 +02001368DEFUN(cfg_bts_band,
1369 cfg_bts_band_cmd,
1370 "band BAND",
1371 "Set the frequency band of this BTS\n")
1372{
1373 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001374 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001375
1376 if (band < 0) {
1377 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1378 band, VTY_NEWLINE);
1379 return CMD_WARNING;
1380 }
1381
1382 bts->band = band;
1383
1384 return CMD_SUCCESS;
1385}
1386
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001387DEFUN(cfg_bts_ci,
1388 cfg_bts_ci_cmd,
1389 "cell_identity <0-65535>",
1390 "Set the Cell identity of this BTS\n")
1391{
1392 struct gsm_bts *bts = vty->index;
1393 int ci = atoi(argv[0]);
1394
1395 if (ci < 0 || ci > 0xffff) {
1396 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1397 ci, VTY_NEWLINE);
1398 return CMD_WARNING;
1399 }
1400 bts->cell_identity = ci;
1401
1402 return CMD_SUCCESS;
1403}
1404
Harald Welte59b04682009-06-10 05:40:52 +08001405DEFUN(cfg_bts_lac,
1406 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001407 "location_area_code <0-65535>",
Harald Welte59b04682009-06-10 05:40:52 +08001408 "Set the Location Area Code (LAC) of this BTS\n")
1409{
1410 struct gsm_bts *bts = vty->index;
1411 int lac = atoi(argv[0]);
1412
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001413 if (lac < 0 || lac > 0xffff) {
1414 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001415 lac, VTY_NEWLINE);
1416 return CMD_WARNING;
1417 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001418
1419 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1420 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1421 lac, VTY_NEWLINE);
1422 return CMD_WARNING;
1423 }
1424
Harald Welte59b04682009-06-10 05:40:52 +08001425 bts->location_area_code = lac;
1426
1427 return CMD_SUCCESS;
1428}
1429
Harald Weltea54a2bb2009-12-01 18:04:30 +05301430
Harald Welte59b04682009-06-10 05:40:52 +08001431DEFUN(cfg_bts_tsc,
1432 cfg_bts_tsc_cmd,
1433 "training_sequence_code <0-255>",
1434 "Set the Training Sequence Code (TSC) of this BTS\n")
1435{
1436 struct gsm_bts *bts = vty->index;
1437 int tsc = atoi(argv[0]);
1438
1439 if (tsc < 0 || tsc > 0xff) {
1440 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1441 tsc, VTY_NEWLINE);
1442 return CMD_WARNING;
1443 }
1444 bts->tsc = tsc;
1445
1446 return CMD_SUCCESS;
1447}
1448
1449DEFUN(cfg_bts_bsic,
1450 cfg_bts_bsic_cmd,
1451 "base_station_id_code <0-63>",
1452 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1453{
1454 struct gsm_bts *bts = vty->index;
1455 int bsic = atoi(argv[0]);
1456
1457 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001458 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001459 bsic, VTY_NEWLINE);
1460 return CMD_WARNING;
1461 }
1462 bts->bsic = bsic;
1463
1464 return CMD_SUCCESS;
1465}
1466
1467
1468DEFUN(cfg_bts_unit_id,
1469 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001470 "ip.access unit_id <0-65534> <0-255>",
1471 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001472{
1473 struct gsm_bts *bts = vty->index;
1474 int site_id = atoi(argv[0]);
1475 int bts_id = atoi(argv[1]);
1476
Harald Weltef515aa02009-08-07 13:27:09 +02001477 if (!is_ipaccess_bts(bts)) {
1478 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1479 return CMD_WARNING;
1480 }
1481
Harald Welte59b04682009-06-10 05:40:52 +08001482 bts->ip_access.site_id = site_id;
1483 bts->ip_access.bts_id = bts_id;
1484
1485 return CMD_SUCCESS;
1486}
1487
Harald Welte08011e22011-03-04 13:41:31 +01001488DEFUN(cfg_bts_serno,
1489 cfg_bts_serno_cmd,
1490 "hsl serial-number STRING",
1491 "Set the HSL Serial Number of this BTS\n")
1492{
1493 struct gsm_bts *bts = vty->index;
1494
1495 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1496 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1497 return CMD_WARNING;
1498 }
1499
1500 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1501
1502 return CMD_SUCCESS;
1503}
1504
Harald Welte9e002452010-05-11 21:53:49 +02001505#define OML_STR "Organization & Maintenance Link\n"
1506#define IPA_STR "ip.access Specific Options\n"
1507
Harald Welte25572872009-10-20 00:22:00 +02001508DEFUN(cfg_bts_stream_id,
1509 cfg_bts_stream_id_cmd,
1510 "oml ip.access stream_id <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001511 OML_STR IPA_STR
Harald Welte25572872009-10-20 00:22:00 +02001512 "Set the ip.access Stream ID of the OML link of this BTS\n")
1513{
1514 struct gsm_bts *bts = vty->index;
1515 int stream_id = atoi(argv[0]);
1516
1517 if (!is_ipaccess_bts(bts)) {
1518 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1519 return CMD_WARNING;
1520 }
1521
1522 bts->oml_tei = stream_id;
1523
1524 return CMD_SUCCESS;
1525}
1526
Harald Welte9e002452010-05-11 21:53:49 +02001527#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte25572872009-10-20 00:22:00 +02001528
Harald Welte62868882009-08-08 16:12:58 +02001529DEFUN(cfg_bts_oml_e1,
1530 cfg_bts_oml_e1_cmd,
1531 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte9e002452010-05-11 21:53:49 +02001532 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001533 "E1 interface to be used for OML\n")
1534{
1535 struct gsm_bts *bts = vty->index;
1536
1537 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1538
1539 return CMD_SUCCESS;
1540}
1541
1542
1543DEFUN(cfg_bts_oml_e1_tei,
1544 cfg_bts_oml_e1_tei_cmd,
1545 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001546 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001547 "Set the TEI to be used for OML")
1548{
1549 struct gsm_bts *bts = vty->index;
1550
1551 bts->oml_tei = atoi(argv[0]);
1552
1553 return CMD_SUCCESS;
1554}
1555
Harald Welte3e774612009-08-10 13:48:16 +02001556DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1557 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001558 "Channnel Allocator\n" "Channel Allocator\n"
1559 "Allocate Timeslots and Transceivers in ascending order\n"
1560 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001561{
1562 struct gsm_bts *bts = vty->index;
1563
1564 if (!strcmp(argv[0], "ascending"))
1565 bts->chan_alloc_reverse = 0;
1566 else
1567 bts->chan_alloc_reverse = 1;
1568
1569 return CMD_SUCCESS;
1570}
1571
Harald Welte9e002452010-05-11 21:53:49 +02001572#define RACH_STR "Random Access Control Channel\n"
1573
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001574DEFUN(cfg_bts_rach_tx_integer,
1575 cfg_bts_rach_tx_integer_cmd,
1576 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001577 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001578 "Set the raw tx integer value in RACH Control parameters IE")
1579{
1580 struct gsm_bts *bts = vty->index;
1581 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1582 return CMD_SUCCESS;
1583}
1584
1585DEFUN(cfg_bts_rach_max_trans,
1586 cfg_bts_rach_max_trans_cmd,
1587 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001588 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001589 "Set the maximum number of RACH burst transmissions")
1590{
1591 struct gsm_bts *bts = vty->index;
1592 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1593 return CMD_SUCCESS;
1594}
1595
Harald Welte9e002452010-05-11 21:53:49 +02001596#define NM_STR "Network Management\n"
1597
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001598DEFUN(cfg_bts_rach_nm_b_thresh,
1599 cfg_bts_rach_nm_b_thresh_cmd,
1600 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001601 RACH_STR NM_STR
1602 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001603{
1604 struct gsm_bts *bts = vty->index;
1605 bts->rach_b_thresh = atoi(argv[0]);
1606 return CMD_SUCCESS;
1607}
1608
1609DEFUN(cfg_bts_rach_nm_ldavg,
1610 cfg_bts_rach_nm_ldavg_cmd,
1611 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001612 RACH_STR NM_STR
1613 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001614{
1615 struct gsm_bts *bts = vty->index;
1616 bts->rach_ldavg_slots = atoi(argv[0]);
1617 return CMD_SUCCESS;
1618}
1619
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001620DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1621 "cell barred (0|1)",
1622 "Should this cell be barred from access?")
1623{
1624 struct gsm_bts *bts = vty->index;
1625
Harald Welte8c973ba2009-12-21 23:08:18 +01001626 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001627
1628 return CMD_SUCCESS;
1629}
1630
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001631DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1632 "rach emergency call allowed (0|1)",
1633 "Should this cell allow emergency calls?")
1634{
1635 struct gsm_bts *bts = vty->index;
1636
1637 if (atoi(argv[0]) == 0)
1638 bts->si_common.rach_control.t2 |= 0x4;
1639 else
1640 bts->si_common.rach_control.t2 &= ~0x4;
1641
1642 return CMD_SUCCESS;
1643}
1644
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001645DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1646 "ms max power <0-40>",
1647 "Maximum transmit power of the MS")
1648{
1649 struct gsm_bts *bts = vty->index;
1650
1651 bts->ms_max_power = atoi(argv[0]);
1652
1653 return CMD_SUCCESS;
1654}
1655
Harald Welteb761bf82009-12-12 18:17:25 +01001656DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1657 "cell reselection hysteresis <0-14>",
1658 "Cell Re-Selection Hysteresis in dB")
1659{
1660 struct gsm_bts *bts = vty->index;
1661
1662 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1663
1664 return CMD_SUCCESS;
1665}
1666
1667DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1668 "rxlev access min <0-63>",
1669 "Minimum RxLev needed for cell access (better than -110dBm)")
1670{
1671 struct gsm_bts *bts = vty->index;
1672
1673 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1674
1675 return CMD_SUCCESS;
1676}
1677
Sylvain Munaut00d71462010-11-28 18:17:28 +01001678DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1679 "cell bar qualify (0|1)",
1680 "Cell Bar Qualify")
1681{
1682 struct gsm_bts *bts = vty->index;
1683
1684 bts->si_common.cell_ro_sel_par.present = 1;
1685 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1686
1687 return CMD_SUCCESS;
1688}
1689
1690DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1691 "cell reselection offset <0-126>",
1692 "Cell Re-Selection Offset in dB")
1693{
1694 struct gsm_bts *bts = vty->index;
1695
1696 bts->si_common.cell_ro_sel_par.present = 1;
1697 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1698
1699 return CMD_SUCCESS;
1700}
1701
1702DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1703 "temporary offset <0-60>",
1704 "Cell selection temporary negative offset in dB")
1705{
1706 struct gsm_bts *bts = vty->index;
1707
1708 bts->si_common.cell_ro_sel_par.present = 1;
1709 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1710
1711 return CMD_SUCCESS;
1712}
1713
1714DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1715 "temporary offset infinite",
1716 "Sets cell selection temporary negative offset to infinity")
1717{
1718 struct gsm_bts *bts = vty->index;
1719
1720 bts->si_common.cell_ro_sel_par.present = 1;
1721 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1722
1723 return CMD_SUCCESS;
1724}
1725
1726DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1727 "penalty time <20-620>",
1728 "Cell selection penalty time in seconds (by 20s increments)")
1729{
1730 struct gsm_bts *bts = vty->index;
1731
1732 bts->si_common.cell_ro_sel_par.present = 1;
1733 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
1734
1735 return CMD_SUCCESS;
1736}
1737
1738DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
1739 "penalty time reserved",
1740 "Set cell selection penalty time to reserved value 31\n"
1741 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
1742 "and TEMPORARY_OFFSET is ignored)")
1743{
1744 struct gsm_bts *bts = vty->index;
1745
1746 bts->si_common.cell_ro_sel_par.present = 1;
1747 bts->si_common.cell_ro_sel_par.penalty_time = 31;
1748
1749 return CMD_SUCCESS;
1750}
1751
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001752DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1753 "periodic location update <0-1530>",
1754 "Periodic Location Updating Interval in Minutes")
1755{
1756 struct gsm_bts *bts = vty->index;
1757
Dieter Spaarb0f746d2010-10-05 21:10:55 +02001758 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001759
1760 return CMD_SUCCESS;
1761}
1762
Harald Welte9e002452010-05-11 21:53:49 +02001763#define GPRS_TEXT "GPRS Packet Network\n"
1764
Harald Welte410575a2010-03-14 23:30:30 +08001765DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02001766 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001767 GPRS_TEXT
1768 "GPRS Cell Settings\n"
Harald Welte3055e332010-03-14 15:37:43 +08001769 "GPRS BSSGP VC Identifier")
1770{
1771 struct gsm_bts *bts = vty->index;
1772
Harald Weltecb20b7a2010-04-18 15:51:20 +02001773 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001774 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1775 return CMD_WARNING;
1776 }
1777
Harald Welte3055e332010-03-14 15:37:43 +08001778 bts->gprs.cell.bvci = atoi(argv[0]);
1779
1780 return CMD_SUCCESS;
1781}
1782
Harald Welte4a048c52010-03-22 11:48:36 +08001783DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1784 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001785 GPRS_TEXT
Harald Welte4a048c52010-03-22 11:48:36 +08001786 "GPRS NS Entity Identifier")
1787{
1788 struct gsm_bts *bts = vty->index;
1789
Harald Weltecb20b7a2010-04-18 15:51:20 +02001790 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08001791 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1792 return CMD_WARNING;
1793 }
1794
1795 bts->gprs.nse.nsei = atoi(argv[0]);
1796
1797 return CMD_SUCCESS;
1798}
1799
Harald Welte9e002452010-05-11 21:53:49 +02001800#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1801 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08001802
Harald Welte3055e332010-03-14 15:37:43 +08001803DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1804 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001805 GPRS_TEXT NSVC_TEXT
1806 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08001807 "GPRS NS VC Identifier")
1808{
1809 struct gsm_bts *bts = vty->index;
1810 int idx = atoi(argv[0]);
1811
Harald Weltecb20b7a2010-04-18 15:51:20 +02001812 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001813 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1814 return CMD_WARNING;
1815 }
1816
Harald Welte3055e332010-03-14 15:37:43 +08001817 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1818
1819 return CMD_SUCCESS;
1820}
1821
Harald Welte410575a2010-03-14 23:30:30 +08001822DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1823 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001824 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001825 "GPRS NS Local UDP Port")
1826{
1827 struct gsm_bts *bts = vty->index;
1828 int idx = atoi(argv[0]);
1829
Harald Weltecb20b7a2010-04-18 15:51:20 +02001830 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001831 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1832 return CMD_WARNING;
1833 }
1834
Harald Welte410575a2010-03-14 23:30:30 +08001835 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1836
1837 return CMD_SUCCESS;
1838}
1839
1840DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1841 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001842 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001843 "GPRS NS Remote UDP Port")
1844{
1845 struct gsm_bts *bts = vty->index;
1846 int idx = atoi(argv[0]);
1847
Harald Weltecb20b7a2010-04-18 15:51:20 +02001848 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001849 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1850 return CMD_WARNING;
1851 }
1852
Harald Welte410575a2010-03-14 23:30:30 +08001853 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1854
1855 return CMD_SUCCESS;
1856}
1857
1858DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1859 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02001860 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001861 "GPRS NS Remote IP Address")
1862{
1863 struct gsm_bts *bts = vty->index;
1864 int idx = atoi(argv[0]);
1865 struct in_addr ia;
1866
Harald Weltecb20b7a2010-04-18 15:51:20 +02001867 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001868 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1869 return CMD_WARNING;
1870 }
1871
Harald Welte410575a2010-03-14 23:30:30 +08001872 inet_aton(argv[1], &ia);
1873 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1874
1875 return CMD_SUCCESS;
1876}
1877
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08001878DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
1879 "paging free FREE_NR",
1880 "Only page when having a certain amount of free slots. -1 to disable")
1881{
1882 struct gsm_bts *bts = vty->index;
1883
1884 bts->paging.free_chans_need = atoi(argv[0]);
1885 return CMD_SUCCESS;
1886}
1887
Harald Weltea9251762010-05-11 23:50:21 +02001888DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1889 "gprs ns timer " NS_TIMERS " <0-255>",
1890 GPRS_TEXT "Network Service\n"
1891 "Network Service Timer\n"
1892 NS_TIMERS_HELP "Timer Value\n")
1893{
1894 struct gsm_bts *bts = vty->index;
1895 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
1896 int val = atoi(argv[1]);
1897
1898 if (bts->gprs.mode == BTS_GPRS_NONE) {
1899 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1900 return CMD_WARNING;
1901 }
1902
1903 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
1904 return CMD_WARNING;
1905
1906 bts->gprs.nse.timer[idx] = val;
1907
1908 return CMD_SUCCESS;
1909}
1910
1911#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 +02001912#define BSSGP_TIMERS_HELP \
1913 "Tbvc-block timeout\n" \
1914 "Tbvc-block retries\n" \
1915 "Tbvc-unblock retries\n" \
1916 "Tbvcc-reset timeout\n" \
1917 "Tbvc-reset retries\n" \
1918 "Tbvc-suspend timeout\n" \
1919 "Tbvc-suspend retries\n" \
1920 "Tbvc-resume timeout\n" \
1921 "Tbvc-resume retries\n" \
1922 "Tbvc-capa-update timeout\n" \
1923 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02001924
1925DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
1926 "gprs cell timer " BSSGP_TIMERS " <0-255>",
1927 GPRS_TEXT "Cell / BSSGP\n"
1928 "Cell/BSSGP Timer\n"
1929 BSSGP_TIMERS_HELP "Timer Value\n")
1930{
1931 struct gsm_bts *bts = vty->index;
1932 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
1933 int val = atoi(argv[1]);
1934
1935 if (bts->gprs.mode == BTS_GPRS_NONE) {
1936 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1937 return CMD_WARNING;
1938 }
1939
1940 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
1941 return CMD_WARNING;
1942
1943 bts->gprs.cell.timer[idx] = val;
1944
1945 return CMD_SUCCESS;
1946}
1947
Harald Welte3055e332010-03-14 15:37:43 +08001948DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
1949 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001950 GPRS_TEXT
Harald Welte3055e332010-03-14 15:37:43 +08001951 "GPRS Routing Area Code")
1952{
1953 struct gsm_bts *bts = vty->index;
1954
Harald Weltecb20b7a2010-04-18 15:51:20 +02001955 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001956 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1957 return CMD_WARNING;
1958 }
1959
Harald Welte3055e332010-03-14 15:37:43 +08001960 bts->gprs.rac = atoi(argv[0]);
1961
1962 return CMD_SUCCESS;
1963}
1964
Harald Weltecb20b7a2010-04-18 15:51:20 +02001965DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
1966 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02001967 GPRS_TEXT
1968 "GPRS Mode for this BTS\n"
1969 "GPRS Disabled on this BTS\n"
1970 "GPRS Enabled on this BTS\n"
1971 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08001972{
1973 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02001974 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08001975
Harald Welte20e275a2010-06-14 22:44:42 +02001976 if (mode != BTS_GPRS_NONE &&
1977 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
1978 vty_out(vty, "This BTS type does not support %s%s", argv[0],
1979 VTY_NEWLINE);
1980 return CMD_WARNING;
1981 }
1982 if (mode == BTS_GPRS_EGPRS &&
1983 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
1984 vty_out(vty, "This BTS type does not support %s%s", argv[0],
1985 VTY_NEWLINE);
1986 return CMD_WARNING;
1987 }
1988
1989 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08001990
1991 return CMD_SUCCESS;
1992}
1993
Harald Welted8acf142010-07-30 11:50:09 +02001994#define SI_TEXT "System Information Messages\n"
1995#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)"
1996#define SI_TYPE_HELP "System Information Type 1\n" \
1997 "System Information Type 2\n" \
1998 "System Information Type 3\n" \
1999 "System Information Type 4\n" \
2000 "System Information Type 5\n" \
2001 "System Information Type 6\n" \
2002 "System Information Type 7\n" \
2003 "System Information Type 8\n" \
2004 "System Information Type 9\n" \
2005 "System Information Type 10\n" \
2006 "System Information Type 13\n" \
2007 "System Information Type 16\n" \
2008 "System Information Type 17\n" \
2009 "System Information Type 18\n" \
2010 "System Information Type 19\n" \
2011 "System Information Type 20\n" \
2012 "System Information Type 2bis\n" \
2013 "System Information Type 2ter\n" \
2014 "System Information Type 2quater\n" \
2015 "System Information Type 5bis\n" \
2016 "System Information Type 5ter\n"
2017
2018DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2019 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2020 SI_TEXT SI_TYPE_HELP
2021 "System Information Mode\n"
2022 "Static user-specified\n"
2023 "Dynamic, BSC-computed\n")
2024{
2025 struct gsm_bts *bts = vty->index;
2026 int type;
2027
2028 type = get_string_value(osmo_sitype_strs, argv[0]);
2029 if (type < 0) {
2030 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2031 return CMD_WARNING;
2032 }
2033
2034 if (!strcmp(argv[1], "static"))
2035 bts->si_mode_static |= (1 << type);
2036 else
2037 bts->si_mode_static &= ~(1 << type);
2038
2039 return CMD_SUCCESS;
2040}
2041
2042DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2043 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2044 SI_TEXT SI_TYPE_HELP
2045 "Static System Information filling\n"
2046 "Static user-specified SI content in HEX notation\n")
2047{
2048 struct gsm_bts *bts = vty->index;
2049 int rc, type;
2050
2051 type = get_string_value(osmo_sitype_strs, argv[0]);
2052 if (type < 0) {
2053 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2054 return CMD_WARNING;
2055 }
2056
2057 if (!(bts->si_mode_static & (1 << type))) {
2058 vty_out(vty, "SI Type %s is not configured in static mode%s",
2059 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2060 return CMD_WARNING;
2061 }
2062
Harald Welte9f09ac32010-07-30 11:53:18 +02002063 /* Fill buffer with padding pattern */
2064 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2065
2066 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002067 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002068 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2069 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2070 return CMD_WARNING;
2071 }
2072
2073 /* Mark this SI as present */
2074 bts->si_valid |= (1 << type);
2075
2076 return CMD_SUCCESS;
2077}
2078
Harald Welteca46eff2011-01-11 23:44:56 +01002079DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002080 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002081 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002082 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2083 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002084{
2085 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002086 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002087
Harald Weltef989b782011-02-15 11:43:27 +01002088 switch (mode) {
2089 case NL_MODE_MANUAL_SI5SEP:
2090 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002091 /* make sure we clear the current list when switching to
2092 * manual mode */
2093 if (bts->neigh_list_manual_mode == 0)
2094 memset(&bts->si_common.data.neigh_list, 0,
2095 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002096 break;
2097 default:
2098 break;
2099 }
2100
2101 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002102
2103 return CMD_SUCCESS;
2104}
2105
2106DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
2107 "neighbor-list (add|del) arfcn <0-1024>",
2108 "Neighbor List\n" "Add to manual neighbor list\n"
2109 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2110 "ARFCN of neighbor\n")
2111{
2112 struct gsm_bts *bts = vty->index;
2113 struct bitvec *bv = &bts->si_common.neigh_list;
2114 uint16_t arfcn = atoi(argv[1]);
2115
2116 if (!bts->neigh_list_manual_mode) {
2117 vty_out(vty, "%% Cannot configure neighbor list in "
2118 "automatic mode%s", VTY_NEWLINE);
2119 return CMD_WARNING;
2120 }
2121
2122 if (!strcmp(argv[0], "add"))
2123 bitvec_set_bit_pos(bv, arfcn, 1);
2124 else
2125 bitvec_set_bit_pos(bv, arfcn, 0);
2126
2127 return CMD_SUCCESS;
2128}
2129
Harald Weltef989b782011-02-15 11:43:27 +01002130DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
2131 "si5 neighbor-list (add|del) arfcn <0-1024>",
2132 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2133 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2134 "ARFCN of neighbor\n")
2135{
2136 struct gsm_bts *bts = vty->index;
2137 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2138 uint16_t arfcn = atoi(argv[1]);
2139
2140 if (!bts->neigh_list_manual_mode) {
2141 vty_out(vty, "%% Cannot configure neighbor list in "
2142 "automatic mode%s", VTY_NEWLINE);
2143 return CMD_WARNING;
2144 }
2145
2146 if (!strcmp(argv[0], "add"))
2147 bitvec_set_bit_pos(bv, arfcn, 1);
2148 else
2149 bitvec_set_bit_pos(bv, arfcn, 0);
2150
2151 return CMD_SUCCESS;
2152}
Harald Welted8acf142010-07-30 11:50:09 +02002153
Harald Welte9e002452010-05-11 21:53:49 +02002154#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002155
Harald Welte59b04682009-06-10 05:40:52 +08002156/* per TRX configuration */
2157DEFUN(cfg_trx,
2158 cfg_trx_cmd,
2159 "trx TRX_NR",
Harald Welte9e002452010-05-11 21:53:49 +02002160 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002161 "Select a TRX to configure")
2162{
2163 int trx_nr = atoi(argv[0]);
2164 struct gsm_bts *bts = vty->index;
2165 struct gsm_bts_trx *trx;
2166
Harald Weltee712a5f2009-06-21 16:17:15 +02002167 if (trx_nr > bts->num_trx) {
2168 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2169 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002170 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002171 } else if (trx_nr == bts->num_trx) {
2172 /* we need to allocate a new one */
2173 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002174 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002175 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002176
Harald Weltee712a5f2009-06-21 16:17:15 +02002177 if (!trx)
2178 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002179
2180 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002181 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002182 vty->node = TRX_NODE;
2183
2184 return CMD_SUCCESS;
2185}
2186
2187DEFUN(cfg_trx_arfcn,
2188 cfg_trx_arfcn_cmd,
Harald Welte00044592010-05-14 19:00:52 +02002189 "arfcn <0-1024>",
Harald Welte59b04682009-06-10 05:40:52 +08002190 "Set the ARFCN for this TRX\n")
2191{
2192 int arfcn = atoi(argv[0]);
2193 struct gsm_bts_trx *trx = vty->index;
2194
2195 /* FIXME: check if this ARFCN is supported by this TRX */
2196
2197 trx->arfcn = arfcn;
2198
2199 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2200 /* FIXME: use OML layer to update the ARFCN */
2201 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2202
2203 return CMD_SUCCESS;
2204}
2205
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002206DEFUN(cfg_trx_nominal_power,
2207 cfg_trx_nominal_power_cmd,
2208 "nominal power <0-100>",
2209 "Nominal TRX RF Power in dB\n")
2210{
2211 struct gsm_bts_trx *trx = vty->index;
2212
2213 trx->nominal_power = atoi(argv[0]);
2214
2215 return CMD_SUCCESS;
2216}
2217
Harald Welte91afe4c2009-06-20 18:15:19 +02002218DEFUN(cfg_trx_max_power_red,
2219 cfg_trx_max_power_red_cmd,
2220 "max_power_red <0-100>",
2221 "Reduction of maximum BS RF Power in dB\n")
2222{
2223 int maxpwr_r = atoi(argv[0]);
2224 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002225 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002226
2227 /* FIXME: check if our BTS type supports more than 12 */
2228 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2229 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2230 maxpwr_r, VTY_NEWLINE);
2231 return CMD_WARNING;
2232 }
2233 if (maxpwr_r & 1) {
2234 vty_out(vty, "%% Power %d dB is not an even value%s",
2235 maxpwr_r, VTY_NEWLINE);
2236 return CMD_WARNING;
2237 }
2238
2239 trx->max_power_red = maxpwr_r;
2240
2241 /* FIXME: make sure we update this using OML */
2242
2243 return CMD_SUCCESS;
2244}
2245
Harald Welte62868882009-08-08 16:12:58 +02002246DEFUN(cfg_trx_rsl_e1,
2247 cfg_trx_rsl_e1_cmd,
2248 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
2249 "E1 interface to be used for RSL\n")
2250{
2251 struct gsm_bts_trx *trx = vty->index;
2252
2253 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2254
2255 return CMD_SUCCESS;
2256}
2257
2258DEFUN(cfg_trx_rsl_e1_tei,
2259 cfg_trx_rsl_e1_tei_cmd,
2260 "rsl e1 tei <0-63>",
2261 "Set the TEI to be used for RSL")
2262{
2263 struct gsm_bts_trx *trx = vty->index;
2264
2265 trx->rsl_tei = atoi(argv[0]);
2266
2267 return CMD_SUCCESS;
2268}
2269
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002270DEFUN(cfg_trx_rf_locked,
2271 cfg_trx_rf_locked_cmd,
2272 "rf_locked (0|1)",
2273 "Turn off RF of the TRX.\n")
2274{
2275 int locked = atoi(argv[0]);
2276 struct gsm_bts_trx *trx = vty->index;
2277
2278 gsm_trx_lock_rf(trx, locked);
2279 return CMD_SUCCESS;
2280}
Harald Welte62868882009-08-08 16:12:58 +02002281
Harald Welte59b04682009-06-10 05:40:52 +08002282/* per TS configuration */
2283DEFUN(cfg_ts,
2284 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002285 "timeslot <0-7>",
Harald Welte59b04682009-06-10 05:40:52 +08002286 "Select a Timeslot to configure")
2287{
2288 int ts_nr = atoi(argv[0]);
2289 struct gsm_bts_trx *trx = vty->index;
2290 struct gsm_bts_trx_ts *ts;
2291
2292 if (ts_nr >= TRX_NR_TS) {
2293 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2294 TRX_NR_TS, VTY_NEWLINE);
2295 return CMD_WARNING;
2296 }
2297
2298 ts = &trx->ts[ts_nr];
2299
2300 vty->index = ts;
2301 vty->node = TS_NODE;
2302
2303 return CMD_SUCCESS;
2304}
2305
Harald Welte3ffe1b32009-08-07 00:25:23 +02002306DEFUN(cfg_ts_pchan,
2307 cfg_ts_pchan_cmd,
2308 "phys_chan_config PCHAN",
2309 "Physical Channel configuration (TCH/SDCCH/...)")
2310{
2311 struct gsm_bts_trx_ts *ts = vty->index;
2312 int pchanc;
2313
2314 pchanc = gsm_pchan_parse(argv[0]);
2315 if (pchanc < 0)
2316 return CMD_WARNING;
2317
2318 ts->pchan = pchanc;
2319
2320 return CMD_SUCCESS;
2321}
2322
Harald Welte85771a42011-05-30 12:09:13 +02002323DEFUN(cfg_ts_tsc,
2324 cfg_ts_tsc_cmd,
2325 "training_sequence_code <0-7>",
2326 "Training Sequence Code")
2327{
2328 struct gsm_bts_trx_ts *ts = vty->index;
2329
2330 ts->tsc = atoi(argv[0]);
2331
2332 return CMD_SUCCESS;
2333}
2334
Harald Weltea42a93f2010-06-14 22:26:10 +02002335#define HOPPING_STR "Configure frequency hopping\n"
2336
2337DEFUN(cfg_ts_hopping,
2338 cfg_ts_hopping_cmd,
2339 "hopping enabled (0|1)",
2340 HOPPING_STR "Enable or disable frequency hopping\n"
2341 "Disable frequency hopping\n" "Enable frequency hopping\n")
2342{
2343 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002344 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002345
Harald Welte059c1ef2010-06-14 22:47:37 +02002346 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2347 vty_out(vty, "BTS model does not support hopping%s",
2348 VTY_NEWLINE);
2349 return CMD_WARNING;
2350 }
2351
2352 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002353
2354 return CMD_SUCCESS;
2355}
2356
Harald Welte67104d12009-09-12 13:05:33 +02002357DEFUN(cfg_ts_hsn,
2358 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002359 "hopping sequence-number <0-63>",
2360 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002361 "Which hopping sequence to use for this channel")
2362{
2363 struct gsm_bts_trx_ts *ts = vty->index;
2364
2365 ts->hopping.hsn = atoi(argv[0]);
2366
2367 return CMD_SUCCESS;
2368}
2369
2370DEFUN(cfg_ts_maio,
2371 cfg_ts_maio_cmd,
2372 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002373 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002374 "Which hopping MAIO to use for this channel")
2375{
2376 struct gsm_bts_trx_ts *ts = vty->index;
2377
2378 ts->hopping.maio = atoi(argv[0]);
2379
2380 return CMD_SUCCESS;
2381}
2382
2383DEFUN(cfg_ts_arfcn_add,
2384 cfg_ts_arfcn_add_cmd,
2385 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002386 HOPPING_STR "Configure hopping ARFCN list\n"
2387 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002388{
2389 struct gsm_bts_trx_ts *ts = vty->index;
2390 int arfcn = atoi(argv[0]);
2391
Harald Weltea42a93f2010-06-14 22:26:10 +02002392 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2393
Harald Welte67104d12009-09-12 13:05:33 +02002394 return CMD_SUCCESS;
2395}
2396
2397DEFUN(cfg_ts_arfcn_del,
2398 cfg_ts_arfcn_del_cmd,
2399 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002400 HOPPING_STR "Configure hopping ARFCN list\n"
2401 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002402{
2403 struct gsm_bts_trx_ts *ts = vty->index;
2404 int arfcn = atoi(argv[0]);
2405
Harald Weltea42a93f2010-06-14 22:26:10 +02002406 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2407
Harald Welte67104d12009-09-12 13:05:33 +02002408 return CMD_SUCCESS;
2409}
2410
Harald Welte3ffe1b32009-08-07 00:25:23 +02002411DEFUN(cfg_ts_e1_subslot,
2412 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002413 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte3ffe1b32009-08-07 00:25:23 +02002414 "E1 sub-slot connected to this on-air timeslot")
2415{
2416 struct gsm_bts_trx_ts *ts = vty->index;
2417
Harald Welte62868882009-08-08 16:12:58 +02002418 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002419
2420 return CMD_SUCCESS;
2421}
Harald Welte59b04682009-06-10 05:40:52 +08002422
Harald Weltea5b1dae2010-05-16 21:47:13 +02002423void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2424{
2425 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002426 osmo_counter_get(net->stats.chreq.total),
2427 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002428 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002429 osmo_counter_get(net->stats.chan.rf_fail),
2430 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002431 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002432 osmo_counter_get(net->stats.paging.attempted),
2433 osmo_counter_get(net->stats.paging.completed),
2434 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002435 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002436 osmo_counter_get(net->stats.bts.oml_fail),
2437 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002438}
2439
Harald Welte682ee5f2010-05-16 22:02:16 +02002440DEFUN(logging_fltr_imsi,
2441 logging_fltr_imsi_cmd,
2442 "logging filter imsi IMSI",
2443 LOGGING_STR FILTER_STR
2444 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2445{
Harald Welte58bef962011-02-18 21:10:05 +01002446 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002447
Harald Welte58bef962011-02-18 21:10:05 +01002448 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002449 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002450
Harald Welte58bef962011-02-18 21:10:05 +01002451 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002452 return CMD_SUCCESS;
2453}
2454
Harald Welte58bef962011-02-18 21:10:05 +01002455
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002456DEFUN(drop_bts,
2457 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002458 "drop bts connection <0-65535> (oml|rsl)",
2459 "Debug/Simulation command to drop ipaccess BTS\n"
2460 "BTS NR\n" "Connection Type\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002461{
2462 struct gsm_network *gsmnet;
2463 struct gsm_bts_trx *trx;
2464 struct gsm_bts *bts;
2465 unsigned int bts_nr;
2466
2467 gsmnet = gsmnet_from_vty(vty);
2468
2469 bts_nr = atoi(argv[0]);
2470 if (bts_nr >= gsmnet->num_bts) {
2471 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2472 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2473 return CMD_WARNING;
2474 }
2475
2476 bts = gsm_bts_num(gsmnet, bts_nr);
2477 if (!bts) {
2478 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2479 return CMD_WARNING;
2480 }
2481
2482 if (!is_ipaccess_bts(bts)) {
2483 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2484 return CMD_WARNING;
2485 }
2486
2487
2488 /* close all connections */
2489 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002490 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002491 } else if (strcmp(argv[1], "rsl") == 0) {
2492 /* close all rsl connections */
2493 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002494 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002495 }
2496 } else {
2497 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2498 return CMD_WARNING;
2499 }
2500
2501 return CMD_SUCCESS;
2502}
2503
Harald Welte5213e992010-12-23 13:18:07 +01002504DEFUN(pdch_act, pdch_act_cmd,
2505 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2506 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2507 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2508 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2509 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2510{
2511 struct gsm_bts *bts;
2512 struct gsm_bts_trx *trx;
2513 struct gsm_bts_trx_ts *ts;
2514 int bts_nr = atoi(argv[0]);
2515 int trx_nr = atoi(argv[1]);
2516 int ts_nr = atoi(argv[2]);
2517 int activate;
2518
2519 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2520 if (!bts) {
2521 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2522 return CMD_WARNING;
2523 }
2524
2525 if (!is_ipaccess_bts(bts)) {
2526 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2527 VTY_NEWLINE);
2528 return CMD_WARNING;
2529 }
2530
2531 trx = gsm_bts_trx_num(bts, trx_nr);
2532 if (!trx) {
2533 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2534 return CMD_WARNING;
2535 }
2536
2537 ts = &trx->ts[ts_nr];
2538 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2539 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2540 "mode%s", ts_nr, VTY_NEWLINE);
2541 return CMD_WARNING;
2542 }
2543
2544 if (!strcmp(argv[3], "activate"))
2545 activate = 1;
2546 else
2547 activate = 0;
2548
2549 rsl_ipacc_pdch_activate(ts, activate);
2550
2551 return CMD_SUCCESS;
2552
2553}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002554
Harald Welte40152872010-05-16 20:52:23 +02002555extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002556extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002557
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002558int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002559{
Harald Welte7bc28f62010-05-12 16:10:35 +00002560 install_element_ve(&show_net_cmd);
2561 install_element_ve(&show_bts_cmd);
2562 install_element_ve(&show_trx_cmd);
2563 install_element_ve(&show_ts_cmd);
2564 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08002565 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02002566 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002567
Harald Welte7bc28f62010-05-12 16:10:35 +00002568 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002569
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002570 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01002571 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01002572
Harald Weltee87eb462009-08-07 13:29:14 +02002573 install_element(CONFIG_NODE, &cfg_net_cmd);
2574 install_node(&net_node, config_write_net);
2575 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002576 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002577 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002578 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002579 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2580 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2581 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02002582 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01002583 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09002584 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01002585 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01002586 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01002587 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01002588 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01002589 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2590 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2591 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2592 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2593 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2594 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01002595 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002596 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2597 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2598 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2599 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2600 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2601 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2602 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2603 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2604 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01002605 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002606 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08002607 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01002608 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08002609 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002610
2611 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02002612 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08002613 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002614 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002615 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002616 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002617 install_element(BTS_NODE, &cfg_description_cmd);
2618 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02002619 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02002620 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002621 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2622 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002623 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002624 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte08011e22011-03-04 13:41:31 +01002625 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Harald Welte25572872009-10-20 00:22:00 +02002626 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002627 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2628 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02002629 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002630 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2631 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002632 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2633 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002634 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002635 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002636 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002637 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01002638 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2639 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01002640 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
2641 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
2642 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
2643 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
2644 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
2645 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02002646 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002647 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002648 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2649 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002650 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08002651 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002652 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08002653 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2654 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2655 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002656 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02002657 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
2658 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01002659 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
2660 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01002661 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002662
2663 install_element(BTS_NODE, &cfg_trx_cmd);
2664 install_node(&trx_node, dummy_config_write);
2665 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002666 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002667 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002668 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002669 install_element(TRX_NODE, &cfg_description_cmd);
2670 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002671 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02002672 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002673 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2674 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002675 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002676
2677 install_element(TRX_NODE, &cfg_ts_cmd);
2678 install_node(&ts_node, dummy_config_write);
2679 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002680 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002681 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002682 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02002683 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02002684 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02002685 install_element(TS_NODE, &cfg_ts_hsn_cmd);
2686 install_element(TS_NODE, &cfg_ts_maio_cmd);
2687 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
2688 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002689 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002690
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002691 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01002692 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002693
Harald Welte63b964e2010-05-31 16:40:40 +02002694 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01002695 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01002696 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02002697
Harald Welte40152872010-05-16 20:52:23 +02002698 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08002699
2700 return 0;
2701}