blob: a17064d0f777ab92a318df1f2dfa2a2380583542 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
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 Welte4b037e42010-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 Welte68628e82009-03-10 12:17:57 +000030
31#include <arpa/inet.h>
32
Harald Weltedfe6c7d2010-02-20 16:24:02 +010033#include <osmocore/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000034#include <openbsc/gsm_data.h>
Harald Welte68628e82009-03-10 12:17:57 +000035#include <openbsc/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000036#include <openbsc/abis_nm.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010037#include <osmocore/gsm_utils.h>
Harald Welteb908cb72009-12-22 13:09:29 +010038#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010039#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000040#include <openbsc/db.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010041#include <osmocore/talloc.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020042#include <openbsc/vty.h>
Harald Welte22229d62010-05-12 20:28:04 +020043#include <openbsc/gprs_ns.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020044#include <openbsc/debug.h>
Harald Welte68628e82009-03-10 12:17:57 +000045
Harald Welte1353f962010-05-16 19:20:24 +020046#include "../bscconfig.h"
47
Harald Welteea4647d2010-05-12 17:19:53 +000048/* FIXME: this should go to some common file */
49static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020050 { 0, "tns-block" },
51 { 1, "tns-block-retries" },
52 { 2, "tns-reset" },
53 { 3, "tns-reset-retries" },
54 { 4, "tns-test" },
55 { 5, "tns-alive" },
56 { 6, "tns-alive-retries" },
57 { 0, NULL }
58};
59
Harald Welteea4647d2010-05-12 17:19:53 +000060static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020061 { 0, "blocking-timer" },
62 { 1, "blocking-retries" },
63 { 2, "unblocking-retries" },
64 { 3, "reset-timer" },
65 { 4, "reset-retries" },
66 { 5, "suspend-timer" },
67 { 6, "suspend-retries" },
68 { 7, "resume-timer" },
69 { 8, "resume-retries" },
70 { 9, "capability-update-timer" },
71 { 10, "capability-update-retries" },
72 { 0, NULL }
73};
74
Harald Welte5013b2a2009-08-07 13:29:14 +020075struct cmd_node net_node = {
76 GSMNET_NODE,
77 "%s(network)#",
78 1,
79};
80
Harald Welte68628e82009-03-10 12:17:57 +000081struct cmd_node bts_node = {
82 BTS_NODE,
83 "%s(bts)#",
84 1,
85};
86
87struct cmd_node trx_node = {
88 TRX_NODE,
89 "%s(trx)#",
90 1,
91};
92
93struct cmd_node ts_node = {
94 TS_NODE,
95 "%s(ts)#",
96 1,
97};
98
Harald Welte39231152010-05-27 13:39:40 +020099extern struct gsm_network *bsc_gsmnet;
100
Harald Weltedcccb182010-05-16 20:52:23 +0200101struct gsm_network *gsmnet_from_vty(struct vty *v)
102{
Harald Welte39231152010-05-27 13:39:40 +0200103 /* In case we read from the config file, the vty->priv cannot
104 * point to a struct telnet_connection, and thus conn->priv
105 * will not point to the gsm_network structure */
106#if 0
Harald Weltedcccb182010-05-16 20:52:23 +0200107 struct telnet_connection *conn = v->priv;
108 return (struct gsm_network *) conn->priv;
Harald Welte39231152010-05-27 13:39:40 +0200109#else
110 return bsc_gsmnet;
111#endif
Harald Weltedcccb182010-05-16 20:52:23 +0200112}
113
Harald Welte68628e82009-03-10 12:17:57 +0000114static int dummy_config_write(struct vty *v)
115{
116 return CMD_SUCCESS;
117}
118
119static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
120{
Harald Welte1bc77352009-03-10 19:47:51 +0000121 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
122 nm_opstate_name(nms->operational), nms->administrative,
123 nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000124}
125
Harald Welteb908cb72009-12-22 13:09:29 +0100126static void dump_pchan_load_vty(struct vty *vty, char *prefix,
127 const struct pchan_load *pl)
128{
129 int i;
130
131 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
132 const struct load_counter *lc = &pl->pchan[i];
133 unsigned int percent;
134
135 if (lc->total == 0)
136 continue;
137
138 percent = (lc->used * 100) / lc->total;
139
140 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
141 gsm_pchan_name(i), percent, lc->used, lc->total,
142 VTY_NEWLINE);
143 }
144}
145
Harald Welte68628e82009-03-10 12:17:57 +0000146static void net_dump_vty(struct vty *vty, struct gsm_network *net)
147{
Harald Welteb908cb72009-12-22 13:09:29 +0100148 struct pchan_load pl;
149
Harald Welteef235b52009-03-10 12:34:02 +0000150 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
151 "and has %u BTS%s", net->country_code, net->network_code,
152 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000153 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000154 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000155 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000156 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200157 vty_out(vty, " Authentication policy: %s%s",
158 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100159 vty_out(vty, " Location updating reject cause: %u%s",
160 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900161 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
162 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100163 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
164 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100165 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
166 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100167 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
168 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100169 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
170 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100171 network_chan_load(&pl, net);
172 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
173 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000174}
175
176DEFUN(show_net, show_net_cmd, "show network",
177 SHOW_STR "Display information about a GSM NETWORK\n")
178{
Harald Weltedcccb182010-05-16 20:52:23 +0200179 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000180 net_dump_vty(vty, net);
181
182 return CMD_SUCCESS;
183}
184
185static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
186{
Harald Welteedb37782009-05-01 14:59:07 +0000187 struct e1inp_line *line;
188
189 if (!e1l) {
190 vty_out(vty, " None%s", VTY_NEWLINE);
191 return;
192 }
193
194 line = e1l->ts->line;
195
196 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
197 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000198 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000199 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000200 e1l->tei, e1l->sapi, VTY_NEWLINE);
201}
202
203static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
204{
Harald Welteb908cb72009-12-22 13:09:29 +0100205 struct pchan_load pl;
206
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200207 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200208 "BSIC %u, TSC %u and %u TRX%s",
209 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200210 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200211 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200212 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200213 vty_out(vty, "Description: %s%s",
214 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100215 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100216 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100217 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
218 VTY_NEWLINE);
219 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100220 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100221 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
222 VTY_NEWLINE);
223 vty_out(vty, "RACH Max transmissions: %u%s",
224 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
225 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100226 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200227 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000228 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200229 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000230 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200231 bts->oml_tei, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000232 vty_out(vty, " NM State: ");
233 net_dump_nmstate(vty, &bts->nm_state);
234 vty_out(vty, " Site Mgr NM State: ");
235 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
236 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
237 bts->paging.available_slots, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200238 if (!is_ipaccess_bts(bts)) {
239 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
240 e1isl_dump_vty(vty, bts->oml_link);
241 }
Harald Welte68628e82009-03-10 12:17:57 +0000242 /* FIXME: oml_link, chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100243 memset(&pl, 0, sizeof(pl));
244 bts_chan_load(&pl, bts);
245 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
246 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000247}
248
249DEFUN(show_bts, show_bts_cmd, "show bts [number]",
250 SHOW_STR "Display information about a BTS\n"
251 "BTS number")
252{
Harald Weltedcccb182010-05-16 20:52:23 +0200253 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000254 int bts_nr;
255
256 if (argc != 0) {
257 /* use the BTS number that the user has specified */
258 bts_nr = atoi(argv[0]);
259 if (bts_nr > net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000260 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000261 VTY_NEWLINE);
262 return CMD_WARNING;
263 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200264 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000265 return CMD_SUCCESS;
266 }
267 /* print all BTS's */
268 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200269 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000270
271 return CMD_SUCCESS;
272}
273
Harald Welte42581822009-08-08 16:12:58 +0200274/* utility functions */
275static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
276 const char *ts, const char *ss)
277{
278 e1_link->e1_nr = atoi(line);
279 e1_link->e1_ts = atoi(ts);
280 if (!strcmp(ss, "full"))
281 e1_link->e1_ts_ss = 255;
282 else
283 e1_link->e1_ts_ss = atoi(ss);
284}
285
286static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
287 const char *prefix)
288{
289 if (!e1_link->e1_ts)
290 return;
291
292 if (e1_link->e1_ts_ss == 255)
293 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
294 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
295 else
296 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
297 prefix, e1_link->e1_nr, e1_link->e1_ts,
298 e1_link->e1_ts_ss, VTY_NEWLINE);
299}
300
301
Harald Welte67ce0732009-08-06 19:06:46 +0200302static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
303{
Harald Welte42581822009-08-08 16:12:58 +0200304 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
305 if (ts->pchan != GSM_PCHAN_NONE)
306 vty_out(vty, " phys_chan_config %s%s",
307 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
308 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welte67ce0732009-08-06 19:06:46 +0200309}
310
311static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
312{
313 int i;
314
Harald Welte5013b2a2009-08-07 13:29:14 +0200315 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200316 if (trx->description)
317 vty_out(vty, " description %s%s", trx->description,
318 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200319 vty_out(vty, " rf_locked %u%s",
320 trx->nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
321 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200322 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100323 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200324 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200325 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
326 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200327
328 for (i = 0; i < TRX_NR_TS; i++)
329 config_write_ts_single(vty, &trx->ts[i]);
330}
331
Harald Welte615e9562010-05-11 23:50:21 +0200332static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
333{
334 unsigned int i;
335 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
336 VTY_NEWLINE);
337 if (bts->gprs.mode == BTS_GPRS_NONE)
338 return;
339
340 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
341 VTY_NEWLINE);
342 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
343 VTY_NEWLINE);
344 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
345 vty_out(vty, " gprs cell timer %s %u%s",
346 get_value_string(gprs_bssgp_cfg_strs, i),
347 bts->gprs.cell.timer[i], VTY_NEWLINE);
348 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
349 VTY_NEWLINE);
350 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
351 vty_out(vty, " gprs ns timer %s %u%s",
352 get_value_string(gprs_ns_timer_strs, i),
353 bts->gprs.nse.timer[i], VTY_NEWLINE);
354 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
355 struct gsm_bts_gprs_nsvc *nsvc =
356 &bts->gprs.nsvc[i];
357 struct in_addr ia;
358
359 ia.s_addr = htonl(nsvc->remote_ip);
360 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
361 nsvc->nsvci, VTY_NEWLINE);
362 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
363 nsvc->local_port, VTY_NEWLINE);
364 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
365 nsvc->remote_port, VTY_NEWLINE);
366 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
367 inet_ntoa(ia), VTY_NEWLINE);
368 }
369}
370
Harald Welte67ce0732009-08-06 19:06:46 +0200371static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
372{
373 struct gsm_bts_trx *trx;
374
Harald Welte5013b2a2009-08-07 13:29:14 +0200375 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
376 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200377 if (bts->description)
378 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200379 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100380 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200381 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200382 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200383 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
384 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200385 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100386 vty_out(vty, " cell reselection hysteresis %u%s",
387 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
388 vty_out(vty, " rxlev access min %u%s",
389 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Harald Weltea43f7892009-12-01 18:04:30 +0530390 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200391 vty_out(vty, " periodic location update %u%s",
Harald Weltea43f7892009-12-01 18:04:30 +0530392 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200393 vty_out(vty, " channel allocator %s%s",
394 bts->chan_alloc_reverse ? "descending" : "ascending",
395 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100396 vty_out(vty, " rach tx integer %u%s",
397 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
398 vty_out(vty, " rach max transmission %u%s",
399 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
400 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800401
402 if (bts->rach_b_thresh != -1)
403 vty_out(vty, " rach nm busy threshold %u%s",
404 bts->rach_b_thresh, VTY_NEWLINE);
405 if (bts->rach_ldavg_slots != -1)
406 vty_out(vty, " rach nm load average %u%s",
407 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100408 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200409 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800410 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
411 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200412 if (is_ipaccess_bts(bts)) {
Harald Welte5013b2a2009-08-07 13:29:14 +0200413 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200414 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200415 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
416 } else {
Harald Welte42581822009-08-08 16:12:58 +0200417 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
418 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
419 }
Harald Welte615e9562010-05-11 23:50:21 +0200420 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200421
422 llist_for_each_entry(trx, &bts->trx_list, list)
423 config_write_trx_single(vty, trx);
424}
425
426static int config_write_bts(struct vty *v)
427{
Harald Weltedcccb182010-05-16 20:52:23 +0200428 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200429 struct gsm_bts *bts;
430
431 llist_for_each_entry(bts, &gsmnet->bts_list, list)
432 config_write_bts_single(v, bts);
433
434 return CMD_SUCCESS;
435}
436
Harald Welte5013b2a2009-08-07 13:29:14 +0200437static int config_write_net(struct vty *vty)
438{
Harald Weltedcccb182010-05-16 20:52:23 +0200439 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
440
Harald Welte5013b2a2009-08-07 13:29:14 +0200441 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200442 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200443 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200444 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
445 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200446 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100447 vty_out(vty, " location updating reject cause %u%s",
448 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900449 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100450 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100451 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
452 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100453 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100454 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100455 vty_out(vty, " handover window rxlev averaging %u%s",
456 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
457 vty_out(vty, " handover window rxqual averaging %u%s",
458 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
459 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
460 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
461 vty_out(vty, " handover power budget interval %u%s",
462 gsmnet->handover.pwr_interval, VTY_NEWLINE);
463 vty_out(vty, " handover power budget hysteresis %u%s",
464 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
465 vty_out(vty, " handover maximum distance %u%s",
466 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100467 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100468 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
469 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
470 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
471 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
472 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
473 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
474 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
475 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
476 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
477 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200478
479 return CMD_SUCCESS;
480}
Harald Welte67ce0732009-08-06 19:06:46 +0200481
Harald Welte68628e82009-03-10 12:17:57 +0000482static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
483{
484 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
485 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200486 vty_out(vty, "Description: %s%s",
487 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200488 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200489 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200490 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200491 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000492 vty_out(vty, " NM State: ");
493 net_dump_nmstate(vty, &trx->nm_state);
494 vty_out(vty, " Baseband Transceiver NM State: ");
495 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200496 if (is_ipaccess_bts(trx->bts)) {
497 vty_out(vty, " ip.access stream ID: 0x%02x%s",
498 trx->rsl_tei, VTY_NEWLINE);
499 } else {
500 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
501 e1isl_dump_vty(vty, trx->rsl_link);
502 }
Harald Welte68628e82009-03-10 12:17:57 +0000503}
504
505DEFUN(show_trx,
506 show_trx_cmd,
507 "show trx [bts_nr] [trx_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200508 SHOW_STR "Display information about a TRX\n"
509 "BTS Number\n"
510 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000511{
Harald Weltedcccb182010-05-16 20:52:23 +0200512 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000513 struct gsm_bts *bts = NULL;
514 struct gsm_bts_trx *trx;
515 int bts_nr, trx_nr;
516
517 if (argc >= 1) {
518 /* use the BTS number that the user has specified */
519 bts_nr = atoi(argv[0]);
520 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000521 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000522 VTY_NEWLINE);
523 return CMD_WARNING;
524 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200525 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000526 }
527 if (argc >= 2) {
528 trx_nr = atoi(argv[1]);
529 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000530 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000531 VTY_NEWLINE);
532 return CMD_WARNING;
533 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200534 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000535 trx_dump_vty(vty, trx);
536 return CMD_SUCCESS;
537 }
538 if (bts) {
539 /* print all TRX in this BTS */
540 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200541 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000542 trx_dump_vty(vty, trx);
543 }
544 return CMD_SUCCESS;
545 }
546
547 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200548 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000549 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200550 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000551 trx_dump_vty(vty, trx);
552 }
553 }
554
555 return CMD_SUCCESS;
556}
557
Harald Welte67ce0732009-08-06 19:06:46 +0200558
Harald Welte68628e82009-03-10 12:17:57 +0000559static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
560{
Harald Welte68628e82009-03-10 12:17:57 +0000561 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
562 ts->nr, ts->trx->nr, ts->trx->bts->nr,
563 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
564 vty_out(vty, " NM State: ");
565 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530566 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000567 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
568 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
569 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000570}
571
572DEFUN(show_ts,
573 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000574 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200575 SHOW_STR "Display information about a TS\n"
576 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000577{
Harald Weltedcccb182010-05-16 20:52:23 +0200578 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000579 struct gsm_bts *bts;
580 struct gsm_bts_trx *trx;
581 struct gsm_bts_trx_ts *ts;
582 int bts_nr, trx_nr, ts_nr;
583
584 if (argc >= 1) {
585 /* use the BTS number that the user has specified */
586 bts_nr = atoi(argv[0]);
587 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000588 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000589 VTY_NEWLINE);
590 return CMD_WARNING;
591 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200592 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000593 }
594 if (argc >= 2) {
595 trx_nr = atoi(argv[1]);
596 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000597 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000598 VTY_NEWLINE);
599 return CMD_WARNING;
600 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200601 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000602 }
603 if (argc >= 3) {
604 ts_nr = atoi(argv[2]);
605 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000606 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000607 VTY_NEWLINE);
608 return CMD_WARNING;
609 }
610 ts = &trx->ts[ts_nr];
611 ts_dump_vty(vty, ts);
612 return CMD_SUCCESS;
613 }
614 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200615 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000616 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200617 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000618 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
619 ts = &trx->ts[ts_nr];
620 ts_dump_vty(vty, ts);
621 }
622 }
623 }
624
625 return CMD_SUCCESS;
626}
627
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100628static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000629{
Harald Weltefcd24452009-06-20 18:15:19 +0200630 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000631 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000632 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000633 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000634 if (subscr->extension)
635 vty_out(vty, " Extension: %s%s", subscr->extension,
636 VTY_NEWLINE);
637 if (subscr->imsi)
638 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200639 if (subscr->tmsi != GSM_RESERVED_TMSI)
640 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200641 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100642
Harald Welte (local)15920de2009-08-14 20:27:16 +0200643 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000644}
645
Harald Welte8387a492009-12-22 21:43:14 +0100646static void meas_rep_dump_uni_vty(struct vty *vty,
647 struct gsm_meas_rep_unidir *mru,
648 const char *prefix,
649 const char *dir)
650{
651 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
652 prefix, dir, rxlev2dbm(mru->full.rx_lev),
653 dir, rxlev2dbm(mru->sub.rx_lev));
654 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
655 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
656 VTY_NEWLINE);
657}
658
659static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
660 const char *prefix)
661{
662 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
663 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
664 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
665 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
666 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
667 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
668 VTY_NEWLINE);
669 if (mr->flags & MEAS_REP_F_MS_TO)
670 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
671 mr->ms_timing_offset, VTY_NEWLINE);
672 if (mr->flags & MEAS_REP_F_MS_L1)
673 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
674 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
675 if (mr->flags & MEAS_REP_F_DL_VALID)
676 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
677 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
678}
679
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800680static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000681{
Harald Welte8387a492009-12-22 21:43:14 +0100682 int idx;
683
Harald Welte68628e82009-03-10 12:17:57 +0000684 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200685 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
Harald Welte (local)ccd88452009-12-27 18:05:25 +0100686 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Harald Welte68628e82009-03-10 12:17:57 +0000687 VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100688 vty_out(vty, " Use Count: %u, State: %s%s", lchan->conn.use_count,
Harald Welte1887f9d2009-12-29 10:52:38 +0100689 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100690 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
691 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
692 - lchan->bs_power*2,
693 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
694 VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100695 if (lchan->conn.subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000696 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100697 subscr_dump_vty(vty, lchan->conn.subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000698 } else
699 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530700 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
701 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200702 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530703 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
704 inet_ntoa(ia), lchan->abis_ip.bound_port,
705 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
706 VTY_NEWLINE);
707 }
Harald Welte8387a492009-12-22 21:43:14 +0100708
709 /* we want to report the last measurement report */
710 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
711 lchan->meas_rep_idx, 1);
712 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000713}
714
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800715static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
716{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800717 struct gsm_meas_rep *mr;
718 int idx;
719
720 /* we want to report the last measurement report */
721 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
722 lchan->meas_rep_idx, 1);
723 mr = &lchan->meas_rep[idx];
724
725 vty_out(vty, "Lchan: %u Timeslot: %u TRX: %u BTS: %u Type: %s - L1 MS Power: %u dBm "
726 "RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800727 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
728 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800729 mr->ms_l1.pwr,
730 rxlev2dbm(mr->dl.full.rx_lev),
731 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800732 VTY_NEWLINE);
733}
734
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800735static int lchan_summary(struct vty *vty, int argc, const char **argv,
736 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +0000737{
Harald Weltedcccb182010-05-16 20:52:23 +0200738 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000739 struct gsm_bts *bts;
740 struct gsm_bts_trx *trx;
741 struct gsm_bts_trx_ts *ts;
742 struct gsm_lchan *lchan;
743 int bts_nr, trx_nr, ts_nr, lchan_nr;
744
745 if (argc >= 1) {
746 /* use the BTS number that the user has specified */
747 bts_nr = atoi(argv[0]);
748 if (bts_nr >= net->num_bts) {
749 vty_out(vty, "%% can't find BTS %s%s", argv[0],
750 VTY_NEWLINE);
751 return CMD_WARNING;
752 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200753 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000754 }
755 if (argc >= 2) {
756 trx_nr = atoi(argv[1]);
757 if (trx_nr >= bts->num_trx) {
758 vty_out(vty, "%% can't find TRX %s%s", argv[1],
759 VTY_NEWLINE);
760 return CMD_WARNING;
761 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200762 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000763 }
764 if (argc >= 3) {
765 ts_nr = atoi(argv[2]);
766 if (ts_nr >= TRX_NR_TS) {
767 vty_out(vty, "%% can't find TS %s%s", argv[2],
768 VTY_NEWLINE);
769 return CMD_WARNING;
770 }
771 ts = &trx->ts[ts_nr];
772 }
773 if (argc >= 4) {
774 lchan_nr = atoi(argv[3]);
775 if (lchan_nr >= TS_MAX_LCHAN) {
776 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
777 VTY_NEWLINE);
778 return CMD_WARNING;
779 }
780 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800781 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000782 return CMD_SUCCESS;
783 }
784 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200785 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000786 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200787 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000788 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
789 ts = &trx->ts[ts_nr];
790 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
791 lchan_nr++) {
792 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000793 if (lchan->type == GSM_LCHAN_NONE)
794 continue;
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800795 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000796 }
797 }
798 }
799 }
800
801 return CMD_SUCCESS;
802}
803
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800804
805DEFUN(show_lchan,
806 show_lchan_cmd,
807 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
808 SHOW_STR "Display information about a logical channel\n"
809 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
810 "Logical Channel Number\n")
811
812{
813 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
814}
815
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800816DEFUN(show_lchan_summary,
817 show_lchan_summary_cmd,
818 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
819 SHOW_STR "Display information about a logical channel\n"
820 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
821 "Logical Channel Number\n")
822{
823 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
824}
825
Harald Welte1bc77352009-03-10 19:47:51 +0000826static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
827{
828 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
829}
830
831DEFUN(show_e1drv,
832 show_e1drv_cmd,
833 "show e1_driver",
834 SHOW_STR "Display information about available E1 drivers\n")
835{
836 struct e1inp_driver *drv;
837
838 llist_for_each_entry(drv, &e1inp_driver_list, list)
839 e1drv_dump_vty(vty, drv);
840
841 return CMD_SUCCESS;
842}
843
Harald Welte68628e82009-03-10 12:17:57 +0000844static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
845{
846 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
847 line->num, line->name ? line->name : "",
848 line->driver->name, VTY_NEWLINE);
849}
850
851DEFUN(show_e1line,
852 show_e1line_cmd,
853 "show e1_line [line_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200854 SHOW_STR "Display information about a E1 line\n"
855 "E1 Line Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000856{
Harald Welte1bc77352009-03-10 19:47:51 +0000857 struct e1inp_line *line;
858
859 if (argc >= 1) {
860 int num = atoi(argv[0]);
861 llist_for_each_entry(line, &e1inp_line_list, list) {
862 if (line->num == num) {
863 e1line_dump_vty(vty, line);
864 return CMD_SUCCESS;
865 }
866 }
867 return CMD_WARNING;
868 }
869
870 llist_for_each_entry(line, &e1inp_line_list, list)
871 e1line_dump_vty(vty, line);
872
873 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000874}
875
876static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
877{
Harald Welte42581822009-08-08 16:12:58 +0200878 if (ts->type == E1INP_TS_TYPE_NONE)
879 return;
Harald Welte1bc77352009-03-10 19:47:51 +0000880 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
881 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
882 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000883}
884
885DEFUN(show_e1ts,
886 show_e1ts_cmd,
887 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200888 SHOW_STR "Display information about a E1 timeslot\n"
889 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000890{
Harald Welte986c3d72009-11-17 06:12:16 +0100891 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +0000892 struct e1inp_ts *ts;
893 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +0000894
Harald Welte1bc77352009-03-10 19:47:51 +0000895 if (argc == 0) {
896 llist_for_each_entry(line, &e1inp_line_list, list) {
897 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
898 ts = &line->ts[ts_nr];
899 e1ts_dump_vty(vty, ts);
900 }
901 }
902 return CMD_SUCCESS;
903 }
904 if (argc >= 1) {
905 int num = atoi(argv[0]);
906 llist_for_each_entry(line, &e1inp_line_list, list) {
907 if (line->num == num)
908 break;
909 }
910 if (!line || line->num != num) {
911 vty_out(vty, "E1 line %s is invalid%s",
912 argv[0], VTY_NEWLINE);
913 return CMD_WARNING;
914 }
915 }
916 if (argc >= 2) {
917 ts_nr = atoi(argv[1]);
918 if (ts_nr > NUM_E1_TS) {
919 vty_out(vty, "E1 timeslot %s is invalid%s",
920 argv[1], VTY_NEWLINE);
921 return CMD_WARNING;
922 }
923 ts = &line->ts[ts_nr];
924 e1ts_dump_vty(vty, ts);
925 return CMD_SUCCESS;
926 } else {
927 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
928 ts = &line->ts[ts_nr];
929 e1ts_dump_vty(vty, ts);
930 }
931 return CMD_SUCCESS;
932 }
933 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000934}
935
Harald Weltebe4b7302009-05-23 16:59:33 +0000936static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +0000937{
938 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
939 subscr_dump_vty(vty, pag->subscr);
940}
941
Harald Weltebe4b7302009-05-23 16:59:33 +0000942static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +0000943{
944 struct gsm_paging_request *pag;
945
946 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
947 paging_dump_vty(vty, pag);
948}
949
950DEFUN(show_paging,
951 show_paging_cmd,
952 "show paging [bts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200953 SHOW_STR "Display information about paging reuqests of a BTS\n"
954 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +0000955{
Harald Weltedcccb182010-05-16 20:52:23 +0200956 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +0000957 struct gsm_bts *bts;
958 int bts_nr;
959
960 if (argc >= 1) {
961 /* use the BTS number that the user has specified */
962 bts_nr = atoi(argv[0]);
963 if (bts_nr >= net->num_bts) {
964 vty_out(vty, "%% can't find BTS %s%s", argv[0],
965 VTY_NEWLINE);
966 return CMD_WARNING;
967 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200968 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000969 bts_paging_dump_vty(vty, bts);
970
971 return CMD_SUCCESS;
972 }
973 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200974 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000975 bts_paging_dump_vty(vty, bts);
976 }
977
978 return CMD_SUCCESS;
979}
980
Harald Welte8f0ed552010-05-11 21:53:49 +0200981#define NETWORK_STR "Configure the GSM network\n"
982
Harald Welte5013b2a2009-08-07 13:29:14 +0200983DEFUN(cfg_net,
984 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +0200985 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +0200986{
Harald Weltedcccb182010-05-16 20:52:23 +0200987 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +0200988 vty->node = GSMNET_NODE;
989
990 return CMD_SUCCESS;
991}
992
993
994DEFUN(cfg_net_ncc,
995 cfg_net_ncc_cmd,
996 "network country code <1-999>",
997 "Set the GSM network country code")
998{
Harald Weltedcccb182010-05-16 20:52:23 +0200999 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1000
Harald Welte5013b2a2009-08-07 13:29:14 +02001001 gsmnet->country_code = atoi(argv[0]);
1002
1003 return CMD_SUCCESS;
1004}
1005
1006DEFUN(cfg_net_mnc,
1007 cfg_net_mnc_cmd,
1008 "mobile network code <1-999>",
1009 "Set the GSM mobile network code")
1010{
Harald Weltedcccb182010-05-16 20:52:23 +02001011 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1012
Harald Welte5013b2a2009-08-07 13:29:14 +02001013 gsmnet->network_code = atoi(argv[0]);
1014
1015 return CMD_SUCCESS;
1016}
1017
1018DEFUN(cfg_net_name_short,
1019 cfg_net_name_short_cmd,
1020 "short name NAME",
1021 "Set the short GSM network name")
1022{
Harald Weltedcccb182010-05-16 20:52:23 +02001023 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1024
Harald Welte5013b2a2009-08-07 13:29:14 +02001025 if (gsmnet->name_short)
1026 talloc_free(gsmnet->name_short);
1027
1028 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
1029
1030 return CMD_SUCCESS;
1031}
1032
1033DEFUN(cfg_net_name_long,
1034 cfg_net_name_long_cmd,
1035 "long name NAME",
1036 "Set the long GSM network name")
1037{
Harald Weltedcccb182010-05-16 20:52:23 +02001038 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1039
Harald Welte5013b2a2009-08-07 13:29:14 +02001040 if (gsmnet->name_long)
1041 talloc_free(gsmnet->name_long);
1042
1043 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
1044
1045 return CMD_SUCCESS;
1046}
Harald Welte40f82892009-05-23 17:31:39 +00001047
Harald Welte (local)69de3972009-08-12 14:42:23 +02001048DEFUN(cfg_net_auth_policy,
1049 cfg_net_auth_policy_cmd,
1050 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001051 "Authentication (not cryptographic)\n"
1052 "Set the GSM network authentication policy\n"
1053 "Require the MS to be activated in HLR\n"
1054 "Accept all MS, whether in HLR or not\n"
1055 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001056{
1057 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001058 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001059
1060 gsmnet->auth_policy = policy;
1061
1062 return CMD_SUCCESS;
1063}
1064
Harald Welte1085c092009-11-18 20:33:19 +01001065DEFUN(cfg_net_reject_cause,
1066 cfg_net_reject_cause_cmd,
1067 "location updating reject cause <2-111>",
1068 "Set the reject cause of location updating reject\n")
1069{
Harald Weltedcccb182010-05-16 20:52:23 +02001070 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1071
Harald Welte1085c092009-11-18 20:33:19 +01001072 gsmnet->reject_cause = atoi(argv[0]);
1073
1074 return CMD_SUCCESS;
1075}
1076
Harald Welte4381cfe2009-08-30 15:47:06 +09001077DEFUN(cfg_net_encryption,
1078 cfg_net_encryption_cmd,
1079 "encryption a5 (0|1|2)",
Harald Welte28326062010-05-14 20:05:17 +02001080 "Encryption options\n"
1081 "A5 encryption\n" "A5/0: No encryption\n"
1082 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001083{
Harald Weltedcccb182010-05-16 20:52:23 +02001084 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1085
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001086 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001087
1088 return CMD_SUCCESS;
1089}
1090
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001091DEFUN(cfg_net_neci,
1092 cfg_net_neci_cmd,
1093 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001094 "New Establish Cause Indication\n"
1095 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001096{
Harald Weltedcccb182010-05-16 20:52:23 +02001097 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1098
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001099 gsmnet->neci = atoi(argv[0]);
1100 return CMD_SUCCESS;
1101}
1102
Harald Welteeab84a12009-12-13 10:53:12 +01001103DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1104 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001105 "Radio Resource Location Protocol\n"
1106 "Set the Radio Resource Location Protocol Mode\n"
1107 "Don't send RRLP request\n"
1108 "Request MS-based location\n"
1109 "Request any location, prefer MS-based\n"
1110 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001111{
Harald Weltedcccb182010-05-16 20:52:23 +02001112 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1113
Harald Welteeab84a12009-12-13 10:53:12 +01001114 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1115
1116 return CMD_SUCCESS;
1117}
1118
Harald Welte648b6ce2009-12-14 09:00:24 +01001119DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1120 "mm info (0|1)",
1121 "Whether to send MM INFO after LOC UPD ACCEPT")
1122{
Harald Weltedcccb182010-05-16 20:52:23 +02001123 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1124
Harald Welte648b6ce2009-12-14 09:00:24 +01001125 gsmnet->send_mm_info = atoi(argv[0]);
1126
1127 return CMD_SUCCESS;
1128}
1129
Harald Welte8f0ed552010-05-11 21:53:49 +02001130#define HANDOVER_STR "Handover Options\n"
1131
Harald Weltebc814502009-12-19 21:41:52 +01001132DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1133 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001134 HANDOVER_STR
1135 "Don't perform in-call handover\n"
1136 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001137{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001138 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001139 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001140
1141 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001142 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1143 "is enabled by using the -P command line option%s",
1144 VTY_NEWLINE);
1145 return CMD_WARNING;
1146 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001147 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001148
1149 return CMD_SUCCESS;
1150}
1151
Harald Welte8f0ed552010-05-11 21:53:49 +02001152#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1153#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1154#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1155#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1156
Harald Welteb720bd32009-12-21 16:51:50 +01001157DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1158 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001159 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001160 "How many RxLev measurements are used for averaging")
1161{
Harald Weltedcccb182010-05-16 20:52:23 +02001162 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001163 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1164 return CMD_SUCCESS;
1165}
1166
1167DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1168 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001169 HO_WIN_RXQUAL_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001170 "How many RxQual measurements are used for averaging")
1171{
Harald Weltedcccb182010-05-16 20:52:23 +02001172 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001173 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1174 return CMD_SUCCESS;
1175}
1176
1177DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1178 "handover window rxlev neighbor averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001179 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001180 "How many RxQual measurements are used for averaging")
1181{
Harald Weltedcccb182010-05-16 20:52:23 +02001182 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001183 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1184 return CMD_SUCCESS;
1185}
1186
1187DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1188 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001189 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001190 "How often to check if we have a better cell (SACCH frames)")
1191{
Harald Weltedcccb182010-05-16 20:52:23 +02001192 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001193 gsmnet->handover.pwr_interval = atoi(argv[0]);
1194 return CMD_SUCCESS;
1195}
1196
1197DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1198 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001199 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001200 "How many dB does a neighbor to be stronger to become a HO candidate")
1201{
Harald Weltedcccb182010-05-16 20:52:23 +02001202 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001203 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1204 return CMD_SUCCESS;
1205}
1206
1207DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1208 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001209 HANDOVER_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001210 "How big is the maximum timing advance before HO is forced")
1211{
Harald Weltedcccb182010-05-16 20:52:23 +02001212 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001213 gsmnet->handover.max_distance = atoi(argv[0]);
1214 return CMD_SUCCESS;
1215}
Harald Weltebc814502009-12-19 21:41:52 +01001216
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001217#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001218 DEFUN(cfg_net_T##number, \
1219 cfg_net_T##number##_cmd, \
1220 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001221 "Configure GSM Timers\n" \
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001222 doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001223{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001224 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001225 int value = atoi(argv[0]); \
1226 \
1227 if (value < 0 || value > 65535) { \
1228 vty_out(vty, "Timer value %s out of range.%s", \
1229 argv[0], VTY_NEWLINE); \
1230 return CMD_WARNING; \
1231 } \
1232 \
1233 gsmnet->T##number = value; \
1234 return CMD_SUCCESS; \
1235}
1236
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001237DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1238DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1239DECLARE_TIMER(3105, "Currently not used.")
1240DECLARE_TIMER(3107, "Currently not used.")
1241DECLARE_TIMER(3109, "Currently not used.")
Holger Hans Peter Freytherf30c0dc2010-05-31 21:33:15 +08001242DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.")
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001243DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1244DECLARE_TIMER(3115, "Currently not used.")
1245DECLARE_TIMER(3117, "Currently not used.")
1246DECLARE_TIMER(3119, "Currently not used.")
1247DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001248
1249
Harald Welte5258fc42009-03-28 19:07:53 +00001250/* per-BTS configuration */
1251DEFUN(cfg_bts,
1252 cfg_bts_cmd,
1253 "bts BTS_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001254 "Select a BTS to configure\n"
1255 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001256{
Harald Weltedcccb182010-05-16 20:52:23 +02001257 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001258 int bts_nr = atoi(argv[0]);
1259 struct gsm_bts *bts;
1260
Harald Weltee441d9c2009-06-21 16:17:15 +02001261 if (bts_nr > gsmnet->num_bts) {
1262 vty_out(vty, "%% The next unused BTS number is %u%s",
1263 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001264 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001265 } else if (bts_nr == gsmnet->num_bts) {
1266 /* allocate a new one */
1267 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1268 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001269 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001270 bts = gsm_bts_num(gsmnet, bts_nr);
1271
Daniel Willmannf15c2762010-01-11 13:43:07 +01001272 if (!bts) {
1273 vty_out(vty, "%% Unable to allocate BTS %u%s",
1274 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001275 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001276 }
Harald Welte5258fc42009-03-28 19:07:53 +00001277
1278 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001279 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001280 vty->node = BTS_NODE;
1281
1282 return CMD_SUCCESS;
1283}
1284
1285DEFUN(cfg_bts_type,
1286 cfg_bts_type_cmd,
1287 "type TYPE",
1288 "Set the BTS type\n")
1289{
1290 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001291 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001292
Harald Welte39315c42010-01-10 18:01:52 +01001293 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1294 if (rc < 0)
1295 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001296
Harald Welte5258fc42009-03-28 19:07:53 +00001297 return CMD_SUCCESS;
1298}
1299
Harald Weltefcd24452009-06-20 18:15:19 +02001300DEFUN(cfg_bts_band,
1301 cfg_bts_band_cmd,
1302 "band BAND",
1303 "Set the frequency band of this BTS\n")
1304{
1305 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001306 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001307
1308 if (band < 0) {
1309 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1310 band, VTY_NEWLINE);
1311 return CMD_WARNING;
1312 }
1313
1314 bts->band = band;
1315
1316 return CMD_SUCCESS;
1317}
1318
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001319DEFUN(cfg_bts_ci,
1320 cfg_bts_ci_cmd,
1321 "cell_identity <0-65535>",
1322 "Set the Cell identity of this BTS\n")
1323{
1324 struct gsm_bts *bts = vty->index;
1325 int ci = atoi(argv[0]);
1326
1327 if (ci < 0 || ci > 0xffff) {
1328 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1329 ci, VTY_NEWLINE);
1330 return CMD_WARNING;
1331 }
1332 bts->cell_identity = ci;
1333
1334 return CMD_SUCCESS;
1335}
1336
Harald Welte5258fc42009-03-28 19:07:53 +00001337DEFUN(cfg_bts_lac,
1338 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001339 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001340 "Set the Location Area Code (LAC) of this BTS\n")
1341{
1342 struct gsm_bts *bts = vty->index;
1343 int lac = atoi(argv[0]);
1344
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001345 if (lac < 0 || lac > 0xffff) {
1346 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001347 lac, VTY_NEWLINE);
1348 return CMD_WARNING;
1349 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001350
1351 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1352 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1353 lac, VTY_NEWLINE);
1354 return CMD_WARNING;
1355 }
1356
Harald Welte5258fc42009-03-28 19:07:53 +00001357 bts->location_area_code = lac;
1358
1359 return CMD_SUCCESS;
1360}
1361
Harald Weltea43f7892009-12-01 18:04:30 +05301362
Harald Welte5258fc42009-03-28 19:07:53 +00001363DEFUN(cfg_bts_tsc,
1364 cfg_bts_tsc_cmd,
1365 "training_sequence_code <0-255>",
1366 "Set the Training Sequence Code (TSC) of this BTS\n")
1367{
1368 struct gsm_bts *bts = vty->index;
1369 int tsc = atoi(argv[0]);
1370
1371 if (tsc < 0 || tsc > 0xff) {
1372 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1373 tsc, VTY_NEWLINE);
1374 return CMD_WARNING;
1375 }
1376 bts->tsc = tsc;
1377
1378 return CMD_SUCCESS;
1379}
1380
Harald Welte78f2f502009-05-23 16:56:52 +00001381DEFUN(cfg_bts_bsic,
1382 cfg_bts_bsic_cmd,
1383 "base_station_id_code <0-63>",
1384 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1385{
1386 struct gsm_bts *bts = vty->index;
1387 int bsic = atoi(argv[0]);
1388
1389 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001390 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001391 bsic, VTY_NEWLINE);
1392 return CMD_WARNING;
1393 }
1394 bts->bsic = bsic;
1395
1396 return CMD_SUCCESS;
1397}
1398
1399
Harald Welte4cc34222009-05-01 15:12:31 +00001400DEFUN(cfg_bts_unit_id,
1401 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001402 "ip.access unit_id <0-65534> <0-255>",
1403 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001404{
1405 struct gsm_bts *bts = vty->index;
1406 int site_id = atoi(argv[0]);
1407 int bts_id = atoi(argv[1]);
1408
Harald Welte07dc73d2009-08-07 13:27:09 +02001409 if (!is_ipaccess_bts(bts)) {
1410 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1411 return CMD_WARNING;
1412 }
1413
Harald Welte4cc34222009-05-01 15:12:31 +00001414 bts->ip_access.site_id = site_id;
1415 bts->ip_access.bts_id = bts_id;
1416
1417 return CMD_SUCCESS;
1418}
1419
Harald Welte8f0ed552010-05-11 21:53:49 +02001420#define OML_STR "Organization & Maintenance Link\n"
1421#define IPA_STR "ip.access Specific Options\n"
1422
Harald Welte8175e952009-10-20 00:22:00 +02001423DEFUN(cfg_bts_stream_id,
1424 cfg_bts_stream_id_cmd,
1425 "oml ip.access stream_id <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001426 OML_STR IPA_STR
Harald Welte8175e952009-10-20 00:22:00 +02001427 "Set the ip.access Stream ID of the OML link of this BTS\n")
1428{
1429 struct gsm_bts *bts = vty->index;
1430 int stream_id = atoi(argv[0]);
1431
1432 if (!is_ipaccess_bts(bts)) {
1433 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1434 return CMD_WARNING;
1435 }
1436
1437 bts->oml_tei = stream_id;
1438
1439 return CMD_SUCCESS;
1440}
1441
Harald Welte8f0ed552010-05-11 21:53:49 +02001442#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte8175e952009-10-20 00:22:00 +02001443
Harald Welte42581822009-08-08 16:12:58 +02001444DEFUN(cfg_bts_oml_e1,
1445 cfg_bts_oml_e1_cmd,
1446 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001447 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001448 "E1 interface to be used for OML\n")
1449{
1450 struct gsm_bts *bts = vty->index;
1451
1452 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1453
1454 return CMD_SUCCESS;
1455}
1456
1457
1458DEFUN(cfg_bts_oml_e1_tei,
1459 cfg_bts_oml_e1_tei_cmd,
1460 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001461 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001462 "Set the TEI to be used for OML")
1463{
1464 struct gsm_bts *bts = vty->index;
1465
1466 bts->oml_tei = atoi(argv[0]);
1467
1468 return CMD_SUCCESS;
1469}
1470
Harald Welte7a8fa412009-08-10 13:48:16 +02001471DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1472 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001473 "Channnel Allocator\n" "Channel Allocator\n"
1474 "Allocate Timeslots and Transceivers in ascending order\n"
1475 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001476{
1477 struct gsm_bts *bts = vty->index;
1478
1479 if (!strcmp(argv[0], "ascending"))
1480 bts->chan_alloc_reverse = 0;
1481 else
1482 bts->chan_alloc_reverse = 1;
1483
1484 return CMD_SUCCESS;
1485}
1486
Harald Welte8f0ed552010-05-11 21:53:49 +02001487#define RACH_STR "Random Access Control Channel\n"
1488
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001489DEFUN(cfg_bts_rach_tx_integer,
1490 cfg_bts_rach_tx_integer_cmd,
1491 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001492 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001493 "Set the raw tx integer value in RACH Control parameters IE")
1494{
1495 struct gsm_bts *bts = vty->index;
1496 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1497 return CMD_SUCCESS;
1498}
1499
1500DEFUN(cfg_bts_rach_max_trans,
1501 cfg_bts_rach_max_trans_cmd,
1502 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001503 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001504 "Set the maximum number of RACH burst transmissions")
1505{
1506 struct gsm_bts *bts = vty->index;
1507 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1508 return CMD_SUCCESS;
1509}
1510
Harald Welte8f0ed552010-05-11 21:53:49 +02001511#define NM_STR "Network Management\n"
1512
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001513DEFUN(cfg_bts_rach_nm_b_thresh,
1514 cfg_bts_rach_nm_b_thresh_cmd,
1515 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001516 RACH_STR NM_STR
1517 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001518{
1519 struct gsm_bts *bts = vty->index;
1520 bts->rach_b_thresh = atoi(argv[0]);
1521 return CMD_SUCCESS;
1522}
1523
1524DEFUN(cfg_bts_rach_nm_ldavg,
1525 cfg_bts_rach_nm_ldavg_cmd,
1526 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001527 RACH_STR NM_STR
1528 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001529{
1530 struct gsm_bts *bts = vty->index;
1531 bts->rach_ldavg_slots = atoi(argv[0]);
1532 return CMD_SUCCESS;
1533}
1534
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001535DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1536 "cell barred (0|1)",
1537 "Should this cell be barred from access?")
1538{
1539 struct gsm_bts *bts = vty->index;
1540
Harald Welte71355012009-12-21 23:08:18 +01001541 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001542
1543 return CMD_SUCCESS;
1544}
1545
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001546DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1547 "rach emergency call allowed (0|1)",
1548 "Should this cell allow emergency calls?")
1549{
1550 struct gsm_bts *bts = vty->index;
1551
1552 if (atoi(argv[0]) == 0)
1553 bts->si_common.rach_control.t2 |= 0x4;
1554 else
1555 bts->si_common.rach_control.t2 &= ~0x4;
1556
1557 return CMD_SUCCESS;
1558}
1559
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001560DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1561 "ms max power <0-40>",
1562 "Maximum transmit power of the MS")
1563{
1564 struct gsm_bts *bts = vty->index;
1565
1566 bts->ms_max_power = atoi(argv[0]);
1567
1568 return CMD_SUCCESS;
1569}
1570
Harald Welte73225282009-12-12 18:17:25 +01001571DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1572 "cell reselection hysteresis <0-14>",
1573 "Cell Re-Selection Hysteresis in dB")
1574{
1575 struct gsm_bts *bts = vty->index;
1576
1577 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1578
1579 return CMD_SUCCESS;
1580}
1581
1582DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1583 "rxlev access min <0-63>",
1584 "Minimum RxLev needed for cell access (better than -110dBm)")
1585{
1586 struct gsm_bts *bts = vty->index;
1587
1588 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1589
1590 return CMD_SUCCESS;
1591}
1592
Harald Welte (local)efc92312009-08-14 23:09:25 +02001593DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1594 "periodic location update <0-1530>",
1595 "Periodic Location Updating Interval in Minutes")
1596{
1597 struct gsm_bts *bts = vty->index;
1598
Harald Weltea43f7892009-12-01 18:04:30 +05301599 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001600
1601 return CMD_SUCCESS;
1602}
1603
Harald Welte8f0ed552010-05-11 21:53:49 +02001604#define GPRS_TEXT "GPRS Packet Network\n"
1605
Harald Welteaf387632010-03-14 23:30:30 +08001606DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02001607 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001608 GPRS_TEXT
1609 "GPRS Cell Settings\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001610 "GPRS BSSGP VC Identifier")
1611{
1612 struct gsm_bts *bts = vty->index;
1613
Harald Welte4511d892010-04-18 15:51:20 +02001614 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001615 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1616 return CMD_WARNING;
1617 }
1618
Harald Welte97a282b2010-03-14 15:37:43 +08001619 bts->gprs.cell.bvci = atoi(argv[0]);
1620
1621 return CMD_SUCCESS;
1622}
1623
Harald Weltea5731cf2010-03-22 11:48:36 +08001624DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1625 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001626 GPRS_TEXT
Harald Weltea5731cf2010-03-22 11:48:36 +08001627 "GPRS NS Entity Identifier")
1628{
1629 struct gsm_bts *bts = vty->index;
1630
Harald Welte4511d892010-04-18 15:51:20 +02001631 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08001632 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1633 return CMD_WARNING;
1634 }
1635
1636 bts->gprs.nse.nsei = atoi(argv[0]);
1637
1638 return CMD_SUCCESS;
1639}
1640
Harald Welte8f0ed552010-05-11 21:53:49 +02001641#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1642 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08001643
Harald Welte97a282b2010-03-14 15:37:43 +08001644DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1645 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001646 GPRS_TEXT NSVC_TEXT
1647 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001648 "GPRS NS VC Identifier")
1649{
1650 struct gsm_bts *bts = vty->index;
1651 int idx = atoi(argv[0]);
1652
Harald Welte4511d892010-04-18 15:51:20 +02001653 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001654 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1655 return CMD_WARNING;
1656 }
1657
Harald Welte97a282b2010-03-14 15:37:43 +08001658 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1659
1660 return CMD_SUCCESS;
1661}
1662
Harald Welteaf387632010-03-14 23:30:30 +08001663DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1664 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001665 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001666 "GPRS NS Local UDP Port")
1667{
1668 struct gsm_bts *bts = vty->index;
1669 int idx = atoi(argv[0]);
1670
Harald Welte4511d892010-04-18 15:51:20 +02001671 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001672 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1673 return CMD_WARNING;
1674 }
1675
Harald Welteaf387632010-03-14 23:30:30 +08001676 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1677
1678 return CMD_SUCCESS;
1679}
1680
1681DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1682 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001683 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001684 "GPRS NS Remote UDP Port")
1685{
1686 struct gsm_bts *bts = vty->index;
1687 int idx = atoi(argv[0]);
1688
Harald Welte4511d892010-04-18 15:51:20 +02001689 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001690 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1691 return CMD_WARNING;
1692 }
1693
Harald Welteaf387632010-03-14 23:30:30 +08001694 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1695
1696 return CMD_SUCCESS;
1697}
1698
1699DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1700 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02001701 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001702 "GPRS NS Remote IP Address")
1703{
1704 struct gsm_bts *bts = vty->index;
1705 int idx = atoi(argv[0]);
1706 struct in_addr ia;
1707
Harald Welte4511d892010-04-18 15:51:20 +02001708 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001709 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1710 return CMD_WARNING;
1711 }
1712
Harald Welteaf387632010-03-14 23:30:30 +08001713 inet_aton(argv[1], &ia);
1714 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1715
1716 return CMD_SUCCESS;
1717}
1718
Harald Welte615e9562010-05-11 23:50:21 +02001719DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1720 "gprs ns timer " NS_TIMERS " <0-255>",
1721 GPRS_TEXT "Network Service\n"
1722 "Network Service Timer\n"
1723 NS_TIMERS_HELP "Timer Value\n")
1724{
1725 struct gsm_bts *bts = vty->index;
1726 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
1727 int val = atoi(argv[1]);
1728
1729 if (bts->gprs.mode == BTS_GPRS_NONE) {
1730 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1731 return CMD_WARNING;
1732 }
1733
1734 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
1735 return CMD_WARNING;
1736
1737 bts->gprs.nse.timer[idx] = val;
1738
1739 return CMD_SUCCESS;
1740}
1741
1742#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02001743#define BSSGP_TIMERS_HELP \
1744 "Tbvc-block timeout\n" \
1745 "Tbvc-block retries\n" \
1746 "Tbvc-unblock retries\n" \
1747 "Tbvcc-reset timeout\n" \
1748 "Tbvc-reset retries\n" \
1749 "Tbvc-suspend timeout\n" \
1750 "Tbvc-suspend retries\n" \
1751 "Tbvc-resume timeout\n" \
1752 "Tbvc-resume retries\n" \
1753 "Tbvc-capa-update timeout\n" \
1754 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02001755
1756DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
1757 "gprs cell timer " BSSGP_TIMERS " <0-255>",
1758 GPRS_TEXT "Cell / BSSGP\n"
1759 "Cell/BSSGP Timer\n"
1760 BSSGP_TIMERS_HELP "Timer Value\n")
1761{
1762 struct gsm_bts *bts = vty->index;
1763 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
1764 int val = atoi(argv[1]);
1765
1766 if (bts->gprs.mode == BTS_GPRS_NONE) {
1767 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1768 return CMD_WARNING;
1769 }
1770
1771 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
1772 return CMD_WARNING;
1773
1774 bts->gprs.cell.timer[idx] = val;
1775
1776 return CMD_SUCCESS;
1777}
1778
Harald Welte97a282b2010-03-14 15:37:43 +08001779DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
1780 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001781 GPRS_TEXT
Harald Welte97a282b2010-03-14 15:37:43 +08001782 "GPRS Routing Area Code")
1783{
1784 struct gsm_bts *bts = vty->index;
1785
Harald Welte4511d892010-04-18 15:51:20 +02001786 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001787 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1788 return CMD_WARNING;
1789 }
1790
Harald Welte97a282b2010-03-14 15:37:43 +08001791 bts->gprs.rac = atoi(argv[0]);
1792
1793 return CMD_SUCCESS;
1794}
1795
Harald Welte4511d892010-04-18 15:51:20 +02001796DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
1797 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001798 GPRS_TEXT
1799 "GPRS Mode for this BTS\n"
1800 "GPRS Disabled on this BTS\n"
1801 "GPRS Enabled on this BTS\n"
1802 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08001803{
1804 struct gsm_bts *bts = vty->index;
1805
Harald Welte4511d892010-04-18 15:51:20 +02001806 bts->gprs.mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08001807
1808 return CMD_SUCCESS;
1809}
1810
Harald Welte8f0ed552010-05-11 21:53:49 +02001811#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02001812
Harald Welte5258fc42009-03-28 19:07:53 +00001813/* per TRX configuration */
1814DEFUN(cfg_trx,
1815 cfg_trx_cmd,
1816 "trx TRX_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001817 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00001818 "Select a TRX to configure")
1819{
1820 int trx_nr = atoi(argv[0]);
1821 struct gsm_bts *bts = vty->index;
1822 struct gsm_bts_trx *trx;
1823
Harald Weltee441d9c2009-06-21 16:17:15 +02001824 if (trx_nr > bts->num_trx) {
1825 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1826 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001827 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001828 } else if (trx_nr == bts->num_trx) {
1829 /* we need to allocate a new one */
1830 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001831 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001832 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001833
Harald Weltee441d9c2009-06-21 16:17:15 +02001834 if (!trx)
1835 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001836
1837 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02001838 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001839 vty->node = TRX_NODE;
1840
1841 return CMD_SUCCESS;
1842}
1843
1844DEFUN(cfg_trx_arfcn,
1845 cfg_trx_arfcn_cmd,
Harald Welte93e90202010-05-14 19:00:52 +02001846 "arfcn <0-1024>",
Harald Welte5258fc42009-03-28 19:07:53 +00001847 "Set the ARFCN for this TRX\n")
1848{
1849 int arfcn = atoi(argv[0]);
1850 struct gsm_bts_trx *trx = vty->index;
1851
1852 /* FIXME: check if this ARFCN is supported by this TRX */
1853
1854 trx->arfcn = arfcn;
1855
1856 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1857 /* FIXME: use OML layer to update the ARFCN */
1858 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1859
1860 return CMD_SUCCESS;
1861}
1862
Harald Welte (local)7b37d972009-12-27 20:56:38 +01001863DEFUN(cfg_trx_nominal_power,
1864 cfg_trx_nominal_power_cmd,
1865 "nominal power <0-100>",
1866 "Nominal TRX RF Power in dB\n")
1867{
1868 struct gsm_bts_trx *trx = vty->index;
1869
1870 trx->nominal_power = atoi(argv[0]);
1871
1872 return CMD_SUCCESS;
1873}
1874
Harald Weltefcd24452009-06-20 18:15:19 +02001875DEFUN(cfg_trx_max_power_red,
1876 cfg_trx_max_power_red_cmd,
1877 "max_power_red <0-100>",
1878 "Reduction of maximum BS RF Power in dB\n")
1879{
1880 int maxpwr_r = atoi(argv[0]);
1881 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001882 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001883
1884 /* FIXME: check if our BTS type supports more than 12 */
1885 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1886 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1887 maxpwr_r, VTY_NEWLINE);
1888 return CMD_WARNING;
1889 }
1890 if (maxpwr_r & 1) {
1891 vty_out(vty, "%% Power %d dB is not an even value%s",
1892 maxpwr_r, VTY_NEWLINE);
1893 return CMD_WARNING;
1894 }
1895
1896 trx->max_power_red = maxpwr_r;
1897
1898 /* FIXME: make sure we update this using OML */
1899
1900 return CMD_SUCCESS;
1901}
1902
Harald Welte42581822009-08-08 16:12:58 +02001903DEFUN(cfg_trx_rsl_e1,
1904 cfg_trx_rsl_e1_cmd,
1905 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1906 "E1 interface to be used for RSL\n")
1907{
1908 struct gsm_bts_trx *trx = vty->index;
1909
1910 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1911
1912 return CMD_SUCCESS;
1913}
1914
1915DEFUN(cfg_trx_rsl_e1_tei,
1916 cfg_trx_rsl_e1_tei_cmd,
1917 "rsl e1 tei <0-63>",
1918 "Set the TEI to be used for RSL")
1919{
1920 struct gsm_bts_trx *trx = vty->index;
1921
1922 trx->rsl_tei = atoi(argv[0]);
1923
1924 return CMD_SUCCESS;
1925}
1926
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001927DEFUN(cfg_trx_rf_locked,
1928 cfg_trx_rf_locked_cmd,
1929 "rf_locked (0|1)",
1930 "Turn off RF of the TRX.\n")
1931{
1932 int locked = atoi(argv[0]);
1933 struct gsm_bts_trx *trx = vty->index;
1934
1935 gsm_trx_lock_rf(trx, locked);
1936 return CMD_SUCCESS;
1937}
Harald Welte42581822009-08-08 16:12:58 +02001938
Harald Welte5258fc42009-03-28 19:07:53 +00001939/* per TS configuration */
1940DEFUN(cfg_ts,
1941 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001942 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001943 "Select a Timeslot to configure")
1944{
1945 int ts_nr = atoi(argv[0]);
1946 struct gsm_bts_trx *trx = vty->index;
1947 struct gsm_bts_trx_ts *ts;
1948
1949 if (ts_nr >= TRX_NR_TS) {
1950 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1951 TRX_NR_TS, VTY_NEWLINE);
1952 return CMD_WARNING;
1953 }
1954
1955 ts = &trx->ts[ts_nr];
1956
1957 vty->index = ts;
1958 vty->node = TS_NODE;
1959
1960 return CMD_SUCCESS;
1961}
1962
Harald Weltea6fd58e2009-08-07 00:25:23 +02001963DEFUN(cfg_ts_pchan,
1964 cfg_ts_pchan_cmd,
1965 "phys_chan_config PCHAN",
1966 "Physical Channel configuration (TCH/SDCCH/...)")
1967{
1968 struct gsm_bts_trx_ts *ts = vty->index;
1969 int pchanc;
1970
1971 pchanc = gsm_pchan_parse(argv[0]);
1972 if (pchanc < 0)
1973 return CMD_WARNING;
1974
1975 ts->pchan = pchanc;
1976
1977 return CMD_SUCCESS;
1978}
1979
1980DEFUN(cfg_ts_e1_subslot,
1981 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001982 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001983 "E1 sub-slot connected to this on-air timeslot")
1984{
1985 struct gsm_bts_trx_ts *ts = vty->index;
1986
Harald Welte42581822009-08-08 16:12:58 +02001987 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001988
1989 return CMD_SUCCESS;
1990}
Harald Welte5258fc42009-03-28 19:07:53 +00001991
Harald Welte4f10c252010-05-16 21:47:13 +02001992void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
1993{
1994 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
1995 counter_get(net->stats.chreq.total),
1996 counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
1997 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
1998 counter_get(net->stats.chan.rf_fail),
1999 counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
2000 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
2001 counter_get(net->stats.paging.attempted),
2002 counter_get(net->stats.paging.completed),
2003 counter_get(net->stats.paging.expired), VTY_NEWLINE);
2004 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
2005 counter_get(net->stats.bts.oml_fail),
2006 counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
2007}
2008
Harald Welte5bc61dc2010-05-16 22:02:16 +02002009DEFUN(logging_fltr_imsi,
2010 logging_fltr_imsi_cmd,
2011 "logging filter imsi IMSI",
2012 LOGGING_STR FILTER_STR
2013 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2014{
2015 struct telnet_connection *conn;
2016
2017 conn = (struct telnet_connection *) vty->priv;
2018 if (!conn->dbg) {
2019 vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE);
2020 return CMD_WARNING;
2021 }
2022
2023 log_set_imsi_filter(conn->dbg, argv[0]);
2024 return CMD_SUCCESS;
2025}
2026
Harald Weltedcccb182010-05-16 20:52:23 +02002027extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02002028extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02002029
Harald Weltedcccb182010-05-16 20:52:23 +02002030int bsc_vty_init(void)
Harald Welte68628e82009-03-10 12:17:57 +00002031{
Harald Welteb4d5b172010-05-12 16:10:35 +00002032 install_element_ve(&show_net_cmd);
2033 install_element_ve(&show_bts_cmd);
2034 install_element_ve(&show_trx_cmd);
2035 install_element_ve(&show_ts_cmd);
2036 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08002037 install_element_ve(&show_lchan_summary_cmd);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002038 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00002039
Harald Welteb4d5b172010-05-12 16:10:35 +00002040 install_element_ve(&show_e1drv_cmd);
2041 install_element_ve(&show_e1line_cmd);
2042 install_element_ve(&show_e1ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002043
Harald Welteb4d5b172010-05-12 16:10:35 +00002044 install_element_ve(&show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002045
Harald Welte5bc61dc2010-05-16 22:02:16 +02002046 logging_vty_add_cmds();
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01002047
Harald Welte5013b2a2009-08-07 13:29:14 +02002048 install_element(CONFIG_NODE, &cfg_net_cmd);
2049 install_node(&net_node, config_write_net);
2050 install_default(GSMNET_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002051 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002052 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002053 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002054 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2055 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2056 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02002057 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01002058 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09002059 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01002060 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01002061 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01002062 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01002063 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01002064 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2065 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2066 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2067 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2068 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2069 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01002070 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002071 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2072 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2073 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2074 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
2075 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
2076 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
2077 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
2078 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
2079 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
2080 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002081
2082 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02002083 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00002084 install_default(BTS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002085 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002086 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002087 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002088 install_element(BTS_NODE, &cfg_description_cmd);
2089 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02002090 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02002091 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002092 install_element(BTS_NODE, &cfg_bts_lac_cmd);
2093 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002094 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00002095 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02002096 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002097 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
2098 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02002099 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002100 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
2101 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002102 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
2103 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002104 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002105 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002106 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02002107 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01002108 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
2109 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02002110 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002111 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002112 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2113 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002114 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08002115 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002116 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08002117 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2118 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2119 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002120
Harald Welte5258fc42009-03-28 19:07:53 +00002121 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002122 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002123 install_default(TRX_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002124 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002125 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002126 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02002127 install_element(TRX_NODE, &cfg_description_cmd);
2128 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002129 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02002130 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002131 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2132 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002133 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002134
Harald Welte5258fc42009-03-28 19:07:53 +00002135 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002136 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002137 install_default(TS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002138 install_element(TS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002139 install_element(TS_NODE, &ournode_end_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002140 install_element(TS_NODE, &cfg_ts_pchan_cmd);
2141 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002142
Harald Welte81c9b9c2010-05-31 16:40:40 +02002143 abis_nm_vty_init();
2144
Harald Weltedcccb182010-05-16 20:52:23 +02002145 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00002146
Harald Welte68628e82009-03-10 12:17:57 +00002147 return 0;
2148}