blob: 9fbb5dea5d025f47cf4dfbf11a0a496f6265c9e1 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte68628e82009-03-10 12:17:57 +00008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000022
Harald Welte4b037e42010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte68628e82009-03-10 12:17:57 +000028
29#include <arpa/inet.h>
30
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010031#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000032#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020033#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000034#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010035#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/utils.h>
37#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020038#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010039#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010040#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000041#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010042#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020043#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080044#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020045#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020046#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010047#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020048#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010049#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010050#include <openbsc/osmo_msc_data.h>
51#include <openbsc/osmo_bsc_rf.h>
Harald Welte68628e82009-03-10 12:17:57 +000052
Harald Weltec08e8be2011-03-04 13:53:51 +010053#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020054
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020055
56#define NETWORK_STR "Configure the GSM network\n"
57#define CODE_CMD_STR "Code commands\n"
58#define NAME_CMD_STR "Name Commands\n"
59#define NAME_STR "Name to use\n"
60#define LCHAN_NR_STR "Logical Channel Number\n"
61
62
Harald Welteea4647d2010-05-12 17:19:53 +000063/* FIXME: this should go to some common file */
64static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020065 { 0, "tns-block" },
66 { 1, "tns-block-retries" },
67 { 2, "tns-reset" },
68 { 3, "tns-reset-retries" },
69 { 4, "tns-test" },
70 { 5, "tns-alive" },
71 { 6, "tns-alive-retries" },
72 { 0, NULL }
73};
74
Harald Welteea4647d2010-05-12 17:19:53 +000075static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020076 { 0, "blocking-timer" },
77 { 1, "blocking-retries" },
78 { 2, "unblocking-retries" },
79 { 3, "reset-timer" },
80 { 4, "reset-retries" },
81 { 5, "suspend-timer" },
82 { 6, "suspend-retries" },
83 { 7, "resume-timer" },
84 { 8, "resume-retries" },
85 { 9, "capability-update-timer" },
86 { 10, "capability-update-retries" },
87 { 0, NULL }
88};
89
Harald Welte64c07d22011-02-15 11:43:27 +010090static const struct value_string bts_neigh_mode_strs[] = {
91 { NL_MODE_AUTOMATIC, "automatic" },
92 { NL_MODE_MANUAL, "manual" },
93 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
94 { 0, NULL }
95};
96
Harald Welte5013b2a2009-08-07 13:29:14 +020097struct cmd_node net_node = {
98 GSMNET_NODE,
99 "%s(network)#",
100 1,
101};
102
Harald Welte68628e82009-03-10 12:17:57 +0000103struct cmd_node bts_node = {
104 BTS_NODE,
105 "%s(bts)#",
106 1,
107};
108
109struct cmd_node trx_node = {
110 TRX_NODE,
111 "%s(trx)#",
112 1,
113};
114
115struct cmd_node ts_node = {
116 TS_NODE,
117 "%s(ts)#",
118 1,
119};
120
Harald Welte39231152010-05-27 13:39:40 +0200121extern struct gsm_network *bsc_gsmnet;
122
Harald Weltedcccb182010-05-16 20:52:23 +0200123struct gsm_network *gsmnet_from_vty(struct vty *v)
124{
Harald Welte39231152010-05-27 13:39:40 +0200125 /* In case we read from the config file, the vty->priv cannot
126 * point to a struct telnet_connection, and thus conn->priv
127 * will not point to the gsm_network structure */
128#if 0
Harald Weltedcccb182010-05-16 20:52:23 +0200129 struct telnet_connection *conn = v->priv;
130 return (struct gsm_network *) conn->priv;
Harald Welte39231152010-05-27 13:39:40 +0200131#else
132 return bsc_gsmnet;
133#endif
Harald Weltedcccb182010-05-16 20:52:23 +0200134}
135
Harald Welte68628e82009-03-10 12:17:57 +0000136static int dummy_config_write(struct vty *v)
137{
138 return CMD_SUCCESS;
139}
140
141static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
142{
Harald Welte1bc77352009-03-10 19:47:51 +0000143 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte867d9f32011-05-23 20:30:39 +0200144 abis_nm_opstate_name(nms->operational), nms->administrative,
145 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000146}
147
Harald Welteb908cb72009-12-22 13:09:29 +0100148static void dump_pchan_load_vty(struct vty *vty, char *prefix,
149 const struct pchan_load *pl)
150{
151 int i;
152
153 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
154 const struct load_counter *lc = &pl->pchan[i];
155 unsigned int percent;
156
157 if (lc->total == 0)
158 continue;
159
160 percent = (lc->used * 100) / lc->total;
161
162 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
163 gsm_pchan_name(i), percent, lc->used, lc->total,
164 VTY_NEWLINE);
165 }
166}
167
Harald Welte68628e82009-03-10 12:17:57 +0000168static void net_dump_vty(struct vty *vty, struct gsm_network *net)
169{
Harald Welteb908cb72009-12-22 13:09:29 +0100170 struct pchan_load pl;
171
Harald Welteef235b52009-03-10 12:34:02 +0000172 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
173 "and has %u BTS%s", net->country_code, net->network_code,
174 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000175 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000176 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000177 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000178 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200179 vty_out(vty, " Authentication policy: %s%s",
180 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100181 vty_out(vty, " Location updating reject cause: %u%s",
182 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900183 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
184 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100185 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
186 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800187 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
188 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100189 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
190 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100191 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
192 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100193 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
194 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100195 network_chan_load(&pl, net);
196 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
197 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100198
199 /* show rf */
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200200 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100201 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200202 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100203 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000204}
205
206DEFUN(show_net, show_net_cmd, "show network",
207 SHOW_STR "Display information about a GSM NETWORK\n")
208{
Harald Weltedcccb182010-05-16 20:52:23 +0200209 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000210 net_dump_vty(vty, net);
211
212 return CMD_SUCCESS;
213}
214
215static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
216{
Harald Welteedb37782009-05-01 14:59:07 +0000217 struct e1inp_line *line;
218
219 if (!e1l) {
220 vty_out(vty, " None%s", VTY_NEWLINE);
221 return;
222 }
223
224 line = e1l->ts->line;
225
226 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
227 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000228 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000229 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000230 e1l->tei, e1l->sapi, VTY_NEWLINE);
231}
232
233static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
234{
Harald Welteb908cb72009-12-22 13:09:29 +0100235 struct pchan_load pl;
236
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200237 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200238 "BSIC %u, TSC %u and %u TRX%s",
239 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200240 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200241 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200242 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200243 vty_out(vty, "Description: %s%s",
244 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100245 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100246 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100247 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
248 VTY_NEWLINE);
249 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100250 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100251 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
252 VTY_NEWLINE);
253 vty_out(vty, "RACH Max transmissions: %u%s",
254 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
255 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100256 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200257 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200258 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
259 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000260 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200261 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000262 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200263 bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100264 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
265 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200266 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
267 vty_out(vty, " Skip Reset: %d%s",
268 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000269 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200270 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000271 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200272 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200273 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
274 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000275 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100276 if (is_ipaccess_bts(bts)) {
277 vty_out(vty, " OML Link state: %s.%s",
278 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
279 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200280 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
281 e1isl_dump_vty(vty, bts->oml_link);
282 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100283
284 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100285 memset(&pl, 0, sizeof(pl));
286 bts_chan_load(&pl, bts);
287 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
288 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000289}
290
291DEFUN(show_bts, show_bts_cmd, "show bts [number]",
292 SHOW_STR "Display information about a BTS\n"
293 "BTS number")
294{
Harald Weltedcccb182010-05-16 20:52:23 +0200295 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000296 int bts_nr;
297
298 if (argc != 0) {
299 /* use the BTS number that the user has specified */
300 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100301 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000302 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000303 VTY_NEWLINE);
304 return CMD_WARNING;
305 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200306 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000307 return CMD_SUCCESS;
308 }
309 /* print all BTS's */
310 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200311 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000312
313 return CMD_SUCCESS;
314}
315
Harald Welte42581822009-08-08 16:12:58 +0200316/* utility functions */
317static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
318 const char *ts, const char *ss)
319{
320 e1_link->e1_nr = atoi(line);
321 e1_link->e1_ts = atoi(ts);
322 if (!strcmp(ss, "full"))
323 e1_link->e1_ts_ss = 255;
324 else
325 e1_link->e1_ts_ss = atoi(ss);
326}
327
328static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
329 const char *prefix)
330{
331 if (!e1_link->e1_ts)
332 return;
333
334 if (e1_link->e1_ts_ss == 255)
335 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
336 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
337 else
338 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
339 prefix, e1_link->e1_nr, e1_link->e1_ts,
340 e1_link->e1_ts_ss, VTY_NEWLINE);
341}
342
343
Harald Welte67ce0732009-08-06 19:06:46 +0200344static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
345{
Harald Welte42581822009-08-08 16:12:58 +0200346 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte135a6482011-05-30 12:09:13 +0200347 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
348 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200349 if (ts->pchan != GSM_PCHAN_NONE)
350 vty_out(vty, " phys_chan_config %s%s",
351 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200352 vty_out(vty, " hopping enabled %u%s",
353 ts->hopping.enabled, VTY_NEWLINE);
354 if (ts->hopping.enabled) {
355 unsigned int i;
356 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200357 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200358 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200359 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200360 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
361 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
362 continue;
363 vty_out(vty, " hopping arfcn add %u%s",
364 i, VTY_NEWLINE);
365 }
Harald Welte127af342010-12-24 12:07:07 +0100366 }
Harald Welte42581822009-08-08 16:12:58 +0200367 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100368
369 if (ts->trx->bts->model->config_write_ts)
370 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200371}
372
373static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
374{
375 int i;
376
Harald Welte5013b2a2009-08-07 13:29:14 +0200377 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200378 if (trx->description)
379 vty_out(vty, " description %s%s", trx->description,
380 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200381 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200382 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200383 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200384 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100385 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200386 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200387 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
388 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200389
Harald Welteface7ed2011-02-14 16:15:21 +0100390 if (trx->bts->model->config_write_trx)
391 trx->bts->model->config_write_trx(vty, trx);
392
Harald Welte67ce0732009-08-06 19:06:46 +0200393 for (i = 0; i < TRX_NR_TS; i++)
394 config_write_ts_single(vty, &trx->ts[i]);
395}
396
Harald Welte615e9562010-05-11 23:50:21 +0200397static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
398{
399 unsigned int i;
400 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
401 VTY_NEWLINE);
402 if (bts->gprs.mode == BTS_GPRS_NONE)
403 return;
404
405 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
406 VTY_NEWLINE);
407 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
408 VTY_NEWLINE);
409 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
410 vty_out(vty, " gprs cell timer %s %u%s",
411 get_value_string(gprs_bssgp_cfg_strs, i),
412 bts->gprs.cell.timer[i], VTY_NEWLINE);
413 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
414 VTY_NEWLINE);
415 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
416 vty_out(vty, " gprs ns timer %s %u%s",
417 get_value_string(gprs_ns_timer_strs, i),
418 bts->gprs.nse.timer[i], VTY_NEWLINE);
419 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
420 struct gsm_bts_gprs_nsvc *nsvc =
421 &bts->gprs.nsvc[i];
422 struct in_addr ia;
423
424 ia.s_addr = htonl(nsvc->remote_ip);
425 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
426 nsvc->nsvci, VTY_NEWLINE);
427 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
428 nsvc->local_port, VTY_NEWLINE);
429 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
430 nsvc->remote_port, VTY_NEWLINE);
431 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
432 inet_ntoa(ia), VTY_NEWLINE);
433 }
434}
435
Harald Welte67ce0732009-08-06 19:06:46 +0200436static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
437{
438 struct gsm_bts_trx *trx;
Harald Welte9fbff4a2010-07-30 11:50:09 +0200439 int i;
Harald Welte67ce0732009-08-06 19:06:46 +0200440
Harald Welte5013b2a2009-08-07 13:29:14 +0200441 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
442 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200443 if (bts->description)
444 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200445 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100446 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200447 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200448 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200449 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
450 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte45f91712012-07-08 16:48:11 +0200451 if (bts->tz.override != 0)
452 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200453 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100454 vty_out(vty, " cell reselection hysteresis %u%s",
455 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
456 vty_out(vty, " rxlev access min %u%s",
457 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100458
459 if (bts->si_common.cell_ro_sel_par.present) {
460 struct gsm48_si_selection_params *sp;
461 sp = &bts->si_common.cell_ro_sel_par;
462
463 if (sp->cbq)
464 vty_out(vty, " cell bar qualify %u%s",
465 sp->cbq, VTY_NEWLINE);
466
467 if (sp->cell_resel_off)
468 vty_out(vty, " cell reselection offset %u%s",
469 sp->cell_resel_off*2, VTY_NEWLINE);
470
471 if (sp->temp_offs == 7)
472 vty_out(vty, " temporary offset infinite%s",
473 VTY_NEWLINE);
474 else if (sp->temp_offs)
475 vty_out(vty, " temporary offset %u%s",
476 sp->temp_offs*10, VTY_NEWLINE);
477
478 if (sp->penalty_time == 31)
479 vty_out(vty, " penalty time reserved%s",
480 VTY_NEWLINE);
481 else if (sp->penalty_time)
482 vty_out(vty, " penalty time %u%s",
483 (sp->penalty_time*20)+20, VTY_NEWLINE);
484 }
485
Harald Weltea43f7892009-12-01 18:04:30 +0530486 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200487 vty_out(vty, " periodic location update %u%s",
Dieter Spaard6613e02010-10-05 21:10:55 +0200488 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200489 vty_out(vty, " channel allocator %s%s",
490 bts->chan_alloc_reverse ? "descending" : "ascending",
491 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100492 vty_out(vty, " rach tx integer %u%s",
493 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
494 vty_out(vty, " rach max transmission %u%s",
495 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
496 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800497
498 if (bts->rach_b_thresh != -1)
499 vty_out(vty, " rach nm busy threshold %u%s",
500 bts->rach_b_thresh, VTY_NEWLINE);
501 if (bts->rach_ldavg_slots != -1)
502 vty_out(vty, " rach nm load average %u%s",
503 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100504 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200505 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800506 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
507 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200508 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
509 if (bts->si_mode_static & (1 << i)) {
510 vty_out(vty, " system-information %s mode static%s",
511 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
512 vty_out(vty, " system-information %s static %s%s",
513 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100514 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200515 VTY_NEWLINE);
516 }
517 }
Harald Weltefd355a32011-03-04 13:41:31 +0100518 switch (bts->type) {
519 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200520 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200521 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200522 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200523 vty_out(vty, " oml ip.access stream_id %u line %u%s",
524 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100525 break;
526 case GSM_BTS_TYPE_HSL_FEMTO:
527 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200528 vty_out(vty, " oml hsl line %u%s",
529 bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100530 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200531 case GSM_BTS_TYPE_NOKIA_SITE:
532 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
533 break;
Harald Weltefd355a32011-03-04 13:41:31 +0100534 default:
Harald Welte42581822009-08-08 16:12:58 +0200535 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
536 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100537 break;
Harald Welte42581822009-08-08 16:12:58 +0200538 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800539
540 /* if we have a limit, write it */
541 if (bts->paging.free_chans_need >= 0)
542 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
543
Harald Welte32c09622011-01-11 23:44:56 +0100544 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100545 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
546 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100547 for (i = 0; i < 1024; i++) {
548 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
549 vty_out(vty, " neighbor-list add arfcn %u%s",
550 i, VTY_NEWLINE);
551 }
552 }
Harald Welte64c07d22011-02-15 11:43:27 +0100553 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
554 for (i = 0; i < 1024; i++) {
555 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
556 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
557 i, VTY_NEWLINE);
558 }
559 }
Harald Welte32c09622011-01-11 23:44:56 +0100560
Harald Welte615e9562010-05-11 23:50:21 +0200561 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200562
Harald Welteface7ed2011-02-14 16:15:21 +0100563 if (bts->model->config_write_bts)
564 bts->model->config_write_bts(vty, bts);
565
Harald Welte67ce0732009-08-06 19:06:46 +0200566 llist_for_each_entry(trx, &bts->trx_list, list)
567 config_write_trx_single(vty, trx);
568}
569
570static int config_write_bts(struct vty *v)
571{
Harald Weltedcccb182010-05-16 20:52:23 +0200572 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200573 struct gsm_bts *bts;
574
575 llist_for_each_entry(bts, &gsmnet->bts_list, list)
576 config_write_bts_single(v, bts);
577
578 return CMD_SUCCESS;
579}
580
Harald Welte5013b2a2009-08-07 13:29:14 +0200581static int config_write_net(struct vty *vty)
582{
Harald Weltedcccb182010-05-16 20:52:23 +0200583 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
584
Harald Welte5013b2a2009-08-07 13:29:14 +0200585 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200586 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200587 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200588 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
589 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200590 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100591 vty_out(vty, " location updating reject cause %u%s",
592 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900593 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100594 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800595 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100596 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
597 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100598 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100599 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100600 vty_out(vty, " handover window rxlev averaging %u%s",
601 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
602 vty_out(vty, " handover window rxqual averaging %u%s",
603 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
604 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
605 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
606 vty_out(vty, " handover power budget interval %u%s",
607 gsmnet->handover.pwr_interval, VTY_NEWLINE);
608 vty_out(vty, " handover power budget hysteresis %u%s",
609 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
610 vty_out(vty, " handover maximum distance %u%s",
611 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100612 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100613 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
614 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
615 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
616 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
617 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
618 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
619 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
620 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
621 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100622 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100623 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100624 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100625 vty_out(vty, " subscriber-keep-in-ram %d%s",
626 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200627
628 return CMD_SUCCESS;
629}
Harald Welte67ce0732009-08-06 19:06:46 +0200630
Harald Welte68628e82009-03-10 12:17:57 +0000631static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
632{
633 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
634 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200635 vty_out(vty, "Description: %s%s",
636 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200637 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200638 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200639 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200640 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000641 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200642 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000643 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200644 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200645 if (is_ipaccess_bts(trx->bts)) {
646 vty_out(vty, " ip.access stream ID: 0x%02x%s",
647 trx->rsl_tei, VTY_NEWLINE);
648 } else {
649 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
650 e1isl_dump_vty(vty, trx->rsl_link);
651 }
Harald Welte68628e82009-03-10 12:17:57 +0000652}
653
654DEFUN(show_trx,
655 show_trx_cmd,
656 "show trx [bts_nr] [trx_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200657 SHOW_STR "Display information about a TRX\n"
658 "BTS Number\n"
659 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000660{
Harald Weltedcccb182010-05-16 20:52:23 +0200661 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000662 struct gsm_bts *bts = NULL;
663 struct gsm_bts_trx *trx;
664 int bts_nr, trx_nr;
665
666 if (argc >= 1) {
667 /* use the BTS number that the user has specified */
668 bts_nr = atoi(argv[0]);
669 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000670 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000671 VTY_NEWLINE);
672 return CMD_WARNING;
673 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200674 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000675 }
676 if (argc >= 2) {
677 trx_nr = atoi(argv[1]);
678 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000679 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000680 VTY_NEWLINE);
681 return CMD_WARNING;
682 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200683 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000684 trx_dump_vty(vty, trx);
685 return CMD_SUCCESS;
686 }
687 if (bts) {
688 /* print all TRX in this BTS */
689 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200690 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000691 trx_dump_vty(vty, trx);
692 }
693 return CMD_SUCCESS;
694 }
695
696 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200697 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000698 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200699 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000700 trx_dump_vty(vty, trx);
701 }
702 }
703
704 return CMD_SUCCESS;
705}
706
Harald Welte67ce0732009-08-06 19:06:46 +0200707
Harald Welte68628e82009-03-10 12:17:57 +0000708static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
709{
Harald Welte135a6482011-05-30 12:09:13 +0200710 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100711 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte135a6482011-05-30 12:09:13 +0200712 gsm_pchan_name(ts->pchan), ts->tsc);
Harald Weltecd103a92010-12-24 12:14:52 +0100713 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100714 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100715 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
716 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000717 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200718 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530719 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000720 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
721 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
722 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000723}
724
725DEFUN(show_ts,
726 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000727 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200728 SHOW_STR "Display information about a TS\n"
729 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000730{
Harald Weltedcccb182010-05-16 20:52:23 +0200731 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100732 struct gsm_bts *bts = NULL;
733 struct gsm_bts_trx *trx = NULL;
734 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000735 int bts_nr, trx_nr, ts_nr;
736
737 if (argc >= 1) {
738 /* use the BTS number that the user has specified */
739 bts_nr = atoi(argv[0]);
740 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000741 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000742 VTY_NEWLINE);
743 return CMD_WARNING;
744 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200745 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000746 }
747 if (argc >= 2) {
748 trx_nr = atoi(argv[1]);
749 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000750 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000751 VTY_NEWLINE);
752 return CMD_WARNING;
753 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200754 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000755 }
756 if (argc >= 3) {
757 ts_nr = atoi(argv[2]);
758 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000759 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000760 VTY_NEWLINE);
761 return CMD_WARNING;
762 }
Harald Welte274d0152010-12-24 12:05:03 +0100763 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000764 ts = &trx->ts[ts_nr];
765 ts_dump_vty(vty, ts);
766 return CMD_SUCCESS;
767 }
Harald Welte274d0152010-12-24 12:05:03 +0100768
769 if (bts && trx) {
770 /* Iterate over all TS in this TRX */
771 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
772 ts = &trx->ts[ts_nr];
773 ts_dump_vty(vty, ts);
774 }
775 } else if (bts) {
776 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000777 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200778 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000779 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
780 ts = &trx->ts[ts_nr];
781 ts_dump_vty(vty, ts);
782 }
783 }
Harald Welte274d0152010-12-24 12:05:03 +0100784 } else {
785 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
786 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
787 bts = gsm_bts_num(net, bts_nr);
788 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
789 trx = gsm_bts_trx_num(bts, trx_nr);
790 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
791 ts = &trx->ts[ts_nr];
792 ts_dump_vty(vty, ts);
793 }
794 }
795 }
Harald Welte68628e82009-03-10 12:17:57 +0000796 }
797
798 return CMD_SUCCESS;
799}
800
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100801static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000802{
Harald Weltefcd24452009-06-20 18:15:19 +0200803 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000804 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000805 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000806 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000807 if (subscr->extension)
808 vty_out(vty, " Extension: %s%s", subscr->extension,
809 VTY_NEWLINE);
810 if (subscr->imsi)
811 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200812 if (subscr->tmsi != GSM_RESERVED_TMSI)
813 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200814 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100815
Harald Welte (local)15920de2009-08-14 20:27:16 +0200816 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000817}
818
Harald Welte8387a492009-12-22 21:43:14 +0100819static void meas_rep_dump_uni_vty(struct vty *vty,
820 struct gsm_meas_rep_unidir *mru,
821 const char *prefix,
822 const char *dir)
823{
824 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
825 prefix, dir, rxlev2dbm(mru->full.rx_lev),
826 dir, rxlev2dbm(mru->sub.rx_lev));
827 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
828 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
829 VTY_NEWLINE);
830}
831
832static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
833 const char *prefix)
834{
835 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
836 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
837 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
838 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
839 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
840 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
841 VTY_NEWLINE);
842 if (mr->flags & MEAS_REP_F_MS_TO)
843 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
844 mr->ms_timing_offset, VTY_NEWLINE);
845 if (mr->flags & MEAS_REP_F_MS_L1)
846 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
847 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
848 if (mr->flags & MEAS_REP_F_DL_VALID)
849 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
850 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
851}
852
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800853static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000854{
Harald Welte8387a492009-12-22 21:43:14 +0100855 int idx;
856
Harald Welte85bded82010-12-24 12:22:34 +0100857 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
858 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
859 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800860 vty_out(vty, " Connection: %u, State: %s%s",
861 lchan->conn ? 1: 0,
Harald Welte1887f9d2009-12-29 10:52:38 +0100862 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100863 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
864 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
865 - lchan->bs_power*2,
866 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
867 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800868 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000869 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800870 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000871 } else
872 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530873 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
874 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200875 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530876 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
877 inet_ntoa(ia), lchan->abis_ip.bound_port,
878 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
879 VTY_NEWLINE);
880 }
Harald Welte8387a492009-12-22 21:43:14 +0100881
882 /* we want to report the last measurement report */
883 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
884 lchan->meas_rep_idx, 1);
885 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000886}
887
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800888static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
889{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800890 struct gsm_meas_rep *mr;
891 int idx;
892
893 /* we want to report the last measurement report */
894 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
895 lchan->meas_rep_idx, 1);
896 mr = &lchan->meas_rep[idx];
897
Harald Welte85bded82010-12-24 12:22:34 +0100898 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
899 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
900 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +0100901 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800902 rxlev2dbm(mr->dl.full.rx_lev),
903 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800904 VTY_NEWLINE);
905}
906
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100907
908static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
909 void (*dump_cb)(struct vty *, struct gsm_lchan *))
910{
911 int lchan_nr;
912 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
913 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
914 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
915 continue;
916 dump_cb(vty, lchan);
917 }
918
919 return CMD_SUCCESS;
920}
921
922static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
923 void (*dump_cb)(struct vty *, struct gsm_lchan *))
924{
925 int ts_nr;
926
927 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
928 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
929 dump_lchan_trx_ts(ts, vty, dump_cb);
930 }
931
932 return CMD_SUCCESS;
933}
934
935static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
936 void (*dump_cb)(struct vty *, struct gsm_lchan *))
937{
938 int trx_nr;
939
940 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
941 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
942 dump_lchan_trx(trx, vty, dump_cb);
943 }
944
945 return CMD_SUCCESS;
946}
947
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800948static int lchan_summary(struct vty *vty, int argc, const char **argv,
949 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +0000950{
Harald Weltedcccb182010-05-16 20:52:23 +0200951 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000952 struct gsm_bts *bts;
953 struct gsm_bts_trx *trx;
954 struct gsm_bts_trx_ts *ts;
955 struct gsm_lchan *lchan;
956 int bts_nr, trx_nr, ts_nr, lchan_nr;
957
958 if (argc >= 1) {
959 /* use the BTS number that the user has specified */
960 bts_nr = atoi(argv[0]);
961 if (bts_nr >= net->num_bts) {
962 vty_out(vty, "%% can't find BTS %s%s", argv[0],
963 VTY_NEWLINE);
964 return CMD_WARNING;
965 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200966 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100967
968 if (argc == 1)
969 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +0000970 }
971 if (argc >= 2) {
972 trx_nr = atoi(argv[1]);
973 if (trx_nr >= bts->num_trx) {
974 vty_out(vty, "%% can't find TRX %s%s", argv[1],
975 VTY_NEWLINE);
976 return CMD_WARNING;
977 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200978 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100979
980 if (argc == 2)
981 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +0000982 }
983 if (argc >= 3) {
984 ts_nr = atoi(argv[2]);
985 if (ts_nr >= TRX_NR_TS) {
986 vty_out(vty, "%% can't find TS %s%s", argv[2],
987 VTY_NEWLINE);
988 return CMD_WARNING;
989 }
990 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100991
992 if (argc == 3)
993 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +0000994 }
995 if (argc >= 4) {
996 lchan_nr = atoi(argv[3]);
997 if (lchan_nr >= TS_MAX_LCHAN) {
998 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
999 VTY_NEWLINE);
1000 return CMD_WARNING;
1001 }
1002 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001003 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001004 return CMD_SUCCESS;
1005 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001006
1007
Harald Welte68628e82009-03-10 12:17:57 +00001008 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001009 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001010 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001011 }
1012
1013 return CMD_SUCCESS;
1014}
1015
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001016
1017DEFUN(show_lchan,
1018 show_lchan_cmd,
1019 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
1020 SHOW_STR "Display information about a logical channel\n"
1021 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001022 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001023
1024{
1025 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1026}
1027
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001028DEFUN(show_lchan_summary,
1029 show_lchan_summary_cmd,
1030 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
1031 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001032 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001033 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001034 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001035{
1036 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1037}
1038
Harald Weltebe4b7302009-05-23 16:59:33 +00001039static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001040{
1041 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1042 subscr_dump_vty(vty, pag->subscr);
1043}
1044
Harald Weltebe4b7302009-05-23 16:59:33 +00001045static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001046{
1047 struct gsm_paging_request *pag;
1048
1049 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1050 paging_dump_vty(vty, pag);
1051}
1052
1053DEFUN(show_paging,
1054 show_paging_cmd,
1055 "show paging [bts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001056 SHOW_STR "Display information about paging reuqests of a BTS\n"
1057 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001058{
Harald Weltedcccb182010-05-16 20:52:23 +02001059 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001060 struct gsm_bts *bts;
1061 int bts_nr;
1062
1063 if (argc >= 1) {
1064 /* use the BTS number that the user has specified */
1065 bts_nr = atoi(argv[0]);
1066 if (bts_nr >= net->num_bts) {
1067 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1068 VTY_NEWLINE);
1069 return CMD_WARNING;
1070 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001071 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001072 bts_paging_dump_vty(vty, bts);
1073
1074 return CMD_SUCCESS;
1075 }
1076 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001077 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001078 bts_paging_dump_vty(vty, bts);
1079 }
1080
1081 return CMD_SUCCESS;
1082}
1083
Harald Welte5013b2a2009-08-07 13:29:14 +02001084DEFUN(cfg_net,
1085 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001086 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001087{
Harald Weltedcccb182010-05-16 20:52:23 +02001088 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001089 vty->node = GSMNET_NODE;
1090
1091 return CMD_SUCCESS;
1092}
1093
Harald Welte5013b2a2009-08-07 13:29:14 +02001094DEFUN(cfg_net_ncc,
1095 cfg_net_ncc_cmd,
1096 "network country code <1-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001097 "Set the GSM network country code\n"
1098 "Country commands\n"
1099 CODE_CMD_STR
1100 "Network Country Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001101{
Harald Weltedcccb182010-05-16 20:52:23 +02001102 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1103
Harald Welte5013b2a2009-08-07 13:29:14 +02001104 gsmnet->country_code = atoi(argv[0]);
1105
1106 return CMD_SUCCESS;
1107}
1108
1109DEFUN(cfg_net_mnc,
1110 cfg_net_mnc_cmd,
Dieter Spaar402cced2011-07-27 23:43:56 +02001111 "mobile network code <0-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001112 "Set the GSM mobile network code\n"
1113 "Network Commands\n"
1114 CODE_CMD_STR
1115 "Mobile Network Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001116{
Harald Weltedcccb182010-05-16 20:52:23 +02001117 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1118
Harald Welte5013b2a2009-08-07 13:29:14 +02001119 gsmnet->network_code = atoi(argv[0]);
1120
1121 return CMD_SUCCESS;
1122}
1123
1124DEFUN(cfg_net_name_short,
1125 cfg_net_name_short_cmd,
1126 "short name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001127 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001128{
Harald Weltedcccb182010-05-16 20:52:23 +02001129 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1130
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001131 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001132 return CMD_SUCCESS;
1133}
1134
1135DEFUN(cfg_net_name_long,
1136 cfg_net_name_long_cmd,
1137 "long name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001138 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001139{
Harald Weltedcccb182010-05-16 20:52:23 +02001140 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1141
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001142 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001143 return CMD_SUCCESS;
1144}
Harald Welte40f82892009-05-23 17:31:39 +00001145
Harald Welte (local)69de3972009-08-12 14:42:23 +02001146DEFUN(cfg_net_auth_policy,
1147 cfg_net_auth_policy_cmd,
1148 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001149 "Authentication (not cryptographic)\n"
1150 "Set the GSM network authentication policy\n"
1151 "Require the MS to be activated in HLR\n"
1152 "Accept all MS, whether in HLR or not\n"
1153 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001154{
1155 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001156 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001157
1158 gsmnet->auth_policy = policy;
1159
1160 return CMD_SUCCESS;
1161}
1162
Harald Welte1085c092009-11-18 20:33:19 +01001163DEFUN(cfg_net_reject_cause,
1164 cfg_net_reject_cause_cmd,
1165 "location updating reject cause <2-111>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001166 "Set the reject cause of location updating reject\n"
1167 "Set the reject cause of location updating reject\n"
1168 "Set the reject cause of location updating reject\n"
1169 "Set the reject cause of location updating reject\n"
1170 "Cause Value as Per GSM TS 04.08\n")
Harald Welte1085c092009-11-18 20:33:19 +01001171{
Harald Weltedcccb182010-05-16 20:52:23 +02001172 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1173
Harald Welte1085c092009-11-18 20:33:19 +01001174 gsmnet->reject_cause = atoi(argv[0]);
1175
1176 return CMD_SUCCESS;
1177}
1178
Harald Welte4381cfe2009-08-30 15:47:06 +09001179DEFUN(cfg_net_encryption,
1180 cfg_net_encryption_cmd,
Harald Weltead66a2d2012-07-04 21:37:56 +02001181 "encryption a5 (0|1|2|3)",
Harald Welte28326062010-05-14 20:05:17 +02001182 "Encryption options\n"
1183 "A5 encryption\n" "A5/0: No encryption\n"
Harald Weltead66a2d2012-07-04 21:37:56 +02001184 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1185 "A5/3: 'New' Secure Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001186{
Harald Weltedcccb182010-05-16 20:52:23 +02001187 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1188
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001189 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001190
1191 return CMD_SUCCESS;
1192}
1193
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001194DEFUN(cfg_net_neci,
1195 cfg_net_neci_cmd,
1196 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001197 "New Establish Cause Indication\n"
1198 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001199{
Harald Weltedcccb182010-05-16 20:52:23 +02001200 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1201
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001202 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001203 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001204 return CMD_SUCCESS;
1205}
1206
Harald Welteeab84a12009-12-13 10:53:12 +01001207DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1208 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001209 "Radio Resource Location Protocol\n"
1210 "Set the Radio Resource Location Protocol Mode\n"
1211 "Don't send RRLP request\n"
1212 "Request MS-based location\n"
1213 "Request any location, prefer MS-based\n"
1214 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001215{
Harald Weltedcccb182010-05-16 20:52:23 +02001216 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1217
Harald Welteeab84a12009-12-13 10:53:12 +01001218 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1219
1220 return CMD_SUCCESS;
1221}
1222
Harald Welte648b6ce2009-12-14 09:00:24 +01001223DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1224 "mm info (0|1)",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001225 "Mobility Management\n"
1226 "Send MM INFO after LOC UPD ACCEPT\n"
1227 "Disable\n" "Enable\n")
Harald Welte648b6ce2009-12-14 09:00:24 +01001228{
Harald Weltedcccb182010-05-16 20:52:23 +02001229 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1230
Harald Welte648b6ce2009-12-14 09:00:24 +01001231 gsmnet->send_mm_info = atoi(argv[0]);
1232
1233 return CMD_SUCCESS;
1234}
1235
Harald Welte8f0ed552010-05-11 21:53:49 +02001236#define HANDOVER_STR "Handover Options\n"
1237
Harald Weltebc814502009-12-19 21:41:52 +01001238DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1239 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001240 HANDOVER_STR
1241 "Don't perform in-call handover\n"
1242 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001243{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001244 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001245 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001246
1247 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001248 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1249 "is enabled by using the -P command line option%s",
1250 VTY_NEWLINE);
1251 return CMD_WARNING;
1252 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001253 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001254
1255 return CMD_SUCCESS;
1256}
1257
Harald Welte8f0ed552010-05-11 21:53:49 +02001258#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1259#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1260#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1261#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001262#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001263
Harald Welteb720bd32009-12-21 16:51:50 +01001264DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1265 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001266 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001267 "How many RxLev measurements are used for averaging\n"
1268 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001269{
Harald Weltedcccb182010-05-16 20:52:23 +02001270 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001271 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1272 return CMD_SUCCESS;
1273}
1274
1275DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1276 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001277 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001278 "How many RxQual measurements are used for averaging\n"
1279 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001280{
Harald Weltedcccb182010-05-16 20:52:23 +02001281 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001282 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1283 return CMD_SUCCESS;
1284}
1285
1286DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1287 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001288 HO_WIN_RXLEV_STR "Neighbor\n"
1289 "How many RxQual measurements are used for averaging\n"
1290 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001291{
Harald Weltedcccb182010-05-16 20:52:23 +02001292 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001293 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1294 return CMD_SUCCESS;
1295}
1296
1297DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1298 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001299 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001300 "How often to check if we have a better cell (SACCH frames)\n"
1301 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001302{
Harald Weltedcccb182010-05-16 20:52:23 +02001303 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001304 gsmnet->handover.pwr_interval = atoi(argv[0]);
1305 return CMD_SUCCESS;
1306}
1307
1308DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1309 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001310 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001311 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1312 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001313{
Harald Weltedcccb182010-05-16 20:52:23 +02001314 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001315 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1316 return CMD_SUCCESS;
1317}
1318
1319DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1320 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001321 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001322 "How big is the maximum timing advance before HO is forced\n"
1323 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001324{
Harald Weltedcccb182010-05-16 20:52:23 +02001325 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001326 gsmnet->handover.max_distance = atoi(argv[0]);
1327 return CMD_SUCCESS;
1328}
Harald Weltebc814502009-12-19 21:41:52 +01001329
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001330DEFUN(cfg_net_pag_any_tch,
1331 cfg_net_pag_any_tch_cmd,
1332 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001333 "Assign a TCH when receiving a Paging Any request\n"
1334 "Any Channel\n" "Use\n" "TCH\n"
1335 "Do not use TCH for Paging Request Any\n"
1336 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001337{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001338 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001339 gsmnet->pag_any_tch = atoi(argv[0]);
1340 gsm_net_update_ctype(gsmnet);
1341 return CMD_SUCCESS;
1342}
1343
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001344#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001345 DEFUN(cfg_net_T##number, \
1346 cfg_net_T##number##_cmd, \
1347 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001348 "Configure GSM Timers\n" \
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001349 doc "Timer Value\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001350{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001351 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001352 int value = atoi(argv[0]); \
1353 \
1354 if (value < 0 || value > 65535) { \
1355 vty_out(vty, "Timer value %s out of range.%s", \
1356 argv[0], VTY_NEWLINE); \
1357 return CMD_WARNING; \
1358 } \
1359 \
1360 gsmnet->T##number = value; \
1361 return CMD_SUCCESS; \
1362}
1363
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001364DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1365DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001366DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001367DECLARE_TIMER(3107, "Currently not used.\n")
1368DECLARE_TIMER(3109, "Currently not used.\n")
1369DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1370DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1371DECLARE_TIMER(3115, "Currently not used.\n")
1372DECLARE_TIMER(3117, "Currently not used.\n")
1373DECLARE_TIMER(3119, "Currently not used.\n")
1374DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1375DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001376
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001377DEFUN(cfg_net_dtx,
1378 cfg_net_dtx_cmd,
1379 "dtx-used (0|1)",
1380 "Enable the usage of DTX.\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001381 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001382{
1383 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1384 gsmnet->dtx_enabled = atoi(argv[0]);
1385 return CMD_SUCCESS;
1386}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001387
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001388DEFUN(cfg_net_subscr_keep,
1389 cfg_net_subscr_keep_cmd,
1390 "subscriber-keep-in-ram (0|1)",
1391 "Keep unused subscribers in RAM.\n"
1392 "Delete unused subscribers\n" "Keep unused subscribers\n")
1393{
1394 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1395 gsmnet->keep_subscr = atoi(argv[0]);
1396 return CMD_SUCCESS;
1397}
1398
Harald Welte5258fc42009-03-28 19:07:53 +00001399/* per-BTS configuration */
1400DEFUN(cfg_bts,
1401 cfg_bts_cmd,
1402 "bts BTS_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001403 "Select a BTS to configure\n"
1404 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001405{
Harald Weltedcccb182010-05-16 20:52:23 +02001406 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001407 int bts_nr = atoi(argv[0]);
1408 struct gsm_bts *bts;
1409
Harald Weltee441d9c2009-06-21 16:17:15 +02001410 if (bts_nr > gsmnet->num_bts) {
1411 vty_out(vty, "%% The next unused BTS number is %u%s",
1412 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001413 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001414 } else if (bts_nr == gsmnet->num_bts) {
1415 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001416 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1417 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001418 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001419 bts = gsm_bts_num(gsmnet, bts_nr);
1420
Daniel Willmannf15c2762010-01-11 13:43:07 +01001421 if (!bts) {
1422 vty_out(vty, "%% Unable to allocate BTS %u%s",
1423 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001424 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001425 }
Harald Welte5258fc42009-03-28 19:07:53 +00001426
1427 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001428 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001429 vty->node = BTS_NODE;
1430
1431 return CMD_SUCCESS;
1432}
1433
1434DEFUN(cfg_bts_type,
1435 cfg_bts_type_cmd,
1436 "type TYPE",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001437 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001438{
1439 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001440 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001441
Harald Welte39315c42010-01-10 18:01:52 +01001442 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1443 if (rc < 0)
1444 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001445
Harald Welte5258fc42009-03-28 19:07:53 +00001446 return CMD_SUCCESS;
1447}
1448
Harald Weltefcd24452009-06-20 18:15:19 +02001449DEFUN(cfg_bts_band,
1450 cfg_bts_band_cmd,
1451 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001452 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001453{
1454 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001455 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001456
1457 if (band < 0) {
1458 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1459 band, VTY_NEWLINE);
1460 return CMD_WARNING;
1461 }
1462
1463 bts->band = band;
1464
1465 return CMD_SUCCESS;
1466}
1467
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001468DEFUN(cfg_bts_ci,
1469 cfg_bts_ci_cmd,
1470 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001471 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001472{
1473 struct gsm_bts *bts = vty->index;
1474 int ci = atoi(argv[0]);
1475
1476 if (ci < 0 || ci > 0xffff) {
1477 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1478 ci, VTY_NEWLINE);
1479 return CMD_WARNING;
1480 }
1481 bts->cell_identity = ci;
1482
1483 return CMD_SUCCESS;
1484}
1485
Harald Welte5258fc42009-03-28 19:07:53 +00001486DEFUN(cfg_bts_lac,
1487 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001488 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001489 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001490{
1491 struct gsm_bts *bts = vty->index;
1492 int lac = atoi(argv[0]);
1493
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001494 if (lac < 0 || lac > 0xffff) {
1495 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001496 lac, VTY_NEWLINE);
1497 return CMD_WARNING;
1498 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001499
1500 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1501 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1502 lac, VTY_NEWLINE);
1503 return CMD_WARNING;
1504 }
1505
Harald Welte5258fc42009-03-28 19:07:53 +00001506 bts->location_area_code = lac;
1507
1508 return CMD_SUCCESS;
1509}
1510
Harald Weltea43f7892009-12-01 18:04:30 +05301511
Harald Welte5258fc42009-03-28 19:07:53 +00001512DEFUN(cfg_bts_tsc,
1513 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001514 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001515 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001516{
1517 struct gsm_bts *bts = vty->index;
1518 int tsc = atoi(argv[0]);
1519
Harald Welte5258fc42009-03-28 19:07:53 +00001520 bts->tsc = tsc;
1521
1522 return CMD_SUCCESS;
1523}
1524
Harald Welte78f2f502009-05-23 16:56:52 +00001525DEFUN(cfg_bts_bsic,
1526 cfg_bts_bsic_cmd,
1527 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001528 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1529 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001530{
1531 struct gsm_bts *bts = vty->index;
1532 int bsic = atoi(argv[0]);
1533
1534 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001535 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001536 bsic, VTY_NEWLINE);
1537 return CMD_WARNING;
1538 }
1539 bts->bsic = bsic;
1540
1541 return CMD_SUCCESS;
1542}
1543
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001544DEFUN(cfg_bts_timezone,
1545 cfg_bts_timezone_cmd,
1546 "timezone <-19-19> (0|15|30|45)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001547 "Set the Timezone Offset of this BTS\n"
1548 "Timezone offset (hours)\n"
1549 "Timezone offset (00 minutes)\n"
1550 "Timezone offset (15 minutes)\n"
1551 "Timezone offset (30 minutes)\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001552 "Timezone offset (45 minutes)\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001553 )
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001554{
1555 struct gsm_bts *bts = vty->index;
1556 int tzhr = atoi(argv[0]);
1557 int tzmn = atoi(argv[1]);
1558
Harald Welte45f91712012-07-08 16:48:11 +02001559 bts->tz.hr = tzhr;
1560 bts->tz.mn = tzmn;
1561 bts->tz.override = 1;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001562
1563 return CMD_SUCCESS;
1564}
1565
1566DEFUN(cfg_bts_no_timezone,
1567 cfg_bts_no_timezone_cmd,
1568 "no timezone",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001569 NO_STR
1570 "Disable BTS specific timezone\n")
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001571{
1572 struct gsm_bts *bts = vty->index;
Harald Welte45f91712012-07-08 16:48:11 +02001573
1574 bts->tz.override = 0;
1575
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001576 return CMD_SUCCESS;
1577}
Harald Welte78f2f502009-05-23 16:56:52 +00001578
Harald Welte4cc34222009-05-01 15:12:31 +00001579DEFUN(cfg_bts_unit_id,
1580 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001581 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001582 "Abis/IP specific options\n"
1583 "Set the IPA BTS Unit ID\n"
1584 "Unit ID (Site)\n"
1585 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001586{
1587 struct gsm_bts *bts = vty->index;
1588 int site_id = atoi(argv[0]);
1589 int bts_id = atoi(argv[1]);
1590
Harald Welte07dc73d2009-08-07 13:27:09 +02001591 if (!is_ipaccess_bts(bts)) {
1592 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1593 return CMD_WARNING;
1594 }
1595
Harald Welte4cc34222009-05-01 15:12:31 +00001596 bts->ip_access.site_id = site_id;
1597 bts->ip_access.bts_id = bts_id;
1598
1599 return CMD_SUCCESS;
1600}
1601
Harald Weltefd355a32011-03-04 13:41:31 +01001602DEFUN(cfg_bts_serno,
1603 cfg_bts_serno_cmd,
1604 "hsl serial-number STRING",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001605 "HSL BTS specific options\n"
1606 "Set the HSL Serial Number of this BTS\n"
1607 "Serial Number of this HSL BTS\n")
Harald Weltefd355a32011-03-04 13:41:31 +01001608{
1609 struct gsm_bts *bts = vty->index;
1610
1611 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1612 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1613 return CMD_WARNING;
1614 }
1615
1616 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1617
1618 return CMD_SUCCESS;
1619}
1620
Sylvain Munautc9519462011-10-17 14:04:55 +02001621DEFUN(cfg_bts_nokia_site_skip_reset,
1622 cfg_bts_nokia_site_skip_reset_cmd,
1623 "nokia_site skip-reset (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001624 "Nokia *Site related commands\n"
1625 "Skip the reset step during bootstrap process of this BTS\n"
1626 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001627{
1628 struct gsm_bts *bts = vty->index;
1629
1630 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1631 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1632 return CMD_WARNING;
1633 }
1634
1635 bts->nokia.skip_reset = atoi(argv[0]);
1636
1637 return CMD_SUCCESS;
1638}
1639
Harald Welte8f0ed552010-05-11 21:53:49 +02001640#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001641#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001642
Harald Welte8175e952009-10-20 00:22:00 +02001643DEFUN(cfg_bts_stream_id,
1644 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001645 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001646 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001647 "Set the ip.access Stream ID of the OML link of this BTS\n"
1648 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001649{
1650 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001651 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001652
1653 if (!is_ipaccess_bts(bts)) {
1654 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1655 return CMD_WARNING;
1656 }
1657
1658 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001659 /* This is used by e1inp_bind_ops callback for each BTS model. */
1660 bts->oml_e1_link.e1_nr = linenr;
1661
1662 return CMD_SUCCESS;
1663}
1664
1665DEFUN(cfg_bts_hsl_oml,
1666 cfg_bts_hsl_oml_cmd,
1667 "oml hsl line E1_LINE",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001668 OML_STR "HSL femto Specific Options\n"
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001669 "Set OML link of this HSL femto BTS\n")
1670{
1671 struct gsm_bts *bts = vty->index;
1672 int linenr = atoi(argv[0]);
1673
1674 if (!(bts->type == GSM_BTS_TYPE_HSL_FEMTO)) {
1675 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1676 return CMD_WARNING;
1677 }
1678
1679 bts->oml_e1_link.e1_nr = linenr;
Harald Welte8175e952009-10-20 00:22:00 +02001680
1681 return CMD_SUCCESS;
1682}
1683
Harald Welted13e0cd2012-08-17 09:52:03 +02001684#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001685
Harald Welte42581822009-08-08 16:12:58 +02001686DEFUN(cfg_bts_oml_e1,
1687 cfg_bts_oml_e1_cmd,
1688 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001689 OML_E1_STR
1690 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001691 "E1/T1 line number to be used for OML\n"
1692 "E1/T1 timeslot to be used for OML\n"
1693 "E1/T1 timeslot to be used for OML\n"
1694 "E1/T1 sub-slot to be used for OML\n"
1695 "Use E1/T1 sub-slot 0\n"
1696 "Use E1/T1 sub-slot 1\n"
1697 "Use E1/T1 sub-slot 2\n"
1698 "Use E1/T1 sub-slot 3\n"
1699 "Use full E1 slot 3\n"
1700 )
Harald Welte42581822009-08-08 16:12:58 +02001701{
1702 struct gsm_bts *bts = vty->index;
1703
1704 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1705
1706 return CMD_SUCCESS;
1707}
1708
1709
1710DEFUN(cfg_bts_oml_e1_tei,
1711 cfg_bts_oml_e1_tei_cmd,
1712 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001713 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001714 "Set the TEI to be used for OML\n"
1715 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001716{
1717 struct gsm_bts *bts = vty->index;
1718
1719 bts->oml_tei = atoi(argv[0]);
1720
1721 return CMD_SUCCESS;
1722}
1723
Harald Welte7a8fa412009-08-10 13:48:16 +02001724DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1725 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001726 "Channnel Allocator\n" "Channel Allocator\n"
1727 "Allocate Timeslots and Transceivers in ascending order\n"
1728 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001729{
1730 struct gsm_bts *bts = vty->index;
1731
1732 if (!strcmp(argv[0], "ascending"))
1733 bts->chan_alloc_reverse = 0;
1734 else
1735 bts->chan_alloc_reverse = 1;
1736
1737 return CMD_SUCCESS;
1738}
1739
Harald Welte8f0ed552010-05-11 21:53:49 +02001740#define RACH_STR "Random Access Control Channel\n"
1741
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001742DEFUN(cfg_bts_rach_tx_integer,
1743 cfg_bts_rach_tx_integer_cmd,
1744 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001745 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001746 "Set the raw tx integer value in RACH Control parameters IE\n"
1747 "Set the raw tx integer value in RACH Control parameters IE\n"
1748 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001749{
1750 struct gsm_bts *bts = vty->index;
1751 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1752 return CMD_SUCCESS;
1753}
1754
1755DEFUN(cfg_bts_rach_max_trans,
1756 cfg_bts_rach_max_trans_cmd,
1757 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001758 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001759 "Set the maximum number of RACH burst transmissions\n"
1760 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001761 "Maximum number of 1 RACH burst transmissions\n"
1762 "Maximum number of 2 RACH burst transmissions\n"
1763 "Maximum number of 4 RACH burst transmissions\n"
1764 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001765{
1766 struct gsm_bts *bts = vty->index;
1767 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1768 return CMD_SUCCESS;
1769}
1770
Harald Welte8f0ed552010-05-11 21:53:49 +02001771#define NM_STR "Network Management\n"
1772
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001773DEFUN(cfg_bts_rach_nm_b_thresh,
1774 cfg_bts_rach_nm_b_thresh_cmd,
1775 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001776 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001777 "Set the NM Busy Threshold\n"
1778 "Set the NM Busy Threshold\n"
1779 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001780{
1781 struct gsm_bts *bts = vty->index;
1782 bts->rach_b_thresh = atoi(argv[0]);
1783 return CMD_SUCCESS;
1784}
1785
1786DEFUN(cfg_bts_rach_nm_ldavg,
1787 cfg_bts_rach_nm_ldavg_cmd,
1788 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001789 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001790 "Set the NM Loadaverage Slots value\n"
1791 "Set the NM Loadaverage Slots value\n"
1792 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001793{
1794 struct gsm_bts *bts = vty->index;
1795 bts->rach_ldavg_slots = atoi(argv[0]);
1796 return CMD_SUCCESS;
1797}
1798
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001799DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1800 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001801 "Should this cell be barred from access?\n"
1802 "Should this cell be barred from access?\n"
1803 "Cell should NOT be barred\n"
1804 "Cell should be barred\n")
1805
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001806{
1807 struct gsm_bts *bts = vty->index;
1808
Harald Welte71355012009-12-21 23:08:18 +01001809 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001810
1811 return CMD_SUCCESS;
1812}
1813
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001814DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1815 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001816 RACH_STR
1817 "Should this cell allow emergency calls?\n"
1818 "Should this cell allow emergency calls?\n"
1819 "Should this cell allow emergency calls?\n"
1820 "Do NOT allow emergency calls\n"
1821 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001822{
1823 struct gsm_bts *bts = vty->index;
1824
1825 if (atoi(argv[0]) == 0)
1826 bts->si_common.rach_control.t2 |= 0x4;
1827 else
1828 bts->si_common.rach_control.t2 &= ~0x4;
1829
1830 return CMD_SUCCESS;
1831}
1832
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001833DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1834 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001835 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001836 "Maximum transmit power of the MS\n"
1837 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001838 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001839{
1840 struct gsm_bts *bts = vty->index;
1841
1842 bts->ms_max_power = atoi(argv[0]);
1843
1844 return CMD_SUCCESS;
1845}
1846
Harald Weltecfaabbb2012-08-16 23:23:50 +02001847#define CELL_STR "Cell Parameters\n"
1848
Harald Welte73225282009-12-12 18:17:25 +01001849DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1850 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001851 CELL_STR "Cell re-selection parameters\n"
1852 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01001853 "Cell Re-Selection Hysteresis in dB")
1854{
1855 struct gsm_bts *bts = vty->index;
1856
1857 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1858
1859 return CMD_SUCCESS;
1860}
1861
1862DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1863 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001864 "Minimum RxLev needed for cell access\n"
1865 "Minimum RxLev needed for cell access\n"
1866 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01001867 "Minimum RxLev needed for cell access (better than -110dBm)")
1868{
1869 struct gsm_bts *bts = vty->index;
1870
1871 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1872
1873 return CMD_SUCCESS;
1874}
1875
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001876DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1877 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001878 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1879 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001880{
1881 struct gsm_bts *bts = vty->index;
1882
1883 bts->si_common.cell_ro_sel_par.present = 1;
1884 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1885
1886 return CMD_SUCCESS;
1887}
1888
1889DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1890 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001891 CELL_STR "Cell Re-Selection Parameters\n"
1892 "Cell Re-Selection Offset (CRO) in dB\n"
1893 "Cell Re-Selection Offset (CRO) in dB\n"
1894 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001895{
1896 struct gsm_bts *bts = vty->index;
1897
1898 bts->si_common.cell_ro_sel_par.present = 1;
1899 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1900
1901 return CMD_SUCCESS;
1902}
1903
1904DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1905 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001906 "Cell selection temporary negative offset\n"
1907 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001908 "Cell selection temporary negative offset in dB")
1909{
1910 struct gsm_bts *bts = vty->index;
1911
1912 bts->si_common.cell_ro_sel_par.present = 1;
1913 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1914
1915 return CMD_SUCCESS;
1916}
1917
1918DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1919 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001920 "Cell selection temporary negative offset\n"
1921 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001922 "Sets cell selection temporary negative offset to infinity")
1923{
1924 struct gsm_bts *bts = vty->index;
1925
1926 bts->si_common.cell_ro_sel_par.present = 1;
1927 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1928
1929 return CMD_SUCCESS;
1930}
1931
1932DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1933 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001934 "Cell selection penalty time\n"
1935 "Cell selection penalty time\n"
1936 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001937{
1938 struct gsm_bts *bts = vty->index;
1939
1940 bts->si_common.cell_ro_sel_par.present = 1;
1941 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
1942
1943 return CMD_SUCCESS;
1944}
1945
1946DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
1947 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001948 "Cell selection penalty time\n"
1949 "Cell selection penalty time\n"
1950 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001951 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
1952 "and TEMPORARY_OFFSET is ignored)")
1953{
1954 struct gsm_bts *bts = vty->index;
1955
1956 bts->si_common.cell_ro_sel_par.present = 1;
1957 bts->si_common.cell_ro_sel_par.penalty_time = 31;
1958
1959 return CMD_SUCCESS;
1960}
1961
Harald Welte (local)efc92312009-08-14 23:09:25 +02001962DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1963 "periodic location update <0-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001964 "Periodic Location Updating Interval\n"
1965 "Periodic Location Updating Interval\n"
1966 "Periodic Location Updating Interval\n"
1967 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02001968{
1969 struct gsm_bts *bts = vty->index;
1970
Dieter Spaard6613e02010-10-05 21:10:55 +02001971 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001972
1973 return CMD_SUCCESS;
1974}
1975
Harald Welte8f0ed552010-05-11 21:53:49 +02001976#define GPRS_TEXT "GPRS Packet Network\n"
1977
Harald Welteaf387632010-03-14 23:30:30 +08001978DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02001979 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001980 GPRS_TEXT
1981 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001982 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001983 "GPRS BSSGP VC Identifier")
1984{
1985 struct gsm_bts *bts = vty->index;
1986
Harald Welte4511d892010-04-18 15:51:20 +02001987 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001988 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1989 return CMD_WARNING;
1990 }
1991
Harald Welte97a282b2010-03-14 15:37:43 +08001992 bts->gprs.cell.bvci = atoi(argv[0]);
1993
1994 return CMD_SUCCESS;
1995}
1996
Harald Weltea5731cf2010-03-22 11:48:36 +08001997DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1998 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001999 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002000 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002001 "GPRS NS Entity Identifier")
2002{
2003 struct gsm_bts *bts = vty->index;
2004
Harald Welte4511d892010-04-18 15:51:20 +02002005 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002006 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2007 return CMD_WARNING;
2008 }
2009
2010 bts->gprs.nse.nsei = atoi(argv[0]);
2011
2012 return CMD_SUCCESS;
2013}
2014
Harald Welte8f0ed552010-05-11 21:53:49 +02002015#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2016 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002017
Harald Welte97a282b2010-03-14 15:37:43 +08002018DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2019 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002020 GPRS_TEXT NSVC_TEXT
2021 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002022 "GPRS NS VC Identifier")
2023{
2024 struct gsm_bts *bts = vty->index;
2025 int idx = atoi(argv[0]);
2026
Harald Welte4511d892010-04-18 15:51:20 +02002027 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002028 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2029 return CMD_WARNING;
2030 }
2031
Harald Welte97a282b2010-03-14 15:37:43 +08002032 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2033
2034 return CMD_SUCCESS;
2035}
2036
Harald Welteaf387632010-03-14 23:30:30 +08002037DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2038 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002039 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002040 "GPRS NS Local UDP Port\n"
2041 "GPRS NS Local UDP Port\n"
2042 "GPRS NS Local UDP Port\n"
2043 "GPRS NS Local UDP Port\n")
Harald Welteaf387632010-03-14 23:30:30 +08002044{
2045 struct gsm_bts *bts = vty->index;
2046 int idx = atoi(argv[0]);
2047
Harald Welte4511d892010-04-18 15:51:20 +02002048 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002049 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2050 return CMD_WARNING;
2051 }
2052
Harald Welteaf387632010-03-14 23:30:30 +08002053 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2054
2055 return CMD_SUCCESS;
2056}
2057
2058DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2059 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002060 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002061 "GPRS NS Remote UDP Port\n"
2062 "GPRS NS Remote UDP Port\n"
Harald Welteaf387632010-03-14 23:30:30 +08002063 "GPRS NS Remote UDP Port")
2064{
2065 struct gsm_bts *bts = vty->index;
2066 int idx = atoi(argv[0]);
2067
Harald Welte4511d892010-04-18 15:51:20 +02002068 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002069 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2070 return CMD_WARNING;
2071 }
2072
Harald Welteaf387632010-03-14 23:30:30 +08002073 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2074
2075 return CMD_SUCCESS;
2076}
2077
2078DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2079 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002080 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002081 "GPRS NS Remote IP Address\n"
2082 "GPRS NS Remote IP Address\n"
2083 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002084{
2085 struct gsm_bts *bts = vty->index;
2086 int idx = atoi(argv[0]);
2087 struct in_addr ia;
2088
Harald Welte4511d892010-04-18 15:51:20 +02002089 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002090 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2091 return CMD_WARNING;
2092 }
2093
Harald Welteaf387632010-03-14 23:30:30 +08002094 inet_aton(argv[1], &ia);
2095 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2096
2097 return CMD_SUCCESS;
2098}
2099
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002100DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002101 "paging free <-1-1024>",
2102 "Paging options\n"
2103 "Only page when having a certain amount of free slots\n"
2104 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002105{
2106 struct gsm_bts *bts = vty->index;
2107
2108 bts->paging.free_chans_need = atoi(argv[0]);
2109 return CMD_SUCCESS;
2110}
2111
Harald Welte615e9562010-05-11 23:50:21 +02002112DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2113 "gprs ns timer " NS_TIMERS " <0-255>",
2114 GPRS_TEXT "Network Service\n"
2115 "Network Service Timer\n"
2116 NS_TIMERS_HELP "Timer Value\n")
2117{
2118 struct gsm_bts *bts = vty->index;
2119 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2120 int val = atoi(argv[1]);
2121
2122 if (bts->gprs.mode == BTS_GPRS_NONE) {
2123 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2124 return CMD_WARNING;
2125 }
2126
2127 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2128 return CMD_WARNING;
2129
2130 bts->gprs.nse.timer[idx] = val;
2131
2132 return CMD_SUCCESS;
2133}
2134
2135#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02002136#define BSSGP_TIMERS_HELP \
2137 "Tbvc-block timeout\n" \
2138 "Tbvc-block retries\n" \
2139 "Tbvc-unblock retries\n" \
2140 "Tbvcc-reset timeout\n" \
2141 "Tbvc-reset retries\n" \
2142 "Tbvc-suspend timeout\n" \
2143 "Tbvc-suspend retries\n" \
2144 "Tbvc-resume timeout\n" \
2145 "Tbvc-resume retries\n" \
2146 "Tbvc-capa-update timeout\n" \
2147 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002148
2149DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2150 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2151 GPRS_TEXT "Cell / BSSGP\n"
2152 "Cell/BSSGP Timer\n"
2153 BSSGP_TIMERS_HELP "Timer Value\n")
2154{
2155 struct gsm_bts *bts = vty->index;
2156 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2157 int val = atoi(argv[1]);
2158
2159 if (bts->gprs.mode == BTS_GPRS_NONE) {
2160 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2161 return CMD_WARNING;
2162 }
2163
2164 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2165 return CMD_WARNING;
2166
2167 bts->gprs.cell.timer[idx] = val;
2168
2169 return CMD_SUCCESS;
2170}
2171
Harald Welte97a282b2010-03-14 15:37:43 +08002172DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2173 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002174 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002175 "GPRS Routing Area Code\n"
2176 "GPRS Routing Area Code\n"
2177 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002178{
2179 struct gsm_bts *bts = vty->index;
2180
Harald Welte4511d892010-04-18 15:51:20 +02002181 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002182 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2183 return CMD_WARNING;
2184 }
2185
Harald Welte97a282b2010-03-14 15:37:43 +08002186 bts->gprs.rac = atoi(argv[0]);
2187
2188 return CMD_SUCCESS;
2189}
2190
Harald Welte4511d892010-04-18 15:51:20 +02002191DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2192 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002193 GPRS_TEXT
2194 "GPRS Mode for this BTS\n"
2195 "GPRS Disabled on this BTS\n"
2196 "GPRS Enabled on this BTS\n"
2197 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002198{
2199 struct gsm_bts *bts = vty->index;
Harald Weltef3d8e922010-06-14 22:44:42 +02002200 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08002201
Harald Weltef3d8e922010-06-14 22:44:42 +02002202 if (mode != BTS_GPRS_NONE &&
2203 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2204 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2205 VTY_NEWLINE);
2206 return CMD_WARNING;
2207 }
2208 if (mode == BTS_GPRS_EGPRS &&
2209 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2210 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2211 VTY_NEWLINE);
2212 return CMD_WARNING;
2213 }
2214
2215 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002216
2217 return CMD_SUCCESS;
2218}
2219
Harald Welte9fbff4a2010-07-30 11:50:09 +02002220#define SI_TEXT "System Information Messages\n"
2221#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)"
2222#define SI_TYPE_HELP "System Information Type 1\n" \
2223 "System Information Type 2\n" \
2224 "System Information Type 3\n" \
2225 "System Information Type 4\n" \
2226 "System Information Type 5\n" \
2227 "System Information Type 6\n" \
2228 "System Information Type 7\n" \
2229 "System Information Type 8\n" \
2230 "System Information Type 9\n" \
2231 "System Information Type 10\n" \
2232 "System Information Type 13\n" \
2233 "System Information Type 16\n" \
2234 "System Information Type 17\n" \
2235 "System Information Type 18\n" \
2236 "System Information Type 19\n" \
2237 "System Information Type 20\n" \
2238 "System Information Type 2bis\n" \
2239 "System Information Type 2ter\n" \
2240 "System Information Type 2quater\n" \
2241 "System Information Type 5bis\n" \
2242 "System Information Type 5ter\n"
2243
2244DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2245 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2246 SI_TEXT SI_TYPE_HELP
2247 "System Information Mode\n"
2248 "Static user-specified\n"
2249 "Dynamic, BSC-computed\n")
2250{
2251 struct gsm_bts *bts = vty->index;
2252 int type;
2253
2254 type = get_string_value(osmo_sitype_strs, argv[0]);
2255 if (type < 0) {
2256 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2257 return CMD_WARNING;
2258 }
2259
2260 if (!strcmp(argv[1], "static"))
2261 bts->si_mode_static |= (1 << type);
2262 else
2263 bts->si_mode_static &= ~(1 << type);
2264
2265 return CMD_SUCCESS;
2266}
2267
2268DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2269 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2270 SI_TEXT SI_TYPE_HELP
2271 "Static System Information filling\n"
2272 "Static user-specified SI content in HEX notation\n")
2273{
2274 struct gsm_bts *bts = vty->index;
2275 int rc, type;
2276
2277 type = get_string_value(osmo_sitype_strs, argv[0]);
2278 if (type < 0) {
2279 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2280 return CMD_WARNING;
2281 }
2282
2283 if (!(bts->si_mode_static & (1 << type))) {
2284 vty_out(vty, "SI Type %s is not configured in static mode%s",
2285 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2286 return CMD_WARNING;
2287 }
2288
Harald Welte290aaed2010-07-30 11:53:18 +02002289 /* Fill buffer with padding pattern */
2290 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2291
2292 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002293 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002294 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2295 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2296 return CMD_WARNING;
2297 }
2298
2299 /* Mark this SI as present */
2300 bts->si_valid |= (1 << type);
2301
2302 return CMD_SUCCESS;
2303}
2304
Harald Welte32c09622011-01-11 23:44:56 +01002305DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002306 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002307 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002308 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2309 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002310{
2311 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002312 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002313
Harald Welte64c07d22011-02-15 11:43:27 +01002314 switch (mode) {
2315 case NL_MODE_MANUAL_SI5SEP:
2316 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002317 /* make sure we clear the current list when switching to
2318 * manual mode */
2319 if (bts->neigh_list_manual_mode == 0)
2320 memset(&bts->si_common.data.neigh_list, 0,
2321 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002322 break;
2323 default:
2324 break;
2325 }
2326
2327 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002328
2329 return CMD_SUCCESS;
2330}
2331
2332DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002333 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002334 "Neighbor List\n" "Add to manual neighbor list\n"
2335 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2336 "ARFCN of neighbor\n")
2337{
2338 struct gsm_bts *bts = vty->index;
2339 struct bitvec *bv = &bts->si_common.neigh_list;
2340 uint16_t arfcn = atoi(argv[1]);
2341
2342 if (!bts->neigh_list_manual_mode) {
2343 vty_out(vty, "%% Cannot configure neighbor list in "
2344 "automatic mode%s", VTY_NEWLINE);
2345 return CMD_WARNING;
2346 }
2347
2348 if (!strcmp(argv[0], "add"))
2349 bitvec_set_bit_pos(bv, arfcn, 1);
2350 else
2351 bitvec_set_bit_pos(bv, arfcn, 0);
2352
2353 return CMD_SUCCESS;
2354}
2355
Harald Welte64c07d22011-02-15 11:43:27 +01002356DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002357 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002358 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002359 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2360 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2361 "ARFCN of neighbor\n")
2362{
2363 struct gsm_bts *bts = vty->index;
2364 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2365 uint16_t arfcn = atoi(argv[1]);
2366
2367 if (!bts->neigh_list_manual_mode) {
2368 vty_out(vty, "%% Cannot configure neighbor list in "
2369 "automatic mode%s", VTY_NEWLINE);
2370 return CMD_WARNING;
2371 }
2372
2373 if (!strcmp(argv[0], "add"))
2374 bitvec_set_bit_pos(bv, arfcn, 1);
2375 else
2376 bitvec_set_bit_pos(bv, arfcn, 0);
2377
2378 return CMD_SUCCESS;
2379}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002380
Harald Welte8f0ed552010-05-11 21:53:49 +02002381#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02002382
Harald Welte5258fc42009-03-28 19:07:53 +00002383/* per TRX configuration */
2384DEFUN(cfg_trx,
2385 cfg_trx_cmd,
2386 "trx TRX_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02002387 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00002388 "Select a TRX to configure")
2389{
2390 int trx_nr = atoi(argv[0]);
2391 struct gsm_bts *bts = vty->index;
2392 struct gsm_bts_trx *trx;
2393
Harald Weltee441d9c2009-06-21 16:17:15 +02002394 if (trx_nr > bts->num_trx) {
2395 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2396 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00002397 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02002398 } else if (trx_nr == bts->num_trx) {
2399 /* we need to allocate a new one */
2400 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002401 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02002402 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002403
Harald Weltee441d9c2009-06-21 16:17:15 +02002404 if (!trx)
2405 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00002406
2407 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02002408 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00002409 vty->node = TRX_NODE;
2410
2411 return CMD_SUCCESS;
2412}
2413
2414DEFUN(cfg_trx_arfcn,
2415 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002416 "arfcn <0-1023>",
Harald Welte5258fc42009-03-28 19:07:53 +00002417 "Set the ARFCN for this TRX\n")
2418{
2419 int arfcn = atoi(argv[0]);
2420 struct gsm_bts_trx *trx = vty->index;
2421
2422 /* FIXME: check if this ARFCN is supported by this TRX */
2423
2424 trx->arfcn = arfcn;
2425
2426 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2427 /* FIXME: use OML layer to update the ARFCN */
2428 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2429
2430 return CMD_SUCCESS;
2431}
2432
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002433DEFUN(cfg_trx_nominal_power,
2434 cfg_trx_nominal_power_cmd,
2435 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002436 "Nominal TRX RF Power in dBm\n"
2437 "Nominal TRX RF Power in dBm\n"
2438 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002439{
2440 struct gsm_bts_trx *trx = vty->index;
2441
2442 trx->nominal_power = atoi(argv[0]);
2443
2444 return CMD_SUCCESS;
2445}
2446
Harald Weltefcd24452009-06-20 18:15:19 +02002447DEFUN(cfg_trx_max_power_red,
2448 cfg_trx_max_power_red_cmd,
2449 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002450 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02002451 "Reduction of maximum BS RF Power in dB\n")
2452{
2453 int maxpwr_r = atoi(argv[0]);
2454 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01002455 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02002456
2457 /* FIXME: check if our BTS type supports more than 12 */
2458 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2459 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2460 maxpwr_r, VTY_NEWLINE);
2461 return CMD_WARNING;
2462 }
2463 if (maxpwr_r & 1) {
2464 vty_out(vty, "%% Power %d dB is not an even value%s",
2465 maxpwr_r, VTY_NEWLINE);
2466 return CMD_WARNING;
2467 }
2468
2469 trx->max_power_red = maxpwr_r;
2470
2471 /* FIXME: make sure we update this using OML */
2472
2473 return CMD_SUCCESS;
2474}
2475
Harald Welte42581822009-08-08 16:12:58 +02002476DEFUN(cfg_trx_rsl_e1,
2477 cfg_trx_rsl_e1_cmd,
2478 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002479 "RSL Parameters\n"
2480 "E1/T1 interface to be used for RSL\n"
2481 "E1/T1 interface to be used for RSL\n"
2482 "E1/T1 Line Number to be used for RSL\n"
2483 "E1/T1 Timeslot to be used for RSL\n"
2484 "E1/T1 Timeslot to be used for RSL\n"
2485 "E1/T1 Sub-slot to be used for RSL\n"
2486 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2487 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2488 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2489 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2490 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002491{
2492 struct gsm_bts_trx *trx = vty->index;
2493
2494 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2495
2496 return CMD_SUCCESS;
2497}
2498
2499DEFUN(cfg_trx_rsl_e1_tei,
2500 cfg_trx_rsl_e1_tei_cmd,
2501 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002502 "RSL Parameters\n"
2503 "Set the TEI to be used for RSL\n"
2504 "Set the TEI to be used for RSL\n"
2505 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002506{
2507 struct gsm_bts_trx *trx = vty->index;
2508
2509 trx->rsl_tei = atoi(argv[0]);
2510
2511 return CMD_SUCCESS;
2512}
2513
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002514DEFUN(cfg_trx_rf_locked,
2515 cfg_trx_rf_locked_cmd,
2516 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002517 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2518 "TRX is NOT RF locked (active)\n"
2519 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002520{
2521 int locked = atoi(argv[0]);
2522 struct gsm_bts_trx *trx = vty->index;
2523
2524 gsm_trx_lock_rf(trx, locked);
2525 return CMD_SUCCESS;
2526}
Harald Welte42581822009-08-08 16:12:58 +02002527
Harald Welte5258fc42009-03-28 19:07:53 +00002528/* per TS configuration */
2529DEFUN(cfg_ts,
2530 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002531 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002532 "Select a Timeslot to configure\n"
2533 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002534{
2535 int ts_nr = atoi(argv[0]);
2536 struct gsm_bts_trx *trx = vty->index;
2537 struct gsm_bts_trx_ts *ts;
2538
2539 if (ts_nr >= TRX_NR_TS) {
2540 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2541 TRX_NR_TS, VTY_NEWLINE);
2542 return CMD_WARNING;
2543 }
2544
2545 ts = &trx->ts[ts_nr];
2546
2547 vty->index = ts;
2548 vty->node = TS_NODE;
2549
2550 return CMD_SUCCESS;
2551}
2552
Harald Weltea6fd58e2009-08-07 00:25:23 +02002553DEFUN(cfg_ts_pchan,
2554 cfg_ts_pchan_cmd,
2555 "phys_chan_config PCHAN",
2556 "Physical Channel configuration (TCH/SDCCH/...)")
2557{
2558 struct gsm_bts_trx_ts *ts = vty->index;
2559 int pchanc;
2560
2561 pchanc = gsm_pchan_parse(argv[0]);
2562 if (pchanc < 0)
2563 return CMD_WARNING;
2564
2565 ts->pchan = pchanc;
2566
2567 return CMD_SUCCESS;
2568}
2569
Harald Welte135a6482011-05-30 12:09:13 +02002570DEFUN(cfg_ts_tsc,
2571 cfg_ts_tsc_cmd,
2572 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002573 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02002574{
2575 struct gsm_bts_trx_ts *ts = vty->index;
2576
2577 ts->tsc = atoi(argv[0]);
2578
2579 return CMD_SUCCESS;
2580}
2581
Harald Weltea39b0f22010-06-14 22:26:10 +02002582#define HOPPING_STR "Configure frequency hopping\n"
2583
2584DEFUN(cfg_ts_hopping,
2585 cfg_ts_hopping_cmd,
2586 "hopping enabled (0|1)",
2587 HOPPING_STR "Enable or disable frequency hopping\n"
2588 "Disable frequency hopping\n" "Enable frequency hopping\n")
2589{
2590 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02002591 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02002592
Harald Weltec2fb3d02010-06-14 22:47:37 +02002593 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2594 vty_out(vty, "BTS model does not support hopping%s",
2595 VTY_NEWLINE);
2596 return CMD_WARNING;
2597 }
2598
2599 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02002600
2601 return CMD_SUCCESS;
2602}
2603
Harald Welte6e0cd042009-09-12 13:05:33 +02002604DEFUN(cfg_ts_hsn,
2605 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02002606 "hopping sequence-number <0-63>",
2607 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002608 "Which hopping sequence to use for this channel\n"
2609 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002610{
2611 struct gsm_bts_trx_ts *ts = vty->index;
2612
2613 ts->hopping.hsn = atoi(argv[0]);
2614
2615 return CMD_SUCCESS;
2616}
2617
2618DEFUN(cfg_ts_maio,
2619 cfg_ts_maio_cmd,
2620 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002621 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002622 "Which hopping MAIO to use for this channel\n"
2623 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002624{
2625 struct gsm_bts_trx_ts *ts = vty->index;
2626
2627 ts->hopping.maio = atoi(argv[0]);
2628
2629 return CMD_SUCCESS;
2630}
2631
2632DEFUN(cfg_ts_arfcn_add,
2633 cfg_ts_arfcn_add_cmd,
2634 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002635 HOPPING_STR "Configure hopping ARFCN list\n"
2636 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002637{
2638 struct gsm_bts_trx_ts *ts = vty->index;
2639 int arfcn = atoi(argv[0]);
2640
Harald Weltea39b0f22010-06-14 22:26:10 +02002641 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2642
Harald Welte6e0cd042009-09-12 13:05:33 +02002643 return CMD_SUCCESS;
2644}
2645
2646DEFUN(cfg_ts_arfcn_del,
2647 cfg_ts_arfcn_del_cmd,
2648 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002649 HOPPING_STR "Configure hopping ARFCN list\n"
2650 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002651{
2652 struct gsm_bts_trx_ts *ts = vty->index;
2653 int arfcn = atoi(argv[0]);
2654
Harald Weltea39b0f22010-06-14 22:26:10 +02002655 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2656
Harald Welte6e0cd042009-09-12 13:05:33 +02002657 return CMD_SUCCESS;
2658}
2659
Harald Weltea6fd58e2009-08-07 00:25:23 +02002660DEFUN(cfg_ts_e1_subslot,
2661 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002662 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002663 "E1/T1 channel connected to this on-air timeslot\n"
2664 "E1/T1 channel connected to this on-air timeslot\n"
2665 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002666 "E1/T1 timeslot connected to this on-air timeslot\n"
2667 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002668 "E1/T1 sub-slot connected to this on-air timeslot\n"
2669 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2670 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2671 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2672 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2673 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02002674{
2675 struct gsm_bts_trx_ts *ts = vty->index;
2676
Harald Welte42581822009-08-08 16:12:58 +02002677 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002678
2679 return CMD_SUCCESS;
2680}
Harald Welte5258fc42009-03-28 19:07:53 +00002681
Harald Welte4f10c252010-05-16 21:47:13 +02002682void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2683{
2684 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002685 osmo_counter_get(net->stats.chreq.total),
2686 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002687 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002688 osmo_counter_get(net->stats.chan.rf_fail),
2689 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002690 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002691 osmo_counter_get(net->stats.paging.attempted),
2692 osmo_counter_get(net->stats.paging.completed),
2693 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002694 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002695 osmo_counter_get(net->stats.bts.oml_fail),
2696 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002697}
2698
Harald Welte5bc61dc2010-05-16 22:02:16 +02002699DEFUN(logging_fltr_imsi,
2700 logging_fltr_imsi_cmd,
2701 "logging filter imsi IMSI",
2702 LOGGING_STR FILTER_STR
2703 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2704{
Harald Welte8dcebd32011-02-18 21:10:05 +01002705 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002706
Harald Welte8dcebd32011-02-18 21:10:05 +01002707 if (!tgt)
Harald Welte5bc61dc2010-05-16 22:02:16 +02002708 return CMD_WARNING;
Harald Welte5bc61dc2010-05-16 22:02:16 +02002709
Harald Welte8dcebd32011-02-18 21:10:05 +01002710 log_set_imsi_filter(tgt, argv[0]);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002711 return CMD_SUCCESS;
2712}
2713
Harald Welte8dcebd32011-02-18 21:10:05 +01002714
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002715DEFUN(drop_bts,
2716 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02002717 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002718 "Debug/Simulation command to drop Abis/IP BTS\n"
2719 "Debug/Simulation command to drop Abis/IP BTS\n"
2720 "Debug/Simulation command to drop Abis/IP BTS\n"
2721 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002722{
2723 struct gsm_network *gsmnet;
2724 struct gsm_bts_trx *trx;
2725 struct gsm_bts *bts;
2726 unsigned int bts_nr;
2727
2728 gsmnet = gsmnet_from_vty(vty);
2729
2730 bts_nr = atoi(argv[0]);
2731 if (bts_nr >= gsmnet->num_bts) {
2732 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2733 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2734 return CMD_WARNING;
2735 }
2736
2737 bts = gsm_bts_num(gsmnet, bts_nr);
2738 if (!bts) {
2739 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2740 return CMD_WARNING;
2741 }
2742
2743 if (!is_ipaccess_bts(bts)) {
2744 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2745 return CMD_WARNING;
2746 }
2747
2748
2749 /* close all connections */
2750 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002751 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002752 } else if (strcmp(argv[1], "rsl") == 0) {
2753 /* close all rsl connections */
2754 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002755 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002756 }
2757 } else {
2758 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2759 return CMD_WARNING;
2760 }
2761
2762 return CMD_SUCCESS;
2763}
2764
Harald Welted0d2b0b2010-12-23 13:18:07 +01002765DEFUN(pdch_act, pdch_act_cmd,
2766 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2767 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2768 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2769 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2770 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2771{
2772 struct gsm_bts *bts;
2773 struct gsm_bts_trx *trx;
2774 struct gsm_bts_trx_ts *ts;
2775 int bts_nr = atoi(argv[0]);
2776 int trx_nr = atoi(argv[1]);
2777 int ts_nr = atoi(argv[2]);
2778 int activate;
2779
2780 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2781 if (!bts) {
2782 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2783 return CMD_WARNING;
2784 }
2785
2786 if (!is_ipaccess_bts(bts)) {
2787 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2788 VTY_NEWLINE);
2789 return CMD_WARNING;
2790 }
2791
2792 trx = gsm_bts_trx_num(bts, trx_nr);
2793 if (!trx) {
2794 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2795 return CMD_WARNING;
2796 }
2797
2798 ts = &trx->ts[ts_nr];
2799 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2800 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2801 "mode%s", ts_nr, VTY_NEWLINE);
2802 return CMD_WARNING;
2803 }
2804
2805 if (!strcmp(argv[3], "activate"))
2806 activate = 1;
2807 else
2808 activate = 0;
2809
2810 rsl_ipacc_pdch_activate(ts, activate);
2811
2812 return CMD_SUCCESS;
2813
2814}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002815
Harald Weltedcccb182010-05-16 20:52:23 +02002816extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02002817extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02002818
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002819int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00002820{
Harald Welteb4d5b172010-05-12 16:10:35 +00002821 install_element_ve(&show_net_cmd);
2822 install_element_ve(&show_bts_cmd);
2823 install_element_ve(&show_trx_cmd);
2824 install_element_ve(&show_ts_cmd);
2825 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08002826 install_element_ve(&show_lchan_summary_cmd);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002827 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00002828
Harald Welteb4d5b172010-05-12 16:10:35 +00002829 install_element_ve(&show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002830
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002831 logging_vty_add_cmds(cat);
Harald Welte8dcebd32011-02-18 21:10:05 +01002832 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01002833
Harald Welte5013b2a2009-08-07 13:29:14 +02002834 install_element(CONFIG_NODE, &cfg_net_cmd);
2835 install_node(&net_node, config_write_net);
2836 install_default(GSMNET_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002837 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002838 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002839 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002840 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2841 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2842 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02002843 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01002844 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09002845 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01002846 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01002847 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01002848 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01002849 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01002850 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2851 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2852 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2853 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2854 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2855 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01002856 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002857 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2858 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2859 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2860 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2861 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2862 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2863 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2864 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2865 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01002866 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002867 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08002868 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01002869 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08002870 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002871
2872 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02002873 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00002874 install_default(BTS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002875 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002876 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002877 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002878 install_element(BTS_NODE, &cfg_description_cmd);
2879 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02002880 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02002881 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002882 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2883 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002884 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00002885 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01002886 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
2887 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Harald Weltefd355a32011-03-04 13:41:31 +01002888 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02002889 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02002890 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02002891 install_element(BTS_NODE, &cfg_bts_hsl_oml_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002892 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2893 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02002894 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002895 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2896 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002897 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2898 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002899 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002900 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002901 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02002902 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01002903 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2904 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002905 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
2906 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
2907 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
2908 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
2909 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
2910 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02002911 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002912 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002913 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2914 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002915 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08002916 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002917 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08002918 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2919 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2920 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002921 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02002922 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
2923 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01002924 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
2925 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01002926 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002927
Harald Welte5258fc42009-03-28 19:07:53 +00002928 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002929 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002930 install_default(TRX_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002931 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002932 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002933 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002934 install_element(TRX_NODE, &cfg_description_cmd);
2935 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002936 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02002937 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002938 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2939 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002940 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002941
Harald Welte5258fc42009-03-28 19:07:53 +00002942 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002943 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002944 install_default(TS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002945 install_element(TS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002946 install_element(TS_NODE, &ournode_end_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002947 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02002948 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02002949 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02002950 install_element(TS_NODE, &cfg_ts_hsn_cmd);
2951 install_element(TS_NODE, &cfg_ts_maio_cmd);
2952 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
2953 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002954 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002955
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002956 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01002957 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002958
Harald Welte81c9b9c2010-05-31 16:40:40 +02002959 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01002960 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01002961 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02002962
Harald Weltedcccb182010-05-16 20:52:23 +02002963 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00002964
Harald Welte68628e82009-03-10 12:17:57 +00002965 return 0;
2966}