blob: 279970649c90b53c5240b287e099a035b832d313 [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
25#include <vty/command.h>
Harald Weltef9daefd2009-08-09 15:13:54 +020026#include <vty/buffer.h>
Harald Welte68628e82009-03-10 12:17:57 +000027#include <vty/vty.h>
28
29#include <arpa/inet.h>
30
Harald Weltedfe6c7d2010-02-20 16:24:02 +010031#include <osmocore/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000032#include <openbsc/gsm_data.h>
Harald Welte68628e82009-03-10 12:17:57 +000033#include <openbsc/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000034#include <openbsc/abis_nm.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010035#include <osmocore/gsm_utils.h>
Harald Welteb908cb72009-12-22 13:09:29 +010036#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010037#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000038#include <openbsc/db.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010039#include <osmocore/talloc.h>
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +010040#include <openbsc/telnet_interface.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020041#include <openbsc/vty.h>
Harald Welte22229d62010-05-12 20:28:04 +020042#include <openbsc/gprs_ns.h>
Harald Welte68628e82009-03-10 12:17:57 +000043
44static struct gsm_network *gsmnet;
45
Harald Welteea4647d2010-05-12 17:19:53 +000046/* FIXME: this should go to some common file */
47static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020048 { 0, "tns-block" },
49 { 1, "tns-block-retries" },
50 { 2, "tns-reset" },
51 { 3, "tns-reset-retries" },
52 { 4, "tns-test" },
53 { 5, "tns-alive" },
54 { 6, "tns-alive-retries" },
55 { 0, NULL }
56};
57
Harald Welteea4647d2010-05-12 17:19:53 +000058static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020059 { 0, "blocking-timer" },
60 { 1, "blocking-retries" },
61 { 2, "unblocking-retries" },
62 { 3, "reset-timer" },
63 { 4, "reset-retries" },
64 { 5, "suspend-timer" },
65 { 6, "suspend-retries" },
66 { 7, "resume-timer" },
67 { 8, "resume-retries" },
68 { 9, "capability-update-timer" },
69 { 10, "capability-update-retries" },
70 { 0, NULL }
71};
72
Harald Welte5013b2a2009-08-07 13:29:14 +020073struct cmd_node net_node = {
74 GSMNET_NODE,
75 "%s(network)#",
76 1,
77};
78
Harald Welte68628e82009-03-10 12:17:57 +000079struct cmd_node bts_node = {
80 BTS_NODE,
81 "%s(bts)#",
82 1,
83};
84
85struct cmd_node trx_node = {
86 TRX_NODE,
87 "%s(trx)#",
88 1,
89};
90
91struct cmd_node ts_node = {
92 TS_NODE,
93 "%s(ts)#",
94 1,
95};
96
97static int dummy_config_write(struct vty *v)
98{
99 return CMD_SUCCESS;
100}
101
102static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
103{
Harald Welte1bc77352009-03-10 19:47:51 +0000104 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
105 nm_opstate_name(nms->operational), nms->administrative,
106 nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000107}
108
Harald Welteb908cb72009-12-22 13:09:29 +0100109static void dump_pchan_load_vty(struct vty *vty, char *prefix,
110 const struct pchan_load *pl)
111{
112 int i;
113
114 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
115 const struct load_counter *lc = &pl->pchan[i];
116 unsigned int percent;
117
118 if (lc->total == 0)
119 continue;
120
121 percent = (lc->used * 100) / lc->total;
122
123 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
124 gsm_pchan_name(i), percent, lc->used, lc->total,
125 VTY_NEWLINE);
126 }
127}
128
Harald Welte68628e82009-03-10 12:17:57 +0000129static void net_dump_vty(struct vty *vty, struct gsm_network *net)
130{
Harald Welteb908cb72009-12-22 13:09:29 +0100131 struct pchan_load pl;
132
Harald Welteef235b52009-03-10 12:34:02 +0000133 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
134 "and has %u BTS%s", net->country_code, net->network_code,
135 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000136 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000137 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000138 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000139 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200140 vty_out(vty, " Authentication policy: %s%s",
141 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100142 vty_out(vty, " Location updating reject cause: %u%s",
143 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900144 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
145 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100146 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
147 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100148 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
149 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100150 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
151 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100152 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
153 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100154 network_chan_load(&pl, net);
155 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
156 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000157}
158
159DEFUN(show_net, show_net_cmd, "show network",
160 SHOW_STR "Display information about a GSM NETWORK\n")
161{
162 struct gsm_network *net = gsmnet;
163 net_dump_vty(vty, net);
164
165 return CMD_SUCCESS;
166}
167
168static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
169{
Harald Welteedb37782009-05-01 14:59:07 +0000170 struct e1inp_line *line;
171
172 if (!e1l) {
173 vty_out(vty, " None%s", VTY_NEWLINE);
174 return;
175 }
176
177 line = e1l->ts->line;
178
179 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
180 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000181 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000182 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000183 e1l->tei, e1l->sapi, VTY_NEWLINE);
184}
185
186static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
187{
Harald Welteb908cb72009-12-22 13:09:29 +0100188 struct pchan_load pl;
189
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200190 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200191 "BSIC %u, TSC %u and %u TRX%s",
192 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200193 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200194 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200195 bts->num_trx, VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100196 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100197 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100198 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
199 VTY_NEWLINE);
200 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100201 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100202 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
203 VTY_NEWLINE);
204 vty_out(vty, "RACH Max transmissions: %u%s",
205 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
206 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100207 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200208 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000209 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200210 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000211 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200212 bts->oml_tei, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000213 vty_out(vty, " NM State: ");
214 net_dump_nmstate(vty, &bts->nm_state);
215 vty_out(vty, " Site Mgr NM State: ");
216 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
217 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
218 bts->paging.available_slots, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200219 if (!is_ipaccess_bts(bts)) {
220 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
221 e1isl_dump_vty(vty, bts->oml_link);
222 }
Harald Welte68628e82009-03-10 12:17:57 +0000223 /* FIXME: oml_link, chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100224 memset(&pl, 0, sizeof(pl));
225 bts_chan_load(&pl, bts);
226 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
227 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000228}
229
230DEFUN(show_bts, show_bts_cmd, "show bts [number]",
231 SHOW_STR "Display information about a BTS\n"
232 "BTS number")
233{
234 struct gsm_network *net = gsmnet;
235 int bts_nr;
236
237 if (argc != 0) {
238 /* use the BTS number that the user has specified */
239 bts_nr = atoi(argv[0]);
240 if (bts_nr > net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000241 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000242 VTY_NEWLINE);
243 return CMD_WARNING;
244 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200245 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000246 return CMD_SUCCESS;
247 }
248 /* print all BTS's */
249 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200250 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000251
252 return CMD_SUCCESS;
253}
254
Harald Welte42581822009-08-08 16:12:58 +0200255/* utility functions */
256static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
257 const char *ts, const char *ss)
258{
259 e1_link->e1_nr = atoi(line);
260 e1_link->e1_ts = atoi(ts);
261 if (!strcmp(ss, "full"))
262 e1_link->e1_ts_ss = 255;
263 else
264 e1_link->e1_ts_ss = atoi(ss);
265}
266
267static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
268 const char *prefix)
269{
270 if (!e1_link->e1_ts)
271 return;
272
273 if (e1_link->e1_ts_ss == 255)
274 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
275 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
276 else
277 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
278 prefix, e1_link->e1_nr, e1_link->e1_ts,
279 e1_link->e1_ts_ss, VTY_NEWLINE);
280}
281
282
Harald Welte67ce0732009-08-06 19:06:46 +0200283static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
284{
Harald Welte42581822009-08-08 16:12:58 +0200285 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
286 if (ts->pchan != GSM_PCHAN_NONE)
287 vty_out(vty, " phys_chan_config %s%s",
288 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
289 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welte67ce0732009-08-06 19:06:46 +0200290}
291
292static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
293{
294 int i;
295
Harald Welte5013b2a2009-08-07 13:29:14 +0200296 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200297 vty_out(vty, " rf_locked %u%s",
298 trx->nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
299 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200300 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100301 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200302 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200303 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
304 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200305
306 for (i = 0; i < TRX_NR_TS; i++)
307 config_write_ts_single(vty, &trx->ts[i]);
308}
309
Harald Welte615e9562010-05-11 23:50:21 +0200310static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
311{
312 unsigned int i;
313 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
314 VTY_NEWLINE);
315 if (bts->gprs.mode == BTS_GPRS_NONE)
316 return;
317
318 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
319 VTY_NEWLINE);
320 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
321 VTY_NEWLINE);
322 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
323 vty_out(vty, " gprs cell timer %s %u%s",
324 get_value_string(gprs_bssgp_cfg_strs, i),
325 bts->gprs.cell.timer[i], VTY_NEWLINE);
326 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
327 VTY_NEWLINE);
328 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
329 vty_out(vty, " gprs ns timer %s %u%s",
330 get_value_string(gprs_ns_timer_strs, i),
331 bts->gprs.nse.timer[i], VTY_NEWLINE);
332 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
333 struct gsm_bts_gprs_nsvc *nsvc =
334 &bts->gprs.nsvc[i];
335 struct in_addr ia;
336
337 ia.s_addr = htonl(nsvc->remote_ip);
338 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
339 nsvc->nsvci, VTY_NEWLINE);
340 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
341 nsvc->local_port, VTY_NEWLINE);
342 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
343 nsvc->remote_port, VTY_NEWLINE);
344 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
345 inet_ntoa(ia), VTY_NEWLINE);
346 }
347}
348
Harald Welte67ce0732009-08-06 19:06:46 +0200349static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
350{
351 struct gsm_bts_trx *trx;
352
Harald Welte5013b2a2009-08-07 13:29:14 +0200353 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
354 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
355 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100356 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200357 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200358 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200359 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
360 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200361 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100362 vty_out(vty, " cell reselection hysteresis %u%s",
363 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
364 vty_out(vty, " rxlev access min %u%s",
365 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Harald Weltea43f7892009-12-01 18:04:30 +0530366 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200367 vty_out(vty, " periodic location update %u%s",
Harald Weltea43f7892009-12-01 18:04:30 +0530368 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200369 vty_out(vty, " channel allocator %s%s",
370 bts->chan_alloc_reverse ? "descending" : "ascending",
371 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100372 vty_out(vty, " rach tx integer %u%s",
373 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
374 vty_out(vty, " rach max transmission %u%s",
375 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
376 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800377
378 if (bts->rach_b_thresh != -1)
379 vty_out(vty, " rach nm busy threshold %u%s",
380 bts->rach_b_thresh, VTY_NEWLINE);
381 if (bts->rach_ldavg_slots != -1)
382 vty_out(vty, " rach nm load average %u%s",
383 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100384 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200385 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800386 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
387 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200388 if (is_ipaccess_bts(bts)) {
Harald Welte5013b2a2009-08-07 13:29:14 +0200389 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200390 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200391 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
392 } else {
Harald Welte42581822009-08-08 16:12:58 +0200393 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
394 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
395 }
Harald Welte615e9562010-05-11 23:50:21 +0200396 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200397
398 llist_for_each_entry(trx, &bts->trx_list, list)
399 config_write_trx_single(vty, trx);
400}
401
402static int config_write_bts(struct vty *v)
403{
404 struct gsm_bts *bts;
405
406 llist_for_each_entry(bts, &gsmnet->bts_list, list)
407 config_write_bts_single(v, bts);
408
409 return CMD_SUCCESS;
410}
411
Harald Welte5013b2a2009-08-07 13:29:14 +0200412static int config_write_net(struct vty *vty)
413{
414 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200415 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200416 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200417 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
418 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200419 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100420 vty_out(vty, " location updating reject cause %u%s",
421 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900422 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100423 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100424 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
425 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100426 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100427 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100428 vty_out(vty, " handover window rxlev averaging %u%s",
429 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
430 vty_out(vty, " handover window rxqual averaging %u%s",
431 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
432 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
433 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
434 vty_out(vty, " handover power budget interval %u%s",
435 gsmnet->handover.pwr_interval, VTY_NEWLINE);
436 vty_out(vty, " handover power budget hysteresis %u%s",
437 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
438 vty_out(vty, " handover maximum distance %u%s",
439 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100440 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100441 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
442 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
443 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
444 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
445 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
446 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
447 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
448 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
449 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
450 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200451
452 return CMD_SUCCESS;
453}
Harald Welte67ce0732009-08-06 19:06:46 +0200454
Harald Welte68628e82009-03-10 12:17:57 +0000455static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
456{
457 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
458 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200459 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200460 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200461 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200462 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000463 vty_out(vty, " NM State: ");
464 net_dump_nmstate(vty, &trx->nm_state);
465 vty_out(vty, " Baseband Transceiver NM State: ");
466 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200467 if (is_ipaccess_bts(trx->bts)) {
468 vty_out(vty, " ip.access stream ID: 0x%02x%s",
469 trx->rsl_tei, VTY_NEWLINE);
470 } else {
471 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
472 e1isl_dump_vty(vty, trx->rsl_link);
473 }
Harald Welte68628e82009-03-10 12:17:57 +0000474}
475
476DEFUN(show_trx,
477 show_trx_cmd,
478 "show trx [bts_nr] [trx_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200479 SHOW_STR "Display information about a TRX\n"
480 "BTS Number\n"
481 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000482{
483 struct gsm_network *net = gsmnet;
484 struct gsm_bts *bts = NULL;
485 struct gsm_bts_trx *trx;
486 int bts_nr, trx_nr;
487
488 if (argc >= 1) {
489 /* use the BTS number that the user has specified */
490 bts_nr = atoi(argv[0]);
491 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000492 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000493 VTY_NEWLINE);
494 return CMD_WARNING;
495 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200496 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000497 }
498 if (argc >= 2) {
499 trx_nr = atoi(argv[1]);
500 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000501 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000502 VTY_NEWLINE);
503 return CMD_WARNING;
504 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200505 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000506 trx_dump_vty(vty, trx);
507 return CMD_SUCCESS;
508 }
509 if (bts) {
510 /* print all TRX in this BTS */
511 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200512 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000513 trx_dump_vty(vty, trx);
514 }
515 return CMD_SUCCESS;
516 }
517
518 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200519 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000520 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200521 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000522 trx_dump_vty(vty, trx);
523 }
524 }
525
526 return CMD_SUCCESS;
527}
528
Harald Welte67ce0732009-08-06 19:06:46 +0200529
Harald Welte68628e82009-03-10 12:17:57 +0000530static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
531{
Harald Welte68628e82009-03-10 12:17:57 +0000532 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
533 ts->nr, ts->trx->nr, ts->trx->bts->nr,
534 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
535 vty_out(vty, " NM State: ");
536 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530537 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000538 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
539 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
540 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000541}
542
543DEFUN(show_ts,
544 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000545 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200546 SHOW_STR "Display information about a TS\n"
547 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000548{
549 struct gsm_network *net = gsmnet;
550 struct gsm_bts *bts;
551 struct gsm_bts_trx *trx;
552 struct gsm_bts_trx_ts *ts;
553 int bts_nr, trx_nr, ts_nr;
554
555 if (argc >= 1) {
556 /* use the BTS number that the user has specified */
557 bts_nr = atoi(argv[0]);
558 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000559 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000560 VTY_NEWLINE);
561 return CMD_WARNING;
562 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200563 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000564 }
565 if (argc >= 2) {
566 trx_nr = atoi(argv[1]);
567 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000568 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000569 VTY_NEWLINE);
570 return CMD_WARNING;
571 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200572 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000573 }
574 if (argc >= 3) {
575 ts_nr = atoi(argv[2]);
576 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000577 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000578 VTY_NEWLINE);
579 return CMD_WARNING;
580 }
581 ts = &trx->ts[ts_nr];
582 ts_dump_vty(vty, ts);
583 return CMD_SUCCESS;
584 }
585 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200586 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000587 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200588 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000589 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
590 ts = &trx->ts[ts_nr];
591 ts_dump_vty(vty, ts);
592 }
593 }
594 }
595
596 return CMD_SUCCESS;
597}
598
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100599static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000600{
Harald Weltefcd24452009-06-20 18:15:19 +0200601 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000602 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000603 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000604 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000605 if (subscr->extension)
606 vty_out(vty, " Extension: %s%s", subscr->extension,
607 VTY_NEWLINE);
608 if (subscr->imsi)
609 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200610 if (subscr->tmsi != GSM_RESERVED_TMSI)
611 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200612 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100613
Harald Welte (local)15920de2009-08-14 20:27:16 +0200614 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000615}
616
Harald Welte8387a492009-12-22 21:43:14 +0100617static void meas_rep_dump_uni_vty(struct vty *vty,
618 struct gsm_meas_rep_unidir *mru,
619 const char *prefix,
620 const char *dir)
621{
622 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
623 prefix, dir, rxlev2dbm(mru->full.rx_lev),
624 dir, rxlev2dbm(mru->sub.rx_lev));
625 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
626 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
627 VTY_NEWLINE);
628}
629
630static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
631 const char *prefix)
632{
633 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
634 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
635 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
636 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
637 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
638 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
639 VTY_NEWLINE);
640 if (mr->flags & MEAS_REP_F_MS_TO)
641 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
642 mr->ms_timing_offset, VTY_NEWLINE);
643 if (mr->flags & MEAS_REP_F_MS_L1)
644 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
645 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
646 if (mr->flags & MEAS_REP_F_DL_VALID)
647 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
648 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
649}
650
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800651static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000652{
Harald Welte8387a492009-12-22 21:43:14 +0100653 int idx;
654
Harald Welte68628e82009-03-10 12:17:57 +0000655 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 +0200656 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
Harald Welte (local)ccd88452009-12-27 18:05:25 +0100657 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Harald Welte68628e82009-03-10 12:17:57 +0000658 VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100659 vty_out(vty, " Use Count: %u, State: %s%s", lchan->conn.use_count,
Harald Welte1887f9d2009-12-29 10:52:38 +0100660 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100661 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
662 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
663 - lchan->bs_power*2,
664 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
665 VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100666 if (lchan->conn.subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000667 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther68884aa2010-03-23 06:41:45 +0100668 subscr_dump_vty(vty, lchan->conn.subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000669 } else
670 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530671 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
672 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200673 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530674 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
675 inet_ntoa(ia), lchan->abis_ip.bound_port,
676 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
677 VTY_NEWLINE);
678 }
Harald Welte8387a492009-12-22 21:43:14 +0100679
680 /* we want to report the last measurement report */
681 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
682 lchan->meas_rep_idx, 1);
683 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000684}
685
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800686static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
687{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800688 struct gsm_meas_rep *mr;
689 int idx;
690
691 /* we want to report the last measurement report */
692 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
693 lchan->meas_rep_idx, 1);
694 mr = &lchan->meas_rep[idx];
695
696 vty_out(vty, "Lchan: %u Timeslot: %u TRX: %u BTS: %u Type: %s - L1 MS Power: %u dBm "
697 "RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800698 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
699 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800700 mr->ms_l1.pwr,
701 rxlev2dbm(mr->dl.full.rx_lev),
702 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800703 VTY_NEWLINE);
704}
705
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800706static int lchan_summary(struct vty *vty, int argc, const char **argv,
707 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +0000708{
709 struct gsm_network *net = gsmnet;
710 struct gsm_bts *bts;
711 struct gsm_bts_trx *trx;
712 struct gsm_bts_trx_ts *ts;
713 struct gsm_lchan *lchan;
714 int bts_nr, trx_nr, ts_nr, lchan_nr;
715
716 if (argc >= 1) {
717 /* use the BTS number that the user has specified */
718 bts_nr = atoi(argv[0]);
719 if (bts_nr >= net->num_bts) {
720 vty_out(vty, "%% can't find BTS %s%s", argv[0],
721 VTY_NEWLINE);
722 return CMD_WARNING;
723 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200724 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000725 }
726 if (argc >= 2) {
727 trx_nr = atoi(argv[1]);
728 if (trx_nr >= bts->num_trx) {
729 vty_out(vty, "%% can't find TRX %s%s", argv[1],
730 VTY_NEWLINE);
731 return CMD_WARNING;
732 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200733 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000734 }
735 if (argc >= 3) {
736 ts_nr = atoi(argv[2]);
737 if (ts_nr >= TRX_NR_TS) {
738 vty_out(vty, "%% can't find TS %s%s", argv[2],
739 VTY_NEWLINE);
740 return CMD_WARNING;
741 }
742 ts = &trx->ts[ts_nr];
743 }
744 if (argc >= 4) {
745 lchan_nr = atoi(argv[3]);
746 if (lchan_nr >= TS_MAX_LCHAN) {
747 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
748 VTY_NEWLINE);
749 return CMD_WARNING;
750 }
751 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800752 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000753 return CMD_SUCCESS;
754 }
755 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200756 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000757 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200758 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000759 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
760 ts = &trx->ts[ts_nr];
761 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
762 lchan_nr++) {
763 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000764 if (lchan->type == GSM_LCHAN_NONE)
765 continue;
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800766 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +0000767 }
768 }
769 }
770 }
771
772 return CMD_SUCCESS;
773}
774
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800775
776DEFUN(show_lchan,
777 show_lchan_cmd,
778 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
779 SHOW_STR "Display information about a logical channel\n"
780 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
781 "Logical Channel Number\n")
782
783{
784 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
785}
786
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800787DEFUN(show_lchan_summary,
788 show_lchan_summary_cmd,
789 "show lchan summary [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
790 SHOW_STR "Display information about a logical channel\n"
791 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
792 "Logical Channel Number\n")
793{
794 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
795}
796
Harald Welte1bc77352009-03-10 19:47:51 +0000797static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
798{
799 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
800}
801
802DEFUN(show_e1drv,
803 show_e1drv_cmd,
804 "show e1_driver",
805 SHOW_STR "Display information about available E1 drivers\n")
806{
807 struct e1inp_driver *drv;
808
809 llist_for_each_entry(drv, &e1inp_driver_list, list)
810 e1drv_dump_vty(vty, drv);
811
812 return CMD_SUCCESS;
813}
814
Harald Welte68628e82009-03-10 12:17:57 +0000815static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
816{
817 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
818 line->num, line->name ? line->name : "",
819 line->driver->name, VTY_NEWLINE);
820}
821
822DEFUN(show_e1line,
823 show_e1line_cmd,
824 "show e1_line [line_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200825 SHOW_STR "Display information about a E1 line\n"
826 "E1 Line Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000827{
Harald Welte1bc77352009-03-10 19:47:51 +0000828 struct e1inp_line *line;
829
830 if (argc >= 1) {
831 int num = atoi(argv[0]);
832 llist_for_each_entry(line, &e1inp_line_list, list) {
833 if (line->num == num) {
834 e1line_dump_vty(vty, line);
835 return CMD_SUCCESS;
836 }
837 }
838 return CMD_WARNING;
839 }
840
841 llist_for_each_entry(line, &e1inp_line_list, list)
842 e1line_dump_vty(vty, line);
843
844 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000845}
846
847static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
848{
Harald Welte42581822009-08-08 16:12:58 +0200849 if (ts->type == E1INP_TS_TYPE_NONE)
850 return;
Harald Welte1bc77352009-03-10 19:47:51 +0000851 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
852 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
853 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000854}
855
856DEFUN(show_e1ts,
857 show_e1ts_cmd,
858 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200859 SHOW_STR "Display information about a E1 timeslot\n"
860 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000861{
Harald Welte986c3d72009-11-17 06:12:16 +0100862 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +0000863 struct e1inp_ts *ts;
864 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +0000865
Harald Welte1bc77352009-03-10 19:47:51 +0000866 if (argc == 0) {
867 llist_for_each_entry(line, &e1inp_line_list, list) {
868 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
869 ts = &line->ts[ts_nr];
870 e1ts_dump_vty(vty, ts);
871 }
872 }
873 return CMD_SUCCESS;
874 }
875 if (argc >= 1) {
876 int num = atoi(argv[0]);
877 llist_for_each_entry(line, &e1inp_line_list, list) {
878 if (line->num == num)
879 break;
880 }
881 if (!line || line->num != num) {
882 vty_out(vty, "E1 line %s is invalid%s",
883 argv[0], VTY_NEWLINE);
884 return CMD_WARNING;
885 }
886 }
887 if (argc >= 2) {
888 ts_nr = atoi(argv[1]);
889 if (ts_nr > NUM_E1_TS) {
890 vty_out(vty, "E1 timeslot %s is invalid%s",
891 argv[1], VTY_NEWLINE);
892 return CMD_WARNING;
893 }
894 ts = &line->ts[ts_nr];
895 e1ts_dump_vty(vty, ts);
896 return CMD_SUCCESS;
897 } else {
898 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
899 ts = &line->ts[ts_nr];
900 e1ts_dump_vty(vty, ts);
901 }
902 return CMD_SUCCESS;
903 }
904 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000905}
906
Harald Weltebe4b7302009-05-23 16:59:33 +0000907static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +0000908{
909 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
910 subscr_dump_vty(vty, pag->subscr);
911}
912
Harald Weltebe4b7302009-05-23 16:59:33 +0000913static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +0000914{
915 struct gsm_paging_request *pag;
916
917 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
918 paging_dump_vty(vty, pag);
919}
920
921DEFUN(show_paging,
922 show_paging_cmd,
923 "show paging [bts_nr]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200924 SHOW_STR "Display information about paging reuqests of a BTS\n"
925 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +0000926{
927 struct gsm_network *net = gsmnet;
928 struct gsm_bts *bts;
929 int bts_nr;
930
931 if (argc >= 1) {
932 /* use the BTS number that the user has specified */
933 bts_nr = atoi(argv[0]);
934 if (bts_nr >= net->num_bts) {
935 vty_out(vty, "%% can't find BTS %s%s", argv[0],
936 VTY_NEWLINE);
937 return CMD_WARNING;
938 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200939 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000940 bts_paging_dump_vty(vty, bts);
941
942 return CMD_SUCCESS;
943 }
944 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200945 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000946 bts_paging_dump_vty(vty, bts);
947 }
948
949 return CMD_SUCCESS;
950}
951
Harald Welte8f0ed552010-05-11 21:53:49 +0200952#define NETWORK_STR "Configure the GSM network\n"
953
Harald Welte5013b2a2009-08-07 13:29:14 +0200954DEFUN(cfg_net,
955 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +0200956 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +0200957{
958 vty->index = gsmnet;
959 vty->node = GSMNET_NODE;
960
961 return CMD_SUCCESS;
962}
963
964
965DEFUN(cfg_net_ncc,
966 cfg_net_ncc_cmd,
967 "network country code <1-999>",
968 "Set the GSM network country code")
969{
970 gsmnet->country_code = atoi(argv[0]);
971
972 return CMD_SUCCESS;
973}
974
975DEFUN(cfg_net_mnc,
976 cfg_net_mnc_cmd,
977 "mobile network code <1-999>",
978 "Set the GSM mobile network code")
979{
980 gsmnet->network_code = atoi(argv[0]);
981
982 return CMD_SUCCESS;
983}
984
985DEFUN(cfg_net_name_short,
986 cfg_net_name_short_cmd,
987 "short name NAME",
988 "Set the short GSM network name")
989{
990 if (gsmnet->name_short)
991 talloc_free(gsmnet->name_short);
992
993 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
994
995 return CMD_SUCCESS;
996}
997
998DEFUN(cfg_net_name_long,
999 cfg_net_name_long_cmd,
1000 "long name NAME",
1001 "Set the long GSM network name")
1002{
1003 if (gsmnet->name_long)
1004 talloc_free(gsmnet->name_long);
1005
1006 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
1007
1008 return CMD_SUCCESS;
1009}
Harald Welte40f82892009-05-23 17:31:39 +00001010
Harald Welte (local)69de3972009-08-12 14:42:23 +02001011DEFUN(cfg_net_auth_policy,
1012 cfg_net_auth_policy_cmd,
1013 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001014 "Authentication (not cryptographic)\n"
1015 "Set the GSM network authentication policy\n"
1016 "Require the MS to be activated in HLR\n"
1017 "Accept all MS, whether in HLR or not\n"
1018 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001019{
1020 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
1021
1022 gsmnet->auth_policy = policy;
1023
1024 return CMD_SUCCESS;
1025}
1026
Harald Welte1085c092009-11-18 20:33:19 +01001027DEFUN(cfg_net_reject_cause,
1028 cfg_net_reject_cause_cmd,
1029 "location updating reject cause <2-111>",
1030 "Set the reject cause of location updating reject\n")
1031{
1032 gsmnet->reject_cause = atoi(argv[0]);
1033
1034 return CMD_SUCCESS;
1035}
1036
Harald Welte4381cfe2009-08-30 15:47:06 +09001037DEFUN(cfg_net_encryption,
1038 cfg_net_encryption_cmd,
1039 "encryption a5 (0|1|2)",
1040 "Enable or disable encryption (A5) for this network\n")
1041{
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001042 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001043
1044 return CMD_SUCCESS;
1045}
1046
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001047DEFUN(cfg_net_neci,
1048 cfg_net_neci_cmd,
1049 "neci (0|1)",
1050 "Set if NECI of cell selection is to be set")
1051{
1052 gsmnet->neci = atoi(argv[0]);
1053 return CMD_SUCCESS;
1054}
1055
Harald Welteeab84a12009-12-13 10:53:12 +01001056DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1057 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001058 "Radio Resource Location Protocol\n"
1059 "Set the Radio Resource Location Protocol Mode\n"
1060 "Don't send RRLP request\n"
1061 "Request MS-based location\n"
1062 "Request any location, prefer MS-based\n"
1063 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001064{
1065 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1066
1067 return CMD_SUCCESS;
1068}
1069
Harald Welte648b6ce2009-12-14 09:00:24 +01001070DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1071 "mm info (0|1)",
1072 "Whether to send MM INFO after LOC UPD ACCEPT")
1073{
1074 gsmnet->send_mm_info = atoi(argv[0]);
1075
1076 return CMD_SUCCESS;
1077}
1078
Harald Welte8f0ed552010-05-11 21:53:49 +02001079#define HANDOVER_STR "Handover Options\n"
1080
Harald Weltebc814502009-12-19 21:41:52 +01001081DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1082 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001083 HANDOVER_STR
1084 "Don't perform in-call handover\n"
1085 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001086{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001087 int enable = atoi(argv[0]);
1088
1089 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001090 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1091 "is enabled by using the -P command line option%s",
1092 VTY_NEWLINE);
1093 return CMD_WARNING;
1094 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001095 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001096
1097 return CMD_SUCCESS;
1098}
1099
Harald Welte8f0ed552010-05-11 21:53:49 +02001100#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1101#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1102#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1103#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1104
Harald Welteb720bd32009-12-21 16:51:50 +01001105DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1106 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001107 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001108 "How many RxLev measurements are used for averaging")
1109{
1110 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1111 return CMD_SUCCESS;
1112}
1113
1114DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1115 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001116 HO_WIN_RXQUAL_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001117 "How many RxQual measurements are used for averaging")
1118{
1119 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1120 return CMD_SUCCESS;
1121}
1122
1123DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1124 "handover window rxlev neighbor averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001125 HO_WIN_RXLEV_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001126 "How many RxQual measurements are used for averaging")
1127{
1128 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1129 return CMD_SUCCESS;
1130}
1131
1132DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1133 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001134 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001135 "How often to check if we have a better cell (SACCH frames)")
1136{
1137 gsmnet->handover.pwr_interval = atoi(argv[0]);
1138 return CMD_SUCCESS;
1139}
1140
1141DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1142 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001143 HO_PBUDGET_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001144 "How many dB does a neighbor to be stronger to become a HO candidate")
1145{
1146 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1147 return CMD_SUCCESS;
1148}
1149
1150DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1151 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001152 HANDOVER_STR
Harald Welteb720bd32009-12-21 16:51:50 +01001153 "How big is the maximum timing advance before HO is forced")
1154{
1155 gsmnet->handover.max_distance = atoi(argv[0]);
1156 return CMD_SUCCESS;
1157}
Harald Weltebc814502009-12-19 21:41:52 +01001158
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001159#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001160 DEFUN(cfg_net_T##number, \
1161 cfg_net_T##number##_cmd, \
1162 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001163 "Configure GSM Timers\n" \
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001164 doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001165{ \
1166 int value = atoi(argv[0]); \
1167 \
1168 if (value < 0 || value > 65535) { \
1169 vty_out(vty, "Timer value %s out of range.%s", \
1170 argv[0], VTY_NEWLINE); \
1171 return CMD_WARNING; \
1172 } \
1173 \
1174 gsmnet->T##number = value; \
1175 return CMD_SUCCESS; \
1176}
1177
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001178DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1179DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1180DECLARE_TIMER(3105, "Currently not used.")
1181DECLARE_TIMER(3107, "Currently not used.")
1182DECLARE_TIMER(3109, "Currently not used.")
1183DECLARE_TIMER(3111, "Currently not used.")
1184DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1185DECLARE_TIMER(3115, "Currently not used.")
1186DECLARE_TIMER(3117, "Currently not used.")
1187DECLARE_TIMER(3119, "Currently not used.")
1188DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001189
1190
Harald Welte5258fc42009-03-28 19:07:53 +00001191/* per-BTS configuration */
1192DEFUN(cfg_bts,
1193 cfg_bts_cmd,
1194 "bts BTS_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001195 "Select a BTS to configure\n"
1196 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001197{
1198 int bts_nr = atoi(argv[0]);
1199 struct gsm_bts *bts;
1200
Harald Weltee441d9c2009-06-21 16:17:15 +02001201 if (bts_nr > gsmnet->num_bts) {
1202 vty_out(vty, "%% The next unused BTS number is %u%s",
1203 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001204 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001205 } else if (bts_nr == gsmnet->num_bts) {
1206 /* allocate a new one */
1207 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1208 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001209 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001210 bts = gsm_bts_num(gsmnet, bts_nr);
1211
Daniel Willmannf15c2762010-01-11 13:43:07 +01001212 if (!bts) {
1213 vty_out(vty, "%% Unable to allocate BTS %u%s",
1214 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001215 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001216 }
Harald Welte5258fc42009-03-28 19:07:53 +00001217
1218 vty->index = bts;
1219 vty->node = BTS_NODE;
1220
1221 return CMD_SUCCESS;
1222}
1223
1224DEFUN(cfg_bts_type,
1225 cfg_bts_type_cmd,
1226 "type TYPE",
1227 "Set the BTS type\n")
1228{
1229 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001230 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001231
Harald Welte39315c42010-01-10 18:01:52 +01001232 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1233 if (rc < 0)
1234 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001235
Harald Welte5258fc42009-03-28 19:07:53 +00001236 return CMD_SUCCESS;
1237}
1238
Harald Weltefcd24452009-06-20 18:15:19 +02001239DEFUN(cfg_bts_band,
1240 cfg_bts_band_cmd,
1241 "band BAND",
1242 "Set the frequency band of this BTS\n")
1243{
1244 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001245 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001246
1247 if (band < 0) {
1248 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1249 band, VTY_NEWLINE);
1250 return CMD_WARNING;
1251 }
1252
1253 bts->band = band;
1254
1255 return CMD_SUCCESS;
1256}
1257
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001258DEFUN(cfg_bts_ci,
1259 cfg_bts_ci_cmd,
1260 "cell_identity <0-65535>",
1261 "Set the Cell identity of this BTS\n")
1262{
1263 struct gsm_bts *bts = vty->index;
1264 int ci = atoi(argv[0]);
1265
1266 if (ci < 0 || ci > 0xffff) {
1267 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1268 ci, VTY_NEWLINE);
1269 return CMD_WARNING;
1270 }
1271 bts->cell_identity = ci;
1272
1273 return CMD_SUCCESS;
1274}
1275
Harald Welte5258fc42009-03-28 19:07:53 +00001276DEFUN(cfg_bts_lac,
1277 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001278 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001279 "Set the Location Area Code (LAC) of this BTS\n")
1280{
1281 struct gsm_bts *bts = vty->index;
1282 int lac = atoi(argv[0]);
1283
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001284 if (lac < 0 || lac > 0xffff) {
1285 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001286 lac, VTY_NEWLINE);
1287 return CMD_WARNING;
1288 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001289
1290 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1291 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1292 lac, VTY_NEWLINE);
1293 return CMD_WARNING;
1294 }
1295
Harald Welte5258fc42009-03-28 19:07:53 +00001296 bts->location_area_code = lac;
1297
1298 return CMD_SUCCESS;
1299}
1300
Harald Weltea43f7892009-12-01 18:04:30 +05301301
Harald Welte5258fc42009-03-28 19:07:53 +00001302DEFUN(cfg_bts_tsc,
1303 cfg_bts_tsc_cmd,
1304 "training_sequence_code <0-255>",
1305 "Set the Training Sequence Code (TSC) of this BTS\n")
1306{
1307 struct gsm_bts *bts = vty->index;
1308 int tsc = atoi(argv[0]);
1309
1310 if (tsc < 0 || tsc > 0xff) {
1311 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1312 tsc, VTY_NEWLINE);
1313 return CMD_WARNING;
1314 }
1315 bts->tsc = tsc;
1316
1317 return CMD_SUCCESS;
1318}
1319
Harald Welte78f2f502009-05-23 16:56:52 +00001320DEFUN(cfg_bts_bsic,
1321 cfg_bts_bsic_cmd,
1322 "base_station_id_code <0-63>",
1323 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1324{
1325 struct gsm_bts *bts = vty->index;
1326 int bsic = atoi(argv[0]);
1327
1328 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001329 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001330 bsic, VTY_NEWLINE);
1331 return CMD_WARNING;
1332 }
1333 bts->bsic = bsic;
1334
1335 return CMD_SUCCESS;
1336}
1337
1338
Harald Welte4cc34222009-05-01 15:12:31 +00001339DEFUN(cfg_bts_unit_id,
1340 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001341 "ip.access unit_id <0-65534> <0-255>",
1342 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001343{
1344 struct gsm_bts *bts = vty->index;
1345 int site_id = atoi(argv[0]);
1346 int bts_id = atoi(argv[1]);
1347
Harald Welte07dc73d2009-08-07 13:27:09 +02001348 if (!is_ipaccess_bts(bts)) {
1349 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1350 return CMD_WARNING;
1351 }
1352
Harald Welte4cc34222009-05-01 15:12:31 +00001353 bts->ip_access.site_id = site_id;
1354 bts->ip_access.bts_id = bts_id;
1355
1356 return CMD_SUCCESS;
1357}
1358
Harald Welte8f0ed552010-05-11 21:53:49 +02001359#define OML_STR "Organization & Maintenance Link\n"
1360#define IPA_STR "ip.access Specific Options\n"
1361
Harald Welte8175e952009-10-20 00:22:00 +02001362DEFUN(cfg_bts_stream_id,
1363 cfg_bts_stream_id_cmd,
1364 "oml ip.access stream_id <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001365 OML_STR IPA_STR
Harald Welte8175e952009-10-20 00:22:00 +02001366 "Set the ip.access Stream ID of the OML link of this BTS\n")
1367{
1368 struct gsm_bts *bts = vty->index;
1369 int stream_id = atoi(argv[0]);
1370
1371 if (!is_ipaccess_bts(bts)) {
1372 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1373 return CMD_WARNING;
1374 }
1375
1376 bts->oml_tei = stream_id;
1377
1378 return CMD_SUCCESS;
1379}
1380
Harald Welte8f0ed552010-05-11 21:53:49 +02001381#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte8175e952009-10-20 00:22:00 +02001382
Harald Welte42581822009-08-08 16:12:58 +02001383DEFUN(cfg_bts_oml_e1,
1384 cfg_bts_oml_e1_cmd,
1385 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001386 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001387 "E1 interface to be used for OML\n")
1388{
1389 struct gsm_bts *bts = vty->index;
1390
1391 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1392
1393 return CMD_SUCCESS;
1394}
1395
1396
1397DEFUN(cfg_bts_oml_e1_tei,
1398 cfg_bts_oml_e1_tei_cmd,
1399 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001400 OML_E1_STR
Harald Welte42581822009-08-08 16:12:58 +02001401 "Set the TEI to be used for OML")
1402{
1403 struct gsm_bts *bts = vty->index;
1404
1405 bts->oml_tei = atoi(argv[0]);
1406
1407 return CMD_SUCCESS;
1408}
1409
Harald Welte7a8fa412009-08-10 13:48:16 +02001410DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1411 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001412 "Channnel Allocator\n" "Channel Allocator\n"
1413 "Allocate Timeslots and Transceivers in ascending order\n"
1414 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001415{
1416 struct gsm_bts *bts = vty->index;
1417
1418 if (!strcmp(argv[0], "ascending"))
1419 bts->chan_alloc_reverse = 0;
1420 else
1421 bts->chan_alloc_reverse = 1;
1422
1423 return CMD_SUCCESS;
1424}
1425
Harald Welte8f0ed552010-05-11 21:53:49 +02001426#define RACH_STR "Random Access Control Channel\n"
1427
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001428DEFUN(cfg_bts_rach_tx_integer,
1429 cfg_bts_rach_tx_integer_cmd,
1430 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001431 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001432 "Set the raw tx integer value in RACH Control parameters IE")
1433{
1434 struct gsm_bts *bts = vty->index;
1435 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1436 return CMD_SUCCESS;
1437}
1438
1439DEFUN(cfg_bts_rach_max_trans,
1440 cfg_bts_rach_max_trans_cmd,
1441 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001442 RACH_STR
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001443 "Set the maximum number of RACH burst transmissions")
1444{
1445 struct gsm_bts *bts = vty->index;
1446 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1447 return CMD_SUCCESS;
1448}
1449
Harald Welte8f0ed552010-05-11 21:53:49 +02001450#define NM_STR "Network Management\n"
1451
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001452DEFUN(cfg_bts_rach_nm_b_thresh,
1453 cfg_bts_rach_nm_b_thresh_cmd,
1454 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001455 RACH_STR NM_STR
1456 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001457{
1458 struct gsm_bts *bts = vty->index;
1459 bts->rach_b_thresh = atoi(argv[0]);
1460 return CMD_SUCCESS;
1461}
1462
1463DEFUN(cfg_bts_rach_nm_ldavg,
1464 cfg_bts_rach_nm_ldavg_cmd,
1465 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001466 RACH_STR NM_STR
1467 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001468{
1469 struct gsm_bts *bts = vty->index;
1470 bts->rach_ldavg_slots = atoi(argv[0]);
1471 return CMD_SUCCESS;
1472}
1473
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001474DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1475 "cell barred (0|1)",
1476 "Should this cell be barred from access?")
1477{
1478 struct gsm_bts *bts = vty->index;
1479
Harald Welte71355012009-12-21 23:08:18 +01001480 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001481
1482 return CMD_SUCCESS;
1483}
1484
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001485DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1486 "rach emergency call allowed (0|1)",
1487 "Should this cell allow emergency calls?")
1488{
1489 struct gsm_bts *bts = vty->index;
1490
1491 if (atoi(argv[0]) == 0)
1492 bts->si_common.rach_control.t2 |= 0x4;
1493 else
1494 bts->si_common.rach_control.t2 &= ~0x4;
1495
1496 return CMD_SUCCESS;
1497}
1498
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001499DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1500 "ms max power <0-40>",
1501 "Maximum transmit power of the MS")
1502{
1503 struct gsm_bts *bts = vty->index;
1504
1505 bts->ms_max_power = atoi(argv[0]);
1506
1507 return CMD_SUCCESS;
1508}
1509
Harald Welte73225282009-12-12 18:17:25 +01001510DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1511 "cell reselection hysteresis <0-14>",
1512 "Cell Re-Selection Hysteresis in dB")
1513{
1514 struct gsm_bts *bts = vty->index;
1515
1516 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1517
1518 return CMD_SUCCESS;
1519}
1520
1521DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1522 "rxlev access min <0-63>",
1523 "Minimum RxLev needed for cell access (better than -110dBm)")
1524{
1525 struct gsm_bts *bts = vty->index;
1526
1527 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1528
1529 return CMD_SUCCESS;
1530}
1531
Harald Welte (local)efc92312009-08-14 23:09:25 +02001532DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1533 "periodic location update <0-1530>",
1534 "Periodic Location Updating Interval in Minutes")
1535{
1536 struct gsm_bts *bts = vty->index;
1537
Harald Weltea43f7892009-12-01 18:04:30 +05301538 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001539
1540 return CMD_SUCCESS;
1541}
1542
Harald Welte8f0ed552010-05-11 21:53:49 +02001543#define GPRS_TEXT "GPRS Packet Network\n"
1544
Harald Welteaf387632010-03-14 23:30:30 +08001545DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02001546 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001547 GPRS_TEXT
1548 "GPRS Cell Settings\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001549 "GPRS BSSGP VC Identifier")
1550{
1551 struct gsm_bts *bts = vty->index;
1552
Harald Welte4511d892010-04-18 15:51:20 +02001553 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001554 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1555 return CMD_WARNING;
1556 }
1557
Harald Welte97a282b2010-03-14 15:37:43 +08001558 bts->gprs.cell.bvci = atoi(argv[0]);
1559
1560 return CMD_SUCCESS;
1561}
1562
Harald Weltea5731cf2010-03-22 11:48:36 +08001563DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1564 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001565 GPRS_TEXT
Harald Weltea5731cf2010-03-22 11:48:36 +08001566 "GPRS NS Entity Identifier")
1567{
1568 struct gsm_bts *bts = vty->index;
1569
Harald Welte4511d892010-04-18 15:51:20 +02001570 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08001571 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1572 return CMD_WARNING;
1573 }
1574
1575 bts->gprs.nse.nsei = atoi(argv[0]);
1576
1577 return CMD_SUCCESS;
1578}
1579
Harald Welte8f0ed552010-05-11 21:53:49 +02001580#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1581 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08001582
Harald Welte97a282b2010-03-14 15:37:43 +08001583DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1584 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001585 GPRS_TEXT NSVC_TEXT
1586 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08001587 "GPRS NS VC Identifier")
1588{
1589 struct gsm_bts *bts = vty->index;
1590 int idx = atoi(argv[0]);
1591
Harald Welte4511d892010-04-18 15:51:20 +02001592 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001593 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1594 return CMD_WARNING;
1595 }
1596
Harald Welte97a282b2010-03-14 15:37:43 +08001597 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1598
1599 return CMD_SUCCESS;
1600}
1601
Harald Welteaf387632010-03-14 23:30:30 +08001602DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1603 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001604 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001605 "GPRS NS Local UDP Port")
1606{
1607 struct gsm_bts *bts = vty->index;
1608 int idx = atoi(argv[0]);
1609
Harald Welte4511d892010-04-18 15:51:20 +02001610 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001611 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1612 return CMD_WARNING;
1613 }
1614
Harald Welteaf387632010-03-14 23:30:30 +08001615 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1616
1617 return CMD_SUCCESS;
1618}
1619
1620DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1621 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001622 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001623 "GPRS NS Remote UDP Port")
1624{
1625 struct gsm_bts *bts = vty->index;
1626 int idx = atoi(argv[0]);
1627
Harald Welte4511d892010-04-18 15:51:20 +02001628 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001629 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1630 return CMD_WARNING;
1631 }
1632
Harald Welteaf387632010-03-14 23:30:30 +08001633 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1634
1635 return CMD_SUCCESS;
1636}
1637
1638DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1639 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02001640 GPRS_TEXT NSVC_TEXT
Harald Welteaf387632010-03-14 23:30:30 +08001641 "GPRS NS Remote IP Address")
1642{
1643 struct gsm_bts *bts = vty->index;
1644 int idx = atoi(argv[0]);
1645 struct in_addr ia;
1646
Harald Welte4511d892010-04-18 15:51:20 +02001647 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001648 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1649 return CMD_WARNING;
1650 }
1651
Harald Welteaf387632010-03-14 23:30:30 +08001652 inet_aton(argv[1], &ia);
1653 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1654
1655 return CMD_SUCCESS;
1656}
1657
Harald Welte615e9562010-05-11 23:50:21 +02001658DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1659 "gprs ns timer " NS_TIMERS " <0-255>",
1660 GPRS_TEXT "Network Service\n"
1661 "Network Service Timer\n"
1662 NS_TIMERS_HELP "Timer Value\n")
1663{
1664 struct gsm_bts *bts = vty->index;
1665 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
1666 int val = atoi(argv[1]);
1667
1668 if (bts->gprs.mode == BTS_GPRS_NONE) {
1669 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1670 return CMD_WARNING;
1671 }
1672
1673 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
1674 return CMD_WARNING;
1675
1676 bts->gprs.nse.timer[idx] = val;
1677
1678 return CMD_SUCCESS;
1679}
1680
1681#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)"
1682#define BSSGP_TIMERS_HELP ""
1683
1684DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
1685 "gprs cell timer " BSSGP_TIMERS " <0-255>",
1686 GPRS_TEXT "Cell / BSSGP\n"
1687 "Cell/BSSGP Timer\n"
1688 BSSGP_TIMERS_HELP "Timer Value\n")
1689{
1690 struct gsm_bts *bts = vty->index;
1691 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
1692 int val = atoi(argv[1]);
1693
1694 if (bts->gprs.mode == BTS_GPRS_NONE) {
1695 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1696 return CMD_WARNING;
1697 }
1698
1699 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
1700 return CMD_WARNING;
1701
1702 bts->gprs.cell.timer[idx] = val;
1703
1704 return CMD_SUCCESS;
1705}
1706
Harald Welte97a282b2010-03-14 15:37:43 +08001707DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
1708 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001709 GPRS_TEXT
Harald Welte97a282b2010-03-14 15:37:43 +08001710 "GPRS Routing Area Code")
1711{
1712 struct gsm_bts *bts = vty->index;
1713
Harald Welte4511d892010-04-18 15:51:20 +02001714 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08001715 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1716 return CMD_WARNING;
1717 }
1718
Harald Welte97a282b2010-03-14 15:37:43 +08001719 bts->gprs.rac = atoi(argv[0]);
1720
1721 return CMD_SUCCESS;
1722}
1723
Harald Welte4511d892010-04-18 15:51:20 +02001724DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
1725 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001726 GPRS_TEXT
1727 "GPRS Mode for this BTS\n"
1728 "GPRS Disabled on this BTS\n"
1729 "GPRS Enabled on this BTS\n"
1730 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08001731{
1732 struct gsm_bts *bts = vty->index;
1733
Harald Welte4511d892010-04-18 15:51:20 +02001734 bts->gprs.mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08001735
1736 return CMD_SUCCESS;
1737}
1738
Harald Welte8f0ed552010-05-11 21:53:49 +02001739#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02001740
Harald Welte5258fc42009-03-28 19:07:53 +00001741/* per TRX configuration */
1742DEFUN(cfg_trx,
1743 cfg_trx_cmd,
1744 "trx TRX_NR",
Harald Welte8f0ed552010-05-11 21:53:49 +02001745 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00001746 "Select a TRX to configure")
1747{
1748 int trx_nr = atoi(argv[0]);
1749 struct gsm_bts *bts = vty->index;
1750 struct gsm_bts_trx *trx;
1751
Harald Weltee441d9c2009-06-21 16:17:15 +02001752 if (trx_nr > bts->num_trx) {
1753 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1754 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001755 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001756 } else if (trx_nr == bts->num_trx) {
1757 /* we need to allocate a new one */
1758 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001759 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001760 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001761
Harald Weltee441d9c2009-06-21 16:17:15 +02001762 if (!trx)
1763 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001764
1765 vty->index = trx;
1766 vty->node = TRX_NODE;
1767
1768 return CMD_SUCCESS;
1769}
1770
1771DEFUN(cfg_trx_arfcn,
1772 cfg_trx_arfcn_cmd,
1773 "arfcn <1-1024>",
1774 "Set the ARFCN for this TRX\n")
1775{
1776 int arfcn = atoi(argv[0]);
1777 struct gsm_bts_trx *trx = vty->index;
1778
1779 /* FIXME: check if this ARFCN is supported by this TRX */
1780
1781 trx->arfcn = arfcn;
1782
1783 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1784 /* FIXME: use OML layer to update the ARFCN */
1785 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1786
1787 return CMD_SUCCESS;
1788}
1789
Harald Welte (local)7b37d972009-12-27 20:56:38 +01001790DEFUN(cfg_trx_nominal_power,
1791 cfg_trx_nominal_power_cmd,
1792 "nominal power <0-100>",
1793 "Nominal TRX RF Power in dB\n")
1794{
1795 struct gsm_bts_trx *trx = vty->index;
1796
1797 trx->nominal_power = atoi(argv[0]);
1798
1799 return CMD_SUCCESS;
1800}
1801
Harald Weltefcd24452009-06-20 18:15:19 +02001802DEFUN(cfg_trx_max_power_red,
1803 cfg_trx_max_power_red_cmd,
1804 "max_power_red <0-100>",
1805 "Reduction of maximum BS RF Power in dB\n")
1806{
1807 int maxpwr_r = atoi(argv[0]);
1808 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001809 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001810
1811 /* FIXME: check if our BTS type supports more than 12 */
1812 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1813 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1814 maxpwr_r, VTY_NEWLINE);
1815 return CMD_WARNING;
1816 }
1817 if (maxpwr_r & 1) {
1818 vty_out(vty, "%% Power %d dB is not an even value%s",
1819 maxpwr_r, VTY_NEWLINE);
1820 return CMD_WARNING;
1821 }
1822
1823 trx->max_power_red = maxpwr_r;
1824
1825 /* FIXME: make sure we update this using OML */
1826
1827 return CMD_SUCCESS;
1828}
1829
Harald Welte42581822009-08-08 16:12:58 +02001830DEFUN(cfg_trx_rsl_e1,
1831 cfg_trx_rsl_e1_cmd,
1832 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1833 "E1 interface to be used for RSL\n")
1834{
1835 struct gsm_bts_trx *trx = vty->index;
1836
1837 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1838
1839 return CMD_SUCCESS;
1840}
1841
1842DEFUN(cfg_trx_rsl_e1_tei,
1843 cfg_trx_rsl_e1_tei_cmd,
1844 "rsl e1 tei <0-63>",
1845 "Set the TEI to be used for RSL")
1846{
1847 struct gsm_bts_trx *trx = vty->index;
1848
1849 trx->rsl_tei = atoi(argv[0]);
1850
1851 return CMD_SUCCESS;
1852}
1853
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001854DEFUN(cfg_trx_rf_locked,
1855 cfg_trx_rf_locked_cmd,
1856 "rf_locked (0|1)",
1857 "Turn off RF of the TRX.\n")
1858{
1859 int locked = atoi(argv[0]);
1860 struct gsm_bts_trx *trx = vty->index;
1861
1862 gsm_trx_lock_rf(trx, locked);
1863 return CMD_SUCCESS;
1864}
Harald Welte42581822009-08-08 16:12:58 +02001865
Harald Welte5258fc42009-03-28 19:07:53 +00001866/* per TS configuration */
1867DEFUN(cfg_ts,
1868 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001869 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001870 "Select a Timeslot to configure")
1871{
1872 int ts_nr = atoi(argv[0]);
1873 struct gsm_bts_trx *trx = vty->index;
1874 struct gsm_bts_trx_ts *ts;
1875
1876 if (ts_nr >= TRX_NR_TS) {
1877 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1878 TRX_NR_TS, VTY_NEWLINE);
1879 return CMD_WARNING;
1880 }
1881
1882 ts = &trx->ts[ts_nr];
1883
1884 vty->index = ts;
1885 vty->node = TS_NODE;
1886
1887 return CMD_SUCCESS;
1888}
1889
Harald Weltea6fd58e2009-08-07 00:25:23 +02001890DEFUN(cfg_ts_pchan,
1891 cfg_ts_pchan_cmd,
1892 "phys_chan_config PCHAN",
1893 "Physical Channel configuration (TCH/SDCCH/...)")
1894{
1895 struct gsm_bts_trx_ts *ts = vty->index;
1896 int pchanc;
1897
1898 pchanc = gsm_pchan_parse(argv[0]);
1899 if (pchanc < 0)
1900 return CMD_WARNING;
1901
1902 ts->pchan = pchanc;
1903
1904 return CMD_SUCCESS;
1905}
1906
1907DEFUN(cfg_ts_e1_subslot,
1908 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001909 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001910 "E1 sub-slot connected to this on-air timeslot")
1911{
1912 struct gsm_bts_trx_ts *ts = vty->index;
1913
Harald Welte42581822009-08-08 16:12:58 +02001914 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001915
1916 return CMD_SUCCESS;
1917}
Harald Welte5258fc42009-03-28 19:07:53 +00001918
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02001919extern int bsc_vty_init_extra(struct gsm_network *net);
1920
Harald Welte68628e82009-03-10 12:17:57 +00001921int bsc_vty_init(struct gsm_network *net)
1922{
1923 gsmnet = net;
1924
1925 cmd_init(1);
1926 vty_init();
1927
Harald Welteb4d5b172010-05-12 16:10:35 +00001928 install_element_ve(&show_net_cmd);
1929 install_element_ve(&show_bts_cmd);
1930 install_element_ve(&show_trx_cmd);
1931 install_element_ve(&show_ts_cmd);
1932 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001933 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00001934
Harald Welteb4d5b172010-05-12 16:10:35 +00001935 install_element_ve(&show_e1drv_cmd);
1936 install_element_ve(&show_e1line_cmd);
1937 install_element_ve(&show_e1ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001938
Harald Welteb4d5b172010-05-12 16:10:35 +00001939 install_element_ve(&show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001940
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +02001941 openbsc_vty_add_cmds();
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01001942
Harald Welte5013b2a2009-08-07 13:29:14 +02001943 install_element(CONFIG_NODE, &cfg_net_cmd);
1944 install_node(&net_node, config_write_net);
1945 install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02001946 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001947 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1948 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1949 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001950 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01001951 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09001952 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001953 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01001954 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01001955 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01001956 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01001957 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
1958 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
1959 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
1960 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
1961 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
1962 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001963 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01001964 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1965 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1966 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1967 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1968 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1969 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1970 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1971 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1972 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1973 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001974
1975 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02001976 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00001977 install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001978 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02001979 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001980 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001981 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1982 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001983 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00001984 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02001985 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001986 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1987 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001988 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001989 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
1990 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001991 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
1992 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001993 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001994 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001995 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02001996 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01001997 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1998 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02001999 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002000 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002001 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
2002 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02002003 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08002004 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08002005 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08002006 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
2007 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
2008 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002009
Harald Welte5258fc42009-03-28 19:07:53 +00002010 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002011 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002012 install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00002013 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002014 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02002015 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002016 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2017 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002018 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002019
Harald Welte5258fc42009-03-28 19:07:53 +00002020 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002021 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00002022 install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002023 install_element(TS_NODE, &cfg_ts_pchan_cmd);
2024 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00002025
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +02002026 bsc_vty_init_extra(net);
Harald Welte40f82892009-05-23 17:31:39 +00002027
Harald Welte68628e82009-03-10 12:17:57 +00002028 return 0;
2029}