blob: 82fd00472e3f2b33e260555b29c4ed09a93f8d6f [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 Welte (local)5dececf2009-08-12 13:28:23 +0200143 if (bts->cell_barred)
144 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 Welte (local)5dececf2009-08-12 13:28:23 +0200261 if (bts->cell_barred)
262 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);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100302 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100303 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
304 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
305 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
306 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
307 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
308 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
309 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
310 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
311 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
312 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200313
314 return CMD_SUCCESS;
315}
Harald Welte67ce0732009-08-06 19:06:46 +0200316
Harald Welte68628e82009-03-10 12:17:57 +0000317static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
318{
319 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
320 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200321 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200322 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200323 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200324 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000325 vty_out(vty, " NM State: ");
326 net_dump_nmstate(vty, &trx->nm_state);
327 vty_out(vty, " Baseband Transceiver NM State: ");
328 net_dump_nmstate(vty, &trx->bb_transc.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200329 if (is_ipaccess_bts(trx->bts)) {
330 vty_out(vty, " ip.access stream ID: 0x%02x%s",
331 trx->rsl_tei, VTY_NEWLINE);
332 } else {
333 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
334 e1isl_dump_vty(vty, trx->rsl_link);
335 }
Harald Welte68628e82009-03-10 12:17:57 +0000336}
337
338DEFUN(show_trx,
339 show_trx_cmd,
340 "show trx [bts_nr] [trx_nr]",
341 SHOW_STR "Display information about a TRX\n")
342{
343 struct gsm_network *net = gsmnet;
344 struct gsm_bts *bts = NULL;
345 struct gsm_bts_trx *trx;
346 int bts_nr, trx_nr;
347
348 if (argc >= 1) {
349 /* use the BTS number that the user has specified */
350 bts_nr = atoi(argv[0]);
351 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000352 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000353 VTY_NEWLINE);
354 return CMD_WARNING;
355 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200356 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000357 }
358 if (argc >= 2) {
359 trx_nr = atoi(argv[1]);
360 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000361 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000362 VTY_NEWLINE);
363 return CMD_WARNING;
364 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200365 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000366 trx_dump_vty(vty, trx);
367 return CMD_SUCCESS;
368 }
369 if (bts) {
370 /* print all TRX in this BTS */
371 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200372 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000373 trx_dump_vty(vty, trx);
374 }
375 return CMD_SUCCESS;
376 }
377
378 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200379 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000380 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200381 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000382 trx_dump_vty(vty, trx);
383 }
384 }
385
386 return CMD_SUCCESS;
387}
388
Harald Welte67ce0732009-08-06 19:06:46 +0200389
Harald Welte68628e82009-03-10 12:17:57 +0000390static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
391{
Harald Welte68628e82009-03-10 12:17:57 +0000392 vty_out(vty, "Timeslot %u of TRX %u in BTS %u, phys cfg %s%s",
393 ts->nr, ts->trx->nr, ts->trx->bts->nr,
394 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
395 vty_out(vty, " NM State: ");
396 net_dump_nmstate(vty, &ts->nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530397 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000398 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
399 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
400 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000401}
402
403DEFUN(show_ts,
404 show_ts_cmd,
Harald Welte1bc77352009-03-10 19:47:51 +0000405 "show timeslot [bts_nr] [trx_nr] [ts_nr]",
Harald Welte68628e82009-03-10 12:17:57 +0000406 SHOW_STR "Display information about a TS\n")
407{
408 struct gsm_network *net = gsmnet;
409 struct gsm_bts *bts;
410 struct gsm_bts_trx *trx;
411 struct gsm_bts_trx_ts *ts;
412 int bts_nr, trx_nr, ts_nr;
413
414 if (argc >= 1) {
415 /* use the BTS number that the user has specified */
416 bts_nr = atoi(argv[0]);
417 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000418 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000419 VTY_NEWLINE);
420 return CMD_WARNING;
421 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200422 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000423 }
424 if (argc >= 2) {
425 trx_nr = atoi(argv[1]);
426 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000427 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000428 VTY_NEWLINE);
429 return CMD_WARNING;
430 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200431 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000432 }
433 if (argc >= 3) {
434 ts_nr = atoi(argv[2]);
435 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000436 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000437 VTY_NEWLINE);
438 return CMD_WARNING;
439 }
440 ts = &trx->ts[ts_nr];
441 ts_dump_vty(vty, ts);
442 return CMD_SUCCESS;
443 }
444 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200445 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000446 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200447 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000448 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
449 ts = &trx->ts[ts_nr];
450 ts_dump_vty(vty, ts);
451 }
452 }
453 }
454
455 return CMD_SUCCESS;
456}
457
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +0200458void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000459{
Harald Weltefcd24452009-06-20 18:15:19 +0200460 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000461 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000462 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000463 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000464 if (subscr->extension)
465 vty_out(vty, " Extension: %s%s", subscr->extension,
466 VTY_NEWLINE);
467 if (subscr->imsi)
468 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200469 if (subscr->tmsi != GSM_RESERVED_TMSI)
470 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200471 VTY_NEWLINE);
Harald Welte (local)15920de2009-08-14 20:27:16 +0200472 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000473}
474
475static void lchan_dump_vty(struct vty *vty, struct gsm_lchan *lchan)
476{
477 vty_out(vty, "Lchan %u in Timeslot %u of TRX %u in BTS %u, Type %s%s",
478 lchan->nr, lchan->ts->nr, lchan->ts->trx->nr,
479 lchan->ts->trx->bts->nr, gsm_lchan_name(lchan->type),
480 VTY_NEWLINE);
481 vty_out(vty, " Use Count: %u%s", lchan->use_count, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100482 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
483 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
484 - lchan->bs_power*2,
485 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
486 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000487 if (lchan->subscr) {
488 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
489 subscr_dump_vty(vty, lchan->subscr);
490 } else
491 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530492 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
493 struct in_addr ia;
494 ia.s_addr = lchan->abis_ip.bound_ip;
495 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
496 inet_ntoa(ia), lchan->abis_ip.bound_port,
497 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
498 VTY_NEWLINE);
499 }
Harald Welte68628e82009-03-10 12:17:57 +0000500}
501
Harald Welte4bfdfe72009-06-10 23:11:52 +0800502#if 0
503TODO: callref and remote callref of call must be resolved to get gsm_trans object
Harald Welte68628e82009-03-10 12:17:57 +0000504static void call_dump_vty(struct vty *vty, struct gsm_call *call)
505{
506 vty_out(vty, "Call Type %u, State %u, Transaction ID %u%s",
507 call->type, call->state, call->transaction_id, VTY_NEWLINE);
508
509 if (call->local_lchan) {
510 vty_out(vty, "Call Local Channel:%s", VTY_NEWLINE);
511 lchan_dump_vty(vty, call->local_lchan);
512 } else
513 vty_out(vty, "Call has no Local Channel%s", VTY_NEWLINE);
514
515 if (call->remote_lchan) {
516 vty_out(vty, "Call Remote Channel:%s", VTY_NEWLINE);
517 lchan_dump_vty(vty, call->remote_lchan);
518 } else
519 vty_out(vty, "Call has no Remote Channel%s", VTY_NEWLINE);
520
521 if (call->called_subscr) {
522 vty_out(vty, "Called Subscriber:%s", VTY_NEWLINE);
523 subscr_dump_vty(vty, call->called_subscr);
524 } else
525 vty_out(vty, "Call has no Called Subscriber%s", VTY_NEWLINE);
526}
Harald Welte4bfdfe72009-06-10 23:11:52 +0800527#endif
Harald Welte68628e82009-03-10 12:17:57 +0000528
529DEFUN(show_lchan,
530 show_lchan_cmd,
531 "show lchan [bts_nr] [trx_nr] [ts_nr] [lchan_nr]",
532 SHOW_STR "Display information about a logical channel\n")
533{
534 struct gsm_network *net = gsmnet;
535 struct gsm_bts *bts;
536 struct gsm_bts_trx *trx;
537 struct gsm_bts_trx_ts *ts;
538 struct gsm_lchan *lchan;
539 int bts_nr, trx_nr, ts_nr, lchan_nr;
540
541 if (argc >= 1) {
542 /* use the BTS number that the user has specified */
543 bts_nr = atoi(argv[0]);
544 if (bts_nr >= net->num_bts) {
545 vty_out(vty, "%% can't find BTS %s%s", argv[0],
546 VTY_NEWLINE);
547 return CMD_WARNING;
548 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200549 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000550 }
551 if (argc >= 2) {
552 trx_nr = atoi(argv[1]);
553 if (trx_nr >= bts->num_trx) {
554 vty_out(vty, "%% can't find TRX %s%s", argv[1],
555 VTY_NEWLINE);
556 return CMD_WARNING;
557 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200558 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000559 }
560 if (argc >= 3) {
561 ts_nr = atoi(argv[2]);
562 if (ts_nr >= TRX_NR_TS) {
563 vty_out(vty, "%% can't find TS %s%s", argv[2],
564 VTY_NEWLINE);
565 return CMD_WARNING;
566 }
567 ts = &trx->ts[ts_nr];
568 }
569 if (argc >= 4) {
570 lchan_nr = atoi(argv[3]);
571 if (lchan_nr >= TS_MAX_LCHAN) {
572 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
573 VTY_NEWLINE);
574 return CMD_WARNING;
575 }
576 lchan = &ts->lchan[lchan_nr];
577 lchan_dump_vty(vty, lchan);
578 return CMD_SUCCESS;
579 }
580 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200581 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000582 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200583 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000584 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
585 ts = &trx->ts[ts_nr];
586 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN;
587 lchan_nr++) {
588 lchan = &ts->lchan[lchan_nr];
Harald Welteef235b52009-03-10 12:34:02 +0000589 if (lchan->type == GSM_LCHAN_NONE)
590 continue;
Harald Welte68628e82009-03-10 12:17:57 +0000591 lchan_dump_vty(vty, lchan);
592 }
593 }
594 }
595 }
596
597 return CMD_SUCCESS;
598}
599
Harald Welte1bc77352009-03-10 19:47:51 +0000600static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
601{
602 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
603}
604
605DEFUN(show_e1drv,
606 show_e1drv_cmd,
607 "show e1_driver",
608 SHOW_STR "Display information about available E1 drivers\n")
609{
610 struct e1inp_driver *drv;
611
612 llist_for_each_entry(drv, &e1inp_driver_list, list)
613 e1drv_dump_vty(vty, drv);
614
615 return CMD_SUCCESS;
616}
617
Harald Welte68628e82009-03-10 12:17:57 +0000618static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line)
619{
620 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
621 line->num, line->name ? line->name : "",
622 line->driver->name, VTY_NEWLINE);
623}
624
625DEFUN(show_e1line,
626 show_e1line_cmd,
627 "show e1_line [line_nr]",
628 SHOW_STR "Display information about a E1 line\n")
629{
Harald Welte1bc77352009-03-10 19:47:51 +0000630 struct e1inp_line *line;
631
632 if (argc >= 1) {
633 int num = atoi(argv[0]);
634 llist_for_each_entry(line, &e1inp_line_list, list) {
635 if (line->num == num) {
636 e1line_dump_vty(vty, line);
637 return CMD_SUCCESS;
638 }
639 }
640 return CMD_WARNING;
641 }
642
643 llist_for_each_entry(line, &e1inp_line_list, list)
644 e1line_dump_vty(vty, line);
645
646 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000647}
648
649static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
650{
Harald Welte42581822009-08-08 16:12:58 +0200651 if (ts->type == E1INP_TS_TYPE_NONE)
652 return;
Harald Welte1bc77352009-03-10 19:47:51 +0000653 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
654 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
655 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000656}
657
658DEFUN(show_e1ts,
659 show_e1ts_cmd,
660 "show e1_timeslot [line_nr] [ts_nr]",
661 SHOW_STR "Display information about a E1 timeslot\n")
662{
Harald Welte986c3d72009-11-17 06:12:16 +0100663 struct e1inp_line *line = NULL;
Harald Welte1bc77352009-03-10 19:47:51 +0000664 struct e1inp_ts *ts;
665 int ts_nr;
Harald Welte68628e82009-03-10 12:17:57 +0000666
Harald Welte1bc77352009-03-10 19:47:51 +0000667 if (argc == 0) {
668 llist_for_each_entry(line, &e1inp_line_list, list) {
669 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
670 ts = &line->ts[ts_nr];
671 e1ts_dump_vty(vty, ts);
672 }
673 }
674 return CMD_SUCCESS;
675 }
676 if (argc >= 1) {
677 int num = atoi(argv[0]);
678 llist_for_each_entry(line, &e1inp_line_list, list) {
679 if (line->num == num)
680 break;
681 }
682 if (!line || line->num != num) {
683 vty_out(vty, "E1 line %s is invalid%s",
684 argv[0], VTY_NEWLINE);
685 return CMD_WARNING;
686 }
687 }
688 if (argc >= 2) {
689 ts_nr = atoi(argv[1]);
690 if (ts_nr > NUM_E1_TS) {
691 vty_out(vty, "E1 timeslot %s is invalid%s",
692 argv[1], VTY_NEWLINE);
693 return CMD_WARNING;
694 }
695 ts = &line->ts[ts_nr];
696 e1ts_dump_vty(vty, ts);
697 return CMD_SUCCESS;
698 } else {
699 for (ts_nr = 0; ts_nr < NUM_E1_TS; ts_nr++) {
700 ts = &line->ts[ts_nr];
701 e1ts_dump_vty(vty, ts);
702 }
703 return CMD_SUCCESS;
704 }
705 return CMD_SUCCESS;
Harald Welte68628e82009-03-10 12:17:57 +0000706}
707
Harald Weltebe4b7302009-05-23 16:59:33 +0000708static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +0000709{
710 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
711 subscr_dump_vty(vty, pag->subscr);
712}
713
Harald Weltebe4b7302009-05-23 16:59:33 +0000714static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +0000715{
716 struct gsm_paging_request *pag;
717
718 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
719 paging_dump_vty(vty, pag);
720}
721
722DEFUN(show_paging,
723 show_paging_cmd,
724 "show paging [bts_nr]",
Harald Weltebe4b7302009-05-23 16:59:33 +0000725 SHOW_STR "Display information about paging reuqests of a BTS\n")
Harald Weltef5025b62009-03-28 16:55:11 +0000726{
727 struct gsm_network *net = gsmnet;
728 struct gsm_bts *bts;
729 int bts_nr;
730
731 if (argc >= 1) {
732 /* use the BTS number that the user has specified */
733 bts_nr = atoi(argv[0]);
734 if (bts_nr >= net->num_bts) {
735 vty_out(vty, "%% can't find BTS %s%s", argv[0],
736 VTY_NEWLINE);
737 return CMD_WARNING;
738 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200739 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000740 bts_paging_dump_vty(vty, bts);
741
742 return CMD_SUCCESS;
743 }
744 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200745 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +0000746 bts_paging_dump_vty(vty, bts);
747 }
748
749 return CMD_SUCCESS;
750}
751
Harald Welte5013b2a2009-08-07 13:29:14 +0200752DEFUN(cfg_net,
753 cfg_net_cmd,
754 "network",
755 "Configure the GSM network")
756{
757 vty->index = gsmnet;
758 vty->node = GSMNET_NODE;
759
760 return CMD_SUCCESS;
761}
762
763
764DEFUN(cfg_net_ncc,
765 cfg_net_ncc_cmd,
766 "network country code <1-999>",
767 "Set the GSM network country code")
768{
769 gsmnet->country_code = atoi(argv[0]);
770
771 return CMD_SUCCESS;
772}
773
774DEFUN(cfg_net_mnc,
775 cfg_net_mnc_cmd,
776 "mobile network code <1-999>",
777 "Set the GSM mobile network code")
778{
779 gsmnet->network_code = atoi(argv[0]);
780
781 return CMD_SUCCESS;
782}
783
784DEFUN(cfg_net_name_short,
785 cfg_net_name_short_cmd,
786 "short name NAME",
787 "Set the short GSM network name")
788{
789 if (gsmnet->name_short)
790 talloc_free(gsmnet->name_short);
791
792 gsmnet->name_short = talloc_strdup(gsmnet, argv[0]);
793
794 return CMD_SUCCESS;
795}
796
797DEFUN(cfg_net_name_long,
798 cfg_net_name_long_cmd,
799 "long name NAME",
800 "Set the long GSM network name")
801{
802 if (gsmnet->name_long)
803 talloc_free(gsmnet->name_long);
804
805 gsmnet->name_long = talloc_strdup(gsmnet, argv[0]);
806
807 return CMD_SUCCESS;
808}
Harald Welte40f82892009-05-23 17:31:39 +0000809
Harald Welte (local)69de3972009-08-12 14:42:23 +0200810DEFUN(cfg_net_auth_policy,
811 cfg_net_auth_policy_cmd,
812 "auth policy (closed|accept-all|token)",
813 "Set the GSM network authentication policy\n")
814{
815 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
816
817 gsmnet->auth_policy = policy;
818
819 return CMD_SUCCESS;
820}
821
Harald Welte1085c092009-11-18 20:33:19 +0100822DEFUN(cfg_net_reject_cause,
823 cfg_net_reject_cause_cmd,
824 "location updating reject cause <2-111>",
825 "Set the reject cause of location updating reject\n")
826{
827 gsmnet->reject_cause = atoi(argv[0]);
828
829 return CMD_SUCCESS;
830}
831
Harald Welte4381cfe2009-08-30 15:47:06 +0900832DEFUN(cfg_net_encryption,
833 cfg_net_encryption_cmd,
834 "encryption a5 (0|1|2)",
835 "Enable or disable encryption (A5) for this network\n")
836{
Andreas.Eversberg1059deb2009-11-17 09:55:26 +0100837 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +0900838
839 return CMD_SUCCESS;
840}
841
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100842DEFUN(cfg_net_neci,
843 cfg_net_neci_cmd,
844 "neci (0|1)",
845 "Set if NECI of cell selection is to be set")
846{
847 gsmnet->neci = atoi(argv[0]);
848 return CMD_SUCCESS;
849}
850
Harald Welteeab84a12009-12-13 10:53:12 +0100851DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
852 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
853 "Set the Radio Resource Location Protocol Mode")
854{
855 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
856
857 return CMD_SUCCESS;
858}
859
Harald Welte648b6ce2009-12-14 09:00:24 +0100860DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
861 "mm info (0|1)",
862 "Whether to send MM INFO after LOC UPD ACCEPT")
863{
864 gsmnet->send_mm_info = atoi(argv[0]);
865
866 return CMD_SUCCESS;
867}
868
Harald Weltebc814502009-12-19 21:41:52 +0100869DEFUN(cfg_net_handover, cfg_net_handover_cmd,
870 "handover (0|1)",
871 "Whether or not to use in-call handover")
872{
Harald Weltefe03f0d2009-12-20 13:51:01 +0100873 if (ipacc_rtp_direct) {
874 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
875 "is enabled by using the -P command line option%s",
876 VTY_NEWLINE);
877 return CMD_WARNING;
878 }
Harald Weltebc814502009-12-19 21:41:52 +0100879 gsmnet->handover.active = atoi(argv[0]);
880
881 return CMD_SUCCESS;
882}
883
884
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100885#define DECLARE_TIMER(number) \
886 DEFUN(cfg_net_T##number, \
887 cfg_net_T##number##_cmd, \
888 "timer t" #number " <0-65535>", \
889 "Set the T" #number " value.") \
890{ \
891 int value = atoi(argv[0]); \
892 \
893 if (value < 0 || value > 65535) { \
894 vty_out(vty, "Timer value %s out of range.%s", \
895 argv[0], VTY_NEWLINE); \
896 return CMD_WARNING; \
897 } \
898 \
899 gsmnet->T##number = value; \
900 return CMD_SUCCESS; \
901}
902
903DECLARE_TIMER(3101)
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100904DECLARE_TIMER(3103)
905DECLARE_TIMER(3105)
906DECLARE_TIMER(3107)
907DECLARE_TIMER(3109)
908DECLARE_TIMER(3111)
909DECLARE_TIMER(3113)
910DECLARE_TIMER(3115)
911DECLARE_TIMER(3117)
912DECLARE_TIMER(3119)
913DECLARE_TIMER(3141)
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100914
915
Harald Welte5258fc42009-03-28 19:07:53 +0000916/* per-BTS configuration */
917DEFUN(cfg_bts,
918 cfg_bts_cmd,
919 "bts BTS_NR",
920 "Select a BTS to configure\n")
921{
922 int bts_nr = atoi(argv[0]);
923 struct gsm_bts *bts;
924
Harald Weltee441d9c2009-06-21 16:17:15 +0200925 if (bts_nr > gsmnet->num_bts) {
926 vty_out(vty, "%% The next unused BTS number is %u%s",
927 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +0000928 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +0200929 } else if (bts_nr == gsmnet->num_bts) {
930 /* allocate a new one */
931 bts = gsm_bts_alloc(gsmnet, GSM_BTS_TYPE_UNKNOWN,
932 HARDCODED_TSC, HARDCODED_BSIC);
933 } else
934 bts = gsm_bts_num(gsmnet, bts_nr);
935
936 if (!bts)
937 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +0000938
939 vty->index = bts;
940 vty->node = BTS_NODE;
941
942 return CMD_SUCCESS;
943}
944
945DEFUN(cfg_bts_type,
946 cfg_bts_type_cmd,
947 "type TYPE",
948 "Set the BTS type\n")
949{
950 struct gsm_bts *bts = vty->index;
951
Harald Weltea6fd58e2009-08-07 00:25:23 +0200952 bts->type = parse_btstype(argv[0]);
953
Harald Welte8175e952009-10-20 00:22:00 +0200954 if (is_ipaccess_bts(bts)) {
955 /* Set the default OML Stream ID to 0xff */
956 bts->oml_tei = 0xff;
957 }
958
Harald Welte5258fc42009-03-28 19:07:53 +0000959 return CMD_SUCCESS;
960}
961
Harald Weltefcd24452009-06-20 18:15:19 +0200962DEFUN(cfg_bts_band,
963 cfg_bts_band_cmd,
964 "band BAND",
965 "Set the frequency band of this BTS\n")
966{
967 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +0200968 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +0200969
970 if (band < 0) {
971 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
972 band, VTY_NEWLINE);
973 return CMD_WARNING;
974 }
975
976 bts->band = band;
977
978 return CMD_SUCCESS;
979}
980
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200981DEFUN(cfg_bts_ci,
982 cfg_bts_ci_cmd,
983 "cell_identity <0-65535>",
984 "Set the Cell identity of this BTS\n")
985{
986 struct gsm_bts *bts = vty->index;
987 int ci = atoi(argv[0]);
988
989 if (ci < 0 || ci > 0xffff) {
990 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
991 ci, VTY_NEWLINE);
992 return CMD_WARNING;
993 }
994 bts->cell_identity = ci;
995
996 return CMD_SUCCESS;
997}
998
Harald Welte5258fc42009-03-28 19:07:53 +0000999DEFUN(cfg_bts_lac,
1000 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001001 "location_area_code <0-65535>",
Harald Welte5258fc42009-03-28 19:07:53 +00001002 "Set the Location Area Code (LAC) of this BTS\n")
1003{
1004 struct gsm_bts *bts = vty->index;
1005 int lac = atoi(argv[0]);
1006
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001007 if (lac < 0 || lac > 0xffff) {
1008 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001009 lac, VTY_NEWLINE);
1010 return CMD_WARNING;
1011 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001012
1013 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1014 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1015 lac, VTY_NEWLINE);
1016 return CMD_WARNING;
1017 }
1018
Harald Welte5258fc42009-03-28 19:07:53 +00001019 bts->location_area_code = lac;
1020
1021 return CMD_SUCCESS;
1022}
1023
Harald Weltea43f7892009-12-01 18:04:30 +05301024
Harald Welte5258fc42009-03-28 19:07:53 +00001025DEFUN(cfg_bts_tsc,
1026 cfg_bts_tsc_cmd,
1027 "training_sequence_code <0-255>",
1028 "Set the Training Sequence Code (TSC) of this BTS\n")
1029{
1030 struct gsm_bts *bts = vty->index;
1031 int tsc = atoi(argv[0]);
1032
1033 if (tsc < 0 || tsc > 0xff) {
1034 vty_out(vty, "%% TSC %d is not in the valid range (0-255)%s",
1035 tsc, VTY_NEWLINE);
1036 return CMD_WARNING;
1037 }
1038 bts->tsc = tsc;
1039
1040 return CMD_SUCCESS;
1041}
1042
Harald Welte78f2f502009-05-23 16:56:52 +00001043DEFUN(cfg_bts_bsic,
1044 cfg_bts_bsic_cmd,
1045 "base_station_id_code <0-63>",
1046 "Set the Base Station Identity Code (BSIC) of this BTS\n")
1047{
1048 struct gsm_bts *bts = vty->index;
1049 int bsic = atoi(argv[0]);
1050
1051 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001052 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001053 bsic, VTY_NEWLINE);
1054 return CMD_WARNING;
1055 }
1056 bts->bsic = bsic;
1057
1058 return CMD_SUCCESS;
1059}
1060
1061
Harald Welte4cc34222009-05-01 15:12:31 +00001062DEFUN(cfg_bts_unit_id,
1063 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001064 "ip.access unit_id <0-65534> <0-255>",
1065 "Set the ip.access BTS Unit ID of this BTS\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001066{
1067 struct gsm_bts *bts = vty->index;
1068 int site_id = atoi(argv[0]);
1069 int bts_id = atoi(argv[1]);
1070
Harald Welte07dc73d2009-08-07 13:27:09 +02001071 if (!is_ipaccess_bts(bts)) {
1072 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1073 return CMD_WARNING;
1074 }
1075
Harald Welte4cc34222009-05-01 15:12:31 +00001076 bts->ip_access.site_id = site_id;
1077 bts->ip_access.bts_id = bts_id;
1078
1079 return CMD_SUCCESS;
1080}
1081
Harald Welte8175e952009-10-20 00:22:00 +02001082DEFUN(cfg_bts_stream_id,
1083 cfg_bts_stream_id_cmd,
1084 "oml ip.access stream_id <0-255>",
1085 "Set the ip.access Stream ID of the OML link of this BTS\n")
1086{
1087 struct gsm_bts *bts = vty->index;
1088 int stream_id = atoi(argv[0]);
1089
1090 if (!is_ipaccess_bts(bts)) {
1091 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1092 return CMD_WARNING;
1093 }
1094
1095 bts->oml_tei = stream_id;
1096
1097 return CMD_SUCCESS;
1098}
1099
1100
Harald Welte42581822009-08-08 16:12:58 +02001101DEFUN(cfg_bts_oml_e1,
1102 cfg_bts_oml_e1_cmd,
1103 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1104 "E1 interface to be used for OML\n")
1105{
1106 struct gsm_bts *bts = vty->index;
1107
1108 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1109
1110 return CMD_SUCCESS;
1111}
1112
1113
1114DEFUN(cfg_bts_oml_e1_tei,
1115 cfg_bts_oml_e1_tei_cmd,
1116 "oml e1 tei <0-63>",
1117 "Set the TEI to be used for OML")
1118{
1119 struct gsm_bts *bts = vty->index;
1120
1121 bts->oml_tei = atoi(argv[0]);
1122
1123 return CMD_SUCCESS;
1124}
1125
Harald Welte7a8fa412009-08-10 13:48:16 +02001126DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1127 "channel allocator (ascending|descending)",
1128 "Should the channel allocator allocate in reverse TRX order?")
1129{
1130 struct gsm_bts *bts = vty->index;
1131
1132 if (!strcmp(argv[0], "ascending"))
1133 bts->chan_alloc_reverse = 0;
1134 else
1135 bts->chan_alloc_reverse = 1;
1136
1137 return CMD_SUCCESS;
1138}
1139
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001140DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1141 "cell barred (0|1)",
1142 "Should this cell be barred from access?")
1143{
1144 struct gsm_bts *bts = vty->index;
1145
1146 bts->cell_barred = atoi(argv[0]);
1147
1148 return CMD_SUCCESS;
1149}
1150
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001151DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1152 "ms max power <0-40>",
1153 "Maximum transmit power of the MS")
1154{
1155 struct gsm_bts *bts = vty->index;
1156
1157 bts->ms_max_power = atoi(argv[0]);
1158
1159 return CMD_SUCCESS;
1160}
1161
Harald Welte73225282009-12-12 18:17:25 +01001162DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1163 "cell reselection hysteresis <0-14>",
1164 "Cell Re-Selection Hysteresis in dB")
1165{
1166 struct gsm_bts *bts = vty->index;
1167
1168 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1169
1170 return CMD_SUCCESS;
1171}
1172
1173DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1174 "rxlev access min <0-63>",
1175 "Minimum RxLev needed for cell access (better than -110dBm)")
1176{
1177 struct gsm_bts *bts = vty->index;
1178
1179 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1180
1181 return CMD_SUCCESS;
1182}
1183
Harald Welte (local)efc92312009-08-14 23:09:25 +02001184DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
1185 "periodic location update <0-1530>",
1186 "Periodic Location Updating Interval in Minutes")
1187{
1188 struct gsm_bts *bts = vty->index;
1189
Harald Weltea43f7892009-12-01 18:04:30 +05301190 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 10;
Harald Welte (local)efc92312009-08-14 23:09:25 +02001191
1192 return CMD_SUCCESS;
1193}
1194
Harald Welte7a8fa412009-08-10 13:48:16 +02001195
Harald Welte5258fc42009-03-28 19:07:53 +00001196/* per TRX configuration */
1197DEFUN(cfg_trx,
1198 cfg_trx_cmd,
1199 "trx TRX_NR",
1200 "Select a TRX to configure")
1201{
1202 int trx_nr = atoi(argv[0]);
1203 struct gsm_bts *bts = vty->index;
1204 struct gsm_bts_trx *trx;
1205
Harald Weltee441d9c2009-06-21 16:17:15 +02001206 if (trx_nr > bts->num_trx) {
1207 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
1208 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001209 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001210 } else if (trx_nr == bts->num_trx) {
1211 /* we need to allocate a new one */
1212 trx = gsm_bts_trx_alloc(bts);
1213 } else
1214 trx = gsm_bts_trx_num(bts, trx_nr);
1215
1216 if (!trx)
1217 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00001218
1219 vty->index = trx;
1220 vty->node = TRX_NODE;
1221
1222 return CMD_SUCCESS;
1223}
1224
1225DEFUN(cfg_trx_arfcn,
1226 cfg_trx_arfcn_cmd,
1227 "arfcn <1-1024>",
1228 "Set the ARFCN for this TRX\n")
1229{
1230 int arfcn = atoi(argv[0]);
1231 struct gsm_bts_trx *trx = vty->index;
1232
1233 /* FIXME: check if this ARFCN is supported by this TRX */
1234
1235 trx->arfcn = arfcn;
1236
1237 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
1238 /* FIXME: use OML layer to update the ARFCN */
1239 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
1240
1241 return CMD_SUCCESS;
1242}
1243
Harald Weltefcd24452009-06-20 18:15:19 +02001244DEFUN(cfg_trx_max_power_red,
1245 cfg_trx_max_power_red_cmd,
1246 "max_power_red <0-100>",
1247 "Reduction of maximum BS RF Power in dB\n")
1248{
1249 int maxpwr_r = atoi(argv[0]);
1250 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01001251 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02001252
1253 /* FIXME: check if our BTS type supports more than 12 */
1254 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
1255 vty_out(vty, "%% Power %d dB is not in the valid range%s",
1256 maxpwr_r, VTY_NEWLINE);
1257 return CMD_WARNING;
1258 }
1259 if (maxpwr_r & 1) {
1260 vty_out(vty, "%% Power %d dB is not an even value%s",
1261 maxpwr_r, VTY_NEWLINE);
1262 return CMD_WARNING;
1263 }
1264
1265 trx->max_power_red = maxpwr_r;
1266
1267 /* FIXME: make sure we update this using OML */
1268
1269 return CMD_SUCCESS;
1270}
1271
Harald Welte42581822009-08-08 16:12:58 +02001272DEFUN(cfg_trx_rsl_e1,
1273 cfg_trx_rsl_e1_cmd,
1274 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
1275 "E1 interface to be used for RSL\n")
1276{
1277 struct gsm_bts_trx *trx = vty->index;
1278
1279 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
1280
1281 return CMD_SUCCESS;
1282}
1283
1284DEFUN(cfg_trx_rsl_e1_tei,
1285 cfg_trx_rsl_e1_tei_cmd,
1286 "rsl e1 tei <0-63>",
1287 "Set the TEI to be used for RSL")
1288{
1289 struct gsm_bts_trx *trx = vty->index;
1290
1291 trx->rsl_tei = atoi(argv[0]);
1292
1293 return CMD_SUCCESS;
1294}
1295
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001296DEFUN(cfg_trx_rf_locked,
1297 cfg_trx_rf_locked_cmd,
1298 "rf_locked (0|1)",
1299 "Turn off RF of the TRX.\n")
1300{
1301 int locked = atoi(argv[0]);
1302 struct gsm_bts_trx *trx = vty->index;
1303
1304 gsm_trx_lock_rf(trx, locked);
1305 return CMD_SUCCESS;
1306}
Harald Welte42581822009-08-08 16:12:58 +02001307
Harald Welte5258fc42009-03-28 19:07:53 +00001308/* per TS configuration */
1309DEFUN(cfg_ts,
1310 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001311 "timeslot <0-7>",
Harald Welte5258fc42009-03-28 19:07:53 +00001312 "Select a Timeslot to configure")
1313{
1314 int ts_nr = atoi(argv[0]);
1315 struct gsm_bts_trx *trx = vty->index;
1316 struct gsm_bts_trx_ts *ts;
1317
1318 if (ts_nr >= TRX_NR_TS) {
1319 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
1320 TRX_NR_TS, VTY_NEWLINE);
1321 return CMD_WARNING;
1322 }
1323
1324 ts = &trx->ts[ts_nr];
1325
1326 vty->index = ts;
1327 vty->node = TS_NODE;
1328
1329 return CMD_SUCCESS;
1330}
1331
Harald Weltea6fd58e2009-08-07 00:25:23 +02001332DEFUN(cfg_ts_pchan,
1333 cfg_ts_pchan_cmd,
1334 "phys_chan_config PCHAN",
1335 "Physical Channel configuration (TCH/SDCCH/...)")
1336{
1337 struct gsm_bts_trx_ts *ts = vty->index;
1338 int pchanc;
1339
1340 pchanc = gsm_pchan_parse(argv[0]);
1341 if (pchanc < 0)
1342 return CMD_WARNING;
1343
1344 ts->pchan = pchanc;
1345
1346 return CMD_SUCCESS;
1347}
1348
1349DEFUN(cfg_ts_e1_subslot,
1350 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02001351 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltea6fd58e2009-08-07 00:25:23 +02001352 "E1 sub-slot connected to this on-air timeslot")
1353{
1354 struct gsm_bts_trx_ts *ts = vty->index;
1355
Harald Welte42581822009-08-08 16:12:58 +02001356 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001357
1358 return CMD_SUCCESS;
1359}
Harald Welte5258fc42009-03-28 19:07:53 +00001360
Harald Welte68628e82009-03-10 12:17:57 +00001361int bsc_vty_init(struct gsm_network *net)
1362{
1363 gsmnet = net;
1364
1365 cmd_init(1);
1366 vty_init();
1367
1368 install_element(VIEW_NODE, &show_net_cmd);
1369 install_element(VIEW_NODE, &show_bts_cmd);
1370 install_element(VIEW_NODE, &show_trx_cmd);
1371 install_element(VIEW_NODE, &show_ts_cmd);
1372 install_element(VIEW_NODE, &show_lchan_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00001373
1374 install_element(VIEW_NODE, &show_e1drv_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001375 install_element(VIEW_NODE, &show_e1line_cmd);
1376 install_element(VIEW_NODE, &show_e1ts_cmd);
1377
Harald Weltef5025b62009-03-28 16:55:11 +00001378 install_element(VIEW_NODE, &show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001379
Harald Welte5013b2a2009-08-07 13:29:14 +02001380 install_element(CONFIG_NODE, &cfg_net_cmd);
1381 install_node(&net_node, config_write_net);
1382 install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02001383 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001384 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
1385 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
1386 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001387 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01001388 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09001389 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001390 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01001391 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01001392 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01001393 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001394 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01001395 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
1396 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
1397 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
1398 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
1399 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
1400 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
1401 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
1402 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
1403 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
1404 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02001405
1406 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02001407 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00001408 install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001409 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02001410 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001411 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00001412 install_element(BTS_NODE, &cfg_bts_lac_cmd);
1413 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001414 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00001415 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02001416 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001417 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
1418 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001419 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001420 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001421 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02001422 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01001423 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
1424 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02001425
Harald Welte68628e82009-03-10 12:17:57 +00001426
Harald Welte5258fc42009-03-28 19:07:53 +00001427 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001428 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001429 install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00001430 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02001431 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02001432 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
1433 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01001434 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001435
Harald Welte5258fc42009-03-28 19:07:53 +00001436 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001437 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00001438 install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02001439 install_element(TS_NODE, &cfg_ts_pchan_cmd);
1440 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00001441
Holger Hans Peter Freythercfa90d42009-08-10 10:17:50 +02001442 bsc_vty_init_extra(net);
Harald Welte40f82892009-05-23 17:31:39 +00001443
Harald Welte68628e82009-03-10 12:17:57 +00001444 return 0;
1445}