blob: fa9b45da4117d45c24085c7887bf6c17d1cb1472 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
2/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
3 * 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 Welte1bc77352009-03-10 19:47:51 +000031#include <openbsc/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 Weltef9daefd2009-08-09 15:13:54 +020035#include <openbsc/gsm_utils.h>
Harald Welte40f82892009-05-23 17:31:39 +000036#include <openbsc/db.h>
Harald Welte5013b2a2009-08-07 13:29:14 +020037#include <openbsc/talloc.h>
Harald Welte68628e82009-03-10 12:17:57 +000038
39static struct gsm_network *gsmnet;
40
Harald Welte5013b2a2009-08-07 13:29:14 +020041struct cmd_node net_node = {
42 GSMNET_NODE,
43 "%s(network)#",
44 1,
45};
46
Harald Welte68628e82009-03-10 12:17:57 +000047struct cmd_node bts_node = {
48 BTS_NODE,
49 "%s(bts)#",
50 1,
51};
52
53struct cmd_node trx_node = {
54 TRX_NODE,
55 "%s(trx)#",
56 1,
57};
58
59struct cmd_node ts_node = {
60 TS_NODE,
61 "%s(ts)#",
62 1,
63};
64
65static int dummy_config_write(struct vty *v)
66{
67 return CMD_SUCCESS;
68}
69
70static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
71{
Harald Welte1bc77352009-03-10 19:47:51 +000072 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
73 nm_opstate_name(nms->operational), nms->administrative,
74 nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +000075}
76
77static void net_dump_vty(struct vty *vty, struct gsm_network *net)
78{
Harald Welteef235b52009-03-10 12:34:02 +000079 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
80 "and has %u BTS%s", net->country_code, net->network_code,
81 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +000082 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +000083 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +000084 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +000085 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +020086 vty_out(vty, " Authentication policy: %s%s",
87 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +010088 vty_out(vty, " Location updating reject cause: %u%s",
89 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +090090 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
91 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +010092 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
93 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +010094 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
95 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +010096 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
97 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +010098 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
99 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000100}
101
102DEFUN(show_net, show_net_cmd, "show network",
103 SHOW_STR "Display information about a GSM NETWORK\n")
104{
105 struct gsm_network *net = gsmnet;
106 net_dump_vty(vty, net);
107
108 return CMD_SUCCESS;
109}
110
111static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
112{
Harald Welteedb37782009-05-01 14:59:07 +0000113 struct e1inp_line *line;
114
115 if (!e1l) {
116 vty_out(vty, " None%s", VTY_NEWLINE);
117 return;
118 }
119
120 line = e1l->ts->line;
121
122 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
123 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000124 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000125 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000126 e1l->tei, e1l->sapi, VTY_NEWLINE);
127}
128
129static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
130{
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200131 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200132 "BSIC %u, TSC %u and %u TRX%s",
133 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200134 bts->cell_identity,
Harald Weltefcd24452009-06-20 18:15:19 +0200135 bts->location_area_code, bts->bsic, bts->tsc,
136 bts->num_trx, VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100137 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100138 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100139 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
140 VTY_NEWLINE);
141 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100142 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100143 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200144 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000145 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200146 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000147 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200148 bts->oml_tei, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000149 vty_out(vty, " NM State: ");
150 net_dump_nmstate(vty, &bts->nm_state);
151 vty_out(vty, " Site Mgr NM State: ");
152 net_dump_nmstate(vty, &bts->site_mgr.nm_state);
153 vty_out(vty, " Paging: FIXME pending requests, %u free slots%s",
154 bts->paging.available_slots, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200155 if (!is_ipaccess_bts(bts)) {
156 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
157 e1isl_dump_vty(vty, bts->oml_link);
158 }
Harald Welte68628e82009-03-10 12:17:57 +0000159 /* FIXME: oml_link, chan_desc */
160}
161
162DEFUN(show_bts, show_bts_cmd, "show bts [number]",
163 SHOW_STR "Display information about a BTS\n"
164 "BTS number")
165{
166 struct gsm_network *net = gsmnet;
167 int bts_nr;
168
169 if (argc != 0) {
170 /* use the BTS number that the user has specified */
171 bts_nr = atoi(argv[0]);
172 if (bts_nr > net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000173 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000174 VTY_NEWLINE);
175 return CMD_WARNING;
176 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200177 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000178 return CMD_SUCCESS;
179 }
180 /* print all BTS's */
181 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200182 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000183
184 return CMD_SUCCESS;
185}
186
Harald Welte42581822009-08-08 16:12:58 +0200187/* utility functions */
188static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
189 const char *ts, const char *ss)
190{
191 e1_link->e1_nr = atoi(line);
192 e1_link->e1_ts = atoi(ts);
193 if (!strcmp(ss, "full"))
194 e1_link->e1_ts_ss = 255;
195 else
196 e1_link->e1_ts_ss = atoi(ss);
197}
198
199static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
200 const char *prefix)
201{
202 if (!e1_link->e1_ts)
203 return;
204
205 if (e1_link->e1_ts_ss == 255)
206 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
207 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
208 else
209 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
210 prefix, e1_link->e1_nr, e1_link->e1_ts,
211 e1_link->e1_ts_ss, VTY_NEWLINE);
212}
213
214
Harald Welte67ce0732009-08-06 19:06:46 +0200215static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
216{
Harald Welte42581822009-08-08 16:12:58 +0200217 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
218 if (ts->pchan != GSM_PCHAN_NONE)
219 vty_out(vty, " phys_chan_config %s%s",
220 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
221 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welte67ce0732009-08-06 19:06:46 +0200222}
223
224static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
225{
226 int i;
227
Harald Welte5013b2a2009-08-07 13:29:14 +0200228 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
229 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
230 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200231 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
232 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200233
234 for (i = 0; i < TRX_NR_TS; i++)
235 config_write_ts_single(vty, &trx->ts[i]);
236}
237
238static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
239{
240 struct gsm_bts_trx *trx;
241
Harald Welte5013b2a2009-08-07 13:29:14 +0200242 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
243 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
244 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100245 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200246 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200247 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200248 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
249 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200250 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100251 vty_out(vty, " cell reselection hysteresis %u%s",
252 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
253 vty_out(vty, " rxlev access min %u%s",
254 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Harald Weltea43f7892009-12-01 18:04:30 +0530255 if (bts->si_common.chan_desc.t3212)
Harald Welte (local)efc92312009-08-14 23:09:25 +0200256 vty_out(vty, " periodic location update %u%s",
Harald Weltea43f7892009-12-01 18:04:30 +0530257 bts->si_common.chan_desc.t3212 * 10, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200258 vty_out(vty, " channel allocator %s%s",
259 bts->chan_alloc_reverse ? "descending" : "ascending",
260 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100261 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200262 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200263 if (is_ipaccess_bts(bts)) {
Harald Welte5013b2a2009-08-07 13:29:14 +0200264 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200265 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8175e952009-10-20 00:22:00 +0200266 vty_out(vty, " oml ip.access stream_id %u%s", bts->oml_tei, VTY_NEWLINE);
267 } else {
Harald Welte42581822009-08-08 16:12:58 +0200268 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
269 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
270 }
Harald Welte67ce0732009-08-06 19:06:46 +0200271
272 llist_for_each_entry(trx, &bts->trx_list, list)
273 config_write_trx_single(vty, trx);
274}
275
276static int config_write_bts(struct vty *v)
277{
278 struct gsm_bts *bts;
279
280 llist_for_each_entry(bts, &gsmnet->bts_list, list)
281 config_write_bts_single(v, bts);
282
283 return CMD_SUCCESS;
284}
285
Harald Welte5013b2a2009-08-07 13:29:14 +0200286static int config_write_net(struct vty *vty)
287{
288 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200289 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200290 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200291 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
292 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200293 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100294 vty_out(vty, " location updating reject cause %u%s",
295 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900296 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100297 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100298 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
299 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100300 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100301 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100302 vty_out(vty, " handover window rxlev averaging %u%s",
303 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
304 vty_out(vty, " handover window rxqual averaging %u%s",
305 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
306 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
307 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
308 vty_out(vty, " handover power budget interval %u%s",
309 gsmnet->handover.pwr_interval, VTY_NEWLINE);
310 vty_out(vty, " handover power budget hysteresis %u%s",
311 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
312 vty_out(vty, " handover maximum distance %u%s",
313 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100314 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100315 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
316 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
317 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
318 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
319 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
320 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
321 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
322 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
323 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
324 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200325
326 return CMD_SUCCESS;
327}
Harald Welte67ce0732009-08-06 19:06:46 +0200328
Harald Welte68628e82009-03-10 12:17:57 +0000329static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
330{
331 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
332 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200333 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200334 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200335 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200336 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000337 vty_out(vty, " NM State: ");
338 net_dump_nmstate(vty, &trx->nm_state);
339 vty_out(vty, " Baseband Transceiver NM State: ");
340 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200341 if (is_ipaccess_bts(trx->bts)) {
342 vty_out(vty, " ip.access stream ID: 0x%02x%s",
343 trx->rsl_tei, VTY_NEWLINE);
344 } else {
345 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
346 e1isl_dump_vty(vty, trx->rsl_link);
347 }
Harald Welte68628e82009-03-10 12:17:57 +0000348}
349
350DEFUN(show_trx,
351 show_trx_cmd,
352 "show trx [bts_nr] [trx_nr]",
353 SHOW_STR "Display information about a TRX\n")
354{
355 struct gsm_network *net = gsmnet;
356 struct gsm_bts *bts = NULL;
357 struct gsm_bts_trx *trx;
358 int bts_nr, trx_nr;
359
360 if (argc >= 1) {
361 /* use the BTS number that the user has specified */
362 bts_nr = atoi(argv[0]);
363 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000364 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000365 VTY_NEWLINE);
366 return CMD_WARNING;
367 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200368 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000369 }
370 if (argc >= 2) {
371 trx_nr = atoi(argv[1]);
372 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000373 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000374 VTY_NEWLINE);
375 return CMD_WARNING;
376 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200377 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000378 trx_dump_vty(vty, trx);
379 return CMD_SUCCESS;
380 }
381 if (bts) {
382 /* print all TRX in this BTS */
383 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200384 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000385 trx_dump_vty(vty, trx);
386 }
387 return CMD_SUCCESS;
388 }
389
390 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200391 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000392 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200393 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000394 trx_dump_vty(vty, trx);
395 }
396 }
397
398 return CMD_SUCCESS;
399}
400
Harald Welte67ce0732009-08-06 19:06:46 +0200401
Harald Welte68628e82009-03-10 12:17:57 +0000402static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
403{
Harald Welte68628e82009-03-10 12:17:57 +0000404 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
405 ts->nr, ts->trx->nr, ts->trx->bts->nr,
406 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
407 vty_out(vty, " NM State: ");
408 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530409 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000410 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
411 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
412 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000413}
414
415DEFUN(show_ts,
416 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000417 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte68628e82009-03-10 12:17:57 +0000418 SHOW_STR "Display information about a TS\n")
419{
420 struct gsm_network *net = gsmnet;
421 struct gsm_bts *bts;
422 struct gsm_bts_trx *trx;
423 struct gsm_bts_trx_ts *ts;
424 int bts_nr, trx_nr, ts_nr;
425
426 if (argc >= 1) {
427 /* use the BTS number that the user has specified */
428 bts_nr = atoi(argv[0]);
429 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000430 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000431 VTY_NEWLINE);
432 return CMD_WARNING;
433 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200434 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000435 }
436 if (argc >= 2) {
437 trx_nr = atoi(argv[1]);
438 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000439 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000440 VTY_NEWLINE);
441 return CMD_WARNING;
442 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200443 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000444 }
445 if (argc >= 3) {
446 ts_nr = atoi(argv[2]);
447 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000448 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000449 VTY_NEWLINE);
450 return CMD_WARNING;
451 }
452 ts = &trx->ts[ts_nr];
453 ts_dump_vty(vty, ts);
454 return CMD_SUCCESS;
455 }
456 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200457 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000458 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200459 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000460 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
461 ts = &trx->ts[ts_nr];
462 ts_dump_vty(vty, ts);
463 }
464 }
465 }
466
467 return CMD_SUCCESS;
468}
469
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +0200470void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000471{
Harald Weltefcd24452009-06-20 18:15:19 +0200472 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000473 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000474 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000475 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000476 if (subscr->extension)
477 vty_out(vty, " Extension: %s%s", subscr->extension,
478 VTY_NEWLINE);
479 if (subscr->imsi)
480 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200481 if (subscr->tmsi != GSM_RESERVED_TMSI)
482 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200483 VTY_NEWLINE);
Harald Welte (local)15920de2009-08-14 20:27:16 +0200484 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000485}
486
487static void lchan_dump_vty(struct vty *vty, struct gsm_lchan *lchan)
488{
489 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
490 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
491 lchan->ts->trx->bts->nr, gsm_lchan_name(lchan->type),
492 VTY_NEWLINE);
493 vty_out(vty, " Use Count: %u%s", lchan->use_count, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100494 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
495 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
496 - lchan->bs_power*2,
497 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
498 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000499 if (lchan->subscr) {
500 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
501 subscr_dump_vty(vty, lchan->subscr);
502 } else
503 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530504 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
505 struct in_addr ia;
506 ia.s_addr = lchan->abis_ip.bound_ip;
507 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
508 inet_ntoa(ia), lchan->abis_ip.bound_port,
509 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
510 VTY_NEWLINE);
511 }
Harald Welte68628e82009-03-10 12:17:57 +0000512}
513
Harald Welte4bfdfe72009-06-10 23:11:52 +0800514#if 0
515TODO: callref and remote callref of call must be resolved to get gsm_trans object
Harald Welte68628e82009-03-10 12:17:57 +0000516static void call_dump_vty(struct vty *vty, struct gsm_call *call)
517{
518 vty_out(vty, "Call Type %u, State %u, Transaction ID %u%s",
519 call->type, call->state, call->transaction_id, VTY_NEWLINE);
520
521 if (call->local_lchan) {
522 vty_out(vty, "Call Local Channel:%s", VTY_NEWLINE);
523 lchan_dump_vty(vty, call->local_lchan);
524 } else
525 vty_out(vty, "Call has no Local Channel%s", VTY_NEWLINE);
526
527 if (call->remote_lchan) {
528 vty_out(vty, "Call Remote Channel:%s", VTY_NEWLINE);
529 lchan_dump_vty(vty, call->remote_lchan);
530 } else
531 vty_out(vty, "Call has no Remote Channel%s", VTY_NEWLINE);
532
533 if (call->called_subscr) {
534 vty_out(vty, "Called Subscriber:%s", VTY_NEWLINE);
535 subscr_dump_vty(vty, call->called_subscr);
536 } else
537 vty_out(vty, "Call has no Called Subscriber%s", VTY_NEWLINE);
538}
Harald Welte4bfdfe72009-06-10 23:11:52 +0800539#endif
Harald Welte68628e82009-03-10 12:17:57 +0000540
541DEFUN(show_lchan,
542 show_lchan_cmd,
543 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
544 SHOW_STR "Display information about a logical channel\n")
545{
546 struct gsm_network *net = gsmnet;
547 struct gsm_bts *bts;
548 struct gsm_bts_trx *trx;
549 struct gsm_bts_trx_ts *ts;
550 struct gsm_lchan *lchan;
551 int bts_nr, trx_nr, ts_nr, lchan_nr;
552
553 if (argc >= 1) {
554 /* use the BTS number that the user has specified */
555 bts_nr = atoi(argv[0]);
556 if (bts_nr >= net->num_bts) {
557 vty_out(vty, "%% can't find BTS %s%s", argv[0],
558 VTY_NEWLINE);
559 return CMD_WARNING;
560 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200561 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000562 }
563 if (argc >= 2) {
564 trx_nr = atoi(argv[1]);
565 if (trx_nr >= bts->num_trx) {
566 vty_out(vty, "%% can't find TRX %s%s", argv[1],
567 VTY_NEWLINE);
568 return CMD_WARNING;
569 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200570 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000571 }
572 if (argc >= 3) {
573 ts_nr = atoi(argv[2]);
574 if (ts_nr >= TRX_NR_TS) {
575 vty_out(vty, "%% can't find TS %s%s", argv[2],
576 VTY_NEWLINE);
577 return CMD_WARNING;
578 }
579 ts = &trx->ts[ts_nr];
580 }
581 if (argc >= 4) {
582 lchan_nr = atoi(argv[3]);
583 if (lchan_nr >= TS_MAX_LCHAN) {
584 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
585 VTY_NEWLINE);
586 return CMD_WARNING;
587 }
588 lchan = &ts->lchan[lchan_nr];
589 lchan_dump_vty(vty, lchan);
590 return CMD_SUCCESS;
591 }
592 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200593 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000594 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200595 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000596 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
597 ts = &trx->ts[ts_nr];
598 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
599 lchan_nr++) {
600 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000601 if (lchan->type == GSM_LCHAN_NONE)
602 continue;
Harald Welte68628e82009-03-10 12:17:57 +0000603 lchan_dump_vty(vty, lchan);
604 }
605 }
606 }
607 }
608
609 return CMD_SUCCESS;
610}
611
Harald Welte1bc77352009-03-10 19:47:51 +0000612static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
613{
614 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
615}
616
617DEFUN(show_e1drv,
618 show_e1drv_cmd,
619 "show e1_driver",
620 SHOW_STR "Display information about available E1 drivers\n")
621{
622 struct e1inp_driver *drv;
623
624 llist_for_each_entry(drv, &e1inp_driver_list, list)
625 e1drv_dump_vty(vty, drv);
626
627 return CMD_SUCCESS;
628}
629
Harald Welte68628e82009-03-10 12:17:57 +0000630static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
631{
632 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
633 line->num, line->name ? line->name : "",
634 line->driver->name, VTY_NEWLINE);
635}
636
637DEFUN(show_e1line,
638 show_e1line_cmd,
639 "show e1_line [line_nr]",
640 SHOW_STR "Display information about a E1 line\n")
641{
Harald Welte1bc77352009-03-10 19:47:51 +0000642 struct e1inp_line *line;
643
644 if (argc >= 1) {
645 int num = atoi(argv[0]);
646 llist_for_each_entry(line, &e1inp_line_list, list) {
647 if (line->num == num) {
648 e1line_dump_vty(vty, line);
649 return CMD_SUCCESS;
650 }
651 }
652 return CMD_WARNING;
653 }
654
655 llist_for_each_entry(line, &e1inp_line_list, list)
656 e1line_dump_vty(vty, line);
657
658 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000659}
660
661static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
662{
Harald Welte42581822009-08-08 16:12:58 +0200663 if (ts->type == E1INP_TS_TYPE_NONE)
664 return;
Harald Welte1bc77352009-03-10 19:47:51 +0000665 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
666 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
667 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000668}
669
670DEFUN(show_e1ts,
671 show_e1ts_cmd,
672 "show e1_timeslot [line_nr] [ts_nr]",
673 SHOW_STR "Display information about a E1 timeslot\n")
674{
Harald Welte986c3d72009-11-17 06:12:16 +0100675 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +0000676 struct e1inp_ts *ts;
677 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +0000678
Harald Welte1bc77352009-03-10 19:47:51 +0000679 if (argc == 0) {
680 llist_for_each_entry(line, &e1inp_line_list, list) {
681 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
682 ts = &line->ts[ts_nr];
683 e1ts_dump_vty(vty, ts);
684 }
685 }
686 return CMD_SUCCESS;
687 }
688 if (argc >= 1) {
689 int num = atoi(argv[0]);
690 llist_for_each_entry(line, &e1inp_line_list, list) {
691 if (line->num == num)
692 break;
693 }
694 if (!line || line->num != num) {
695 vty_out(vty, "E1 line %s is invalid%s",
696 argv[0], VTY_NEWLINE);
697 return CMD_WARNING;
698 }
699 }
700 if (argc >= 2) {
701 ts_nr = atoi(argv[1]);
702 if (ts_nr > NUM_E1_TS) {
703 vty_out(vty, "E1 timeslot %s is invalid%s",
704 argv[1], VTY_NEWLINE);
705 return CMD_WARNING;
706 }
707 ts = &line->ts[ts_nr];
708 e1ts_dump_vty(vty, ts);
709 return CMD_SUCCESS;
710 } else {
711 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
712 ts = &line->ts[ts_nr];
713 e1ts_dump_vty(vty, ts);
714 }
715 return CMD_SUCCESS;
716 }
717 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000718}
719
Harald Weltebe4b7302009-05-23 16:59:33 +0000720static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +0000721{
722 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
723 subscr_dump_vty(vty, pag->subscr);
724}
725
Harald Weltebe4b7302009-05-23 16:59:33 +0000726static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +0000727{
728 struct gsm_paging_request *pag;
729
730 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
731 paging_dump_vty(vty, pag);
732}
733
734DEFUN(show_paging,
735 show_paging_cmd,
736 "show paging [bts_nr]",
Harald Weltebe4b7302009-05-23 16:59:33 +0000737 SHOW_STR "Display information about paging reuqests of a BTS\n")
Harald Weltef5025b62009-03-28 16:55:11 +0000738{
739 struct gsm_network *net = gsmnet;
740 struct gsm_bts *bts;
741 int bts_nr;
742
743 if (argc >= 1) {
744 /* use the BTS number that the user has specified */
745 bts_nr = atoi(argv[0]);
746 if (bts_nr >= net->num_bts) {
747 vty_out(vty, "%% can't find BTS %s%s", argv[0],
748 VTY_NEWLINE);
749 return CMD_WARNING;
750 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200751 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000752 bts_paging_dump_vty(vty, bts);
753
754 return CMD_SUCCESS;
755 }
756 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200757 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000758 bts_paging_dump_vty(vty, bts);
759 }
760
761 return CMD_SUCCESS;
762}
763
Harald Welte24ff6ee2009-12-22 00:41:05 +0100764DEFUN(show_stats,
765 show_stats_cmd,
766 "show statistics",
767 SHOW_STR "Display network statistics\n")
768{
769 struct gsm_network *net = gsmnet;
770
771 vty_out(vty, "Channel Requests: %lu total, %lu no channel%s",
772 net->stats.chreq.total, net->stats.chreq.no_channel,
773 VTY_NEWLINE);
774 vty_out(vty, "Location Update: %lu attach, %lu normal, %lu periodic%s",
775 net->stats.loc_upd_type.attach, net->stats.loc_upd_type.normal,
776 net->stats.loc_upd_type.periodic, VTY_NEWLINE);
777 vty_out(vty, "IMSI Detach Indications: %lu%s\n",
778 net->stats.loc_upd_type.detach, VTY_NEWLINE);
779 vty_out(vty, "Location Update Response: %lu accept, %lu reject%s",
780 net->stats.loc_upd_resp.accept,
781 net->stats.loc_upd_resp.reject, VTY_NEWLINE);
782 vty_out(vty, "Paging: %lu attempted, %lu complete, %lu expired%s",
783 net->stats.paging.attempted, net->stats.paging.completed,
784 net->stats.paging.expired, VTY_NEWLINE);
785 vty_out(vty, "Handover: %lu attempted, %lu no_channel, %lu timeout, "
786 "%lu completed, %lu failed%s", net->stats.handover.attempted,
787 net->stats.handover.no_channel, net->stats.handover.timeout,
788 net->stats.handover.completed, net->stats.handover.failed,
789 VTY_NEWLINE);
790 vty_out(vty, "SMS MO: %lu submitted, %lu no receiver%s",
791 net->stats.sms.submitted, net->stats.sms.no_receiver,
792 VTY_NEWLINE);
793 vty_out(vty, "SMS MT: %lu delivered, %lu no memory, %lu other error%s",
794 net->stats.sms.delivered, net->stats.sms.rp_err_mem,
795 net->stats.sms.rp_err_other, VTY_NEWLINE);
796 return CMD_SUCCESS;
797}
798
Harald Welte5013b2a2009-08-07 13:29:14 +0200799DEFUN(cfg_net,
800 cfg_net_cmd,
801 "network",
802 "Configure the GSM network")
803{
804 vty->index = gsmnet;
805 vty->node = GSMNET_NODE;
806
807 return CMD_SUCCESS;
808}
809
810
811DEFUN(cfg_net_ncc,
812 cfg_net_ncc_cmd,
813 "network country code <1-999>",
814 "Set the GSM network country code")
815{
816 gsmnet->country_code = atoi(argv[0]);
817
818 return CMD_SUCCESS;
819}
820
821DEFUN(cfg_net_mnc,
822 cfg_net_mnc_cmd,
823 "mobile network code <1-999>",
824 "Set the GSM mobile network code")
825{
826 gsmnet->network_code = atoi(argv[0]);
827
828 return CMD_SUCCESS;
829}
830
831DEFUN(cfg_net_name_short,
832 cfg_net_name_short_cmd,
833 "short name NAME",
834 "Set the short GSM network name")
835{
836 if (gsmnet->name_short)
837 talloc_free(gsmnet->name_short);
838
839 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
840
841 return CMD_SUCCESS;
842}
843
844DEFUN(cfg_net_name_long,
845 cfg_net_name_long_cmd,
846 "long name NAME",
847 "Set the long GSM network name")
848{
849 if (gsmnet->name_long)
850 talloc_free(gsmnet->name_long);
851
852 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
853
854 return CMD_SUCCESS;
855}
Harald Welte40f82892009-05-23 17:31:39 +0000856
Harald Welte (local)69de3972009-08-12 14:42:23 +0200857DEFUN(cfg_net_auth_policy,
858 cfg_net_auth_policy_cmd,
859 "auth policy (closed|accept-all|token)",
860 "Set the GSM network authentication policy\n")
861{
862 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
863
864 gsmnet->auth_policy = policy;
865
866 return CMD_SUCCESS;
867}
868
Harald Welte1085c092009-11-18 20:33:19 +0100869DEFUN(cfg_net_reject_cause,
870 cfg_net_reject_cause_cmd,
871 "location updating reject cause <2-111>",
872 "Set the reject cause of location updating reject\n")
873{
874 gsmnet->reject_cause = atoi(argv[0]);
875
876 return CMD_SUCCESS;
877}
878
Harald Welte4381cfe2009-08-30 15:47:06 +0900879DEFUN(cfg_net_encryption,
880 cfg_net_encryption_cmd,
881 "encryption a5 (0|1|2)",
882 "Enable or disable encryption (A5) for this network\n")
883{
Andreas.Eversberg1059deb2009-11-17 09:55:26 +0100884 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +0900885
886 return CMD_SUCCESS;
887}
888
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100889DEFUN(cfg_net_neci,
890 cfg_net_neci_cmd,
891 "neci (0|1)",
892 "Set if NECI of cell selection is to be set")
893{
894 gsmnet->neci = atoi(argv[0]);
895 return CMD_SUCCESS;
896}
897
Harald Welteeab84a12009-12-13 10:53:12 +0100898DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
899 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
900 "Set the Radio Resource Location Protocol Mode")
901{
902 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
903
904 return CMD_SUCCESS;
905}
906
Harald Welte648b6ce2009-12-14 09:00:24 +0100907DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
908 "mm info (0|1)",
909 "Whether to send MM INFO after LOC UPD ACCEPT")
910{
911 gsmnet->send_mm_info = atoi(argv[0]);
912
913 return CMD_SUCCESS;
914}
915
Harald Weltebc814502009-12-19 21:41:52 +0100916DEFUN(cfg_net_handover, cfg_net_handover_cmd,
917 "handover (0|1)",
918 "Whether or not to use in-call handover")
919{
Harald Weltefe03f0d2009-12-20 13:51:01 +0100920 if (ipacc_rtp_direct) {
921 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
922 "is enabled by using the -P command line option%s",
923 VTY_NEWLINE);
924 return CMD_WARNING;
925 }
Harald Weltebc814502009-12-19 21:41:52 +0100926 gsmnet->handover.active = atoi(argv[0]);
927
928 return CMD_SUCCESS;
929}
930
Harald Welteb720bd32009-12-21 16:51:50 +0100931DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
932 "handover window rxlev averaging <1-10>",
933 "How many RxLev measurements are used for averaging")
934{
935 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
936 return CMD_SUCCESS;
937}
938
939DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
940 "handover window rxqual averaging <1-10>",
941 "How many RxQual measurements are used for averaging")
942{
943 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
944 return CMD_SUCCESS;
945}
946
947DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
948 "handover window rxlev neighbor averaging <1-10>",
949 "How many RxQual measurements are used for averaging")
950{
951 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
952 return CMD_SUCCESS;
953}
954
955DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
956 "handover power budget interval <1-99>",
957 "How often to check if we have a better cell (SACCH frames)")
958{
959 gsmnet->handover.pwr_interval = atoi(argv[0]);
960 return CMD_SUCCESS;
961}
962
963DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
964 "handover power budget hysteresis <0-999>",
965 "How many dB does a neighbor to be stronger to become a HO candidate")
966{
967 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
968 return CMD_SUCCESS;
969}
970
971DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
972 "handover maximum distance <0-9999>",
973 "How big is the maximum timing advance before HO is forced")
974{
975 gsmnet->handover.max_distance = atoi(argv[0]);
976 return CMD_SUCCESS;
977}
Harald Weltebc814502009-12-19 21:41:52 +0100978
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100979#define DECLARE_TIMER(number) \
980 DEFUN(cfg_net_T##number, \
981 cfg_net_T##number##_cmd, \
982 "timer t" #number " <0-65535>", \
983 "Set the T" #number " value.") \
984{ \
985 int value = atoi(argv[0]); \
986 \
987 if (value < 0 || value > 65535) { \
988 vty_out(vty, "Timer value %s out of range.%s", \
989 argv[0], VTY_NEWLINE); \
990 return CMD_WARNING; \
991 } \
992 \
993 gsmnet->T##number = value; \
994 return CMD_SUCCESS; \
995}
996
997DECLARE_TIMER(3101)
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100998DECLARE_TIMER(3103)
999DECLARE_TIMER(3105)
1000DECLARE_TIMER(3107)
1001DECLARE_TIMER(3109)
1002DECLARE_TIMER(3111)
1003DECLARE_TIMER(3113)
1004DECLARE_TIMER(3115)
1005DECLARE_TIMER(3117)
1006DECLARE_TIMER(3119)
1007DECLARE_TIMER(3141)
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001008
1009
Harald Welte5258fc42009-03-28 19:07:53 +00001010/* per-BTS configuration */
1011DEFUN(cfg_bts,
1012 cfg_bts_cmd,
1013 "bts BTS_NR",
1014 "Select a BTS to configure\n")
1015{
1016 int bts_nr = atoi(argv[0]);
1017 struct gsm_bts *bts;
1018
Harald Weltee441d9c2009-06-21 16:17:15 +02001019 if (bts_nr > gsmnet->num_bts) {
1020 vty_out(vty, "%% The next unused BTS number is %u%s",
1021 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001022 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001023 } else if (bts_nr == gsmnet->num_bts) {
1024 /* allocate a new one */
1025 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1026 HARDCODED_TSC, HARDCODED_BSIC);
1027 } else
1028 bts = gsm_bts_num(gsmnet, bts_nr);
1029
1030 if (!bts)
1031 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001032
1033 vty->index = bts;
1034 vty->node = BTS_NODE;
1035
1036 return CMD_SUCCESS;
1037}
1038
1039DEFUN(cfg_bts_type,
1040 cfg_bts_type_cmd,
1041 "type TYPE",
1042 "Set the BTS type\n")
1043{
1044 struct gsm_bts *bts = vty->index;
1045
Harald Weltea6fd58e2009-08-07 00:25:23 +02001046 bts->type = parse_btstype(argv[0]);
1047
Harald Welte8175e952009-10-20 00:22:00 +02001048 if (is_ipaccess_bts(bts)) {
1049 /* Set the default OML Stream ID to 0xff */
1050 bts->oml_tei = 0xff;
1051 }
1052
Harald Welte5258fc42009-03-28 19:07:53 +00001053 return CMD_SUCCESS;
1054}
1055
Harald Weltefcd24452009-06-20 18:15:19 +02001056DEFUN(cfg_bts_band,
1057 cfg_bts_band_cmd,
1058 "band BAND",
1059 "Set the frequency band of this BTS\n")
1060{
1061 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001062 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001063
1064 if (band < 0) {
1065 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1066 band, VTY_NEWLINE);
1067 return CMD_WARNING;
1068 }
1069
1070 bts->band = band;
1071
1072 return CMD_SUCCESS;
1073}
1074
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001075DEFUN(cfg_bts_ci,
1076 cfg_bts_ci_cmd,
1077 "cell_identity <0-65535>",
1078 "Set the Cell identity of this BTS\n")
1079{
1080 struct gsm_bts *bts = vty->index;
1081 int ci = atoi(argv[0]);
1082
1083 if (ci < 0 || ci > 0xffff) {
1084 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1085 ci, VTY_NEWLINE);
1086 return CMD_WARNING;
1087 }
1088 bts->cell_identity = ci;
1089
1090 return CMD_SUCCESS;
1091}
1092
Harald Welte5258fc42009-03-28 19:07:53 +00001093DEFUN(cfg_bts_lac,
1094 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001095 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001096 "Set the Location Area Code (LAC) of this BTS\n")
1097{
1098 struct gsm_bts *bts = vty->index;
1099 int lac = atoi(argv[0]);
1100
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001101 if (lac < 0 || lac > 0xffff) {
1102 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001103 lac, VTY_NEWLINE);
1104 return CMD_WARNING;
1105 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001106
1107 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1108 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1109 lac, VTY_NEWLINE);
1110 return CMD_WARNING;
1111 }
1112
Harald Welte5258fc42009-03-28 19:07:53 +00001113 bts->location_area_code = lac;
1114
1115 return CMD_SUCCESS;
1116}
1117
Harald Weltea43f7892009-12-01 18:04:30 +05301118
Harald Welte5258fc42009-03-28 19:07:53 +00001119DEFUN(cfg_bts_tsc,
1120 cfg_bts_tsc_cmd,
1121 "training_sequence_code <0-255>",
1122 "Set the Training Sequence Code (TSC) of this BTS\n")
1123{
1124 struct gsm_bts *bts = vty->index;
1125 int tsc = atoi(argv[0]);
1126
1127 if (tsc < 0 || tsc > 0xff) {
1128 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1129 tsc, VTY_NEWLINE);
1130 return CMD_WARNING;
1131 }
1132 bts->tsc = tsc;
1133
1134 return CMD_SUCCESS;
1135}
1136
Harald Welte78f2f502009-05-23 16:56:52 +00001137DEFUN(cfg_bts_bsic,
1138 cfg_bts_bsic_cmd,
1139 "base_station_id_code <0-63>",
1140 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1141{
1142 struct gsm_bts *bts = vty->index;
1143 int bsic = atoi(argv[0]);
1144
1145 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001146 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001147 bsic, VTY_NEWLINE);
1148 return CMD_WARNING;
1149 }
1150 bts->bsic = bsic;
1151
1152 return CMD_SUCCESS;
1153}
1154
1155
Harald Welte4cc34222009-05-01 15:12:31 +00001156DEFUN(cfg_bts_unit_id,
1157 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001158 "ip.access unit_id <0-65534> <0-255>",
1159 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001160{
1161 struct gsm_bts *bts = vty->index;
1162 int site_id = atoi(argv[0]);
1163 int bts_id = atoi(argv[1]);
1164
Harald Welte07dc73d2009-08-07 13:27:09 +02001165 if (!is_ipaccess_bts(bts)) {
1166 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1167 return CMD_WARNING;
1168 }
1169
Harald Welte4cc34222009-05-01 15:12:31 +00001170 bts->ip_access.site_id = site_id;
1171 bts->ip_access.bts_id = bts_id;
1172
1173 return CMD_SUCCESS;
1174}
1175
Harald Welte8175e952009-10-20 00:22:00 +02001176DEFUN(cfg_bts_stream_id,
1177 cfg_bts_stream_id_cmd,
1178 "oml ip.access stream_id <0-255>",
1179 "Set the ip.access Stream ID of the OML link of this BTS\n")
1180{
1181 struct gsm_bts *bts = vty->index;
1182 int stream_id = atoi(argv[0]);
1183
1184 if (!is_ipaccess_bts(bts)) {
1185 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1186 return CMD_WARNING;
1187 }
1188
1189 bts->oml_tei = stream_id;
1190
1191 return CMD_SUCCESS;
1192}
1193
1194
Harald Welte42581822009-08-08 16:12:58 +02001195DEFUN(cfg_bts_oml_e1,
1196 cfg_bts_oml_e1_cmd,
1197 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1198 "E1 interface to be used for OML\n")
1199{
1200 struct gsm_bts *bts = vty->index;
1201
1202 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1203
1204 return CMD_SUCCESS;
1205}
1206
1207
1208DEFUN(cfg_bts_oml_e1_tei,
1209 cfg_bts_oml_e1_tei_cmd,
1210 "oml e1 tei <0-63>",
1211 "Set the TEI to be used for OML")
1212{
1213 struct gsm_bts *bts = vty->index;
1214
1215 bts->oml_tei = atoi(argv[0]);
1216
1217 return CMD_SUCCESS;
1218}
1219
Harald Welte7a8fa412009-08-10 13:48:16 +02001220DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1221 "channel allocator (ascending|descending)",
1222 "Should the channel allocator allocate in reverse TRX order?")
1223{
1224 struct gsm_bts *bts = vty->index;
1225
1226 if (!strcmp(argv[0], "ascending"))
1227 bts->chan_alloc_reverse = 0;
1228 else
1229 bts->chan_alloc_reverse = 1;
1230
1231 return CMD_SUCCESS;
1232}
1233
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001234DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1235 "cell barred (0|1)",
1236 "Should this cell be barred from access?")
1237{
1238 struct gsm_bts *bts = vty->index;
1239
Harald Welte71355012009-12-21 23:08:18 +01001240 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001241
1242 return CMD_SUCCESS;
1243}
1244
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001245DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1246 "ms max power <0-40>",
1247 "Maximum transmit power of the MS")
1248{
1249 struct gsm_bts *bts = vty->index;
1250
1251 bts->ms_max_power = atoi(argv[0]);
1252
1253 return CMD_SUCCESS;
1254}
1255
Harald Welte73225282009-12-12 18:17:25 +01001256DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1257 "cell reselection hysteresis <0-14>",
1258 "Cell Re-Selection Hysteresis in dB")
1259{
1260 struct gsm_bts *bts = vty->index;
1261
1262 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1263
1264 return CMD_SUCCESS;
1265}
1266
1267DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1268 "rxlev access min <0-63>",
1269 "Minimum RxLev needed for cell access (better than -110dBm)")
1270{
1271 struct gsm_bts *bts = vty->index;
1272
1273 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1274
1275 return CMD_SUCCESS;
1276}
1277
Harald Welte (local)efc92312009-08-14 23:09:25 +02001278DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1279 "periodic location update <0-1530>",
1280 "Periodic Location Updating Interval in Minutes")
1281{
1282 struct gsm_bts *bts = vty->index;
1283
Harald Weltea43f7892009-12-01 18:04:30 +05301284 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001285
1286 return CMD_SUCCESS;
1287}
1288
Harald Welte7a8fa412009-08-10 13:48:16 +02001289
Harald Welte5258fc42009-03-28 19:07:53 +00001290/* per TRX configuration */
1291DEFUN(cfg_trx,
1292 cfg_trx_cmd,
1293 "trx TRX_NR",
1294 "Select a TRX to configure")
1295{
1296 int trx_nr = atoi(argv[0]);
1297 struct gsm_bts *bts = vty->index;
1298 struct gsm_bts_trx *trx;
1299
Harald Weltee441d9c2009-06-21 16:17:15 +02001300 if (trx_nr > bts->num_trx) {
1301 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1302 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001303 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001304 } else if (trx_nr == bts->num_trx) {
1305 /* we need to allocate a new one */
1306 trx = gsm_bts_trx_alloc(bts);
1307 } else
1308 trx = gsm_bts_trx_num(bts, trx_nr);
1309
1310 if (!trx)
1311 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001312
1313 vty->index = trx;
1314 vty->node = TRX_NODE;
1315
1316 return CMD_SUCCESS;
1317}
1318
1319DEFUN(cfg_trx_arfcn,
1320 cfg_trx_arfcn_cmd,
1321 "arfcn <1-1024>",
1322 "Set the ARFCN for this TRX\n")
1323{
1324 int arfcn = atoi(argv[0]);
1325 struct gsm_bts_trx *trx = vty->index;
1326
1327 /* FIXME: check if this ARFCN is supported by this TRX */
1328
1329 trx->arfcn = arfcn;
1330
1331 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1332 /* FIXME: use OML layer to update the ARFCN */
1333 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1334
1335 return CMD_SUCCESS;
1336}
1337
Harald Weltefcd24452009-06-20 18:15:19 +02001338DEFUN(cfg_trx_max_power_red,
1339 cfg_trx_max_power_red_cmd,
1340 "max_power_red <0-100>",
1341 "Reduction of maximum BS RF Power in dB\n")
1342{
1343 int maxpwr_r = atoi(argv[0]);
1344 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001345 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001346
1347 /* FIXME: check if our BTS type supports more than 12 */
1348 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1349 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1350 maxpwr_r, VTY_NEWLINE);
1351 return CMD_WARNING;
1352 }
1353 if (maxpwr_r & 1) {
1354 vty_out(vty, "%% Power %d dB is not an even value%s",
1355 maxpwr_r, VTY_NEWLINE);
1356 return CMD_WARNING;
1357 }
1358
1359 trx->max_power_red = maxpwr_r;
1360
1361 /* FIXME: make sure we update this using OML */
1362
1363 return CMD_SUCCESS;
1364}
1365
Harald Welte42581822009-08-08 16:12:58 +02001366DEFUN(cfg_trx_rsl_e1,
1367 cfg_trx_rsl_e1_cmd,
1368 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1369 "E1 interface to be used for RSL\n")
1370{
1371 struct gsm_bts_trx *trx = vty->index;
1372
1373 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1374
1375 return CMD_SUCCESS;
1376}
1377
1378DEFUN(cfg_trx_rsl_e1_tei,
1379 cfg_trx_rsl_e1_tei_cmd,
1380 "rsl e1 tei <0-63>",
1381 "Set the TEI to be used for RSL")
1382{
1383 struct gsm_bts_trx *trx = vty->index;
1384
1385 trx->rsl_tei = atoi(argv[0]);
1386
1387 return CMD_SUCCESS;
1388}
1389
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001390DEFUN(cfg_trx_rf_locked,
1391 cfg_trx_rf_locked_cmd,
1392 "rf_locked (0|1)",
1393 "Turn off RF of the TRX.\n")
1394{
1395 int locked = atoi(argv[0]);
1396 struct gsm_bts_trx *trx = vty->index;
1397
1398 gsm_trx_lock_rf(trx, locked);
1399 return CMD_SUCCESS;
1400}
Harald Welte42581822009-08-08 16:12:58 +02001401
Harald Welte5258fc42009-03-28 19:07:53 +00001402/* per TS configuration */
1403DEFUN(cfg_ts,
1404 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001405 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001406 "Select a Timeslot to configure")
1407{
1408 int ts_nr = atoi(argv[0]);
1409 struct gsm_bts_trx *trx = vty->index;
1410 struct gsm_bts_trx_ts *ts;
1411
1412 if (ts_nr >= TRX_NR_TS) {
1413 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1414 TRX_NR_TS, VTY_NEWLINE);
1415 return CMD_WARNING;
1416 }
1417
1418 ts = &trx->ts[ts_nr];
1419
1420 vty->index = ts;
1421 vty->node = TS_NODE;
1422
1423 return CMD_SUCCESS;
1424}
1425
Harald Weltea6fd58e2009-08-07 00:25:23 +02001426DEFUN(cfg_ts_pchan,
1427 cfg_ts_pchan_cmd,
1428 "phys_chan_config PCHAN",
1429 "Physical Channel configuration (TCH/SDCCH/...)")
1430{
1431 struct gsm_bts_trx_ts *ts = vty->index;
1432 int pchanc;
1433
1434 pchanc = gsm_pchan_parse(argv[0]);
1435 if (pchanc < 0)
1436 return CMD_WARNING;
1437
1438 ts->pchan = pchanc;
1439
1440 return CMD_SUCCESS;
1441}
1442
1443DEFUN(cfg_ts_e1_subslot,
1444 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001445 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001446 "E1 sub-slot connected to this on-air timeslot")
1447{
1448 struct gsm_bts_trx_ts *ts = vty->index;
1449
Harald Welte42581822009-08-08 16:12:58 +02001450 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001451
1452 return CMD_SUCCESS;
1453}
Harald Welte5258fc42009-03-28 19:07:53 +00001454
Harald Welte68628e82009-03-10 12:17:57 +00001455int bsc_vty_init(struct gsm_network *net)
1456{
1457 gsmnet = net;
1458
1459 cmd_init(1);
1460 vty_init();
1461
1462 install_element(VIEW_NODE, &show_net_cmd);
1463 install_element(VIEW_NODE, &show_bts_cmd);
1464 install_element(VIEW_NODE, &show_trx_cmd);
1465 install_element(VIEW_NODE, &show_ts_cmd);
1466 install_element(VIEW_NODE, &show_lchan_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00001467
1468 install_element(VIEW_NODE, &show_e1drv_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001469 install_element(VIEW_NODE, &show_e1line_cmd);
1470 install_element(VIEW_NODE, &show_e1ts_cmd);
1471
Harald Weltef5025b62009-03-28 16:55:11 +00001472 install_element(VIEW_NODE, &show_paging_cmd);
Harald Welte24ff6ee2009-12-22 00:41:05 +01001473 install_element(VIEW_NODE, &show_stats_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001474
Harald Welte5013b2a2009-08-07 13:29:14 +02001475 install_element(CONFIG_NODE, &cfg_net_cmd);
1476 install_node(&net_node, config_write_net);
1477 install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02001478 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001479 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1480 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1481 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001482 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01001483 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09001484 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001485 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01001486 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01001487 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01001488 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01001489 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
1490 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
1491 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
1492 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
1493 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
1494 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001495 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01001496 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1497 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1498 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1499 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1500 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1501 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1502 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1503 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1504 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1505 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001506
1507 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02001508 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00001509 install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001510 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02001511 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001512 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001513 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1514 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001515 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00001516 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02001517 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001518 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1519 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001520 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001521 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001522 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02001523 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01001524 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1525 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001526
Harald Welte68628e82009-03-10 12:17:57 +00001527
Harald Welte5258fc42009-03-28 19:07:53 +00001528 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001529 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001530 install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001531 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02001532 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001533 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
1534 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001535 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001536
Harald Welte5258fc42009-03-28 19:07:53 +00001537 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001538 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001539 install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001540 install_element(TS_NODE, &cfg_ts_pchan_cmd);
1541 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001542
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +02001543 bsc_vty_init_extra(net);
Harald Welte40f82892009-05-23 17:31:39 +00001544
Harald Welte68628e82009-03-10 12:17:57 +00001545 return 0;
1546}