blob: 99b050bc61f932967322e34156d1b850ef405991 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (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
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <stdlib.h>
22#include <unistd.h>
23#include <sys/types.h>
24
Harald Weltebd9591f2010-05-19 19:45:32 +020025#include <osmocom/vty/command.h>
26#include <osmocom/vty/buffer.h>
27#include <osmocom/vty/vty.h>
28#include <osmocom/vty/logging.h>
29#include <osmocom/vty/telnet_interface.h>
Harald Welte59b04682009-06-10 05:40:52 +080030
31#include <arpa/inet.h>
32
Harald Weltef4625b12010-02-20 16:24:02 +010033#include <osmocore/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080034#include <openbsc/gsm_data.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/e1_input.h>
36#include <openbsc/abis_nm.h>
Harald Welted8acf142010-07-30 11:50:09 +020037#include <osmocore/utils.h>
Harald Weltef4625b12010-02-20 16:24:02 +010038#include <osmocore/gsm_utils.h>
Harald Weltefe96f382009-12-22 13:09:29 +010039#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010040#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080041#include <openbsc/db.h>
Harald Weltef4625b12010-02-20 16:24:02 +010042#include <osmocore/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020043#include <openbsc/vty.h>
Harald Weltef45981f2010-05-12 20:28:04 +020044#include <openbsc/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020045#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020046#include <openbsc/debug.h>
Harald Welte59b04682009-06-10 05:40:52 +080047
Harald Welte10c29f62010-05-16 19:20:24 +020048#include "../bscconfig.h"
49
Harald Welted6b62e32010-05-12 17:19:53 +000050/* FIXME: this should go to some common file */
51static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020052 { 0, "tns-block" },
53 { 1, "tns-block-retries" },
54 { 2, "tns-reset" },
55 { 3, "tns-reset-retries" },
56 { 4, "tns-test" },
57 { 5, "tns-alive" },
58 { 6, "tns-alive-retries" },
59 { 0, NULL }
60};
61
Harald Welted6b62e32010-05-12 17:19:53 +000062static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020063 { 0, "blocking-timer" },
64 { 1, "blocking-retries" },
65 { 2, "unblocking-retries" },
66 { 3, "reset-timer" },
67 { 4, "reset-retries" },
68 { 5, "suspend-timer" },
69 { 6, "suspend-retries" },
70 { 7, "resume-timer" },
71 { 8, "resume-retries" },
72 { 9, "capability-update-timer" },
73 { 10, "capability-update-retries" },
74 { 0, NULL }
75};
76
Harald Weltee87eb462009-08-07 13:29:14 +020077struct cmd_node net_node = {
78 GSMNET_NODE,
79 "%s(network)#",
80 1,
81};
82
Harald Welte59b04682009-06-10 05:40:52 +080083struct cmd_node bts_node = {
84 BTS_NODE,
85 "%s(bts)#",
86 1,
87};
88
89struct cmd_node trx_node = {
90 TRX_NODE,
91 "%s(trx)#",
92 1,
93};
94
95struct cmd_node ts_node = {
96 TS_NODE,
97 "%s(ts)#",
98 1,
99};
100
Harald Welte61daf6d2010-05-27 13:39:40 +0200101extern struct gsm_network *bsc_gsmnet;
102
Harald Welte40152872010-05-16 20:52:23 +0200103struct gsm_network *gsmnet_from_vty(struct vty *v)
104{
Harald Welte61daf6d2010-05-27 13:39:40 +0200105 /* In case we read from the config file, the vty->priv cannot
106 * point to a struct telnet_connection, and thus conn->priv
107 * will not point to the gsm_network structure */
108#if 0
Harald Welte40152872010-05-16 20:52:23 +0200109 struct telnet_connection *conn = v->priv;
110 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200111#else
112 return bsc_gsmnet;
113#endif
Harald Welte40152872010-05-16 20:52:23 +0200114}
115
Harald Welte59b04682009-06-10 05:40:52 +0800116static int dummy_config_write(struct vty *v)
117{
118 return CMD_SUCCESS;
119}
120
121static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
122{
123 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
124 nm_opstate_name(nms->operational), nms->administrative,
125 nm_avail_name(nms->availability), VTY_NEWLINE);
126}
127
Harald Weltefe96f382009-12-22 13:09:29 +0100128static void dump_pchan_load_vty(struct vty *vty, char *prefix,
129 const struct pchan_load *pl)
130{
131 int i;
132
133 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
134 const struct load_counter *lc = &pl->pchan[i];
135 unsigned int percent;
136
137 if (lc->total == 0)
138 continue;
139
140 percent = (lc->used * 100) / lc->total;
141
142 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
143 gsm_pchan_name(i), percent, lc->used, lc->total,
144 VTY_NEWLINE);
145 }
146}
147
Harald Welte59b04682009-06-10 05:40:52 +0800148static void net_dump_vty(struct vty *vty, struct gsm_network *net)
149{
Harald Weltefe96f382009-12-22 13:09:29 +0100150 struct pchan_load pl;
151
Harald Welte59b04682009-06-10 05:40:52 +0800152 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
153 "and has %u BTS%s", net->country_code, net->network_code,
154 net->num_bts, VTY_NEWLINE);
155 vty_out(vty, " Long network name: '%s'%s",
156 net->name_long, VTY_NEWLINE);
157 vty_out(vty, " Short network name: '%s'%s",
158 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200159 vty_out(vty, " Authentication policy: %s%s",
160 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100161 vty_out(vty, " Location updating reject cause: %u%s",
162 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900163 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
164 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100165 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
166 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800167 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
168 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100169 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
170 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100171 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
172 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100173 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
174 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100175 network_chan_load(&pl, net);
176 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
177 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800178}
179
180DEFUN(show_net, show_net_cmd, "show network",
181 SHOW_STR "Display information about a GSM NETWORK\n")
182{
Harald Welte40152872010-05-16 20:52:23 +0200183 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800184 net_dump_vty(vty, net);
185
186 return CMD_SUCCESS;
187}
188
189static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
190{
191 struct e1inp_line *line;
192
193 if (!e1l) {
194 vty_out(vty, " None%s", VTY_NEWLINE);
195 return;
196 }
197
198 line = e1l->ts->line;
199
200 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
201 line->num, line->driver->name, e1l->ts->num,
202 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
203 vty_out(vty, " E1 TEI %u, SAPI %u%s",
204 e1l->tei, e1l->sapi, VTY_NEWLINE);
205}
206
207static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
208{
Harald Weltefe96f382009-12-22 13:09:29 +0100209 struct pchan_load pl;
210
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200211 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200212 "BSIC %u, TSC %u and %u TRX%s",
213 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200214 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200215 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200216 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200217 vty_out(vty, "Description: %s%s",
218 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100219 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100220 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100221 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
222 VTY_NEWLINE);
223 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100224 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100225 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
226 VTY_NEWLINE);
227 vty_out(vty, "RACH Max transmissions: %u%s",
228 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
229 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100230 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200231 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200232 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
233 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800234 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200235 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800236 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200237 bts->oml_tei, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800238 vty_out(vty, " NM State: ");
239 net_dump_nmstate(vty, &bts->nm_state);
240 vty_out(vty, " Site Mgr NM State: ");
241 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
242 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
243 bts->paging.available_slots, VTY_NEWLINE);
Harald Welte25572872009-10-20 00:22:00 +0200244 if (!is_ipaccess_bts(bts)) {
245 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
246 e1isl_dump_vty(vty, bts->oml_link);
247 }
Harald Welte59b04682009-06-10 05:40:52 +0800248 /* FIXME: oml_link, chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100249 memset(&pl, 0, sizeof(pl));
250 bts_chan_load(&pl, bts);
251 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
252 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800253}
254
255DEFUN(show_bts, show_bts_cmd, "show bts [number]",
256 SHOW_STR "Display information about a BTS\n"
257 "BTS number")
258{
Harald Welte40152872010-05-16 20:52:23 +0200259 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800260 int bts_nr;
261
262 if (argc != 0) {
263 /* use the BTS number that the user has specified */
264 bts_nr = atoi(argv[0]);
265 if (bts_nr > net->num_bts) {
266 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
267 VTY_NEWLINE);
268 return CMD_WARNING;
269 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200270 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800271 return CMD_SUCCESS;
272 }
273 /* print all BTS's */
274 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200275 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800276
277 return CMD_SUCCESS;
278}
279
Harald Welte62868882009-08-08 16:12:58 +0200280/* utility functions */
281static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
282 const char *ts, const char *ss)
283{
284 e1_link->e1_nr = atoi(line);
285 e1_link->e1_ts = atoi(ts);
286 if (!strcmp(ss, "full"))
287 e1_link->e1_ts_ss = 255;
288 else
289 e1_link->e1_ts_ss = atoi(ss);
290}
291
292static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
293 const char *prefix)
294{
295 if (!e1_link->e1_ts)
296 return;
297
298 if (e1_link->e1_ts_ss == 255)
299 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
300 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
301 else
302 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
303 prefix, e1_link->e1_nr, e1_link->e1_ts,
304 e1_link->e1_ts_ss, VTY_NEWLINE);
305}
306
307
Harald Welte97ceef92009-08-06 19:06:46 +0200308static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
309{
Harald Welte62868882009-08-08 16:12:58 +0200310 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
311 if (ts->pchan != GSM_PCHAN_NONE)
312 vty_out(vty, " phys_chan_config %s%s",
313 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200314 vty_out(vty, " hopping enabled %u%s",
315 ts->hopping.enabled, VTY_NEWLINE);
316 if (ts->hopping.enabled) {
317 unsigned int i;
318 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200319 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200320 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200321 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200322 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
323 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
324 continue;
325 vty_out(vty, " hopping arfcn add %u%s",
326 i, VTY_NEWLINE);
327 }
328 } else
Harald Welte62868882009-08-08 16:12:58 +0200329 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welte97ceef92009-08-06 19:06:46 +0200330}
331
332static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
333{
334 int i;
335
Harald Weltee87eb462009-08-07 13:29:14 +0200336 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200337 if (trx->description)
338 vty_out(vty, " description %s%s", trx->description,
339 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200340 vty_out(vty, " rf_locked %u%s",
341 trx->nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
342 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200343 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100344 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200345 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200346 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
347 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200348
349 for (i = 0; i < TRX_NR_TS; i++)
350 config_write_ts_single(vty, &trx->ts[i]);
351}
352
Harald Weltea9251762010-05-11 23:50:21 +0200353static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
354{
355 unsigned int i;
356 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
357 VTY_NEWLINE);
358 if (bts->gprs.mode == BTS_GPRS_NONE)
359 return;
360
361 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
362 VTY_NEWLINE);
363 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
364 VTY_NEWLINE);
365 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
366 vty_out(vty, " gprs cell timer %s %u%s",
367 get_value_string(gprs_bssgp_cfg_strs, i),
368 bts->gprs.cell.timer[i], VTY_NEWLINE);
369 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
370 VTY_NEWLINE);
371 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
372 vty_out(vty, " gprs ns timer %s %u%s",
373 get_value_string(gprs_ns_timer_strs, i),
374 bts->gprs.nse.timer[i], VTY_NEWLINE);
375 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
376 struct gsm_bts_gprs_nsvc *nsvc =
377 &bts->gprs.nsvc[i];
378 struct in_addr ia;
379
380 ia.s_addr = htonl(nsvc->remote_ip);
381 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
382 nsvc->nsvci, VTY_NEWLINE);
383 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
384 nsvc->local_port, VTY_NEWLINE);
385 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
386 nsvc->remote_port, VTY_NEWLINE);
387 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
388 inet_ntoa(ia), VTY_NEWLINE);
389 }
390}
391
Harald Welte97ceef92009-08-06 19:06:46 +0200392static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
393{
394 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200395 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200396
Harald Weltee87eb462009-08-07 13:29:14 +0200397 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
398 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200399 if (bts->description)
400 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200401 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100402 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200403 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200404 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200405 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
406 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200407 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100408 vty_out(vty, " cell reselection hysteresis %u%s",
409 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
410 vty_out(vty, " rxlev access min %u%s",
411 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Harald Weltea54a2bb2009-12-01 18:04:30 +0530412 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +0200413 vty_out(vty, " periodic location update %u%s",
Harald Weltea54a2bb2009-12-01 18:04:30 +0530414 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200415 vty_out(vty, " channel allocator %s%s",
416 bts->chan_alloc_reverse ? "descending" : "ascending",
417 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100418 vty_out(vty, " rach tx integer %u%s",
419 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
420 vty_out(vty, " rach max transmission %u%s",
421 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
422 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800423
424 if (bts->rach_b_thresh != -1)
425 vty_out(vty, " rach nm busy threshold %u%s",
426 bts->rach_b_thresh, VTY_NEWLINE);
427 if (bts->rach_ldavg_slots != -1)
428 vty_out(vty, " rach nm load average %u%s",
429 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100430 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200431 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800432 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
433 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200434 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
435 if (bts->si_mode_static & (1 << i)) {
436 vty_out(vty, " system-information %s mode static%s",
437 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
438 vty_out(vty, " system-information %s static %s%s",
439 get_value_string(osmo_sitype_strs, i),
440 hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
441 VTY_NEWLINE);
442 }
443 }
Harald Welte25572872009-10-20 00:22:00 +0200444 if (is_ipaccess_bts(bts)) {
Harald Weltee87eb462009-08-07 13:29:14 +0200445 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200446 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte25572872009-10-20 00:22:00 +0200447 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
448 } else {
Harald Welte62868882009-08-08 16:12:58 +0200449 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
450 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
451 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800452
453 /* if we have a limit, write it */
454 if (bts->paging.free_chans_need >= 0)
455 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
456
Harald Weltea9251762010-05-11 23:50:21 +0200457 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200458
459 llist_for_each_entry(trx, &bts->trx_list, list)
460 config_write_trx_single(vty, trx);
461}
462
463static int config_write_bts(struct vty *v)
464{
Harald Welte40152872010-05-16 20:52:23 +0200465 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200466 struct gsm_bts *bts;
467
468 llist_for_each_entry(bts, &gsmnet->bts_list, list)
469 config_write_bts_single(v, bts);
470
471 return CMD_SUCCESS;
472}
473
Harald Weltee87eb462009-08-07 13:29:14 +0200474static int config_write_net(struct vty *vty)
475{
Harald Welte40152872010-05-16 20:52:23 +0200476 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
477
Harald Weltee87eb462009-08-07 13:29:14 +0200478 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200479 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200480 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200481 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
482 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200483 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100484 vty_out(vty, " location updating reject cause %u%s",
485 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900486 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100487 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800488 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100489 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
490 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100491 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100492 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100493 vty_out(vty, " handover window rxlev averaging %u%s",
494 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
495 vty_out(vty, " handover window rxqual averaging %u%s",
496 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
497 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
498 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
499 vty_out(vty, " handover power budget interval %u%s",
500 gsmnet->handover.pwr_interval, VTY_NEWLINE);
501 vty_out(vty, " handover power budget hysteresis %u%s",
502 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
503 vty_out(vty, " handover maximum distance %u%s",
504 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100505 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100506 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
507 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
508 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
509 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
510 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
511 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
512 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
513 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
514 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
515 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +0800516 vty_out(vty, " use-dtx %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200517
518 return CMD_SUCCESS;
519}
Harald Welte97ceef92009-08-06 19:06:46 +0200520
Harald Welte59b04682009-06-10 05:40:52 +0800521static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
522{
523 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
524 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200525 vty_out(vty, "Description: %s%s",
526 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200527 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200528 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200529 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200530 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800531 vty_out(vty, " NM State: ");
532 net_dump_nmstate(vty, &trx->nm_state);
533 vty_out(vty, " Baseband Transceiver NM State: ");
534 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200535 if (is_ipaccess_bts(trx->bts)) {
536 vty_out(vty, " ip.access stream ID: 0x%02x%s",
537 trx->rsl_tei, VTY_NEWLINE);
538 } else {
539 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
540 e1isl_dump_vty(vty, trx->rsl_link);
541 }
Harald Welte59b04682009-06-10 05:40:52 +0800542}
543
544DEFUN(show_trx,
545 show_trx_cmd,
546 "show trx [bts_nr] [trx_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200547 SHOW_STR "Display information about a TRX\n"
548 "BTS Number\n"
549 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800550{
Harald Welte40152872010-05-16 20:52:23 +0200551 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800552 struct gsm_bts *bts = NULL;
553 struct gsm_bts_trx *trx;
554 int bts_nr, trx_nr;
555
556 if (argc >= 1) {
557 /* use the BTS number that the user has specified */
558 bts_nr = atoi(argv[0]);
559 if (bts_nr >= net->num_bts) {
560 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
561 VTY_NEWLINE);
562 return CMD_WARNING;
563 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200564 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800565 }
566 if (argc >= 2) {
567 trx_nr = atoi(argv[1]);
568 if (trx_nr >= bts->num_trx) {
569 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
570 VTY_NEWLINE);
571 return CMD_WARNING;
572 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200573 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800574 trx_dump_vty(vty, trx);
575 return CMD_SUCCESS;
576 }
577 if (bts) {
578 /* print all TRX in this BTS */
579 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200580 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800581 trx_dump_vty(vty, trx);
582 }
583 return CMD_SUCCESS;
584 }
585
586 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200587 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800588 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200589 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800590 trx_dump_vty(vty, trx);
591 }
592 }
593
594 return CMD_SUCCESS;
595}
596
Harald Welte97ceef92009-08-06 19:06:46 +0200597
Harald Welte59b04682009-06-10 05:40:52 +0800598static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
599{
Harald Welte59b04682009-06-10 05:40:52 +0800600 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
601 ts->nr, ts->trx->nr, ts->trx->bts->nr,
602 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
603 vty_out(vty, " NM State: ");
604 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530605 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800606 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
607 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
608 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800609}
610
611DEFUN(show_ts,
612 show_ts_cmd,
613 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200614 SHOW_STR "Display information about a TS\n"
615 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800616{
Harald Welte40152872010-05-16 20:52:23 +0200617 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800618 struct gsm_bts *bts;
619 struct gsm_bts_trx *trx;
620 struct gsm_bts_trx_ts *ts;
621 int bts_nr, trx_nr, ts_nr;
622
623 if (argc >= 1) {
624 /* use the BTS number that the user has specified */
625 bts_nr = atoi(argv[0]);
626 if (bts_nr >= net->num_bts) {
627 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
628 VTY_NEWLINE);
629 return CMD_WARNING;
630 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200631 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800632 }
633 if (argc >= 2) {
634 trx_nr = atoi(argv[1]);
635 if (trx_nr >= bts->num_trx) {
636 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
637 VTY_NEWLINE);
638 return CMD_WARNING;
639 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200640 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800641 }
642 if (argc >= 3) {
643 ts_nr = atoi(argv[2]);
644 if (ts_nr >= TRX_NR_TS) {
645 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
646 VTY_NEWLINE);
647 return CMD_WARNING;
648 }
649 ts = &trx->ts[ts_nr];
650 ts_dump_vty(vty, ts);
651 return CMD_SUCCESS;
652 }
653 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200654 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800655 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200656 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800657 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
658 ts = &trx->ts[ts_nr];
659 ts_dump_vty(vty, ts);
660 }
661 }
662 }
663
664 return CMD_SUCCESS;
665}
666
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100667static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800668{
Harald Welte91afe4c2009-06-20 18:15:19 +0200669 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800670 subscr->authorized, VTY_NEWLINE);
671 if (subscr->name)
672 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
673 if (subscr->extension)
674 vty_out(vty, " Extension: %s%s", subscr->extension,
675 VTY_NEWLINE);
676 if (subscr->imsi)
677 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200678 if (subscr->tmsi != GSM_RESERVED_TMSI)
679 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200680 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100681
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200682 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800683}
684
Harald Welte44007742009-12-22 21:43:14 +0100685static void meas_rep_dump_uni_vty(struct vty *vty,
686 struct gsm_meas_rep_unidir *mru,
687 const char *prefix,
688 const char *dir)
689{
690 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
691 prefix, dir, rxlev2dbm(mru->full.rx_lev),
692 dir, rxlev2dbm(mru->sub.rx_lev));
693 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
694 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
695 VTY_NEWLINE);
696}
697
698static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
699 const char *prefix)
700{
701 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
702 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
703 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
704 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
705 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
706 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
707 VTY_NEWLINE);
708 if (mr->flags & MEAS_REP_F_MS_TO)
709 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
710 mr->ms_timing_offset, VTY_NEWLINE);
711 if (mr->flags & MEAS_REP_F_MS_L1)
712 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
713 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
714 if (mr->flags & MEAS_REP_F_DL_VALID)
715 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
716 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
717}
718
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800719static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800720{
Harald Welte44007742009-12-22 21:43:14 +0100721 int idx;
722
Harald Welte59b04682009-06-10 05:40:52 +0800723 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200724 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
Harald Welte (local)02204d02009-12-27 18:05:25 +0100725 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Harald Welte59b04682009-06-10 05:40:52 +0800726 VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800727 vty_out(vty, " Connection: %u, State: %s%s",
728 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100729 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100730 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
731 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
732 - lchan->bs_power*2,
733 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
734 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800735 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800736 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800737 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800738 } else
739 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530740 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
741 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200742 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530743 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
744 inet_ntoa(ia), lchan->abis_ip.bound_port,
745 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
746 VTY_NEWLINE);
747 }
Harald Welte44007742009-12-22 21:43:14 +0100748
749 /* we want to report the last measurement report */
750 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
751 lchan->meas_rep_idx, 1);
752 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800753}
754
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800755static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
756{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800757 struct gsm_meas_rep *mr;
758 int idx;
759
760 /* we want to report the last measurement report */
761 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
762 lchan->meas_rep_idx, 1);
763 mr = &lchan->meas_rep[idx];
764
765 vty_out(vty, "Lchan: %u Timeslot: %u TRX: %u BTS: %u Type: %s - L1 MS Power: %u dBm "
766 "RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800767 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
768 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800769 mr->ms_l1.pwr,
770 rxlev2dbm(mr->dl.full.rx_lev),
771 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800772 VTY_NEWLINE);
773}
774
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800775static int lchan_summary(struct vty *vty, int argc, const char **argv,
776 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800777{
Harald Welte40152872010-05-16 20:52:23 +0200778 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800779 struct gsm_bts *bts;
780 struct gsm_bts_trx *trx;
781 struct gsm_bts_trx_ts *ts;
782 struct gsm_lchan *lchan;
783 int bts_nr, trx_nr, ts_nr, lchan_nr;
784
785 if (argc >= 1) {
786 /* use the BTS number that the user has specified */
787 bts_nr = atoi(argv[0]);
788 if (bts_nr >= net->num_bts) {
789 vty_out(vty, "%% can't find BTS %s%s", argv[0],
790 VTY_NEWLINE);
791 return CMD_WARNING;
792 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200793 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800794 }
795 if (argc >= 2) {
796 trx_nr = atoi(argv[1]);
797 if (trx_nr >= bts->num_trx) {
798 vty_out(vty, "%% can't find TRX %s%s", argv[1],
799 VTY_NEWLINE);
800 return CMD_WARNING;
801 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200802 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800803 }
804 if (argc >= 3) {
805 ts_nr = atoi(argv[2]);
806 if (ts_nr >= TRX_NR_TS) {
807 vty_out(vty, "%% can't find TS %s%s", argv[2],
808 VTY_NEWLINE);
809 return CMD_WARNING;
810 }
811 ts = &trx->ts[ts_nr];
812 }
813 if (argc >= 4) {
814 lchan_nr = atoi(argv[3]);
815 if (lchan_nr >= TS_MAX_LCHAN) {
816 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
817 VTY_NEWLINE);
818 return CMD_WARNING;
819 }
820 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800821 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800822 return CMD_SUCCESS;
823 }
824 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200825 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800826 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200827 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800828 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
829 ts = &trx->ts[ts_nr];
830 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
831 lchan_nr++) {
832 lchan = &ts->lchan[lchan_nr];
833 if (lchan->type == GSM_LCHAN_NONE)
834 continue;
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800835 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +0800836 }
837 }
838 }
839 }
840
841 return CMD_SUCCESS;
842}
843
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800844
845DEFUN(show_lchan,
846 show_lchan_cmd,
847 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
848 SHOW_STR "Display information about a logical channel\n"
849 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
850 "Logical Channel Number\n")
851
852{
853 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
854}
855
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800856DEFUN(show_lchan_summary,
857 show_lchan_summary_cmd,
858 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
859 SHOW_STR "Display information about a logical channel\n"
860 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
861 "Logical Channel Number\n")
862{
863 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
864}
865
Harald Welte59b04682009-06-10 05:40:52 +0800866static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
867{
868 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
869}
870
871DEFUN(show_e1drv,
872 show_e1drv_cmd,
873 "show e1_driver",
874 SHOW_STR "Display information about available E1 drivers\n")
875{
876 struct e1inp_driver *drv;
877
878 llist_for_each_entry(drv, &e1inp_driver_list, list)
879 e1drv_dump_vty(vty, drv);
880
881 return CMD_SUCCESS;
882}
883
884static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
885{
886 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
887 line->num, line->name ? line->name : "",
888 line->driver->name, VTY_NEWLINE);
889}
890
891DEFUN(show_e1line,
892 show_e1line_cmd,
893 "show e1_line [line_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200894 SHOW_STR "Display information about a E1 line\n"
895 "E1 Line Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800896{
897 struct e1inp_line *line;
898
899 if (argc >= 1) {
900 int num = atoi(argv[0]);
901 llist_for_each_entry(line, &e1inp_line_list, list) {
902 if (line->num == num) {
903 e1line_dump_vty(vty, line);
904 return CMD_SUCCESS;
905 }
906 }
907 return CMD_WARNING;
908 }
909
910 llist_for_each_entry(line, &e1inp_line_list, list)
911 e1line_dump_vty(vty, line);
912
913 return CMD_SUCCESS;
914}
915
916static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
917{
Harald Welte62868882009-08-08 16:12:58 +0200918 if (ts->type == E1INP_TS_TYPE_NONE)
919 return;
Harald Welte59b04682009-06-10 05:40:52 +0800920 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
921 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
922 VTY_NEWLINE);
923}
924
925DEFUN(show_e1ts,
926 show_e1ts_cmd,
927 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200928 SHOW_STR "Display information about a E1 timeslot\n"
929 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800930{
Harald Welte49c79562009-11-17 06:12:16 +0100931 struct e1inp_line *line = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800932 struct e1inp_ts *ts;
933 int ts_nr;
934
935 if (argc == 0) {
936 llist_for_each_entry(line, &e1inp_line_list, list) {
937 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
938 ts = &line->ts[ts_nr];
939 e1ts_dump_vty(vty, ts);
940 }
941 }
942 return CMD_SUCCESS;
943 }
944 if (argc >= 1) {
945 int num = atoi(argv[0]);
946 llist_for_each_entry(line, &e1inp_line_list, list) {
947 if (line->num == num)
948 break;
949 }
950 if (!line || line->num != num) {
951 vty_out(vty, "E1 line %s is invalid%s",
952 argv[0], VTY_NEWLINE);
953 return CMD_WARNING;
954 }
955 }
956 if (argc >= 2) {
957 ts_nr = atoi(argv[1]);
958 if (ts_nr > NUM_E1_TS) {
959 vty_out(vty, "E1 timeslot %s is invalid%s",
960 argv[1], VTY_NEWLINE);
961 return CMD_WARNING;
962 }
963 ts = &line->ts[ts_nr];
964 e1ts_dump_vty(vty, ts);
965 return CMD_SUCCESS;
966 } else {
967 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
968 ts = &line->ts[ts_nr];
969 e1ts_dump_vty(vty, ts);
970 }
971 return CMD_SUCCESS;
972 }
973 return CMD_SUCCESS;
974}
975
976static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
977{
978 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
979 subscr_dump_vty(vty, pag->subscr);
980}
981
982static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
983{
984 struct gsm_paging_request *pag;
985
986 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
987 paging_dump_vty(vty, pag);
988}
989
990DEFUN(show_paging,
991 show_paging_cmd,
992 "show paging [bts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200993 SHOW_STR "Display information about paging reuqests of a BTS\n"
994 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800995{
Harald Welte40152872010-05-16 20:52:23 +0200996 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800997 struct gsm_bts *bts;
998 int bts_nr;
999
1000 if (argc >= 1) {
1001 /* use the BTS number that the user has specified */
1002 bts_nr = atoi(argv[0]);
1003 if (bts_nr >= net->num_bts) {
1004 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1005 VTY_NEWLINE);
1006 return CMD_WARNING;
1007 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001008 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001009 bts_paging_dump_vty(vty, bts);
1010
1011 return CMD_SUCCESS;
1012 }
1013 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001014 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001015 bts_paging_dump_vty(vty, bts);
1016 }
1017
1018 return CMD_SUCCESS;
1019}
1020
Harald Welte9e002452010-05-11 21:53:49 +02001021#define NETWORK_STR "Configure the GSM network\n"
1022
Harald Weltee87eb462009-08-07 13:29:14 +02001023DEFUN(cfg_net,
1024 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001025 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001026{
Harald Welte40152872010-05-16 20:52:23 +02001027 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001028 vty->node = GSMNET_NODE;
1029
1030 return CMD_SUCCESS;
1031}
1032
1033
1034DEFUN(cfg_net_ncc,
1035 cfg_net_ncc_cmd,
1036 "network country code <1-999>",
1037 "Set the GSM network country code")
1038{
Harald Welte40152872010-05-16 20:52:23 +02001039 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1040
Harald Weltee87eb462009-08-07 13:29:14 +02001041 gsmnet->country_code = atoi(argv[0]);
1042
1043 return CMD_SUCCESS;
1044}
1045
1046DEFUN(cfg_net_mnc,
1047 cfg_net_mnc_cmd,
1048 "mobile network code <1-999>",
1049 "Set the GSM mobile network code")
1050{
Harald Welte40152872010-05-16 20:52:23 +02001051 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1052
Harald Weltee87eb462009-08-07 13:29:14 +02001053 gsmnet->network_code = atoi(argv[0]);
1054
1055 return CMD_SUCCESS;
1056}
1057
1058DEFUN(cfg_net_name_short,
1059 cfg_net_name_short_cmd,
1060 "short name NAME",
1061 "Set the short GSM network name")
1062{
Harald Welte40152872010-05-16 20:52:23 +02001063 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1064
Harald Weltee87eb462009-08-07 13:29:14 +02001065 if (gsmnet->name_short)
1066 talloc_free(gsmnet->name_short);
1067
1068 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
1069
1070 return CMD_SUCCESS;
1071}
1072
1073DEFUN(cfg_net_name_long,
1074 cfg_net_name_long_cmd,
1075 "long name NAME",
1076 "Set the long GSM network name")
1077{
Harald Welte40152872010-05-16 20:52:23 +02001078 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1079
Harald Weltee87eb462009-08-07 13:29:14 +02001080 if (gsmnet->name_long)
1081 talloc_free(gsmnet->name_long);
1082
1083 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
1084
1085 return CMD_SUCCESS;
1086}
Harald Welte59b04682009-06-10 05:40:52 +08001087
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001088DEFUN(cfg_net_auth_policy,
1089 cfg_net_auth_policy_cmd,
1090 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001091 "Authentication (not cryptographic)\n"
1092 "Set the GSM network authentication policy\n"
1093 "Require the MS to be activated in HLR\n"
1094 "Accept all MS, whether in HLR or not\n"
1095 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001096{
1097 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001098 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001099
1100 gsmnet->auth_policy = policy;
1101
1102 return CMD_SUCCESS;
1103}
1104
Harald Welte59936d72009-11-18 20:33:19 +01001105DEFUN(cfg_net_reject_cause,
1106 cfg_net_reject_cause_cmd,
1107 "location updating reject cause <2-111>",
1108 "Set the reject cause of location updating reject\n")
1109{
Harald Welte40152872010-05-16 20:52:23 +02001110 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1111
Harald Welte59936d72009-11-18 20:33:19 +01001112 gsmnet->reject_cause = atoi(argv[0]);
1113
1114 return CMD_SUCCESS;
1115}
1116
Harald Weltecca253a2009-08-30 15:47:06 +09001117DEFUN(cfg_net_encryption,
1118 cfg_net_encryption_cmd,
1119 "encryption a5 (0|1|2)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001120 "Encryption options\n"
1121 "A5 encryption\n" "A5/0: No encryption\n"
1122 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001123{
Harald Welte40152872010-05-16 20:52:23 +02001124 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1125
Andreas.Eversberg53293292009-11-17 09:55:26 +01001126 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001127
1128 return CMD_SUCCESS;
1129}
1130
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001131DEFUN(cfg_net_neci,
1132 cfg_net_neci_cmd,
1133 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001134 "New Establish Cause Indication\n"
1135 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001136{
Harald Welte40152872010-05-16 20:52:23 +02001137 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1138
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001139 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001140 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001141 return CMD_SUCCESS;
1142}
1143
Harald Welte52af1952009-12-13 10:53:12 +01001144DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1145 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001146 "Radio Resource Location Protocol\n"
1147 "Set the Radio Resource Location Protocol Mode\n"
1148 "Don't send RRLP request\n"
1149 "Request MS-based location\n"
1150 "Request any location, prefer MS-based\n"
1151 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001152{
Harald Welte40152872010-05-16 20:52:23 +02001153 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1154
Harald Welte52af1952009-12-13 10:53:12 +01001155 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1156
1157 return CMD_SUCCESS;
1158}
1159
Harald Weltea310f3e2009-12-14 09:00:24 +01001160DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1161 "mm info (0|1)",
1162 "Whether to send MM INFO after LOC UPD ACCEPT")
1163{
Harald Welte40152872010-05-16 20:52:23 +02001164 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1165
Harald Weltea310f3e2009-12-14 09:00:24 +01001166 gsmnet->send_mm_info = atoi(argv[0]);
1167
1168 return CMD_SUCCESS;
1169}
1170
Harald Welte9e002452010-05-11 21:53:49 +02001171#define HANDOVER_STR "Handover Options\n"
1172
Harald Welte0af9c9f2009-12-19 21:41:52 +01001173DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1174 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001175 HANDOVER_STR
1176 "Don't perform in-call handover\n"
1177 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001178{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001179 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001180 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001181
1182 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001183 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1184 "is enabled by using the -P command line option%s",
1185 VTY_NEWLINE);
1186 return CMD_WARNING;
1187 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001188 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001189
1190 return CMD_SUCCESS;
1191}
1192
Harald Welte9e002452010-05-11 21:53:49 +02001193#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1194#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1195#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1196#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1197
Harald Weltea8062f12009-12-21 16:51:50 +01001198DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1199 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001200 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001201 "How many RxLev measurements are used for averaging")
1202{
Harald Welte40152872010-05-16 20:52:23 +02001203 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001204 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1205 return CMD_SUCCESS;
1206}
1207
1208DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1209 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001210 HO_WIN_RXQUAL_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001211 "How many RxQual measurements are used for averaging")
1212{
Harald Welte40152872010-05-16 20:52:23 +02001213 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001214 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1215 return CMD_SUCCESS;
1216}
1217
1218DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1219 "handover window rxlev neighbor averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001220 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001221 "How many RxQual measurements are used for averaging")
1222{
Harald Welte40152872010-05-16 20:52:23 +02001223 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001224 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1225 return CMD_SUCCESS;
1226}
1227
1228DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1229 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001230 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001231 "How often to check if we have a better cell (SACCH frames)")
1232{
Harald Welte40152872010-05-16 20:52:23 +02001233 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001234 gsmnet->handover.pwr_interval = atoi(argv[0]);
1235 return CMD_SUCCESS;
1236}
1237
1238DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1239 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001240 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001241 "How many dB does a neighbor to be stronger to become a HO candidate")
1242{
Harald Welte40152872010-05-16 20:52:23 +02001243 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001244 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1245 return CMD_SUCCESS;
1246}
1247
1248DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1249 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001250 HANDOVER_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001251 "How big is the maximum timing advance before HO is forced")
1252{
Harald Welte40152872010-05-16 20:52:23 +02001253 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001254 gsmnet->handover.max_distance = atoi(argv[0]);
1255 return CMD_SUCCESS;
1256}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001257
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001258DEFUN(cfg_net_pag_any_tch,
1259 cfg_net_pag_any_tch_cmd,
1260 "paging any use tch (0|1)",
1261 "Assign a TCH when receiving a Paging Any request")
1262{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001263 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001264 gsmnet->pag_any_tch = atoi(argv[0]);
1265 gsm_net_update_ctype(gsmnet);
1266 return CMD_SUCCESS;
1267}
1268
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001269#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001270 DEFUN(cfg_net_T##number, \
1271 cfg_net_T##number##_cmd, \
1272 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001273 "Configure GSM Timers\n" \
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001274 doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001275{ \
Harald Welte40152872010-05-16 20:52:23 +02001276 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001277 int value = atoi(argv[0]); \
1278 \
1279 if (value < 0 || value > 65535) { \
1280 vty_out(vty, "Timer value %s out of range.%s", \
1281 argv[0], VTY_NEWLINE); \
1282 return CMD_WARNING; \
1283 } \
1284 \
1285 gsmnet->T##number = value; \
1286 return CMD_SUCCESS; \
1287}
1288
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001289DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1290DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1291DECLARE_TIMER(3105, "Currently not used.")
1292DECLARE_TIMER(3107, "Currently not used.")
1293DECLARE_TIMER(3109, "Currently not used.")
Holger Hans Peter Freyther4a00c062010-05-31 21:33:15 +08001294DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.")
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001295DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1296DECLARE_TIMER(3115, "Currently not used.")
1297DECLARE_TIMER(3117, "Currently not used.")
1298DECLARE_TIMER(3119, "Currently not used.")
1299DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001300
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001301DEFUN(cfg_net_dtx,
1302 cfg_net_dtx_cmd,
1303 "dtx-used (0|1)",
1304 "Enable the usage of DTX.\n"
1305 "DTX is enabled/disabled")
1306{
1307 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1308 gsmnet->dtx_enabled = atoi(argv[0]);
1309 return CMD_SUCCESS;
1310}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001311
Harald Welte59b04682009-06-10 05:40:52 +08001312/* per-BTS configuration */
1313DEFUN(cfg_bts,
1314 cfg_bts_cmd,
1315 "bts BTS_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001316 "Select a BTS to configure\n"
1317 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001318{
Harald Welte40152872010-05-16 20:52:23 +02001319 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001320 int bts_nr = atoi(argv[0]);
1321 struct gsm_bts *bts;
1322
Harald Weltee712a5f2009-06-21 16:17:15 +02001323 if (bts_nr > gsmnet->num_bts) {
1324 vty_out(vty, "%% The next unused BTS number is %u%s",
1325 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001326 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001327 } else if (bts_nr == gsmnet->num_bts) {
1328 /* allocate a new one */
1329 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1330 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001331 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001332 bts = gsm_bts_num(gsmnet, bts_nr);
1333
Daniel Willmann580085f2010-01-11 13:43:07 +01001334 if (!bts) {
1335 vty_out(vty, "%% Unable to allocate BTS %u%s",
1336 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001337 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001338 }
Harald Welte59b04682009-06-10 05:40:52 +08001339
1340 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001341 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001342 vty->node = BTS_NODE;
1343
1344 return CMD_SUCCESS;
1345}
1346
1347DEFUN(cfg_bts_type,
1348 cfg_bts_type_cmd,
1349 "type TYPE",
1350 "Set the BTS type\n")
1351{
1352 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001353 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001354
Harald Welte59698fb2010-01-10 18:01:52 +01001355 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1356 if (rc < 0)
1357 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001358
Harald Welte59b04682009-06-10 05:40:52 +08001359 return CMD_SUCCESS;
1360}
1361
Harald Welte91afe4c2009-06-20 18:15:19 +02001362DEFUN(cfg_bts_band,
1363 cfg_bts_band_cmd,
1364 "band BAND",
1365 "Set the frequency band of this BTS\n")
1366{
1367 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001368 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001369
1370 if (band < 0) {
1371 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1372 band, VTY_NEWLINE);
1373 return CMD_WARNING;
1374 }
1375
1376 bts->band = band;
1377
1378 return CMD_SUCCESS;
1379}
1380
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001381DEFUN(cfg_bts_ci,
1382 cfg_bts_ci_cmd,
1383 "cell_identity <0-65535>",
1384 "Set the Cell identity of this BTS\n")
1385{
1386 struct gsm_bts *bts = vty->index;
1387 int ci = atoi(argv[0]);
1388
1389 if (ci < 0 || ci > 0xffff) {
1390 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1391 ci, VTY_NEWLINE);
1392 return CMD_WARNING;
1393 }
1394 bts->cell_identity = ci;
1395
1396 return CMD_SUCCESS;
1397}
1398
Harald Welte59b04682009-06-10 05:40:52 +08001399DEFUN(cfg_bts_lac,
1400 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001401 "location_area_code <0-65535>",
Harald Welte59b04682009-06-10 05:40:52 +08001402 "Set the Location Area Code (LAC) of this BTS\n")
1403{
1404 struct gsm_bts *bts = vty->index;
1405 int lac = atoi(argv[0]);
1406
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001407 if (lac < 0 || lac > 0xffff) {
1408 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001409 lac, VTY_NEWLINE);
1410 return CMD_WARNING;
1411 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001412
1413 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1414 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1415 lac, VTY_NEWLINE);
1416 return CMD_WARNING;
1417 }
1418
Harald Welte59b04682009-06-10 05:40:52 +08001419 bts->location_area_code = lac;
1420
1421 return CMD_SUCCESS;
1422}
1423
Harald Weltea54a2bb2009-12-01 18:04:30 +05301424
Harald Welte59b04682009-06-10 05:40:52 +08001425DEFUN(cfg_bts_tsc,
1426 cfg_bts_tsc_cmd,
1427 "training_sequence_code <0-255>",
1428 "Set the Training Sequence Code (TSC) of this BTS\n")
1429{
1430 struct gsm_bts *bts = vty->index;
1431 int tsc = atoi(argv[0]);
1432
1433 if (tsc < 0 || tsc > 0xff) {
1434 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1435 tsc, VTY_NEWLINE);
1436 return CMD_WARNING;
1437 }
1438 bts->tsc = tsc;
1439
1440 return CMD_SUCCESS;
1441}
1442
1443DEFUN(cfg_bts_bsic,
1444 cfg_bts_bsic_cmd,
1445 "base_station_id_code <0-63>",
1446 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1447{
1448 struct gsm_bts *bts = vty->index;
1449 int bsic = atoi(argv[0]);
1450
1451 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001452 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001453 bsic, VTY_NEWLINE);
1454 return CMD_WARNING;
1455 }
1456 bts->bsic = bsic;
1457
1458 return CMD_SUCCESS;
1459}
1460
1461
1462DEFUN(cfg_bts_unit_id,
1463 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001464 "ip.access unit_id <0-65534> <0-255>",
1465 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001466{
1467 struct gsm_bts *bts = vty->index;
1468 int site_id = atoi(argv[0]);
1469 int bts_id = atoi(argv[1]);
1470
Harald Weltef515aa02009-08-07 13:27:09 +02001471 if (!is_ipaccess_bts(bts)) {
1472 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1473 return CMD_WARNING;
1474 }
1475
Harald Welte59b04682009-06-10 05:40:52 +08001476 bts->ip_access.site_id = site_id;
1477 bts->ip_access.bts_id = bts_id;
1478
1479 return CMD_SUCCESS;
1480}
1481
Harald Welte9e002452010-05-11 21:53:49 +02001482#define OML_STR "Organization & Maintenance Link\n"
1483#define IPA_STR "ip.access Specific Options\n"
1484
Harald Welte25572872009-10-20 00:22:00 +02001485DEFUN(cfg_bts_stream_id,
1486 cfg_bts_stream_id_cmd,
1487 "oml ip.access stream_id <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001488 OML_STR IPA_STR
Harald Welte25572872009-10-20 00:22:00 +02001489 "Set the ip.access Stream ID of the OML link of this BTS\n")
1490{
1491 struct gsm_bts *bts = vty->index;
1492 int stream_id = atoi(argv[0]);
1493
1494 if (!is_ipaccess_bts(bts)) {
1495 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1496 return CMD_WARNING;
1497 }
1498
1499 bts->oml_tei = stream_id;
1500
1501 return CMD_SUCCESS;
1502}
1503
Harald Welte9e002452010-05-11 21:53:49 +02001504#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte25572872009-10-20 00:22:00 +02001505
Harald Welte62868882009-08-08 16:12:58 +02001506DEFUN(cfg_bts_oml_e1,
1507 cfg_bts_oml_e1_cmd,
1508 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte9e002452010-05-11 21:53:49 +02001509 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001510 "E1 interface to be used for OML\n")
1511{
1512 struct gsm_bts *bts = vty->index;
1513
1514 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1515
1516 return CMD_SUCCESS;
1517}
1518
1519
1520DEFUN(cfg_bts_oml_e1_tei,
1521 cfg_bts_oml_e1_tei_cmd,
1522 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001523 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001524 "Set the TEI to be used for OML")
1525{
1526 struct gsm_bts *bts = vty->index;
1527
1528 bts->oml_tei = atoi(argv[0]);
1529
1530 return CMD_SUCCESS;
1531}
1532
Harald Welte3e774612009-08-10 13:48:16 +02001533DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1534 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001535 "Channnel Allocator\n" "Channel Allocator\n"
1536 "Allocate Timeslots and Transceivers in ascending order\n"
1537 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001538{
1539 struct gsm_bts *bts = vty->index;
1540
1541 if (!strcmp(argv[0], "ascending"))
1542 bts->chan_alloc_reverse = 0;
1543 else
1544 bts->chan_alloc_reverse = 1;
1545
1546 return CMD_SUCCESS;
1547}
1548
Harald Welte9e002452010-05-11 21:53:49 +02001549#define RACH_STR "Random Access Control Channel\n"
1550
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001551DEFUN(cfg_bts_rach_tx_integer,
1552 cfg_bts_rach_tx_integer_cmd,
1553 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001554 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001555 "Set the raw tx integer value in RACH Control parameters IE")
1556{
1557 struct gsm_bts *bts = vty->index;
1558 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1559 return CMD_SUCCESS;
1560}
1561
1562DEFUN(cfg_bts_rach_max_trans,
1563 cfg_bts_rach_max_trans_cmd,
1564 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001565 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001566 "Set the maximum number of RACH burst transmissions")
1567{
1568 struct gsm_bts *bts = vty->index;
1569 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1570 return CMD_SUCCESS;
1571}
1572
Harald Welte9e002452010-05-11 21:53:49 +02001573#define NM_STR "Network Management\n"
1574
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001575DEFUN(cfg_bts_rach_nm_b_thresh,
1576 cfg_bts_rach_nm_b_thresh_cmd,
1577 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001578 RACH_STR NM_STR
1579 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001580{
1581 struct gsm_bts *bts = vty->index;
1582 bts->rach_b_thresh = atoi(argv[0]);
1583 return CMD_SUCCESS;
1584}
1585
1586DEFUN(cfg_bts_rach_nm_ldavg,
1587 cfg_bts_rach_nm_ldavg_cmd,
1588 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001589 RACH_STR NM_STR
1590 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001591{
1592 struct gsm_bts *bts = vty->index;
1593 bts->rach_ldavg_slots = atoi(argv[0]);
1594 return CMD_SUCCESS;
1595}
1596
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001597DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1598 "cell barred (0|1)",
1599 "Should this cell be barred from access?")
1600{
1601 struct gsm_bts *bts = vty->index;
1602
Harald Welte8c973ba2009-12-21 23:08:18 +01001603 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001604
1605 return CMD_SUCCESS;
1606}
1607
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001608DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1609 "rach emergency call allowed (0|1)",
1610 "Should this cell allow emergency calls?")
1611{
1612 struct gsm_bts *bts = vty->index;
1613
1614 if (atoi(argv[0]) == 0)
1615 bts->si_common.rach_control.t2 |= 0x4;
1616 else
1617 bts->si_common.rach_control.t2 &= ~0x4;
1618
1619 return CMD_SUCCESS;
1620}
1621
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001622DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1623 "ms max power <0-40>",
1624 "Maximum transmit power of the MS")
1625{
1626 struct gsm_bts *bts = vty->index;
1627
1628 bts->ms_max_power = atoi(argv[0]);
1629
1630 return CMD_SUCCESS;
1631}
1632
Harald Welteb761bf82009-12-12 18:17:25 +01001633DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1634 "cell reselection hysteresis <0-14>",
1635 "Cell Re-Selection Hysteresis in dB")
1636{
1637 struct gsm_bts *bts = vty->index;
1638
1639 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1640
1641 return CMD_SUCCESS;
1642}
1643
1644DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1645 "rxlev access min <0-63>",
1646 "Minimum RxLev needed for cell access (better than -110dBm)")
1647{
1648 struct gsm_bts *bts = vty->index;
1649
1650 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1651
1652 return CMD_SUCCESS;
1653}
1654
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001655DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1656 "periodic location update <0-1530>",
1657 "Periodic Location Updating Interval in Minutes")
1658{
1659 struct gsm_bts *bts = vty->index;
1660
Harald Weltea54a2bb2009-12-01 18:04:30 +05301661 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001662
1663 return CMD_SUCCESS;
1664}
1665
Harald Welte9e002452010-05-11 21:53:49 +02001666#define GPRS_TEXT "GPRS Packet Network\n"
1667
Harald Welte410575a2010-03-14 23:30:30 +08001668DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02001669 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001670 GPRS_TEXT
1671 "GPRS Cell Settings\n"
Harald Welte3055e332010-03-14 15:37:43 +08001672 "GPRS BSSGP VC Identifier")
1673{
1674 struct gsm_bts *bts = vty->index;
1675
Harald Weltecb20b7a2010-04-18 15:51:20 +02001676 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001677 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1678 return CMD_WARNING;
1679 }
1680
Harald Welte3055e332010-03-14 15:37:43 +08001681 bts->gprs.cell.bvci = atoi(argv[0]);
1682
1683 return CMD_SUCCESS;
1684}
1685
Harald Welte4a048c52010-03-22 11:48:36 +08001686DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1687 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001688 GPRS_TEXT
Harald Welte4a048c52010-03-22 11:48:36 +08001689 "GPRS NS Entity Identifier")
1690{
1691 struct gsm_bts *bts = vty->index;
1692
Harald Weltecb20b7a2010-04-18 15:51:20 +02001693 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08001694 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1695 return CMD_WARNING;
1696 }
1697
1698 bts->gprs.nse.nsei = atoi(argv[0]);
1699
1700 return CMD_SUCCESS;
1701}
1702
Harald Welte9e002452010-05-11 21:53:49 +02001703#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1704 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08001705
Harald Welte3055e332010-03-14 15:37:43 +08001706DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1707 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001708 GPRS_TEXT NSVC_TEXT
1709 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08001710 "GPRS NS VC Identifier")
1711{
1712 struct gsm_bts *bts = vty->index;
1713 int idx = atoi(argv[0]);
1714
Harald Weltecb20b7a2010-04-18 15:51:20 +02001715 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001716 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1717 return CMD_WARNING;
1718 }
1719
Harald Welte3055e332010-03-14 15:37:43 +08001720 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1721
1722 return CMD_SUCCESS;
1723}
1724
Harald Welte410575a2010-03-14 23:30:30 +08001725DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1726 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001727 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001728 "GPRS NS Local UDP Port")
1729{
1730 struct gsm_bts *bts = vty->index;
1731 int idx = atoi(argv[0]);
1732
Harald Weltecb20b7a2010-04-18 15:51:20 +02001733 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001734 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1735 return CMD_WARNING;
1736 }
1737
Harald Welte410575a2010-03-14 23:30:30 +08001738 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1739
1740 return CMD_SUCCESS;
1741}
1742
1743DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1744 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001745 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001746 "GPRS NS Remote UDP Port")
1747{
1748 struct gsm_bts *bts = vty->index;
1749 int idx = atoi(argv[0]);
1750
Harald Weltecb20b7a2010-04-18 15:51:20 +02001751 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001752 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1753 return CMD_WARNING;
1754 }
1755
Harald Welte410575a2010-03-14 23:30:30 +08001756 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1757
1758 return CMD_SUCCESS;
1759}
1760
1761DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1762 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02001763 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001764 "GPRS NS Remote IP Address")
1765{
1766 struct gsm_bts *bts = vty->index;
1767 int idx = atoi(argv[0]);
1768 struct in_addr ia;
1769
Harald Weltecb20b7a2010-04-18 15:51:20 +02001770 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001771 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1772 return CMD_WARNING;
1773 }
1774
Harald Welte410575a2010-03-14 23:30:30 +08001775 inet_aton(argv[1], &ia);
1776 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1777
1778 return CMD_SUCCESS;
1779}
1780
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08001781DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
1782 "paging free FREE_NR",
1783 "Only page when having a certain amount of free slots. -1 to disable")
1784{
1785 struct gsm_bts *bts = vty->index;
1786
1787 bts->paging.free_chans_need = atoi(argv[0]);
1788 return CMD_SUCCESS;
1789}
1790
Harald Weltea9251762010-05-11 23:50:21 +02001791DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1792 "gprs ns timer " NS_TIMERS " <0-255>",
1793 GPRS_TEXT "Network Service\n"
1794 "Network Service Timer\n"
1795 NS_TIMERS_HELP "Timer Value\n")
1796{
1797 struct gsm_bts *bts = vty->index;
1798 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
1799 int val = atoi(argv[1]);
1800
1801 if (bts->gprs.mode == BTS_GPRS_NONE) {
1802 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1803 return CMD_WARNING;
1804 }
1805
1806 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
1807 return CMD_WARNING;
1808
1809 bts->gprs.nse.timer[idx] = val;
1810
1811 return CMD_SUCCESS;
1812}
1813
1814#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte18ce31c2010-05-14 20:05:17 +02001815#define BSSGP_TIMERS_HELP \
1816 "Tbvc-block timeout\n" \
1817 "Tbvc-block retries\n" \
1818 "Tbvc-unblock retries\n" \
1819 "Tbvcc-reset timeout\n" \
1820 "Tbvc-reset retries\n" \
1821 "Tbvc-suspend timeout\n" \
1822 "Tbvc-suspend retries\n" \
1823 "Tbvc-resume timeout\n" \
1824 "Tbvc-resume retries\n" \
1825 "Tbvc-capa-update timeout\n" \
1826 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02001827
1828DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
1829 "gprs cell timer " BSSGP_TIMERS " <0-255>",
1830 GPRS_TEXT "Cell / BSSGP\n"
1831 "Cell/BSSGP Timer\n"
1832 BSSGP_TIMERS_HELP "Timer Value\n")
1833{
1834 struct gsm_bts *bts = vty->index;
1835 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
1836 int val = atoi(argv[1]);
1837
1838 if (bts->gprs.mode == BTS_GPRS_NONE) {
1839 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1840 return CMD_WARNING;
1841 }
1842
1843 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
1844 return CMD_WARNING;
1845
1846 bts->gprs.cell.timer[idx] = val;
1847
1848 return CMD_SUCCESS;
1849}
1850
Harald Welte3055e332010-03-14 15:37:43 +08001851DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
1852 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001853 GPRS_TEXT
Harald Welte3055e332010-03-14 15:37:43 +08001854 "GPRS Routing Area Code")
1855{
1856 struct gsm_bts *bts = vty->index;
1857
Harald Weltecb20b7a2010-04-18 15:51:20 +02001858 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001859 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1860 return CMD_WARNING;
1861 }
1862
Harald Welte3055e332010-03-14 15:37:43 +08001863 bts->gprs.rac = atoi(argv[0]);
1864
1865 return CMD_SUCCESS;
1866}
1867
Harald Weltecb20b7a2010-04-18 15:51:20 +02001868DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
1869 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02001870 GPRS_TEXT
1871 "GPRS Mode for this BTS\n"
1872 "GPRS Disabled on this BTS\n"
1873 "GPRS Enabled on this BTS\n"
1874 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08001875{
1876 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02001877 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08001878
Harald Welte20e275a2010-06-14 22:44:42 +02001879 if (mode != BTS_GPRS_NONE &&
1880 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
1881 vty_out(vty, "This BTS type does not support %s%s", argv[0],
1882 VTY_NEWLINE);
1883 return CMD_WARNING;
1884 }
1885 if (mode == BTS_GPRS_EGPRS &&
1886 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
1887 vty_out(vty, "This BTS type does not support %s%s", argv[0],
1888 VTY_NEWLINE);
1889 return CMD_WARNING;
1890 }
1891
1892 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08001893
1894 return CMD_SUCCESS;
1895}
1896
Harald Welted8acf142010-07-30 11:50:09 +02001897#define SI_TEXT "System Information Messages\n"
1898#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)"
1899#define SI_TYPE_HELP "System Information Type 1\n" \
1900 "System Information Type 2\n" \
1901 "System Information Type 3\n" \
1902 "System Information Type 4\n" \
1903 "System Information Type 5\n" \
1904 "System Information Type 6\n" \
1905 "System Information Type 7\n" \
1906 "System Information Type 8\n" \
1907 "System Information Type 9\n" \
1908 "System Information Type 10\n" \
1909 "System Information Type 13\n" \
1910 "System Information Type 16\n" \
1911 "System Information Type 17\n" \
1912 "System Information Type 18\n" \
1913 "System Information Type 19\n" \
1914 "System Information Type 20\n" \
1915 "System Information Type 2bis\n" \
1916 "System Information Type 2ter\n" \
1917 "System Information Type 2quater\n" \
1918 "System Information Type 5bis\n" \
1919 "System Information Type 5ter\n"
1920
1921DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
1922 "system-information " SI_TYPE_TEXT " mode (static|computed)",
1923 SI_TEXT SI_TYPE_HELP
1924 "System Information Mode\n"
1925 "Static user-specified\n"
1926 "Dynamic, BSC-computed\n")
1927{
1928 struct gsm_bts *bts = vty->index;
1929 int type;
1930
1931 type = get_string_value(osmo_sitype_strs, argv[0]);
1932 if (type < 0) {
1933 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
1934 return CMD_WARNING;
1935 }
1936
1937 if (!strcmp(argv[1], "static"))
1938 bts->si_mode_static |= (1 << type);
1939 else
1940 bts->si_mode_static &= ~(1 << type);
1941
1942 return CMD_SUCCESS;
1943}
1944
1945DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
1946 "system-information " SI_TYPE_TEXT " static HEXSTRING",
1947 SI_TEXT SI_TYPE_HELP
1948 "Static System Information filling\n"
1949 "Static user-specified SI content in HEX notation\n")
1950{
1951 struct gsm_bts *bts = vty->index;
1952 int rc, type;
1953
1954 type = get_string_value(osmo_sitype_strs, argv[0]);
1955 if (type < 0) {
1956 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
1957 return CMD_WARNING;
1958 }
1959
1960 if (!(bts->si_mode_static & (1 << type))) {
1961 vty_out(vty, "SI Type %s is not configured in static mode%s",
1962 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
1963 return CMD_WARNING;
1964 }
1965
Harald Welte9f09ac32010-07-30 11:53:18 +02001966 /* Fill buffer with padding pattern */
1967 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
1968
1969 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Harald Welted8acf142010-07-30 11:50:09 +02001970 rc = hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
1971 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
1972 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
1973 return CMD_WARNING;
1974 }
1975
1976 /* Mark this SI as present */
1977 bts->si_valid |= (1 << type);
1978
1979 return CMD_SUCCESS;
1980}
1981
1982
Harald Welte9e002452010-05-11 21:53:49 +02001983#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02001984
Harald Welte59b04682009-06-10 05:40:52 +08001985/* per TRX configuration */
1986DEFUN(cfg_trx,
1987 cfg_trx_cmd,
1988 "trx TRX_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001989 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08001990 "Select a TRX to configure")
1991{
1992 int trx_nr = atoi(argv[0]);
1993 struct gsm_bts *bts = vty->index;
1994 struct gsm_bts_trx *trx;
1995
Harald Weltee712a5f2009-06-21 16:17:15 +02001996 if (trx_nr > bts->num_trx) {
1997 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1998 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001999 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002000 } else if (trx_nr == bts->num_trx) {
2001 /* we need to allocate a new one */
2002 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002003 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002004 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002005
Harald Weltee712a5f2009-06-21 16:17:15 +02002006 if (!trx)
2007 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002008
2009 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002010 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002011 vty->node = TRX_NODE;
2012
2013 return CMD_SUCCESS;
2014}
2015
2016DEFUN(cfg_trx_arfcn,
2017 cfg_trx_arfcn_cmd,
Harald Welte00044592010-05-14 19:00:52 +02002018 "arfcn <0-1024>",
Harald Welte59b04682009-06-10 05:40:52 +08002019 "Set the ARFCN for this TRX\n")
2020{
2021 int arfcn = atoi(argv[0]);
2022 struct gsm_bts_trx *trx = vty->index;
2023
2024 /* FIXME: check if this ARFCN is supported by this TRX */
2025
2026 trx->arfcn = arfcn;
2027
2028 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2029 /* FIXME: use OML layer to update the ARFCN */
2030 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2031
2032 return CMD_SUCCESS;
2033}
2034
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002035DEFUN(cfg_trx_nominal_power,
2036 cfg_trx_nominal_power_cmd,
2037 "nominal power <0-100>",
2038 "Nominal TRX RF Power in dB\n")
2039{
2040 struct gsm_bts_trx *trx = vty->index;
2041
2042 trx->nominal_power = atoi(argv[0]);
2043
2044 return CMD_SUCCESS;
2045}
2046
Harald Welte91afe4c2009-06-20 18:15:19 +02002047DEFUN(cfg_trx_max_power_red,
2048 cfg_trx_max_power_red_cmd,
2049 "max_power_red <0-100>",
2050 "Reduction of maximum BS RF Power in dB\n")
2051{
2052 int maxpwr_r = atoi(argv[0]);
2053 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002054 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002055
2056 /* FIXME: check if our BTS type supports more than 12 */
2057 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2058 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2059 maxpwr_r, VTY_NEWLINE);
2060 return CMD_WARNING;
2061 }
2062 if (maxpwr_r & 1) {
2063 vty_out(vty, "%% Power %d dB is not an even value%s",
2064 maxpwr_r, VTY_NEWLINE);
2065 return CMD_WARNING;
2066 }
2067
2068 trx->max_power_red = maxpwr_r;
2069
2070 /* FIXME: make sure we update this using OML */
2071
2072 return CMD_SUCCESS;
2073}
2074
Harald Welte62868882009-08-08 16:12:58 +02002075DEFUN(cfg_trx_rsl_e1,
2076 cfg_trx_rsl_e1_cmd,
2077 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
2078 "E1 interface to be used for RSL\n")
2079{
2080 struct gsm_bts_trx *trx = vty->index;
2081
2082 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2083
2084 return CMD_SUCCESS;
2085}
2086
2087DEFUN(cfg_trx_rsl_e1_tei,
2088 cfg_trx_rsl_e1_tei_cmd,
2089 "rsl e1 tei <0-63>",
2090 "Set the TEI to be used for RSL")
2091{
2092 struct gsm_bts_trx *trx = vty->index;
2093
2094 trx->rsl_tei = atoi(argv[0]);
2095
2096 return CMD_SUCCESS;
2097}
2098
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002099DEFUN(cfg_trx_rf_locked,
2100 cfg_trx_rf_locked_cmd,
2101 "rf_locked (0|1)",
2102 "Turn off RF of the TRX.\n")
2103{
2104 int locked = atoi(argv[0]);
2105 struct gsm_bts_trx *trx = vty->index;
2106
2107 gsm_trx_lock_rf(trx, locked);
2108 return CMD_SUCCESS;
2109}
Harald Welte62868882009-08-08 16:12:58 +02002110
Harald Welte59b04682009-06-10 05:40:52 +08002111/* per TS configuration */
2112DEFUN(cfg_ts,
2113 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002114 "timeslot <0-7>",
Harald Welte59b04682009-06-10 05:40:52 +08002115 "Select a Timeslot to configure")
2116{
2117 int ts_nr = atoi(argv[0]);
2118 struct gsm_bts_trx *trx = vty->index;
2119 struct gsm_bts_trx_ts *ts;
2120
2121 if (ts_nr >= TRX_NR_TS) {
2122 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2123 TRX_NR_TS, VTY_NEWLINE);
2124 return CMD_WARNING;
2125 }
2126
2127 ts = &trx->ts[ts_nr];
2128
2129 vty->index = ts;
2130 vty->node = TS_NODE;
2131
2132 return CMD_SUCCESS;
2133}
2134
Harald Welte3ffe1b32009-08-07 00:25:23 +02002135DEFUN(cfg_ts_pchan,
2136 cfg_ts_pchan_cmd,
2137 "phys_chan_config PCHAN",
2138 "Physical Channel configuration (TCH/SDCCH/...)")
2139{
2140 struct gsm_bts_trx_ts *ts = vty->index;
2141 int pchanc;
2142
2143 pchanc = gsm_pchan_parse(argv[0]);
2144 if (pchanc < 0)
2145 return CMD_WARNING;
2146
2147 ts->pchan = pchanc;
2148
2149 return CMD_SUCCESS;
2150}
2151
Harald Weltea42a93f2010-06-14 22:26:10 +02002152#define HOPPING_STR "Configure frequency hopping\n"
2153
2154DEFUN(cfg_ts_hopping,
2155 cfg_ts_hopping_cmd,
2156 "hopping enabled (0|1)",
2157 HOPPING_STR "Enable or disable frequency hopping\n"
2158 "Disable frequency hopping\n" "Enable frequency hopping\n")
2159{
2160 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002161 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002162
Harald Welte059c1ef2010-06-14 22:47:37 +02002163 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2164 vty_out(vty, "BTS model does not support hopping%s",
2165 VTY_NEWLINE);
2166 return CMD_WARNING;
2167 }
2168
2169 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002170
2171 return CMD_SUCCESS;
2172}
2173
Harald Welte67104d12009-09-12 13:05:33 +02002174DEFUN(cfg_ts_hsn,
2175 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002176 "hopping sequence-number <0-63>",
2177 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002178 "Which hopping sequence to use for this channel")
2179{
2180 struct gsm_bts_trx_ts *ts = vty->index;
2181
2182 ts->hopping.hsn = atoi(argv[0]);
2183
2184 return CMD_SUCCESS;
2185}
2186
2187DEFUN(cfg_ts_maio,
2188 cfg_ts_maio_cmd,
2189 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002190 HOPPING_STR
Harald Welte67104d12009-09-12 13:05:33 +02002191 "Which hopping MAIO to use for this channel")
2192{
2193 struct gsm_bts_trx_ts *ts = vty->index;
2194
2195 ts->hopping.maio = atoi(argv[0]);
2196
2197 return CMD_SUCCESS;
2198}
2199
2200DEFUN(cfg_ts_arfcn_add,
2201 cfg_ts_arfcn_add_cmd,
2202 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002203 HOPPING_STR "Configure hopping ARFCN list\n"
2204 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002205{
2206 struct gsm_bts_trx_ts *ts = vty->index;
2207 int arfcn = atoi(argv[0]);
2208
Harald Weltea42a93f2010-06-14 22:26:10 +02002209 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2210
Harald Welte67104d12009-09-12 13:05:33 +02002211 return CMD_SUCCESS;
2212}
2213
2214DEFUN(cfg_ts_arfcn_del,
2215 cfg_ts_arfcn_del_cmd,
2216 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002217 HOPPING_STR "Configure hopping ARFCN list\n"
2218 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002219{
2220 struct gsm_bts_trx_ts *ts = vty->index;
2221 int arfcn = atoi(argv[0]);
2222
Harald Weltea42a93f2010-06-14 22:26:10 +02002223 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2224
Harald Welte67104d12009-09-12 13:05:33 +02002225 return CMD_SUCCESS;
2226}
2227
Harald Welte3ffe1b32009-08-07 00:25:23 +02002228DEFUN(cfg_ts_e1_subslot,
2229 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002230 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte3ffe1b32009-08-07 00:25:23 +02002231 "E1 sub-slot connected to this on-air timeslot")
2232{
2233 struct gsm_bts_trx_ts *ts = vty->index;
2234
Harald Welte62868882009-08-08 16:12:58 +02002235 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002236
2237 return CMD_SUCCESS;
2238}
Harald Welte59b04682009-06-10 05:40:52 +08002239
Harald Weltea5b1dae2010-05-16 21:47:13 +02002240void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2241{
2242 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
2243 counter_get(net->stats.chreq.total),
2244 counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
2245 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
2246 counter_get(net->stats.chan.rf_fail),
2247 counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
2248 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
2249 counter_get(net->stats.paging.attempted),
2250 counter_get(net->stats.paging.completed),
2251 counter_get(net->stats.paging.expired), VTY_NEWLINE);
2252 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
2253 counter_get(net->stats.bts.oml_fail),
2254 counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
2255}
2256
Harald Welte682ee5f2010-05-16 22:02:16 +02002257DEFUN(logging_fltr_imsi,
2258 logging_fltr_imsi_cmd,
2259 "logging filter imsi IMSI",
2260 LOGGING_STR FILTER_STR
2261 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2262{
2263 struct telnet_connection *conn;
2264
2265 conn = (struct telnet_connection *) vty->priv;
2266 if (!conn->dbg) {
2267 vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE);
2268 return CMD_WARNING;
2269 }
2270
2271 log_set_imsi_filter(conn->dbg, argv[0]);
2272 return CMD_SUCCESS;
2273}
2274
Harald Welte40152872010-05-16 20:52:23 +02002275extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002276extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002277
Harald Welte40152872010-05-16 20:52:23 +02002278int bsc_vty_init(void)
Harald Welte59b04682009-06-10 05:40:52 +08002279{
Harald Welte7bc28f62010-05-12 16:10:35 +00002280 install_element_ve(&show_net_cmd);
2281 install_element_ve(&show_bts_cmd);
2282 install_element_ve(&show_trx_cmd);
2283 install_element_ve(&show_ts_cmd);
2284 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08002285 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02002286 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002287
Harald Welte7bc28f62010-05-12 16:10:35 +00002288 install_element_ve(&show_e1drv_cmd);
2289 install_element_ve(&show_e1line_cmd);
2290 install_element_ve(&show_e1ts_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002291
Harald Welte7bc28f62010-05-12 16:10:35 +00002292 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002293
Harald Welte682ee5f2010-05-16 22:02:16 +02002294 logging_vty_add_cmds();
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01002295
Harald Weltee87eb462009-08-07 13:29:14 +02002296 install_element(CONFIG_NODE, &cfg_net_cmd);
2297 install_node(&net_node, config_write_net);
2298 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002299 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002300 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002301 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002302 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2303 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2304 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02002305 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01002306 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09002307 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01002308 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01002309 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01002310 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01002311 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01002312 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2313 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2314 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2315 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2316 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2317 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01002318 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01002319 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2320 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2321 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2322 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2323 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2324 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2325 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2326 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2327 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
2328 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08002329 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08002330 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002331
2332 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02002333 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08002334 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002335 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002336 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002337 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002338 install_element(BTS_NODE, &cfg_description_cmd);
2339 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02002340 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02002341 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002342 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2343 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002344 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002345 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte25572872009-10-20 00:22:00 +02002346 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002347 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2348 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02002349 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01002350 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2351 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08002352 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2353 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02002354 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002355 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002356 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002357 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01002358 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2359 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02002360 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002361 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002362 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2363 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02002364 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08002365 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08002366 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08002367 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2368 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2369 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002370 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02002371 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
2372 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002373
2374 install_element(BTS_NODE, &cfg_trx_cmd);
2375 install_node(&trx_node, dummy_config_write);
2376 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002377 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002378 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002379 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02002380 install_element(TRX_NODE, &cfg_description_cmd);
2381 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002382 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02002383 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002384 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2385 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002386 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002387
2388 install_element(TRX_NODE, &cfg_ts_cmd);
2389 install_node(&ts_node, dummy_config_write);
2390 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002391 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002392 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002393 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02002394 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02002395 install_element(TS_NODE, &cfg_ts_hsn_cmd);
2396 install_element(TS_NODE, &cfg_ts_maio_cmd);
2397 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
2398 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002399 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002400
Harald Welte63b964e2010-05-31 16:40:40 +02002401 abis_nm_vty_init();
2402
Harald Welte40152872010-05-16 20:52:23 +02002403 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08002404
2405 return 0;
2406}