blob: 6a05137b624a2d6ffe2bb4b240486bb27154e176 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <stdlib.h>
22#include <unistd.h>
23#include <sys/types.h>
24
25#include <vty/command.h>
Harald Welte684b9752009-08-09 15:13:54 +020026#include <vty/buffer.h>
Harald Welte59b04682009-06-10 05:40:52 +080027#include <vty/vty.h>
28
29#include <arpa/inet.h>
30
Harald Weltef4625b12010-02-20 16:24:02 +010031#include <osmocore/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080032#include <openbsc/gsm_data.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/e1_input.h>
34#include <openbsc/abis_nm.h>
Harald Weltef4625b12010-02-20 16:24:02 +010035#include <osmocore/gsm_utils.h>
Harald Weltefe96f382009-12-22 13:09:29 +010036#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010037#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080038#include <openbsc/db.h>
Harald Weltef4625b12010-02-20 16:24:02 +010039#include <osmocore/talloc.h>
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +010040#include <openbsc/telnet_interface.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020041#include <openbsc/vty.h>
Harald Weltef45981f2010-05-12 20:28:04 +020042#include <openbsc/gprs_ns.h>
Harald Welte59b04682009-06-10 05:40:52 +080043
44static struct gsm_network *gsmnet;
45
Harald Welted6b62e32010-05-12 17:19:53 +000046/* FIXME: this should go to some common file */
47static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-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 Welted6b62e32010-05-12 17:19:53 +000058static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-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 Weltee87eb462009-08-07 13:29:14 +020073struct cmd_node net_node = {
74 GSMNET_NODE,
75 "%s(network)#",
76 1,
77};
78
Harald Welte59b04682009-06-10 05:40:52 +080079struct 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
Harald Welte59b04682009-06-10 05:40:52 +080097static 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{
104 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);
107}
108
Harald Weltefe96f382009-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 Welte59b04682009-06-10 05:40:52 +0800129static void net_dump_vty(struct vty *vty, struct gsm_network *net)
130{
Harald Weltefe96f382009-12-22 13:09:29 +0100131 struct pchan_load pl;
132
Harald Welte59b04682009-06-10 05:40:52 +0800133 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);
136 vty_out(vty, " Long network name: '%s'%s",
137 net->name_long, VTY_NEWLINE);
138 vty_out(vty, " Short network name: '%s'%s",
139 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200140 vty_out(vty, " Authentication policy: %s%s",
141 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100142 vty_out(vty, " Location updating reject cause: %u%s",
143 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900144 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
145 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100146 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
147 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100148 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
149 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100150 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
151 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100152 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
153 VTY_NEWLINE);
Harald Weltefe96f382009-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 Welte59b04682009-06-10 05:40:52 +0800157}
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{
170 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,
181 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
182 vty_out(vty, " E1 TEI %u, SAPI %u%s",
183 e1l->tei, e1l->sapi, VTY_NEWLINE);
184}
185
186static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
187{
Harald Weltefe96f382009-12-22 13:09:29 +0100188 struct pchan_load pl;
189
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200190 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-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 Freythera098dfb2009-08-21 14:44:12 +0200193 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200194 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200195 bts->num_trx, VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100196 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100197 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-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 Welteb761bf82009-12-12 18:17:25 +0100201 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-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 Welte8c973ba2009-12-21 23:08:18 +0100207 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200208 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800209 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200210 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800211 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200212 bts->oml_tei, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800213 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 Welte25572872009-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 Welte59b04682009-06-10 05:40:52 +0800223 /* FIXME: oml_link, chan_desc */
Harald Weltefe96f382009-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 Welte59b04682009-06-10 05:40:52 +0800228}
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) {
241 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
242 VTY_NEWLINE);
243 return CMD_WARNING;
244 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200245 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800246 return CMD_SUCCESS;
247 }
248 /* print all BTS's */
249 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200250 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800251
252 return CMD_SUCCESS;
253}
254
Harald Welte62868882009-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 Welte97ceef92009-08-06 19:06:46 +0200283static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
284{
Harald Welte62868882009-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 Welte97ceef92009-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 Weltee87eb462009-08-07 13:29:14 +0200296 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-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 Weltee87eb462009-08-07 13:29:14 +0200300 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100301 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200302 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-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 Welte97ceef92009-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 Weltea9251762010-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 Welte97ceef92009-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 Weltee87eb462009-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 Freyther6d82b7c2009-11-19 16:38:49 +0100356 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200357 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200358 VTY_NEWLINE);
Harald Weltee87eb462009-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)cbd46102009-08-13 10:14:26 +0200361 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-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 Weltea54a2bb2009-12-01 18:04:30 +0530366 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +0200367 vty_out(vty, " periodic location update %u%s",
Harald Weltea54a2bb2009-12-01 18:04:30 +0530368 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200369 vty_out(vty, " channel allocator %s%s",
370 bts->chan_alloc_reverse ? "descending" : "ascending",
371 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-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 Freyther697ed2b2010-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 Welte8c973ba2009-12-21 23:08:18 +0100384 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200385 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-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 Welte25572872009-10-20 00:22:00 +0200388 if (is_ipaccess_bts(bts)) {
Harald Weltee87eb462009-08-07 13:29:14 +0200389 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200390 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte25572872009-10-20 00:22:00 +0200391 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
392 } else {
Harald Welte62868882009-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 Weltea9251762010-05-11 23:50:21 +0200396 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-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 Weltee87eb462009-08-07 13:29:14 +0200412static int config_write_net(struct vty *vty)
413{
414 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200415 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200416 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-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)a59a27e2009-08-12 14:42:23 +0200419 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100420 vty_out(vty, " location updating reject cause %u%s",
421 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900422 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100423 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100424 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
425 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100426 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100427 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-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 Freyther26ba2e72009-11-21 21:18:38 +0100440 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-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 Weltee87eb462009-08-07 13:29:14 +0200451
452 return CMD_SUCCESS;
453}
Harald Welte97ceef92009-08-06 19:06:46 +0200454
Harald Welte59b04682009-06-10 05:40:52 +0800455static 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 Welte91afe4c2009-06-20 18:15:19 +0200459 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200460 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200461 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200462 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800463 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 Welte25572872009-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 Welte59b04682009-06-10 05:40:52 +0800474}
475
476DEFUN(show_trx,
477 show_trx_cmd,
478 "show trx [bts_nr] [trx_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200479 SHOW_STR "Display information about a TRX\n"
480 "BTS Number\n"
481 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800482{
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) {
492 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
493 VTY_NEWLINE);
494 return CMD_WARNING;
495 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200496 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800497 }
498 if (argc >= 2) {
499 trx_nr = atoi(argv[1]);
500 if (trx_nr >= bts->num_trx) {
501 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
502 VTY_NEWLINE);
503 return CMD_WARNING;
504 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200505 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800506 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 Weltee712a5f2009-06-21 16:17:15 +0200512 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800513 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 Weltee712a5f2009-06-21 16:17:15 +0200519 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800520 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200521 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800522 trx_dump_vty(vty, trx);
523 }
524 }
525
526 return CMD_SUCCESS;
527}
528
Harald Welte97ceef92009-08-06 19:06:46 +0200529
Harald Welte59b04682009-06-10 05:40:52 +0800530static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
531{
Harald Welte59b04682009-06-10 05:40:52 +0800532 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 Welte87504212009-12-02 01:56:49 +0530537 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800538 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 Welte59b04682009-06-10 05:40:52 +0800541}
542
543DEFUN(show_ts,
544 show_ts_cmd,
545 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte9e002452010-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 Welte59b04682009-06-10 05:40:52 +0800548{
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) {
559 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
560 VTY_NEWLINE);
561 return CMD_WARNING;
562 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200563 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800564 }
565 if (argc >= 2) {
566 trx_nr = atoi(argv[1]);
567 if (trx_nr >= bts->num_trx) {
568 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
569 VTY_NEWLINE);
570 return CMD_WARNING;
571 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200572 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800573 }
574 if (argc >= 3) {
575 ts_nr = atoi(argv[2]);
576 if (ts_nr >= TRX_NR_TS) {
577 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
578 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 Weltee712a5f2009-06-21 16:17:15 +0200586 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800587 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200588 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800589 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 Freyther1dd0a1b2010-01-06 06:00:40 +0100599static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800600{
Harald Welte91afe4c2009-06-20 18:15:19 +0200601 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800602 subscr->authorized, VTY_NEWLINE);
603 if (subscr->name)
604 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
605 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 Freythercd8bacf2009-08-19 12:53:57 +0200610 if (subscr->tmsi != GSM_RESERVED_TMSI)
611 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200612 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100613
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200614 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800615}
616
Harald Welte44007742009-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
Harald Welte59b04682009-06-10 05:40:52 +0800651static void lchan_dump_vty(struct vty *vty, struct gsm_lchan *lchan)
652{
Harald Welte44007742009-12-22 21:43:14 +0100653 int idx;
654
Harald Welte59b04682009-06-10 05:40:52 +0800655 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200656 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
Harald Welte (local)02204d02009-12-27 18:05:25 +0100657 lchan->ts->trx->bts->nr, gsm_lchant_name(lchan->type),
Harald Welte59b04682009-06-10 05:40:52 +0800658 VTY_NEWLINE);
Holger Hans Peter Freyther065b8112010-03-23 06:41:45 +0100659 vty_out(vty, " Use Count: %u, State: %s%s", lchan->conn.use_count,
Harald Welteab2534c2009-12-29 10:52:38 +0100660 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-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 Freyther065b8112010-03-23 06:41:45 +0100666 if (lchan->conn.subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800667 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther065b8112010-03-23 06:41:45 +0100668 subscr_dump_vty(vty, lchan->conn.subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800669 } else
670 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530671 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
672 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200673 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-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 Welte44007742009-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 Welte59b04682009-06-10 05:40:52 +0800684}
685
Harald Welte03740842009-06-10 23:11:52 +0800686#if 0
687TODO: callref and remote callref of call must be resolved to get gsm_trans object
Harald Welte59b04682009-06-10 05:40:52 +0800688static void call_dump_vty(struct vty *vty, struct gsm_call *call)
689{
690 vty_out(vty, "Call Type %u, State %u, Transaction ID %u%s",
691 call->type, call->state, call->transaction_id, VTY_NEWLINE);
692
693 if (call->local_lchan) {
694 vty_out(vty, "Call Local Channel:%s", VTY_NEWLINE);
695 lchan_dump_vty(vty, call->local_lchan);
696 } else
697 vty_out(vty, "Call has no Local Channel%s", VTY_NEWLINE);
698
699 if (call->remote_lchan) {
700 vty_out(vty, "Call Remote Channel:%s", VTY_NEWLINE);
701 lchan_dump_vty(vty, call->remote_lchan);
702 } else
703 vty_out(vty, "Call has no Remote Channel%s", VTY_NEWLINE);
704
705 if (call->called_subscr) {
706 vty_out(vty, "Called Subscriber:%s", VTY_NEWLINE);
707 subscr_dump_vty(vty, call->called_subscr);
708 } else
709 vty_out(vty, "Call has no Called Subscriber%s", VTY_NEWLINE);
710}
Harald Welte03740842009-06-10 23:11:52 +0800711#endif
Harald Welte59b04682009-06-10 05:40:52 +0800712
713DEFUN(show_lchan,
714 show_lchan_cmd,
715 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200716 SHOW_STR "Display information about a logical channel\n"
717 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
718 "Logical Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800719{
720 struct gsm_network *net = gsmnet;
721 struct gsm_bts *bts;
722 struct gsm_bts_trx *trx;
723 struct gsm_bts_trx_ts *ts;
724 struct gsm_lchan *lchan;
725 int bts_nr, trx_nr, ts_nr, lchan_nr;
726
727 if (argc >= 1) {
728 /* use the BTS number that the user has specified */
729 bts_nr = atoi(argv[0]);
730 if (bts_nr >= net->num_bts) {
731 vty_out(vty, "%% can't find BTS %s%s", argv[0],
732 VTY_NEWLINE);
733 return CMD_WARNING;
734 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200735 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800736 }
737 if (argc >= 2) {
738 trx_nr = atoi(argv[1]);
739 if (trx_nr >= bts->num_trx) {
740 vty_out(vty, "%% can't find TRX %s%s", argv[1],
741 VTY_NEWLINE);
742 return CMD_WARNING;
743 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200744 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800745 }
746 if (argc >= 3) {
747 ts_nr = atoi(argv[2]);
748 if (ts_nr >= TRX_NR_TS) {
749 vty_out(vty, "%% can't find TS %s%s", argv[2],
750 VTY_NEWLINE);
751 return CMD_WARNING;
752 }
753 ts = &trx->ts[ts_nr];
754 }
755 if (argc >= 4) {
756 lchan_nr = atoi(argv[3]);
757 if (lchan_nr >= TS_MAX_LCHAN) {
758 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
759 VTY_NEWLINE);
760 return CMD_WARNING;
761 }
762 lchan = &ts->lchan[lchan_nr];
763 lchan_dump_vty(vty, lchan);
764 return CMD_SUCCESS;
765 }
766 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200767 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800768 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200769 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800770 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
771 ts = &trx->ts[ts_nr];
772 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
773 lchan_nr++) {
774 lchan = &ts->lchan[lchan_nr];
775 if (lchan->type == GSM_LCHAN_NONE)
776 continue;
777 lchan_dump_vty(vty, lchan);
778 }
779 }
780 }
781 }
782
783 return CMD_SUCCESS;
784}
785
786static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
787{
788 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
789}
790
791DEFUN(show_e1drv,
792 show_e1drv_cmd,
793 "show e1_driver",
794 SHOW_STR "Display information about available E1 drivers\n")
795{
796 struct e1inp_driver *drv;
797
798 llist_for_each_entry(drv, &e1inp_driver_list, list)
799 e1drv_dump_vty(vty, drv);
800
801 return CMD_SUCCESS;
802}
803
804static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
805{
806 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
807 line->num, line->name ? line->name : "",
808 line->driver->name, VTY_NEWLINE);
809}
810
811DEFUN(show_e1line,
812 show_e1line_cmd,
813 "show e1_line [line_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200814 SHOW_STR "Display information about a E1 line\n"
815 "E1 Line Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800816{
817 struct e1inp_line *line;
818
819 if (argc >= 1) {
820 int num = atoi(argv[0]);
821 llist_for_each_entry(line, &e1inp_line_list, list) {
822 if (line->num == num) {
823 e1line_dump_vty(vty, line);
824 return CMD_SUCCESS;
825 }
826 }
827 return CMD_WARNING;
828 }
829
830 llist_for_each_entry(line, &e1inp_line_list, list)
831 e1line_dump_vty(vty, line);
832
833 return CMD_SUCCESS;
834}
835
836static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
837{
Harald Welte62868882009-08-08 16:12:58 +0200838 if (ts->type == E1INP_TS_TYPE_NONE)
839 return;
Harald Welte59b04682009-06-10 05:40:52 +0800840 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
841 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
842 VTY_NEWLINE);
843}
844
845DEFUN(show_e1ts,
846 show_e1ts_cmd,
847 "show e1_timeslot [line_nr] [ts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200848 SHOW_STR "Display information about a E1 timeslot\n"
849 "E1 Line Number\n" "E1 Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800850{
Harald Welte49c79562009-11-17 06:12:16 +0100851 struct e1inp_line *line = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800852 struct e1inp_ts *ts;
853 int ts_nr;
854
855 if (argc == 0) {
856 llist_for_each_entry(line, &e1inp_line_list, list) {
857 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
858 ts = &line->ts[ts_nr];
859 e1ts_dump_vty(vty, ts);
860 }
861 }
862 return CMD_SUCCESS;
863 }
864 if (argc >= 1) {
865 int num = atoi(argv[0]);
866 llist_for_each_entry(line, &e1inp_line_list, list) {
867 if (line->num == num)
868 break;
869 }
870 if (!line || line->num != num) {
871 vty_out(vty, "E1 line %s is invalid%s",
872 argv[0], VTY_NEWLINE);
873 return CMD_WARNING;
874 }
875 }
876 if (argc >= 2) {
877 ts_nr = atoi(argv[1]);
878 if (ts_nr > NUM_E1_TS) {
879 vty_out(vty, "E1 timeslot %s is invalid%s",
880 argv[1], VTY_NEWLINE);
881 return CMD_WARNING;
882 }
883 ts = &line->ts[ts_nr];
884 e1ts_dump_vty(vty, ts);
885 return CMD_SUCCESS;
886 } else {
887 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
888 ts = &line->ts[ts_nr];
889 e1ts_dump_vty(vty, ts);
890 }
891 return CMD_SUCCESS;
892 }
893 return CMD_SUCCESS;
894}
895
896static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
897{
898 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
899 subscr_dump_vty(vty, pag->subscr);
900}
901
902static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
903{
904 struct gsm_paging_request *pag;
905
906 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
907 paging_dump_vty(vty, pag);
908}
909
910DEFUN(show_paging,
911 show_paging_cmd,
912 "show paging [bts_nr]",
Harald Welte9e002452010-05-11 21:53:49 +0200913 SHOW_STR "Display information about paging reuqests of a BTS\n"
914 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800915{
916 struct gsm_network *net = gsmnet;
917 struct gsm_bts *bts;
918 int bts_nr;
919
920 if (argc >= 1) {
921 /* use the BTS number that the user has specified */
922 bts_nr = atoi(argv[0]);
923 if (bts_nr >= net->num_bts) {
924 vty_out(vty, "%% can't find BTS %s%s", argv[0],
925 VTY_NEWLINE);
926 return CMD_WARNING;
927 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200928 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800929 bts_paging_dump_vty(vty, bts);
930
931 return CMD_SUCCESS;
932 }
933 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200934 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800935 bts_paging_dump_vty(vty, bts);
936 }
937
938 return CMD_SUCCESS;
939}
940
Harald Welte9e002452010-05-11 21:53:49 +0200941#define NETWORK_STR "Configure the GSM network\n"
942
Harald Weltee87eb462009-08-07 13:29:14 +0200943DEFUN(cfg_net,
944 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +0200945 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +0200946{
947 vty->index = gsmnet;
948 vty->node = GSMNET_NODE;
949
950 return CMD_SUCCESS;
951}
952
953
954DEFUN(cfg_net_ncc,
955 cfg_net_ncc_cmd,
956 "network country code <1-999>",
957 "Set the GSM network country code")
958{
959 gsmnet->country_code = atoi(argv[0]);
960
961 return CMD_SUCCESS;
962}
963
964DEFUN(cfg_net_mnc,
965 cfg_net_mnc_cmd,
966 "mobile network code <1-999>",
967 "Set the GSM mobile network code")
968{
969 gsmnet->network_code = atoi(argv[0]);
970
971 return CMD_SUCCESS;
972}
973
974DEFUN(cfg_net_name_short,
975 cfg_net_name_short_cmd,
976 "short name NAME",
977 "Set the short GSM network name")
978{
979 if (gsmnet->name_short)
980 talloc_free(gsmnet->name_short);
981
982 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
983
984 return CMD_SUCCESS;
985}
986
987DEFUN(cfg_net_name_long,
988 cfg_net_name_long_cmd,
989 "long name NAME",
990 "Set the long GSM network name")
991{
992 if (gsmnet->name_long)
993 talloc_free(gsmnet->name_long);
994
995 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
996
997 return CMD_SUCCESS;
998}
Harald Welte59b04682009-06-10 05:40:52 +0800999
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001000DEFUN(cfg_net_auth_policy,
1001 cfg_net_auth_policy_cmd,
1002 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001003 "Authentication (not cryptographic)\n"
1004 "Set the GSM network authentication policy\n"
1005 "Require the MS to be activated in HLR\n"
1006 "Accept all MS, whether in HLR or not\n"
1007 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001008{
1009 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
1010
1011 gsmnet->auth_policy = policy;
1012
1013 return CMD_SUCCESS;
1014}
1015
Harald Welte59936d72009-11-18 20:33:19 +01001016DEFUN(cfg_net_reject_cause,
1017 cfg_net_reject_cause_cmd,
1018 "location updating reject cause <2-111>",
1019 "Set the reject cause of location updating reject\n")
1020{
1021 gsmnet->reject_cause = atoi(argv[0]);
1022
1023 return CMD_SUCCESS;
1024}
1025
Harald Weltecca253a2009-08-30 15:47:06 +09001026DEFUN(cfg_net_encryption,
1027 cfg_net_encryption_cmd,
1028 "encryption a5 (0|1|2)",
1029 "Enable or disable encryption (A5) for this network\n")
1030{
Andreas.Eversberg53293292009-11-17 09:55:26 +01001031 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001032
1033 return CMD_SUCCESS;
1034}
1035
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001036DEFUN(cfg_net_neci,
1037 cfg_net_neci_cmd,
1038 "neci (0|1)",
1039 "Set if NECI of cell selection is to be set")
1040{
1041 gsmnet->neci = atoi(argv[0]);
1042 return CMD_SUCCESS;
1043}
1044
Harald Welte52af1952009-12-13 10:53:12 +01001045DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1046 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001047 "Radio Resource Location Protocol\n"
1048 "Set the Radio Resource Location Protocol Mode\n"
1049 "Don't send RRLP request\n"
1050 "Request MS-based location\n"
1051 "Request any location, prefer MS-based\n"
1052 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001053{
1054 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1055
1056 return CMD_SUCCESS;
1057}
1058
Harald Weltea310f3e2009-12-14 09:00:24 +01001059DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1060 "mm info (0|1)",
1061 "Whether to send MM INFO after LOC UPD ACCEPT")
1062{
1063 gsmnet->send_mm_info = atoi(argv[0]);
1064
1065 return CMD_SUCCESS;
1066}
1067
Harald Welte9e002452010-05-11 21:53:49 +02001068#define HANDOVER_STR "Handover Options\n"
1069
Harald Welte0af9c9f2009-12-19 21:41:52 +01001070DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1071 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001072 HANDOVER_STR
1073 "Don't perform in-call handover\n"
1074 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001075{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001076 int enable = atoi(argv[0]);
1077
1078 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001079 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1080 "is enabled by using the -P command line option%s",
1081 VTY_NEWLINE);
1082 return CMD_WARNING;
1083 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001084 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001085
1086 return CMD_SUCCESS;
1087}
1088
Harald Welte9e002452010-05-11 21:53:49 +02001089#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1090#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1091#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1092#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
1093
Harald Weltea8062f12009-12-21 16:51:50 +01001094DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1095 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001096 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001097 "How many RxLev measurements are used for averaging")
1098{
1099 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1100 return CMD_SUCCESS;
1101}
1102
1103DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1104 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001105 HO_WIN_RXQUAL_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001106 "How many RxQual measurements are used for averaging")
1107{
1108 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1109 return CMD_SUCCESS;
1110}
1111
1112DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1113 "handover window rxlev neighbor averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001114 HO_WIN_RXLEV_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001115 "How many RxQual measurements are used for averaging")
1116{
1117 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1118 return CMD_SUCCESS;
1119}
1120
1121DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1122 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001123 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001124 "How often to check if we have a better cell (SACCH frames)")
1125{
1126 gsmnet->handover.pwr_interval = atoi(argv[0]);
1127 return CMD_SUCCESS;
1128}
1129
1130DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1131 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001132 HO_PBUDGET_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001133 "How many dB does a neighbor to be stronger to become a HO candidate")
1134{
1135 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1136 return CMD_SUCCESS;
1137}
1138
1139DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1140 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001141 HANDOVER_STR
Harald Weltea8062f12009-12-21 16:51:50 +01001142 "How big is the maximum timing advance before HO is forced")
1143{
1144 gsmnet->handover.max_distance = atoi(argv[0]);
1145 return CMD_SUCCESS;
1146}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001147
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001148#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001149 DEFUN(cfg_net_T##number, \
1150 cfg_net_T##number##_cmd, \
1151 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001152 "Configure GSM Timers\n" \
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001153 doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001154{ \
1155 int value = atoi(argv[0]); \
1156 \
1157 if (value < 0 || value > 65535) { \
1158 vty_out(vty, "Timer value %s out of range.%s", \
1159 argv[0], VTY_NEWLINE); \
1160 return CMD_WARNING; \
1161 } \
1162 \
1163 gsmnet->T##number = value; \
1164 return CMD_SUCCESS; \
1165}
1166
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001167DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.")
1168DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.")
1169DECLARE_TIMER(3105, "Currently not used.")
1170DECLARE_TIMER(3107, "Currently not used.")
1171DECLARE_TIMER(3109, "Currently not used.")
1172DECLARE_TIMER(3111, "Currently not used.")
1173DECLARE_TIMER(3113, "Set the time to try paging a subscriber.")
1174DECLARE_TIMER(3115, "Currently not used.")
1175DECLARE_TIMER(3117, "Currently not used.")
1176DECLARE_TIMER(3119, "Currently not used.")
1177DECLARE_TIMER(3141, "Currently not used.")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001178
1179
Harald Welte59b04682009-06-10 05:40:52 +08001180/* per-BTS configuration */
1181DEFUN(cfg_bts,
1182 cfg_bts_cmd,
1183 "bts BTS_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001184 "Select a BTS to configure\n"
1185 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001186{
1187 int bts_nr = atoi(argv[0]);
1188 struct gsm_bts *bts;
1189
Harald Weltee712a5f2009-06-21 16:17:15 +02001190 if (bts_nr > gsmnet->num_bts) {
1191 vty_out(vty, "%% The next unused BTS number is %u%s",
1192 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001193 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001194 } else if (bts_nr == gsmnet->num_bts) {
1195 /* allocate a new one */
1196 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1197 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001198 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001199 bts = gsm_bts_num(gsmnet, bts_nr);
1200
Daniel Willmann580085f2010-01-11 13:43:07 +01001201 if (!bts) {
1202 vty_out(vty, "%% Unable to allocate BTS %u%s",
1203 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001204 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001205 }
Harald Welte59b04682009-06-10 05:40:52 +08001206
1207 vty->index = bts;
1208 vty->node = BTS_NODE;
1209
1210 return CMD_SUCCESS;
1211}
1212
1213DEFUN(cfg_bts_type,
1214 cfg_bts_type_cmd,
1215 "type TYPE",
1216 "Set the BTS type\n")
1217{
1218 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001219 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001220
Harald Welte59698fb2010-01-10 18:01:52 +01001221 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1222 if (rc < 0)
1223 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001224
Harald Welte59b04682009-06-10 05:40:52 +08001225 return CMD_SUCCESS;
1226}
1227
Harald Welte91afe4c2009-06-20 18:15:19 +02001228DEFUN(cfg_bts_band,
1229 cfg_bts_band_cmd,
1230 "band BAND",
1231 "Set the frequency band of this BTS\n")
1232{
1233 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001234 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001235
1236 if (band < 0) {
1237 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1238 band, VTY_NEWLINE);
1239 return CMD_WARNING;
1240 }
1241
1242 bts->band = band;
1243
1244 return CMD_SUCCESS;
1245}
1246
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001247DEFUN(cfg_bts_ci,
1248 cfg_bts_ci_cmd,
1249 "cell_identity <0-65535>",
1250 "Set the Cell identity of this BTS\n")
1251{
1252 struct gsm_bts *bts = vty->index;
1253 int ci = atoi(argv[0]);
1254
1255 if (ci < 0 || ci > 0xffff) {
1256 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1257 ci, VTY_NEWLINE);
1258 return CMD_WARNING;
1259 }
1260 bts->cell_identity = ci;
1261
1262 return CMD_SUCCESS;
1263}
1264
Harald Welte59b04682009-06-10 05:40:52 +08001265DEFUN(cfg_bts_lac,
1266 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001267 "location_area_code <0-65535>",
Harald Welte59b04682009-06-10 05:40:52 +08001268 "Set the Location Area Code (LAC) of this BTS\n")
1269{
1270 struct gsm_bts *bts = vty->index;
1271 int lac = atoi(argv[0]);
1272
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001273 if (lac < 0 || lac > 0xffff) {
1274 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001275 lac, VTY_NEWLINE);
1276 return CMD_WARNING;
1277 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001278
1279 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1280 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1281 lac, VTY_NEWLINE);
1282 return CMD_WARNING;
1283 }
1284
Harald Welte59b04682009-06-10 05:40:52 +08001285 bts->location_area_code = lac;
1286
1287 return CMD_SUCCESS;
1288}
1289
Harald Weltea54a2bb2009-12-01 18:04:30 +05301290
Harald Welte59b04682009-06-10 05:40:52 +08001291DEFUN(cfg_bts_tsc,
1292 cfg_bts_tsc_cmd,
1293 "training_sequence_code <0-255>",
1294 "Set the Training Sequence Code (TSC) of this BTS\n")
1295{
1296 struct gsm_bts *bts = vty->index;
1297 int tsc = atoi(argv[0]);
1298
1299 if (tsc < 0 || tsc > 0xff) {
1300 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1301 tsc, VTY_NEWLINE);
1302 return CMD_WARNING;
1303 }
1304 bts->tsc = tsc;
1305
1306 return CMD_SUCCESS;
1307}
1308
1309DEFUN(cfg_bts_bsic,
1310 cfg_bts_bsic_cmd,
1311 "base_station_id_code <0-63>",
1312 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1313{
1314 struct gsm_bts *bts = vty->index;
1315 int bsic = atoi(argv[0]);
1316
1317 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001318 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001319 bsic, VTY_NEWLINE);
1320 return CMD_WARNING;
1321 }
1322 bts->bsic = bsic;
1323
1324 return CMD_SUCCESS;
1325}
1326
1327
1328DEFUN(cfg_bts_unit_id,
1329 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001330 "ip.access unit_id <0-65534> <0-255>",
1331 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001332{
1333 struct gsm_bts *bts = vty->index;
1334 int site_id = atoi(argv[0]);
1335 int bts_id = atoi(argv[1]);
1336
Harald Weltef515aa02009-08-07 13:27:09 +02001337 if (!is_ipaccess_bts(bts)) {
1338 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1339 return CMD_WARNING;
1340 }
1341
Harald Welte59b04682009-06-10 05:40:52 +08001342 bts->ip_access.site_id = site_id;
1343 bts->ip_access.bts_id = bts_id;
1344
1345 return CMD_SUCCESS;
1346}
1347
Harald Welte9e002452010-05-11 21:53:49 +02001348#define OML_STR "Organization & Maintenance Link\n"
1349#define IPA_STR "ip.access Specific Options\n"
1350
Harald Welte25572872009-10-20 00:22:00 +02001351DEFUN(cfg_bts_stream_id,
1352 cfg_bts_stream_id_cmd,
1353 "oml ip.access stream_id <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001354 OML_STR IPA_STR
Harald Welte25572872009-10-20 00:22:00 +02001355 "Set the ip.access Stream ID of the OML link of this BTS\n")
1356{
1357 struct gsm_bts *bts = vty->index;
1358 int stream_id = atoi(argv[0]);
1359
1360 if (!is_ipaccess_bts(bts)) {
1361 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1362 return CMD_WARNING;
1363 }
1364
1365 bts->oml_tei = stream_id;
1366
1367 return CMD_SUCCESS;
1368}
1369
Harald Welte9e002452010-05-11 21:53:49 +02001370#define OML_E1_STR OML_STR "E1 Line\n"
Harald Welte25572872009-10-20 00:22:00 +02001371
Harald Welte62868882009-08-08 16:12:58 +02001372DEFUN(cfg_bts_oml_e1,
1373 cfg_bts_oml_e1_cmd,
1374 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte9e002452010-05-11 21:53:49 +02001375 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001376 "E1 interface to be used for OML\n")
1377{
1378 struct gsm_bts *bts = vty->index;
1379
1380 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1381
1382 return CMD_SUCCESS;
1383}
1384
1385
1386DEFUN(cfg_bts_oml_e1_tei,
1387 cfg_bts_oml_e1_tei_cmd,
1388 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001389 OML_E1_STR
Harald Welte62868882009-08-08 16:12:58 +02001390 "Set the TEI to be used for OML")
1391{
1392 struct gsm_bts *bts = vty->index;
1393
1394 bts->oml_tei = atoi(argv[0]);
1395
1396 return CMD_SUCCESS;
1397}
1398
Harald Welte3e774612009-08-10 13:48:16 +02001399DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1400 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001401 "Channnel Allocator\n" "Channel Allocator\n"
1402 "Allocate Timeslots and Transceivers in ascending order\n"
1403 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001404{
1405 struct gsm_bts *bts = vty->index;
1406
1407 if (!strcmp(argv[0], "ascending"))
1408 bts->chan_alloc_reverse = 0;
1409 else
1410 bts->chan_alloc_reverse = 1;
1411
1412 return CMD_SUCCESS;
1413}
1414
Harald Welte9e002452010-05-11 21:53:49 +02001415#define RACH_STR "Random Access Control Channel\n"
1416
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001417DEFUN(cfg_bts_rach_tx_integer,
1418 cfg_bts_rach_tx_integer_cmd,
1419 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001420 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001421 "Set the raw tx integer value in RACH Control parameters IE")
1422{
1423 struct gsm_bts *bts = vty->index;
1424 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1425 return CMD_SUCCESS;
1426}
1427
1428DEFUN(cfg_bts_rach_max_trans,
1429 cfg_bts_rach_max_trans_cmd,
1430 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001431 RACH_STR
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001432 "Set the maximum number of RACH burst transmissions")
1433{
1434 struct gsm_bts *bts = vty->index;
1435 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1436 return CMD_SUCCESS;
1437}
1438
Harald Welte9e002452010-05-11 21:53:49 +02001439#define NM_STR "Network Management\n"
1440
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001441DEFUN(cfg_bts_rach_nm_b_thresh,
1442 cfg_bts_rach_nm_b_thresh_cmd,
1443 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001444 RACH_STR NM_STR
1445 "Set the NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001446{
1447 struct gsm_bts *bts = vty->index;
1448 bts->rach_b_thresh = atoi(argv[0]);
1449 return CMD_SUCCESS;
1450}
1451
1452DEFUN(cfg_bts_rach_nm_ldavg,
1453 cfg_bts_rach_nm_ldavg_cmd,
1454 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001455 RACH_STR NM_STR
1456 "Set the NM Loadaverage Slots value")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001457{
1458 struct gsm_bts *bts = vty->index;
1459 bts->rach_ldavg_slots = atoi(argv[0]);
1460 return CMD_SUCCESS;
1461}
1462
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001463DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1464 "cell barred (0|1)",
1465 "Should this cell be barred from access?")
1466{
1467 struct gsm_bts *bts = vty->index;
1468
Harald Welte8c973ba2009-12-21 23:08:18 +01001469 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001470
1471 return CMD_SUCCESS;
1472}
1473
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001474DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1475 "rach emergency call allowed (0|1)",
1476 "Should this cell allow emergency calls?")
1477{
1478 struct gsm_bts *bts = vty->index;
1479
1480 if (atoi(argv[0]) == 0)
1481 bts->si_common.rach_control.t2 |= 0x4;
1482 else
1483 bts->si_common.rach_control.t2 &= ~0x4;
1484
1485 return CMD_SUCCESS;
1486}
1487
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001488DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1489 "ms max power <0-40>",
1490 "Maximum transmit power of the MS")
1491{
1492 struct gsm_bts *bts = vty->index;
1493
1494 bts->ms_max_power = atoi(argv[0]);
1495
1496 return CMD_SUCCESS;
1497}
1498
Harald Welteb761bf82009-12-12 18:17:25 +01001499DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1500 "cell reselection hysteresis <0-14>",
1501 "Cell Re-Selection Hysteresis in dB")
1502{
1503 struct gsm_bts *bts = vty->index;
1504
1505 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1506
1507 return CMD_SUCCESS;
1508}
1509
1510DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1511 "rxlev access min <0-63>",
1512 "Minimum RxLev needed for cell access (better than -110dBm)")
1513{
1514 struct gsm_bts *bts = vty->index;
1515
1516 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1517
1518 return CMD_SUCCESS;
1519}
1520
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001521DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1522 "periodic location update <0-1530>",
1523 "Periodic Location Updating Interval in Minutes")
1524{
1525 struct gsm_bts *bts = vty->index;
1526
Harald Weltea54a2bb2009-12-01 18:04:30 +05301527 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001528
1529 return CMD_SUCCESS;
1530}
1531
Harald Welte9e002452010-05-11 21:53:49 +02001532#define GPRS_TEXT "GPRS Packet Network\n"
1533
Harald Welte410575a2010-03-14 23:30:30 +08001534DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02001535 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001536 GPRS_TEXT
1537 "GPRS Cell Settings\n"
Harald Welte3055e332010-03-14 15:37:43 +08001538 "GPRS BSSGP VC Identifier")
1539{
1540 struct gsm_bts *bts = vty->index;
1541
Harald Weltecb20b7a2010-04-18 15:51:20 +02001542 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001543 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1544 return CMD_WARNING;
1545 }
1546
Harald Welte3055e332010-03-14 15:37:43 +08001547 bts->gprs.cell.bvci = atoi(argv[0]);
1548
1549 return CMD_SUCCESS;
1550}
1551
Harald Welte4a048c52010-03-22 11:48:36 +08001552DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
1553 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001554 GPRS_TEXT
Harald Welte4a048c52010-03-22 11:48:36 +08001555 "GPRS NS Entity Identifier")
1556{
1557 struct gsm_bts *bts = vty->index;
1558
Harald Weltecb20b7a2010-04-18 15:51:20 +02001559 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08001560 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1561 return CMD_WARNING;
1562 }
1563
1564 bts->gprs.nse.nsei = atoi(argv[0]);
1565
1566 return CMD_SUCCESS;
1567}
1568
Harald Welte9e002452010-05-11 21:53:49 +02001569#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
1570 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08001571
Harald Welte3055e332010-03-14 15:37:43 +08001572DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
1573 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001574 GPRS_TEXT NSVC_TEXT
1575 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08001576 "GPRS NS VC Identifier")
1577{
1578 struct gsm_bts *bts = vty->index;
1579 int idx = atoi(argv[0]);
1580
Harald Weltecb20b7a2010-04-18 15:51:20 +02001581 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001582 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1583 return CMD_WARNING;
1584 }
1585
Harald Welte3055e332010-03-14 15:37:43 +08001586 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
1587
1588 return CMD_SUCCESS;
1589}
1590
Harald Welte410575a2010-03-14 23:30:30 +08001591DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
1592 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001593 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001594 "GPRS NS Local UDP Port")
1595{
1596 struct gsm_bts *bts = vty->index;
1597 int idx = atoi(argv[0]);
1598
Harald Weltecb20b7a2010-04-18 15:51:20 +02001599 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001600 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1601 return CMD_WARNING;
1602 }
1603
Harald Welte410575a2010-03-14 23:30:30 +08001604 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
1605
1606 return CMD_SUCCESS;
1607}
1608
1609DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
1610 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001611 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001612 "GPRS NS Remote UDP Port")
1613{
1614 struct gsm_bts *bts = vty->index;
1615 int idx = atoi(argv[0]);
1616
Harald Weltecb20b7a2010-04-18 15:51:20 +02001617 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001618 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1619 return CMD_WARNING;
1620 }
1621
Harald Welte410575a2010-03-14 23:30:30 +08001622 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
1623
1624 return CMD_SUCCESS;
1625}
1626
1627DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
1628 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02001629 GPRS_TEXT NSVC_TEXT
Harald Welte410575a2010-03-14 23:30:30 +08001630 "GPRS NS Remote IP Address")
1631{
1632 struct gsm_bts *bts = vty->index;
1633 int idx = atoi(argv[0]);
1634 struct in_addr ia;
1635
Harald Weltecb20b7a2010-04-18 15:51:20 +02001636 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001637 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1638 return CMD_WARNING;
1639 }
1640
Harald Welte410575a2010-03-14 23:30:30 +08001641 inet_aton(argv[1], &ia);
1642 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
1643
1644 return CMD_SUCCESS;
1645}
1646
Harald Weltea9251762010-05-11 23:50:21 +02001647DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
1648 "gprs ns timer " NS_TIMERS " <0-255>",
1649 GPRS_TEXT "Network Service\n"
1650 "Network Service Timer\n"
1651 NS_TIMERS_HELP "Timer Value\n")
1652{
1653 struct gsm_bts *bts = vty->index;
1654 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
1655 int val = atoi(argv[1]);
1656
1657 if (bts->gprs.mode == BTS_GPRS_NONE) {
1658 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1659 return CMD_WARNING;
1660 }
1661
1662 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
1663 return CMD_WARNING;
1664
1665 bts->gprs.nse.timer[idx] = val;
1666
1667 return CMD_SUCCESS;
1668}
1669
1670#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)"
1671#define BSSGP_TIMERS_HELP ""
1672
1673DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
1674 "gprs cell timer " BSSGP_TIMERS " <0-255>",
1675 GPRS_TEXT "Cell / BSSGP\n"
1676 "Cell/BSSGP Timer\n"
1677 BSSGP_TIMERS_HELP "Timer Value\n")
1678{
1679 struct gsm_bts *bts = vty->index;
1680 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
1681 int val = atoi(argv[1]);
1682
1683 if (bts->gprs.mode == BTS_GPRS_NONE) {
1684 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1685 return CMD_WARNING;
1686 }
1687
1688 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
1689 return CMD_WARNING;
1690
1691 bts->gprs.cell.timer[idx] = val;
1692
1693 return CMD_SUCCESS;
1694}
1695
Harald Welte3055e332010-03-14 15:37:43 +08001696DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
1697 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001698 GPRS_TEXT
Harald Welte3055e332010-03-14 15:37:43 +08001699 "GPRS Routing Area Code")
1700{
1701 struct gsm_bts *bts = vty->index;
1702
Harald Weltecb20b7a2010-04-18 15:51:20 +02001703 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08001704 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
1705 return CMD_WARNING;
1706 }
1707
Harald Welte3055e332010-03-14 15:37:43 +08001708 bts->gprs.rac = atoi(argv[0]);
1709
1710 return CMD_SUCCESS;
1711}
1712
Harald Weltecb20b7a2010-04-18 15:51:20 +02001713DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
1714 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02001715 GPRS_TEXT
1716 "GPRS Mode for this BTS\n"
1717 "GPRS Disabled on this BTS\n"
1718 "GPRS Enabled on this BTS\n"
1719 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08001720{
1721 struct gsm_bts *bts = vty->index;
1722
Harald Weltecb20b7a2010-04-18 15:51:20 +02001723 bts->gprs.mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08001724
1725 return CMD_SUCCESS;
1726}
1727
Harald Welte9e002452010-05-11 21:53:49 +02001728#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02001729
Harald Welte59b04682009-06-10 05:40:52 +08001730/* per TRX configuration */
1731DEFUN(cfg_trx,
1732 cfg_trx_cmd,
1733 "trx TRX_NR",
Harald Welte9e002452010-05-11 21:53:49 +02001734 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08001735 "Select a TRX to configure")
1736{
1737 int trx_nr = atoi(argv[0]);
1738 struct gsm_bts *bts = vty->index;
1739 struct gsm_bts_trx *trx;
1740
Harald Weltee712a5f2009-06-21 16:17:15 +02001741 if (trx_nr > bts->num_trx) {
1742 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1743 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001744 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001745 } else if (trx_nr == bts->num_trx) {
1746 /* we need to allocate a new one */
1747 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001748 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001749 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001750
Harald Weltee712a5f2009-06-21 16:17:15 +02001751 if (!trx)
1752 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08001753
1754 vty->index = trx;
1755 vty->node = TRX_NODE;
1756
1757 return CMD_SUCCESS;
1758}
1759
1760DEFUN(cfg_trx_arfcn,
1761 cfg_trx_arfcn_cmd,
1762 "arfcn <1-1024>",
1763 "Set the ARFCN for this TRX\n")
1764{
1765 int arfcn = atoi(argv[0]);
1766 struct gsm_bts_trx *trx = vty->index;
1767
1768 /* FIXME: check if this ARFCN is supported by this TRX */
1769
1770 trx->arfcn = arfcn;
1771
1772 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1773 /* FIXME: use OML layer to update the ARFCN */
1774 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1775
1776 return CMD_SUCCESS;
1777}
1778
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01001779DEFUN(cfg_trx_nominal_power,
1780 cfg_trx_nominal_power_cmd,
1781 "nominal power <0-100>",
1782 "Nominal TRX RF Power in dB\n")
1783{
1784 struct gsm_bts_trx *trx = vty->index;
1785
1786 trx->nominal_power = atoi(argv[0]);
1787
1788 return CMD_SUCCESS;
1789}
1790
Harald Welte91afe4c2009-06-20 18:15:19 +02001791DEFUN(cfg_trx_max_power_red,
1792 cfg_trx_max_power_red_cmd,
1793 "max_power_red <0-100>",
1794 "Reduction of maximum BS RF Power in dB\n")
1795{
1796 int maxpwr_r = atoi(argv[0]);
1797 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01001798 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02001799
1800 /* FIXME: check if our BTS type supports more than 12 */
1801 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1802 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1803 maxpwr_r, VTY_NEWLINE);
1804 return CMD_WARNING;
1805 }
1806 if (maxpwr_r & 1) {
1807 vty_out(vty, "%% Power %d dB is not an even value%s",
1808 maxpwr_r, VTY_NEWLINE);
1809 return CMD_WARNING;
1810 }
1811
1812 trx->max_power_red = maxpwr_r;
1813
1814 /* FIXME: make sure we update this using OML */
1815
1816 return CMD_SUCCESS;
1817}
1818
Harald Welte62868882009-08-08 16:12:58 +02001819DEFUN(cfg_trx_rsl_e1,
1820 cfg_trx_rsl_e1_cmd,
1821 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1822 "E1 interface to be used for RSL\n")
1823{
1824 struct gsm_bts_trx *trx = vty->index;
1825
1826 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1827
1828 return CMD_SUCCESS;
1829}
1830
1831DEFUN(cfg_trx_rsl_e1_tei,
1832 cfg_trx_rsl_e1_tei_cmd,
1833 "rsl e1 tei <0-63>",
1834 "Set the TEI to be used for RSL")
1835{
1836 struct gsm_bts_trx *trx = vty->index;
1837
1838 trx->rsl_tei = atoi(argv[0]);
1839
1840 return CMD_SUCCESS;
1841}
1842
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01001843DEFUN(cfg_trx_rf_locked,
1844 cfg_trx_rf_locked_cmd,
1845 "rf_locked (0|1)",
1846 "Turn off RF of the TRX.\n")
1847{
1848 int locked = atoi(argv[0]);
1849 struct gsm_bts_trx *trx = vty->index;
1850
1851 gsm_trx_lock_rf(trx, locked);
1852 return CMD_SUCCESS;
1853}
Harald Welte62868882009-08-08 16:12:58 +02001854
Harald Welte59b04682009-06-10 05:40:52 +08001855/* per TS configuration */
1856DEFUN(cfg_ts,
1857 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02001858 "timeslot <0-7>",
Harald Welte59b04682009-06-10 05:40:52 +08001859 "Select a Timeslot to configure")
1860{
1861 int ts_nr = atoi(argv[0]);
1862 struct gsm_bts_trx *trx = vty->index;
1863 struct gsm_bts_trx_ts *ts;
1864
1865 if (ts_nr >= TRX_NR_TS) {
1866 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1867 TRX_NR_TS, VTY_NEWLINE);
1868 return CMD_WARNING;
1869 }
1870
1871 ts = &trx->ts[ts_nr];
1872
1873 vty->index = ts;
1874 vty->node = TS_NODE;
1875
1876 return CMD_SUCCESS;
1877}
1878
Harald Welte3ffe1b32009-08-07 00:25:23 +02001879DEFUN(cfg_ts_pchan,
1880 cfg_ts_pchan_cmd,
1881 "phys_chan_config PCHAN",
1882 "Physical Channel configuration (TCH/SDCCH/...)")
1883{
1884 struct gsm_bts_trx_ts *ts = vty->index;
1885 int pchanc;
1886
1887 pchanc = gsm_pchan_parse(argv[0]);
1888 if (pchanc < 0)
1889 return CMD_WARNING;
1890
1891 ts->pchan = pchanc;
1892
1893 return CMD_SUCCESS;
1894}
1895
1896DEFUN(cfg_ts_e1_subslot,
1897 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02001898 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte3ffe1b32009-08-07 00:25:23 +02001899 "E1 sub-slot connected to this on-air timeslot")
1900{
1901 struct gsm_bts_trx_ts *ts = vty->index;
1902
Harald Welte62868882009-08-08 16:12:58 +02001903 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02001904
1905 return CMD_SUCCESS;
1906}
Harald Welte59b04682009-06-10 05:40:52 +08001907
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02001908extern int bsc_vty_init_extra(struct gsm_network *net);
1909
Harald Welte59b04682009-06-10 05:40:52 +08001910int bsc_vty_init(struct gsm_network *net)
1911{
1912 gsmnet = net;
1913
1914 cmd_init(1);
1915 vty_init();
1916
Harald Welte7bc28f62010-05-12 16:10:35 +00001917 install_element_ve(&show_net_cmd);
1918 install_element_ve(&show_bts_cmd);
1919 install_element_ve(&show_trx_cmd);
1920 install_element_ve(&show_ts_cmd);
1921 install_element_ve(&show_lchan_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001922
Harald Welte7bc28f62010-05-12 16:10:35 +00001923 install_element_ve(&show_e1drv_cmd);
1924 install_element_ve(&show_e1line_cmd);
1925 install_element_ve(&show_e1ts_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001926
Harald Welte7bc28f62010-05-12 16:10:35 +00001927 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001928
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +02001929 openbsc_vty_add_cmds();
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01001930
Harald Weltee87eb462009-08-07 13:29:14 +02001931 install_element(CONFIG_NODE, &cfg_net_cmd);
1932 install_node(&net_node, config_write_net);
1933 install_default(GSMNET_NODE);
Harald Welte62868882009-08-08 16:12:58 +02001934 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02001935 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1936 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1937 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001938 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01001939 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09001940 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001941 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01001942 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01001943 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01001944 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01001945 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
1946 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
1947 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
1948 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
1949 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
1950 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001951 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01001952 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1953 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1954 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1955 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1956 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1957 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1958 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1959 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1960 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1961 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02001962
1963 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02001964 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08001965 install_default(BTS_NODE);
1966 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02001967 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001968 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001969 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1970 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02001971 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001972 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte25572872009-10-20 00:22:00 +02001973 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02001974 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1975 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02001976 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001977 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
1978 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001979 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
1980 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001981 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001982 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001983 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02001984 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01001985 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1986 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02001987 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02001988 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08001989 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
1990 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02001991 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08001992 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08001993 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08001994 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
1995 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
1996 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08001997
1998 install_element(BTS_NODE, &cfg_trx_cmd);
1999 install_node(&trx_node, dummy_config_write);
2000 install_default(TRX_NODE);
2001 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002002 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02002003 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002004 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
2005 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002006 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002007
2008 install_element(TRX_NODE, &cfg_ts_cmd);
2009 install_node(&ts_node, dummy_config_write);
2010 install_default(TS_NODE);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002011 install_element(TS_NODE, &cfg_ts_pchan_cmd);
2012 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002013
Holger Hans Peter Freytherbdae6f92009-08-10 10:17:50 +02002014 bsc_vty_init_extra(net);
Harald Welte59b04682009-06-10 05:40:52 +08002015
2016 return 0;
2017}