blob: 0875e1a8aa878f716e0e07d76be9c88e82027716 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte59b04682009-06-10 05:40:52 +08008 * (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
Harald Welte0e3e88e2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080014 *
Harald Welte0e3e88e2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080022
Harald Weltebd9591f2010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte2addf852012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte59b04682009-06-10 05:40:52 +080029
30#include <arpa/inet.h>
31
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010032#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/gsm_data.h>
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +020034#include <osmocom/abis/e1_input.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010036#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010037#include <osmocom/core/utils.h>
38#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020039#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010040#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010041#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080042#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010043#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020044#include <openbsc/vty.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080045#include <osmocom/gprs/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020046#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020047#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010048#include <openbsc/paging.h>
Harald Welte64fcd772011-08-20 18:25:02 +020049#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010050#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010051#include <openbsc/osmo_msc_data.h>
52#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080053
Harald Welted9dea592011-03-04 13:53:51 +010054#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020055
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +020056
57#define NETWORK_STR "Configure the GSM network\n"
58#define CODE_CMD_STR "Code commands\n"
59#define NAME_CMD_STR "Name Commands\n"
60#define NAME_STR "Name to use\n"
61#define LCHAN_NR_STR "Logical Channel Number\n"
62
63
Harald Welted6b62e32010-05-12 17:19:53 +000064/* FIXME: this should go to some common file */
65static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020066 { 0, "tns-block" },
67 { 1, "tns-block-retries" },
68 { 2, "tns-reset" },
69 { 3, "tns-reset-retries" },
70 { 4, "tns-test" },
71 { 5, "tns-alive" },
72 { 6, "tns-alive-retries" },
73 { 0, NULL }
74};
75
Harald Welted6b62e32010-05-12 17:19:53 +000076static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020077 { 0, "blocking-timer" },
78 { 1, "blocking-retries" },
79 { 2, "unblocking-retries" },
80 { 3, "reset-timer" },
81 { 4, "reset-retries" },
82 { 5, "suspend-timer" },
83 { 6, "suspend-retries" },
84 { 7, "resume-timer" },
85 { 8, "resume-retries" },
86 { 9, "capability-update-timer" },
87 { 10, "capability-update-retries" },
88 { 0, NULL }
89};
90
Harald Weltef989b782011-02-15 11:43:27 +010091static const struct value_string bts_neigh_mode_strs[] = {
92 { NL_MODE_AUTOMATIC, "automatic" },
93 { NL_MODE_MANUAL, "manual" },
94 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
95 { 0, NULL }
96};
97
Daniel Willmann2c9540c2012-05-14 18:43:23 +020098const struct value_string bts_loc_fix_names[] = {
99 { BTS_LOC_FIX_INVALID, "invalid" },
100 { BTS_LOC_FIX_2D, "fix2d" },
101 { BTS_LOC_FIX_3D, "fix3d" },
102 { 0, NULL }
103};
104
Harald Weltee87eb462009-08-07 13:29:14 +0200105struct cmd_node net_node = {
106 GSMNET_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200107 "%s(config-net)# ",
Harald Weltee87eb462009-08-07 13:29:14 +0200108 1,
109};
110
Harald Welte59b04682009-06-10 05:40:52 +0800111struct cmd_node bts_node = {
112 BTS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200113 "%s(config-net-bts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800114 1,
115};
116
117struct cmd_node trx_node = {
118 TRX_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200119 "%s(config-net-bts-trx)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800120 1,
121};
122
123struct cmd_node ts_node = {
124 TS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200125 "%s(config-net-bts-trx-ts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800126 1,
127};
128
Harald Welte61daf6d2010-05-27 13:39:40 +0200129extern struct gsm_network *bsc_gsmnet;
130
Harald Welte40152872010-05-16 20:52:23 +0200131struct gsm_network *gsmnet_from_vty(struct vty *v)
132{
Harald Welte61daf6d2010-05-27 13:39:40 +0200133 /* In case we read from the config file, the vty->priv cannot
134 * point to a struct telnet_connection, and thus conn->priv
135 * will not point to the gsm_network structure */
136#if 0
Harald Welte40152872010-05-16 20:52:23 +0200137 struct telnet_connection *conn = v->priv;
138 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200139#else
140 return bsc_gsmnet;
141#endif
Harald Welte40152872010-05-16 20:52:23 +0200142}
143
Harald Welte59b04682009-06-10 05:40:52 +0800144static int dummy_config_write(struct vty *v)
145{
146 return CMD_SUCCESS;
147}
148
149static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
150{
151 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte306a8892011-05-23 20:30:39 +0200152 abis_nm_opstate_name(nms->operational), nms->administrative,
153 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800154}
155
Harald Weltefe96f382009-12-22 13:09:29 +0100156static void dump_pchan_load_vty(struct vty *vty, char *prefix,
157 const struct pchan_load *pl)
158{
159 int i;
160
161 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
162 const struct load_counter *lc = &pl->pchan[i];
163 unsigned int percent;
164
165 if (lc->total == 0)
166 continue;
167
168 percent = (lc->used * 100) / lc->total;
169
170 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
171 gsm_pchan_name(i), percent, lc->used, lc->total,
172 VTY_NEWLINE);
173 }
174}
175
Harald Welte59b04682009-06-10 05:40:52 +0800176static void net_dump_vty(struct vty *vty, struct gsm_network *net)
177{
Harald Weltefe96f382009-12-22 13:09:29 +0100178 struct pchan_load pl;
179
Harald Welte59b04682009-06-10 05:40:52 +0800180 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
181 "and has %u BTS%s", net->country_code, net->network_code,
182 net->num_bts, VTY_NEWLINE);
183 vty_out(vty, " Long network name: '%s'%s",
184 net->name_long, VTY_NEWLINE);
185 vty_out(vty, " Short network name: '%s'%s",
186 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200187 vty_out(vty, " Authentication policy: %s%s",
188 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100189 vty_out(vty, " Location updating reject cause: %u%s",
190 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900191 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
192 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100193 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
194 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800195 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
196 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100197 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
198 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100199 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
200 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100201 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
202 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100203 network_chan_load(&pl, net);
204 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
205 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100206
207 /* show rf */
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200208 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100209 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200210 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100211 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800212}
213
214DEFUN(show_net, show_net_cmd, "show network",
215 SHOW_STR "Display information about a GSM NETWORK\n")
216{
Harald Welte40152872010-05-16 20:52:23 +0200217 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800218 net_dump_vty(vty, net);
219
220 return CMD_SUCCESS;
221}
222
223static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
224{
225 struct e1inp_line *line;
226
227 if (!e1l) {
228 vty_out(vty, " None%s", VTY_NEWLINE);
229 return;
230 }
231
232 line = e1l->ts->line;
233
234 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
235 line->num, line->driver->name, e1l->ts->num,
236 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
237 vty_out(vty, " E1 TEI %u, SAPI %u%s",
238 e1l->tei, e1l->sapi, VTY_NEWLINE);
239}
240
241static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
242{
Harald Weltefe96f382009-12-22 13:09:29 +0100243 struct pchan_load pl;
244
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200245 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200246 "BSIC %u, TSC %u and %u TRX%s",
247 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200248 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200249 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200250 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200251 vty_out(vty, "Description: %s%s",
252 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100253 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100254 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100255 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
256 VTY_NEWLINE);
257 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100258 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100259 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
260 VTY_NEWLINE);
261 vty_out(vty, "RACH Max transmissions: %u%s",
262 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
263 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100264 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200265 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200266 vty_out(vty, "Channel Description Attachment: %s%s",
267 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
268 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
269 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
270 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
271 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200272 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
273 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800274 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200275 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800276 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200277 bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100278 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
279 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200280 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
281 vty_out(vty, " Skip Reset: %d%s",
282 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800283 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200284 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800285 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200286 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200287 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
288 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800289 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100290 if (is_ipaccess_bts(bts)) {
291 vty_out(vty, " OML Link state: %s.%s",
292 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
293 } else {
Harald Welte25572872009-10-20 00:22:00 +0200294 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
295 e1isl_dump_vty(vty, bts->oml_link);
296 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100297
298 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100299 memset(&pl, 0, sizeof(pl));
300 bts_chan_load(&pl, bts);
301 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
302 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800303}
304
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100305DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800306 SHOW_STR "Display information about a BTS\n"
307 "BTS number")
308{
Harald Welte40152872010-05-16 20:52:23 +0200309 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800310 int bts_nr;
311
312 if (argc != 0) {
313 /* use the BTS number that the user has specified */
314 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100315 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800316 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
317 VTY_NEWLINE);
318 return CMD_WARNING;
319 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200320 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800321 return CMD_SUCCESS;
322 }
323 /* print all BTS's */
324 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200325 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800326
327 return CMD_SUCCESS;
328}
329
Harald Welte62868882009-08-08 16:12:58 +0200330/* utility functions */
331static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
332 const char *ts, const char *ss)
333{
334 e1_link->e1_nr = atoi(line);
335 e1_link->e1_ts = atoi(ts);
336 if (!strcmp(ss, "full"))
337 e1_link->e1_ts_ss = 255;
338 else
339 e1_link->e1_ts_ss = atoi(ss);
340}
341
342static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
343 const char *prefix)
344{
345 if (!e1_link->e1_ts)
346 return;
347
348 if (e1_link->e1_ts_ss == 255)
349 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
350 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
351 else
352 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
353 prefix, e1_link->e1_nr, e1_link->e1_ts,
354 e1_link->e1_ts_ss, VTY_NEWLINE);
355}
356
357
Harald Welte97ceef92009-08-06 19:06:46 +0200358static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
359{
Harald Welte62868882009-08-08 16:12:58 +0200360 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200361 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
362 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200363 if (ts->pchan != GSM_PCHAN_NONE)
364 vty_out(vty, " phys_chan_config %s%s",
365 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200366 vty_out(vty, " hopping enabled %u%s",
367 ts->hopping.enabled, VTY_NEWLINE);
368 if (ts->hopping.enabled) {
369 unsigned int i;
370 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200371 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200372 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200373 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200374 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
375 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
376 continue;
377 vty_out(vty, " hopping arfcn add %u%s",
378 i, VTY_NEWLINE);
379 }
Harald Welteff598092010-12-24 12:07:07 +0100380 }
Harald Welte62868882009-08-08 16:12:58 +0200381 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100382
383 if (ts->trx->bts->model->config_write_ts)
384 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200385}
386
387static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
388{
389 int i;
390
Harald Weltee87eb462009-08-07 13:29:14 +0200391 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200392 if (trx->description)
393 vty_out(vty, " description %s%s", trx->description,
394 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200395 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200396 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200397 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200398 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100399 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200400 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200401 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
402 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200403
Harald Weltec02789e2011-02-14 16:15:21 +0100404 if (trx->bts->model->config_write_trx)
405 trx->bts->model->config_write_trx(vty, trx);
406
Harald Welte97ceef92009-08-06 19:06:46 +0200407 for (i = 0; i < TRX_NR_TS; i++)
408 config_write_ts_single(vty, &trx->ts[i]);
409}
410
Harald Weltea9251762010-05-11 23:50:21 +0200411static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
412{
413 unsigned int i;
414 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
415 VTY_NEWLINE);
416 if (bts->gprs.mode == BTS_GPRS_NONE)
417 return;
418
419 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
420 VTY_NEWLINE);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +0100421 vty_out(vty, " gprs network-control-order nc%u%s",
422 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Weltea9251762010-05-11 23:50:21 +0200423 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
424 VTY_NEWLINE);
425 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
426 vty_out(vty, " gprs cell timer %s %u%s",
427 get_value_string(gprs_bssgp_cfg_strs, i),
428 bts->gprs.cell.timer[i], VTY_NEWLINE);
429 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
430 VTY_NEWLINE);
431 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
432 vty_out(vty, " gprs ns timer %s %u%s",
433 get_value_string(gprs_ns_timer_strs, i),
434 bts->gprs.nse.timer[i], VTY_NEWLINE);
435 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
436 struct gsm_bts_gprs_nsvc *nsvc =
437 &bts->gprs.nsvc[i];
438 struct in_addr ia;
439
440 ia.s_addr = htonl(nsvc->remote_ip);
441 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
442 nsvc->nsvci, VTY_NEWLINE);
443 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
444 nsvc->local_port, VTY_NEWLINE);
445 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
446 nsvc->remote_port, VTY_NEWLINE);
447 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
448 inet_ntoa(ia), VTY_NEWLINE);
449 }
450}
451
Harald Welte97ceef92009-08-06 19:06:46 +0200452static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
453{
454 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200455 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200456
Harald Weltee87eb462009-08-07 13:29:14 +0200457 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
458 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200459 if (bts->description)
460 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200461 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100462 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200463 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200464 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200465 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
466 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte5c3abf92012-07-08 16:48:11 +0200467 if (bts->tz.override != 0)
468 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200469 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100470 vty_out(vty, " cell reselection hysteresis %u%s",
471 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
472 vty_out(vty, " rxlev access min %u%s",
473 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100474
475 if (bts->si_common.cell_ro_sel_par.present) {
476 struct gsm48_si_selection_params *sp;
477 sp = &bts->si_common.cell_ro_sel_par;
478
479 if (sp->cbq)
480 vty_out(vty, " cell bar qualify %u%s",
481 sp->cbq, VTY_NEWLINE);
482
483 if (sp->cell_resel_off)
484 vty_out(vty, " cell reselection offset %u%s",
485 sp->cell_resel_off*2, VTY_NEWLINE);
486
487 if (sp->temp_offs == 7)
488 vty_out(vty, " temporary offset infinite%s",
489 VTY_NEWLINE);
490 else if (sp->temp_offs)
491 vty_out(vty, " temporary offset %u%s",
492 sp->temp_offs*10, VTY_NEWLINE);
493
494 if (sp->penalty_time == 31)
495 vty_out(vty, " penalty time reserved%s",
496 VTY_NEWLINE);
497 else if (sp->penalty_time)
498 vty_out(vty, " penalty time %u%s",
499 (sp->penalty_time*20)+20, VTY_NEWLINE);
500 }
501
Daniel Willmann3e7db9e2012-12-27 00:02:01 +0100502 vty_out(vty, " periodic location update %u%s",
503 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200504 vty_out(vty, " channel allocator %s%s",
505 bts->chan_alloc_reverse ? "descending" : "ascending",
506 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100507 vty_out(vty, " rach tx integer %u%s",
508 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
509 vty_out(vty, " rach max transmission %u%s",
510 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
511 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800512
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200513 vty_out(vty, " channel-descrption attach %u%s",
514 bts->si_common.chan_desc.att, VTY_NEWLINE);
515 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
516 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
517 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
518 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
519
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800520 if (bts->rach_b_thresh != -1)
521 vty_out(vty, " rach nm busy threshold %u%s",
522 bts->rach_b_thresh, VTY_NEWLINE);
523 if (bts->rach_ldavg_slots != -1)
524 vty_out(vty, " rach nm load average %u%s",
525 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100526 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200527 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800528 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
529 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200530 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
531 if (bts->si_mode_static & (1 << i)) {
532 vty_out(vty, " system-information %s mode static%s",
533 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
534 vty_out(vty, " system-information %s static %s%s",
535 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100536 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200537 VTY_NEWLINE);
538 }
539 }
Harald Welte08011e22011-03-04 13:41:31 +0100540 switch (bts->type) {
541 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200542 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200543 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200544 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-03-12 13:57:05 +0100545 if (bts->ip_access.rsl_ip) {
546 struct in_addr ia;
547 ia.s_addr = htonl(bts->ip_access.rsl_ip);
548 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
549 VTY_NEWLINE);
550 }
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200551 vty_out(vty, " oml ip.access stream_id %u line %u%s",
552 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100553 break;
554 case GSM_BTS_TYPE_HSL_FEMTO:
555 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200556 vty_out(vty, " oml hsl line %u%s",
557 bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100558 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200559 case GSM_BTS_TYPE_NOKIA_SITE:
560 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
561 break;
Harald Welte08011e22011-03-04 13:41:31 +0100562 default:
Harald Welte62868882009-08-08 16:12:58 +0200563 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
564 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100565 break;
Harald Welte62868882009-08-08 16:12:58 +0200566 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800567
568 /* if we have a limit, write it */
569 if (bts->paging.free_chans_need >= 0)
570 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
571
Harald Welteca46eff2011-01-11 23:44:56 +0100572 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100573 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
574 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100575 for (i = 0; i < 1024; i++) {
576 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
577 vty_out(vty, " neighbor-list add arfcn %u%s",
578 i, VTY_NEWLINE);
579 }
580 }
Harald Weltef989b782011-02-15 11:43:27 +0100581 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
582 for (i = 0; i < 1024; i++) {
583 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
584 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
585 i, VTY_NEWLINE);
586 }
587 }
Harald Welteca46eff2011-01-11 23:44:56 +0100588
Harald Weltea9251762010-05-11 23:50:21 +0200589 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200590
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200591 if (bts->excl_from_rf_lock)
592 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
593
Harald Weltec02789e2011-02-14 16:15:21 +0100594 if (bts->model->config_write_bts)
595 bts->model->config_write_bts(vty, bts);
596
Harald Welte97ceef92009-08-06 19:06:46 +0200597 llist_for_each_entry(trx, &bts->trx_list, list)
598 config_write_trx_single(vty, trx);
599}
600
601static int config_write_bts(struct vty *v)
602{
Harald Welte40152872010-05-16 20:52:23 +0200603 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200604 struct gsm_bts *bts;
605
606 llist_for_each_entry(bts, &gsmnet->bts_list, list)
607 config_write_bts_single(v, bts);
608
609 return CMD_SUCCESS;
610}
611
Harald Weltee87eb462009-08-07 13:29:14 +0200612static int config_write_net(struct vty *vty)
613{
Harald Welte40152872010-05-16 20:52:23 +0200614 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
615
Harald Weltee87eb462009-08-07 13:29:14 +0200616 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200617 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200618 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200619 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
620 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200621 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100622 vty_out(vty, " location updating reject cause %u%s",
623 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900624 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100625 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800626 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100627 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
628 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100629 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100630 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100631 vty_out(vty, " handover window rxlev averaging %u%s",
632 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
633 vty_out(vty, " handover window rxqual averaging %u%s",
634 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
635 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
636 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
637 vty_out(vty, " handover power budget interval %u%s",
638 gsmnet->handover.pwr_interval, VTY_NEWLINE);
639 vty_out(vty, " handover power budget hysteresis %u%s",
640 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
641 vty_out(vty, " handover maximum distance %u%s",
642 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100643 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100644 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
645 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
646 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
647 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
648 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
649 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
650 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
651 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
652 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100653 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100654 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100655 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100656 vty_out(vty, " subscriber-keep-in-ram %d%s",
657 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200658
659 return CMD_SUCCESS;
660}
Harald Welte97ceef92009-08-06 19:06:46 +0200661
Harald Welte59b04682009-06-10 05:40:52 +0800662static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
663{
664 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
665 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200666 vty_out(vty, "Description: %s%s",
667 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200668 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200669 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200670 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200671 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800672 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200673 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800674 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200675 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200676 if (is_ipaccess_bts(trx->bts)) {
677 vty_out(vty, " ip.access stream ID: 0x%02x%s",
678 trx->rsl_tei, VTY_NEWLINE);
679 } else {
680 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
681 e1isl_dump_vty(vty, trx->rsl_link);
682 }
Harald Welte59b04682009-06-10 05:40:52 +0800683}
684
685DEFUN(show_trx,
686 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100687 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200688 SHOW_STR "Display information about a TRX\n"
689 "BTS Number\n"
690 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800691{
Harald Welte40152872010-05-16 20:52:23 +0200692 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800693 struct gsm_bts *bts = NULL;
694 struct gsm_bts_trx *trx;
695 int bts_nr, trx_nr;
696
697 if (argc >= 1) {
698 /* use the BTS number that the user has specified */
699 bts_nr = atoi(argv[0]);
700 if (bts_nr >= net->num_bts) {
701 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
702 VTY_NEWLINE);
703 return CMD_WARNING;
704 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200705 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800706 }
707 if (argc >= 2) {
708 trx_nr = atoi(argv[1]);
709 if (trx_nr >= bts->num_trx) {
710 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
711 VTY_NEWLINE);
712 return CMD_WARNING;
713 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200714 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800715 trx_dump_vty(vty, trx);
716 return CMD_SUCCESS;
717 }
718 if (bts) {
719 /* print all TRX in this BTS */
720 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200721 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800722 trx_dump_vty(vty, trx);
723 }
724 return CMD_SUCCESS;
725 }
726
727 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200728 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800729 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200730 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800731 trx_dump_vty(vty, trx);
732 }
733 }
734
735 return CMD_SUCCESS;
736}
737
Harald Welte97ceef92009-08-06 19:06:46 +0200738
Harald Welte59b04682009-06-10 05:40:52 +0800739static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
740{
Harald Welte85771a42011-05-30 12:09:13 +0200741 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100742 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welted1dcdb82013-03-08 07:44:45 +0000743 gsm_pchan_name(ts->pchan),
744 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100745 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100746 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100747 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
748 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800749 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200750 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530751 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800752 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
753 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
754 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800755}
756
757DEFUN(show_ts,
758 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100759 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200760 SHOW_STR "Display information about a TS\n"
761 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800762{
Harald Welte40152872010-05-16 20:52:23 +0200763 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100764 struct gsm_bts *bts = NULL;
765 struct gsm_bts_trx *trx = NULL;
766 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800767 int bts_nr, trx_nr, ts_nr;
768
769 if (argc >= 1) {
770 /* use the BTS number that the user has specified */
771 bts_nr = atoi(argv[0]);
772 if (bts_nr >= net->num_bts) {
773 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
774 VTY_NEWLINE);
775 return CMD_WARNING;
776 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200777 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800778 }
779 if (argc >= 2) {
780 trx_nr = atoi(argv[1]);
781 if (trx_nr >= bts->num_trx) {
782 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
783 VTY_NEWLINE);
784 return CMD_WARNING;
785 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200786 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800787 }
788 if (argc >= 3) {
789 ts_nr = atoi(argv[2]);
790 if (ts_nr >= TRX_NR_TS) {
791 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
792 VTY_NEWLINE);
793 return CMD_WARNING;
794 }
Harald Welte06868382010-12-24 12:05:03 +0100795 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800796 ts = &trx->ts[ts_nr];
797 ts_dump_vty(vty, ts);
798 return CMD_SUCCESS;
799 }
Harald Welte06868382010-12-24 12:05:03 +0100800
801 if (bts && trx) {
802 /* Iterate over all TS in this TRX */
803 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
804 ts = &trx->ts[ts_nr];
805 ts_dump_vty(vty, ts);
806 }
807 } else if (bts) {
808 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800809 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200810 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800811 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
812 ts = &trx->ts[ts_nr];
813 ts_dump_vty(vty, ts);
814 }
815 }
Harald Welte06868382010-12-24 12:05:03 +0100816 } else {
817 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
818 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
819 bts = gsm_bts_num(net, bts_nr);
820 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
821 trx = gsm_bts_trx_num(bts, trx_nr);
822 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
823 ts = &trx->ts[ts_nr];
824 ts_dump_vty(vty, ts);
825 }
826 }
827 }
Harald Welte59b04682009-06-10 05:40:52 +0800828 }
829
830 return CMD_SUCCESS;
831}
832
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100833static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800834{
Harald Welte91afe4c2009-06-20 18:15:19 +0200835 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800836 subscr->authorized, VTY_NEWLINE);
837 if (subscr->name)
838 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
839 if (subscr->extension)
840 vty_out(vty, " Extension: %s%s", subscr->extension,
841 VTY_NEWLINE);
842 if (subscr->imsi)
843 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200844 if (subscr->tmsi != GSM_RESERVED_TMSI)
845 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200846 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100847
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200848 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800849}
850
Harald Welte44007742009-12-22 21:43:14 +0100851static void meas_rep_dump_uni_vty(struct vty *vty,
852 struct gsm_meas_rep_unidir *mru,
853 const char *prefix,
854 const char *dir)
855{
856 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
857 prefix, dir, rxlev2dbm(mru->full.rx_lev),
858 dir, rxlev2dbm(mru->sub.rx_lev));
859 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
860 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
861 VTY_NEWLINE);
862}
863
864static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
865 const char *prefix)
866{
867 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
868 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
869 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
870 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
871 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
872 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
873 VTY_NEWLINE);
874 if (mr->flags & MEAS_REP_F_MS_TO)
875 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
876 mr->ms_timing_offset, VTY_NEWLINE);
877 if (mr->flags & MEAS_REP_F_MS_L1)
878 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
879 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
880 if (mr->flags & MEAS_REP_F_DL_VALID)
881 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
882 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
883}
884
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800885static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800886{
Harald Welte44007742009-12-22 21:43:14 +0100887 int idx;
888
Harald Weltef62dad62010-12-24 12:22:34 +0100889 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
890 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
891 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800892 vty_out(vty, " Connection: %u, State: %s%s",
893 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100894 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100895 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
896 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
897 - lchan->bs_power*2,
898 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
899 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800900 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800901 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800902 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800903 } else
904 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530905 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
906 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200907 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530908 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
909 inet_ntoa(ia), lchan->abis_ip.bound_port,
910 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
911 VTY_NEWLINE);
912 }
Harald Welte44007742009-12-22 21:43:14 +0100913
914 /* we want to report the last measurement report */
915 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
916 lchan->meas_rep_idx, 1);
917 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800918}
919
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800920static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
921{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800922 struct gsm_meas_rep *mr;
923 int idx;
924
925 /* we want to report the last measurement report */
926 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
927 lchan->meas_rep_idx, 1);
928 mr = &lchan->meas_rep[idx];
929
Harald Weltef62dad62010-12-24 12:22:34 +0100930 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
931 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
932 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100933 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800934 rxlev2dbm(mr->dl.full.rx_lev),
935 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800936 VTY_NEWLINE);
937}
938
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100939
940static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
941 void (*dump_cb)(struct vty *, struct gsm_lchan *))
942{
943 int lchan_nr;
944 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
945 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
946 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
947 continue;
948 dump_cb(vty, lchan);
949 }
950
951 return CMD_SUCCESS;
952}
953
954static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
955 void (*dump_cb)(struct vty *, struct gsm_lchan *))
956{
957 int ts_nr;
958
959 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
960 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
961 dump_lchan_trx_ts(ts, vty, dump_cb);
962 }
963
964 return CMD_SUCCESS;
965}
966
967static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
968 void (*dump_cb)(struct vty *, struct gsm_lchan *))
969{
970 int trx_nr;
971
972 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
973 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
974 dump_lchan_trx(trx, vty, dump_cb);
975 }
976
977 return CMD_SUCCESS;
978}
979
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800980static int lchan_summary(struct vty *vty, int argc, const char **argv,
981 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800982{
Harald Welte40152872010-05-16 20:52:23 +0200983 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800984 struct gsm_bts *bts;
985 struct gsm_bts_trx *trx;
986 struct gsm_bts_trx_ts *ts;
987 struct gsm_lchan *lchan;
988 int bts_nr, trx_nr, ts_nr, lchan_nr;
989
990 if (argc >= 1) {
991 /* use the BTS number that the user has specified */
992 bts_nr = atoi(argv[0]);
993 if (bts_nr >= net->num_bts) {
994 vty_out(vty, "%% can't find BTS %s%s", argv[0],
995 VTY_NEWLINE);
996 return CMD_WARNING;
997 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200998 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100999
1000 if (argc == 1)
1001 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001002 }
1003 if (argc >= 2) {
1004 trx_nr = atoi(argv[1]);
1005 if (trx_nr >= bts->num_trx) {
1006 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1007 VTY_NEWLINE);
1008 return CMD_WARNING;
1009 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001010 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001011
1012 if (argc == 2)
1013 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001014 }
1015 if (argc >= 3) {
1016 ts_nr = atoi(argv[2]);
1017 if (ts_nr >= TRX_NR_TS) {
1018 vty_out(vty, "%% can't find TS %s%s", argv[2],
1019 VTY_NEWLINE);
1020 return CMD_WARNING;
1021 }
1022 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001023
1024 if (argc == 3)
1025 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001026 }
1027 if (argc >= 4) {
1028 lchan_nr = atoi(argv[3]);
1029 if (lchan_nr >= TS_MAX_LCHAN) {
1030 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1031 VTY_NEWLINE);
1032 return CMD_WARNING;
1033 }
1034 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001035 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001036 return CMD_SUCCESS;
1037 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001038
1039
Harald Welte59b04682009-06-10 05:40:52 +08001040 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001041 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001042 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001043 }
1044
1045 return CMD_SUCCESS;
1046}
1047
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001048
1049DEFUN(show_lchan,
1050 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001051 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001052 SHOW_STR "Display information about a logical channel\n"
1053 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001054 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001055
1056{
1057 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1058}
1059
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001060DEFUN(show_lchan_summary,
1061 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001062 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001063 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001064 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001065 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001066 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001067{
1068 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1069}
1070
Harald Welte59b04682009-06-10 05:40:52 +08001071static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1072{
1073 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1074 subscr_dump_vty(vty, pag->subscr);
1075}
1076
1077static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1078{
1079 struct gsm_paging_request *pag;
1080
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001081 if (!bts->paging.bts)
1082 return;
1083
Harald Welte59b04682009-06-10 05:40:52 +08001084 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1085 paging_dump_vty(vty, pag);
1086}
1087
1088DEFUN(show_paging,
1089 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001090 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001091 SHOW_STR "Display information about paging reuqests of a BTS\n"
1092 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001093{
Harald Welte40152872010-05-16 20:52:23 +02001094 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001095 struct gsm_bts *bts;
1096 int bts_nr;
1097
1098 if (argc >= 1) {
1099 /* use the BTS number that the user has specified */
1100 bts_nr = atoi(argv[0]);
1101 if (bts_nr >= net->num_bts) {
1102 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1103 VTY_NEWLINE);
1104 return CMD_WARNING;
1105 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001106 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001107 bts_paging_dump_vty(vty, bts);
1108
1109 return CMD_SUCCESS;
1110 }
1111 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001112 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001113 bts_paging_dump_vty(vty, bts);
1114 }
1115
1116 return CMD_SUCCESS;
1117}
1118
Harald Weltee87eb462009-08-07 13:29:14 +02001119DEFUN(cfg_net,
1120 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001121 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001122{
Harald Welte40152872010-05-16 20:52:23 +02001123 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001124 vty->node = GSMNET_NODE;
1125
1126 return CMD_SUCCESS;
1127}
1128
Harald Weltee87eb462009-08-07 13:29:14 +02001129DEFUN(cfg_net_ncc,
1130 cfg_net_ncc_cmd,
1131 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001132 "Set the GSM network country code\n"
1133 "Country commands\n"
1134 CODE_CMD_STR
1135 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001136{
Harald Welte40152872010-05-16 20:52:23 +02001137 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1138
Harald Weltee87eb462009-08-07 13:29:14 +02001139 gsmnet->country_code = atoi(argv[0]);
1140
1141 return CMD_SUCCESS;
1142}
1143
1144DEFUN(cfg_net_mnc,
1145 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001146 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001147 "Set the GSM mobile network code\n"
1148 "Network Commands\n"
1149 CODE_CMD_STR
1150 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001151{
Harald Welte40152872010-05-16 20:52:23 +02001152 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1153
Harald Weltee87eb462009-08-07 13:29:14 +02001154 gsmnet->network_code = atoi(argv[0]);
1155
1156 return CMD_SUCCESS;
1157}
1158
1159DEFUN(cfg_net_name_short,
1160 cfg_net_name_short_cmd,
1161 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001162 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001163{
Harald Welte40152872010-05-16 20:52:23 +02001164 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1165
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001166 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001167 return CMD_SUCCESS;
1168}
1169
1170DEFUN(cfg_net_name_long,
1171 cfg_net_name_long_cmd,
1172 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001173 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001174{
Harald Welte40152872010-05-16 20:52:23 +02001175 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1176
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001177 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001178 return CMD_SUCCESS;
1179}
Harald Welte59b04682009-06-10 05:40:52 +08001180
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001181DEFUN(cfg_net_auth_policy,
1182 cfg_net_auth_policy_cmd,
1183 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001184 "Authentication (not cryptographic)\n"
1185 "Set the GSM network authentication policy\n"
1186 "Require the MS to be activated in HLR\n"
1187 "Accept all MS, whether in HLR or not\n"
1188 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001189{
1190 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001191 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001192
1193 gsmnet->auth_policy = policy;
1194
1195 return CMD_SUCCESS;
1196}
1197
Harald Welte59936d72009-11-18 20:33:19 +01001198DEFUN(cfg_net_reject_cause,
1199 cfg_net_reject_cause_cmd,
1200 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001201 "Set the reject cause of location updating reject\n"
1202 "Set the reject cause of location updating reject\n"
1203 "Set the reject cause of location updating reject\n"
1204 "Set the reject cause of location updating reject\n"
1205 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001206{
Harald Welte40152872010-05-16 20:52:23 +02001207 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1208
Harald Welte59936d72009-11-18 20:33:19 +01001209 gsmnet->reject_cause = atoi(argv[0]);
1210
1211 return CMD_SUCCESS;
1212}
1213
Harald Weltecca253a2009-08-30 15:47:06 +09001214DEFUN(cfg_net_encryption,
1215 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001216 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001217 "Encryption options\n"
1218 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001219 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1220 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001221{
Harald Welte40152872010-05-16 20:52:23 +02001222 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1223
Andreas.Eversberg53293292009-11-17 09:55:26 +01001224 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001225
1226 return CMD_SUCCESS;
1227}
1228
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001229DEFUN(cfg_net_neci,
1230 cfg_net_neci_cmd,
1231 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001232 "New Establish Cause Indication\n"
1233 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001234{
Harald Welte40152872010-05-16 20:52:23 +02001235 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1236
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001237 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001238 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001239 return CMD_SUCCESS;
1240}
1241
Harald Welte52af1952009-12-13 10:53:12 +01001242DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1243 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001244 "Radio Resource Location Protocol\n"
1245 "Set the Radio Resource Location Protocol Mode\n"
1246 "Don't send RRLP request\n"
1247 "Request MS-based location\n"
1248 "Request any location, prefer MS-based\n"
1249 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001250{
Harald Welte40152872010-05-16 20:52:23 +02001251 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1252
Harald Welte52af1952009-12-13 10:53:12 +01001253 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1254
1255 return CMD_SUCCESS;
1256}
1257
Harald Weltea310f3e2009-12-14 09:00:24 +01001258DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1259 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001260 "Mobility Management\n"
1261 "Send MM INFO after LOC UPD ACCEPT\n"
1262 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001263{
Harald Welte40152872010-05-16 20:52:23 +02001264 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1265
Harald Weltea310f3e2009-12-14 09:00:24 +01001266 gsmnet->send_mm_info = atoi(argv[0]);
1267
1268 return CMD_SUCCESS;
1269}
1270
Harald Welte9e002452010-05-11 21:53:49 +02001271#define HANDOVER_STR "Handover Options\n"
1272
Harald Welte0af9c9f2009-12-19 21:41:52 +01001273DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1274 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001275 HANDOVER_STR
1276 "Don't perform in-call handover\n"
1277 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001278{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001279 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001280 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001281
1282 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001283 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1284 "is enabled by using the -P command line option%s",
1285 VTY_NEWLINE);
1286 return CMD_WARNING;
1287 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001288 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001289
1290 return CMD_SUCCESS;
1291}
1292
Harald Welte9e002452010-05-11 21:53:49 +02001293#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1294#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1295#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1296#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001297#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001298
Harald Weltea8062f12009-12-21 16:51:50 +01001299DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1300 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001301 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001302 "How many RxLev measurements are used for averaging\n"
1303 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001304{
Harald Welte40152872010-05-16 20:52:23 +02001305 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001306 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1307 return CMD_SUCCESS;
1308}
1309
1310DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1311 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001312 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001313 "How many RxQual measurements are used for averaging\n"
1314 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001315{
Harald Welte40152872010-05-16 20:52:23 +02001316 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001317 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1318 return CMD_SUCCESS;
1319}
1320
1321DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1322 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001323 HO_WIN_RXLEV_STR "Neighbor\n"
1324 "How many RxQual measurements are used for averaging\n"
1325 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001326{
Harald Welte40152872010-05-16 20:52:23 +02001327 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001328 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1329 return CMD_SUCCESS;
1330}
1331
1332DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1333 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001334 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001335 "How often to check if we have a better cell (SACCH frames)\n"
1336 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001337{
Harald Welte40152872010-05-16 20:52:23 +02001338 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001339 gsmnet->handover.pwr_interval = atoi(argv[0]);
1340 return CMD_SUCCESS;
1341}
1342
1343DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1344 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001345 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001346 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1347 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001348{
Harald Welte40152872010-05-16 20:52:23 +02001349 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001350 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1351 return CMD_SUCCESS;
1352}
1353
1354DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1355 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001356 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001357 "How big is the maximum timing advance before HO is forced\n"
1358 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001359{
Harald Welte40152872010-05-16 20:52:23 +02001360 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001361 gsmnet->handover.max_distance = atoi(argv[0]);
1362 return CMD_SUCCESS;
1363}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001364
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001365DEFUN(cfg_net_pag_any_tch,
1366 cfg_net_pag_any_tch_cmd,
1367 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001368 "Assign a TCH when receiving a Paging Any request\n"
1369 "Any Channel\n" "Use\n" "TCH\n"
1370 "Do not use TCH for Paging Request Any\n"
1371 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001372{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001373 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001374 gsmnet->pag_any_tch = atoi(argv[0]);
1375 gsm_net_update_ctype(gsmnet);
1376 return CMD_SUCCESS;
1377}
1378
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001379#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001380 DEFUN(cfg_net_T##number, \
1381 cfg_net_T##number##_cmd, \
1382 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001383 "Configure GSM Timers\n" \
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001384 doc "Timer Value\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001385{ \
Harald Welte40152872010-05-16 20:52:23 +02001386 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001387 int value = atoi(argv[0]); \
1388 \
1389 if (value < 0 || value > 65535) { \
1390 vty_out(vty, "Timer value %s out of range.%s", \
1391 argv[0], VTY_NEWLINE); \
1392 return CMD_WARNING; \
1393 } \
1394 \
1395 gsmnet->T##number = value; \
1396 return CMD_SUCCESS; \
1397}
1398
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001399DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1400DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001401DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001402DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001403DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001404DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1405DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1406DECLARE_TIMER(3115, "Currently not used.\n")
1407DECLARE_TIMER(3117, "Currently not used.\n")
1408DECLARE_TIMER(3119, "Currently not used.\n")
1409DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1410DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001411
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001412DEFUN(cfg_net_dtx,
1413 cfg_net_dtx_cmd,
1414 "dtx-used (0|1)",
1415 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001416 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001417{
1418 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1419 gsmnet->dtx_enabled = atoi(argv[0]);
1420 return CMD_SUCCESS;
1421}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001422
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001423DEFUN(cfg_net_subscr_keep,
1424 cfg_net_subscr_keep_cmd,
1425 "subscriber-keep-in-ram (0|1)",
1426 "Keep unused subscribers in RAM.\n"
1427 "Delete unused subscribers\n" "Keep unused subscribers\n")
1428{
1429 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1430 gsmnet->keep_subscr = atoi(argv[0]);
1431 return CMD_SUCCESS;
1432}
1433
Harald Welte59b04682009-06-10 05:40:52 +08001434/* per-BTS configuration */
1435DEFUN(cfg_bts,
1436 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001437 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001438 "Select a BTS to configure\n"
1439 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001440{
Harald Welte40152872010-05-16 20:52:23 +02001441 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001442 int bts_nr = atoi(argv[0]);
1443 struct gsm_bts *bts;
1444
Harald Weltee712a5f2009-06-21 16:17:15 +02001445 if (bts_nr > gsmnet->num_bts) {
1446 vty_out(vty, "%% The next unused BTS number is %u%s",
1447 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001448 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001449 } else if (bts_nr == gsmnet->num_bts) {
1450 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001451 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1452 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001453 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001454 bts = gsm_bts_num(gsmnet, bts_nr);
1455
Daniel Willmann580085f2010-01-11 13:43:07 +01001456 if (!bts) {
1457 vty_out(vty, "%% Unable to allocate BTS %u%s",
1458 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001459 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001460 }
Harald Welte59b04682009-06-10 05:40:52 +08001461
1462 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001463 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001464 vty->node = BTS_NODE;
1465
1466 return CMD_SUCCESS;
1467}
1468
1469DEFUN(cfg_bts_type,
1470 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001471 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001472 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001473{
1474 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001475 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001476
Harald Welte59698fb2010-01-10 18:01:52 +01001477 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1478 if (rc < 0)
1479 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001480
Harald Welte59b04682009-06-10 05:40:52 +08001481 return CMD_SUCCESS;
1482}
1483
Harald Welte91afe4c2009-06-20 18:15:19 +02001484DEFUN(cfg_bts_band,
1485 cfg_bts_band_cmd,
1486 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001487 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001488{
1489 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001490 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001491
1492 if (band < 0) {
1493 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1494 band, VTY_NEWLINE);
1495 return CMD_WARNING;
1496 }
1497
1498 bts->band = band;
1499
1500 return CMD_SUCCESS;
1501}
1502
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001503DEFUN(cfg_bts_ci,
1504 cfg_bts_ci_cmd,
1505 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001506 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001507{
1508 struct gsm_bts *bts = vty->index;
1509 int ci = atoi(argv[0]);
1510
1511 if (ci < 0 || ci > 0xffff) {
1512 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1513 ci, VTY_NEWLINE);
1514 return CMD_WARNING;
1515 }
1516 bts->cell_identity = ci;
1517
1518 return CMD_SUCCESS;
1519}
1520
Harald Welte59b04682009-06-10 05:40:52 +08001521DEFUN(cfg_bts_lac,
1522 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001523 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001524 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001525{
1526 struct gsm_bts *bts = vty->index;
1527 int lac = atoi(argv[0]);
1528
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001529 if (lac < 0 || lac > 0xffff) {
1530 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001531 lac, VTY_NEWLINE);
1532 return CMD_WARNING;
1533 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001534
1535 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1536 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1537 lac, VTY_NEWLINE);
1538 return CMD_WARNING;
1539 }
1540
Harald Welte59b04682009-06-10 05:40:52 +08001541 bts->location_area_code = lac;
1542
1543 return CMD_SUCCESS;
1544}
1545
Harald Weltea54a2bb2009-12-01 18:04:30 +05301546
Harald Welte59b04682009-06-10 05:40:52 +08001547DEFUN(cfg_bts_tsc,
1548 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001549 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001550 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001551{
1552 struct gsm_bts *bts = vty->index;
1553 int tsc = atoi(argv[0]);
1554
Harald Welte59b04682009-06-10 05:40:52 +08001555 bts->tsc = tsc;
1556
1557 return CMD_SUCCESS;
1558}
1559
1560DEFUN(cfg_bts_bsic,
1561 cfg_bts_bsic_cmd,
1562 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001563 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1564 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001565{
1566 struct gsm_bts *bts = vty->index;
1567 int bsic = atoi(argv[0]);
1568
1569 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001570 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001571 bsic, VTY_NEWLINE);
1572 return CMD_WARNING;
1573 }
1574 bts->bsic = bsic;
1575
1576 return CMD_SUCCESS;
1577}
1578
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001579DEFUN(cfg_bts_timezone,
1580 cfg_bts_timezone_cmd,
1581 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001582 "Set the Timezone Offset of this BTS\n"
1583 "Timezone offset (hours)\n"
1584 "Timezone offset (00 minutes)\n"
1585 "Timezone offset (15 minutes)\n"
1586 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001587 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001588 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001589{
1590 struct gsm_bts *bts = vty->index;
1591 int tzhr = atoi(argv[0]);
1592 int tzmn = atoi(argv[1]);
1593
Harald Welte5c3abf92012-07-08 16:48:11 +02001594 bts->tz.hr = tzhr;
1595 bts->tz.mn = tzmn;
1596 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001597
1598 return CMD_SUCCESS;
1599}
1600
1601DEFUN(cfg_bts_no_timezone,
1602 cfg_bts_no_timezone_cmd,
1603 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001604 NO_STR
1605 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001606{
1607 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001608
1609 bts->tz.override = 0;
1610
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001611 return CMD_SUCCESS;
1612}
Harald Welte59b04682009-06-10 05:40:52 +08001613
1614DEFUN(cfg_bts_unit_id,
1615 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001616 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001617 "Abis/IP specific options\n"
1618 "Set the IPA BTS Unit ID\n"
1619 "Unit ID (Site)\n"
1620 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001621{
1622 struct gsm_bts *bts = vty->index;
1623 int site_id = atoi(argv[0]);
1624 int bts_id = atoi(argv[1]);
1625
Harald Weltef515aa02009-08-07 13:27:09 +02001626 if (!is_ipaccess_bts(bts)) {
1627 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1628 return CMD_WARNING;
1629 }
1630
Harald Welte59b04682009-06-10 05:40:52 +08001631 bts->ip_access.site_id = site_id;
1632 bts->ip_access.bts_id = bts_id;
1633
1634 return CMD_SUCCESS;
1635}
1636
Harald Welte8b3c5952013-03-12 13:57:05 +01001637DEFUN(cfg_bts_rsl_ip,
1638 cfg_bts_rsl_ip_cmd,
1639 "ip.access rsl-ip A.B.C.D",
1640 "Abis/IP specific options\n"
1641 "Set the IPA RSL IP Address of the BSC\n"
1642 "Destination IP address for RSL connection\n")
1643{
1644 struct gsm_bts *bts = vty->index;
1645 struct in_addr ia;
1646
1647 if (!is_ipaccess_bts(bts)) {
1648 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1649 return CMD_WARNING;
1650 }
1651
1652 inet_aton(argv[0], &ia);
1653 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1654
1655 return CMD_SUCCESS;
1656}
1657
1658
Harald Welte08011e22011-03-04 13:41:31 +01001659DEFUN(cfg_bts_serno,
1660 cfg_bts_serno_cmd,
1661 "hsl serial-number STRING",
Harald Welte557f3992012-08-16 23:23:50 +02001662 "HSL BTS specific options\n"
1663 "Set the HSL Serial Number of this BTS\n"
1664 "Serial Number of this HSL BTS\n")
Harald Welte08011e22011-03-04 13:41:31 +01001665{
1666 struct gsm_bts *bts = vty->index;
1667
1668 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1669 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1670 return CMD_WARNING;
1671 }
1672
1673 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1674
1675 return CMD_SUCCESS;
1676}
1677
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001678DEFUN(cfg_bts_nokia_site_skip_reset,
1679 cfg_bts_nokia_site_skip_reset_cmd,
1680 "nokia_site skip-reset (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001681 "Nokia *Site related commands\n"
1682 "Skip the reset step during bootstrap process of this BTS\n"
1683 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001684{
1685 struct gsm_bts *bts = vty->index;
1686
1687 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1688 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1689 return CMD_WARNING;
1690 }
1691
1692 bts->nokia.skip_reset = atoi(argv[0]);
1693
1694 return CMD_SUCCESS;
1695}
1696
Harald Welte9e002452010-05-11 21:53:49 +02001697#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001698#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001699
Harald Welte25572872009-10-20 00:22:00 +02001700DEFUN(cfg_bts_stream_id,
1701 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001702 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001703 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001704 "Set the ip.access Stream ID of the OML link of this BTS\n"
1705 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001706{
1707 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001708 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001709
1710 if (!is_ipaccess_bts(bts)) {
1711 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1712 return CMD_WARNING;
1713 }
1714
1715 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001716 /* This is used by e1inp_bind_ops callback for each BTS model. */
1717 bts->oml_e1_link.e1_nr = linenr;
1718
1719 return CMD_SUCCESS;
1720}
1721
1722DEFUN(cfg_bts_hsl_oml,
1723 cfg_bts_hsl_oml_cmd,
1724 "oml hsl line E1_LINE",
Harald Welte557f3992012-08-16 23:23:50 +02001725 OML_STR "HSL femto Specific Options\n"
Harald Welte764c8e12012-08-17 09:57:25 +02001726 "Set OML link of this HSL femto BTS\n"
1727 "Virtual E1/T1 line number\n")
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001728{
1729 struct gsm_bts *bts = vty->index;
1730 int linenr = atoi(argv[0]);
1731
1732 if (!(bts->type == GSM_BTS_TYPE_HSL_FEMTO)) {
1733 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1734 return CMD_WARNING;
1735 }
1736
1737 bts->oml_e1_link.e1_nr = linenr;
Harald Welte25572872009-10-20 00:22:00 +02001738
1739 return CMD_SUCCESS;
1740}
1741
Harald Weltefa2015f2012-08-17 09:52:03 +02001742#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001743
Harald Welte62868882009-08-08 16:12:58 +02001744DEFUN(cfg_bts_oml_e1,
1745 cfg_bts_oml_e1_cmd,
1746 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001747 OML_E1_STR
1748 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001749 "E1/T1 line number to be used for OML\n"
1750 "E1/T1 timeslot to be used for OML\n"
1751 "E1/T1 timeslot to be used for OML\n"
1752 "E1/T1 sub-slot to be used for OML\n"
1753 "Use E1/T1 sub-slot 0\n"
1754 "Use E1/T1 sub-slot 1\n"
1755 "Use E1/T1 sub-slot 2\n"
1756 "Use E1/T1 sub-slot 3\n"
1757 "Use full E1 slot 3\n"
1758 )
Harald Welte62868882009-08-08 16:12:58 +02001759{
1760 struct gsm_bts *bts = vty->index;
1761
1762 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1763
1764 return CMD_SUCCESS;
1765}
1766
1767
1768DEFUN(cfg_bts_oml_e1_tei,
1769 cfg_bts_oml_e1_tei_cmd,
1770 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001771 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001772 "Set the TEI to be used for OML\n"
1773 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001774{
1775 struct gsm_bts *bts = vty->index;
1776
1777 bts->oml_tei = atoi(argv[0]);
1778
1779 return CMD_SUCCESS;
1780}
1781
Harald Welte3e774612009-08-10 13:48:16 +02001782DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1783 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001784 "Channnel Allocator\n" "Channel Allocator\n"
1785 "Allocate Timeslots and Transceivers in ascending order\n"
1786 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001787{
1788 struct gsm_bts *bts = vty->index;
1789
1790 if (!strcmp(argv[0], "ascending"))
1791 bts->chan_alloc_reverse = 0;
1792 else
1793 bts->chan_alloc_reverse = 1;
1794
1795 return CMD_SUCCESS;
1796}
1797
Harald Welte9e002452010-05-11 21:53:49 +02001798#define RACH_STR "Random Access Control Channel\n"
1799
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001800DEFUN(cfg_bts_rach_tx_integer,
1801 cfg_bts_rach_tx_integer_cmd,
1802 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001803 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001804 "Set the raw tx integer value in RACH Control parameters IE\n"
1805 "Set the raw tx integer value in RACH Control parameters IE\n"
1806 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001807{
1808 struct gsm_bts *bts = vty->index;
1809 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1810 return CMD_SUCCESS;
1811}
1812
1813DEFUN(cfg_bts_rach_max_trans,
1814 cfg_bts_rach_max_trans_cmd,
1815 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001816 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001817 "Set the maximum number of RACH burst transmissions\n"
1818 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001819 "Maximum number of 1 RACH burst transmissions\n"
1820 "Maximum number of 2 RACH burst transmissions\n"
1821 "Maximum number of 4 RACH burst transmissions\n"
1822 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001823{
1824 struct gsm_bts *bts = vty->index;
1825 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1826 return CMD_SUCCESS;
1827}
1828
Andreas Eversberg14e12f22012-10-13 07:27:47 +02001829#define CD_STR "Channel Description\n"
1830
1831DEFUN(cfg_bts_chan_desc_att,
1832 cfg_bts_chan_desc_att_cmd,
1833 "channel-descrption attach (0|1)",
1834 CD_STR
1835 "Set if attachment is required\n"
1836 "Attachment is NOT required\n"
1837 "Attachment is required (standard)\n")
1838{
1839 struct gsm_bts *bts = vty->index;
1840 bts->si_common.chan_desc.att = atoi(argv[0]);
1841 return CMD_SUCCESS;
1842}
1843
1844DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1845 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1846 "channel-descrption bs-pa-mfrms <2-9>",
1847 CD_STR
1848 "Set number of multiframe periods for paging groups\n"
1849 "Number of multiframe periods for paging groups\n")
1850{
1851 struct gsm_bts *bts = vty->index;
1852 int bs_pa_mfrms = atoi(argv[0]);
1853
1854 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1855 return CMD_SUCCESS;
1856}
1857
1858DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1859 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1860 "channel-descrption bs-ag-blks-res <0-7>",
1861 CD_STR
1862 "Set number of blocks reserved for access grant\n"
1863 "Number of blocks reserved for access grant\n")
1864{
1865 struct gsm_bts *bts = vty->index;
1866 int bs_ag_blks_res = atoi(argv[0]);
1867
1868 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1869 return CMD_SUCCESS;
1870}
1871
Harald Welte9e002452010-05-11 21:53:49 +02001872#define NM_STR "Network Management\n"
1873
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001874DEFUN(cfg_bts_rach_nm_b_thresh,
1875 cfg_bts_rach_nm_b_thresh_cmd,
1876 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001877 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001878 "Set the NM Busy Threshold\n"
1879 "Set the NM Busy Threshold\n"
1880 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001881{
1882 struct gsm_bts *bts = vty->index;
1883 bts->rach_b_thresh = atoi(argv[0]);
1884 return CMD_SUCCESS;
1885}
1886
1887DEFUN(cfg_bts_rach_nm_ldavg,
1888 cfg_bts_rach_nm_ldavg_cmd,
1889 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001890 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001891 "Set the NM Loadaverage Slots value\n"
1892 "Set the NM Loadaverage Slots value\n"
1893 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001894{
1895 struct gsm_bts *bts = vty->index;
1896 bts->rach_ldavg_slots = atoi(argv[0]);
1897 return CMD_SUCCESS;
1898}
1899
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001900DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1901 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001902 "Should this cell be barred from access?\n"
1903 "Should this cell be barred from access?\n"
1904 "Cell should NOT be barred\n"
1905 "Cell should be barred\n")
1906
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001907{
1908 struct gsm_bts *bts = vty->index;
1909
Harald Welte8c973ba2009-12-21 23:08:18 +01001910 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001911
1912 return CMD_SUCCESS;
1913}
1914
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001915DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1916 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001917 RACH_STR
1918 "Should this cell allow emergency calls?\n"
1919 "Should this cell allow emergency calls?\n"
1920 "Should this cell allow emergency calls?\n"
1921 "Do NOT allow emergency calls\n"
1922 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001923{
1924 struct gsm_bts *bts = vty->index;
1925
1926 if (atoi(argv[0]) == 0)
1927 bts->si_common.rach_control.t2 |= 0x4;
1928 else
1929 bts->si_common.rach_control.t2 &= ~0x4;
1930
1931 return CMD_SUCCESS;
1932}
1933
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001934DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1935 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02001936 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001937 "Maximum transmit power of the MS\n"
1938 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02001939 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001940{
1941 struct gsm_bts *bts = vty->index;
1942
1943 bts->ms_max_power = atoi(argv[0]);
1944
1945 return CMD_SUCCESS;
1946}
1947
Harald Welte557f3992012-08-16 23:23:50 +02001948#define CELL_STR "Cell Parameters\n"
1949
Harald Welteb761bf82009-12-12 18:17:25 +01001950DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1951 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02001952 CELL_STR "Cell re-selection parameters\n"
1953 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001954 "Cell Re-Selection Hysteresis in dB")
1955{
1956 struct gsm_bts *bts = vty->index;
1957
1958 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1959
1960 return CMD_SUCCESS;
1961}
1962
1963DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1964 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001965 "Minimum RxLev needed for cell access\n"
1966 "Minimum RxLev needed for cell access\n"
1967 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001968 "Minimum RxLev needed for cell access (better than -110dBm)")
1969{
1970 struct gsm_bts *bts = vty->index;
1971
1972 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1973
1974 return CMD_SUCCESS;
1975}
1976
Sylvain Munaut00d71462010-11-28 18:17:28 +01001977DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1978 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001979 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1980 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01001981{
1982 struct gsm_bts *bts = vty->index;
1983
1984 bts->si_common.cell_ro_sel_par.present = 1;
1985 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1986
1987 return CMD_SUCCESS;
1988}
1989
1990DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1991 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02001992 CELL_STR "Cell Re-Selection Parameters\n"
1993 "Cell Re-Selection Offset (CRO) in dB\n"
1994 "Cell Re-Selection Offset (CRO) in dB\n"
1995 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01001996{
1997 struct gsm_bts *bts = vty->index;
1998
1999 bts->si_common.cell_ro_sel_par.present = 1;
2000 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2001
2002 return CMD_SUCCESS;
2003}
2004
2005DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2006 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02002007 "Cell selection temporary negative offset\n"
2008 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002009 "Cell selection temporary negative offset in dB")
2010{
2011 struct gsm_bts *bts = vty->index;
2012
2013 bts->si_common.cell_ro_sel_par.present = 1;
2014 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2015
2016 return CMD_SUCCESS;
2017}
2018
2019DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2020 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02002021 "Cell selection temporary negative offset\n"
2022 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002023 "Sets cell selection temporary negative offset to infinity")
2024{
2025 struct gsm_bts *bts = vty->index;
2026
2027 bts->si_common.cell_ro_sel_par.present = 1;
2028 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2029
2030 return CMD_SUCCESS;
2031}
2032
2033DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2034 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02002035 "Cell selection penalty time\n"
2036 "Cell selection penalty time\n"
2037 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002038{
2039 struct gsm_bts *bts = vty->index;
2040
2041 bts->si_common.cell_ro_sel_par.present = 1;
2042 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2043
2044 return CMD_SUCCESS;
2045}
2046
2047DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2048 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002049 "Cell selection penalty time\n"
2050 "Cell selection penalty time\n"
2051 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002052 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2053 "and TEMPORARY_OFFSET is ignored)")
2054{
2055 struct gsm_bts *bts = vty->index;
2056
2057 bts->si_common.cell_ro_sel_par.present = 1;
2058 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2059
2060 return CMD_SUCCESS;
2061}
2062
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002063DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002064 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002065 "Periodic Location Updating Interval\n"
2066 "Periodic Location Updating Interval\n"
2067 "Periodic Location Updating Interval\n"
2068 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002069{
2070 struct gsm_bts *bts = vty->index;
2071
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002072 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002073
2074 return CMD_SUCCESS;
2075}
2076
Harald Welte9e002452010-05-11 21:53:49 +02002077#define GPRS_TEXT "GPRS Packet Network\n"
2078
Harald Welte410575a2010-03-14 23:30:30 +08002079DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002080 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002081 GPRS_TEXT
2082 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002083 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002084 "GPRS BSSGP VC Identifier")
2085{
2086 struct gsm_bts *bts = vty->index;
2087
Harald Weltecb20b7a2010-04-18 15:51:20 +02002088 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002089 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2090 return CMD_WARNING;
2091 }
2092
Harald Welte3055e332010-03-14 15:37:43 +08002093 bts->gprs.cell.bvci = atoi(argv[0]);
2094
2095 return CMD_SUCCESS;
2096}
2097
Harald Welte4a048c52010-03-22 11:48:36 +08002098DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2099 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002100 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002101 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002102 "GPRS NS Entity Identifier")
2103{
2104 struct gsm_bts *bts = vty->index;
2105
Harald Weltecb20b7a2010-04-18 15:51:20 +02002106 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002107 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2108 return CMD_WARNING;
2109 }
2110
2111 bts->gprs.nse.nsei = atoi(argv[0]);
2112
2113 return CMD_SUCCESS;
2114}
2115
Harald Welte9e002452010-05-11 21:53:49 +02002116#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2117 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002118
Harald Welte3055e332010-03-14 15:37:43 +08002119DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2120 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002121 GPRS_TEXT NSVC_TEXT
2122 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002123 "GPRS NS VC Identifier")
2124{
2125 struct gsm_bts *bts = vty->index;
2126 int idx = atoi(argv[0]);
2127
Harald Weltecb20b7a2010-04-18 15:51:20 +02002128 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002129 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2130 return CMD_WARNING;
2131 }
2132
Harald Welte3055e332010-03-14 15:37:43 +08002133 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2134
2135 return CMD_SUCCESS;
2136}
2137
Harald Welte410575a2010-03-14 23:30:30 +08002138DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2139 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002140 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002141 "GPRS NS Local UDP Port\n"
2142 "GPRS NS Local UDP Port\n"
2143 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002144 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002145{
2146 struct gsm_bts *bts = vty->index;
2147 int idx = atoi(argv[0]);
2148
Harald Weltecb20b7a2010-04-18 15:51:20 +02002149 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002150 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2151 return CMD_WARNING;
2152 }
2153
Harald Welte410575a2010-03-14 23:30:30 +08002154 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2155
2156 return CMD_SUCCESS;
2157}
2158
2159DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2160 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002161 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002162 "GPRS NS Remote UDP Port\n"
2163 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002164 "GPRS NS Remote UDP Port\n"
2165 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002166{
2167 struct gsm_bts *bts = vty->index;
2168 int idx = atoi(argv[0]);
2169
Harald Weltecb20b7a2010-04-18 15:51:20 +02002170 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002171 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2172 return CMD_WARNING;
2173 }
2174
Harald Welte410575a2010-03-14 23:30:30 +08002175 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2176
2177 return CMD_SUCCESS;
2178}
2179
2180DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2181 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002182 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002183 "GPRS NS Remote IP Address\n"
2184 "GPRS NS Remote IP Address\n"
2185 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002186{
2187 struct gsm_bts *bts = vty->index;
2188 int idx = atoi(argv[0]);
2189 struct in_addr ia;
2190
Harald Weltecb20b7a2010-04-18 15:51:20 +02002191 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002192 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2193 return CMD_WARNING;
2194 }
2195
Harald Welte410575a2010-03-14 23:30:30 +08002196 inet_aton(argv[1], &ia);
2197 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2198
2199 return CMD_SUCCESS;
2200}
2201
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002202DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002203 "paging free <-1-1024>",
2204 "Paging options\n"
2205 "Only page when having a certain amount of free slots\n"
2206 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002207{
2208 struct gsm_bts *bts = vty->index;
2209
2210 bts->paging.free_chans_need = atoi(argv[0]);
2211 return CMD_SUCCESS;
2212}
2213
Harald Weltea9251762010-05-11 23:50:21 +02002214DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2215 "gprs ns timer " NS_TIMERS " <0-255>",
2216 GPRS_TEXT "Network Service\n"
2217 "Network Service Timer\n"
2218 NS_TIMERS_HELP "Timer Value\n")
2219{
2220 struct gsm_bts *bts = vty->index;
2221 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2222 int val = atoi(argv[1]);
2223
2224 if (bts->gprs.mode == BTS_GPRS_NONE) {
2225 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2226 return CMD_WARNING;
2227 }
2228
2229 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2230 return CMD_WARNING;
2231
2232 bts->gprs.nse.timer[idx] = val;
2233
2234 return CMD_SUCCESS;
2235}
2236
2237#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte18ce31c2010-05-14 20:05:17 +02002238#define BSSGP_TIMERS_HELP \
2239 "Tbvc-block timeout\n" \
2240 "Tbvc-block retries\n" \
2241 "Tbvc-unblock retries\n" \
2242 "Tbvcc-reset timeout\n" \
2243 "Tbvc-reset retries\n" \
2244 "Tbvc-suspend timeout\n" \
2245 "Tbvc-suspend retries\n" \
2246 "Tbvc-resume timeout\n" \
2247 "Tbvc-resume retries\n" \
2248 "Tbvc-capa-update timeout\n" \
2249 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002250
2251DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2252 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2253 GPRS_TEXT "Cell / BSSGP\n"
2254 "Cell/BSSGP Timer\n"
2255 BSSGP_TIMERS_HELP "Timer Value\n")
2256{
2257 struct gsm_bts *bts = vty->index;
2258 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2259 int val = atoi(argv[1]);
2260
2261 if (bts->gprs.mode == BTS_GPRS_NONE) {
2262 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2263 return CMD_WARNING;
2264 }
2265
2266 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2267 return CMD_WARNING;
2268
2269 bts->gprs.cell.timer[idx] = val;
2270
2271 return CMD_SUCCESS;
2272}
2273
Harald Welte3055e332010-03-14 15:37:43 +08002274DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2275 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002276 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002277 "GPRS Routing Area Code\n"
2278 "GPRS Routing Area Code\n"
2279 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002280{
2281 struct gsm_bts *bts = vty->index;
2282
Harald Weltecb20b7a2010-04-18 15:51:20 +02002283 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002284 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2285 return CMD_WARNING;
2286 }
2287
Harald Welte3055e332010-03-14 15:37:43 +08002288 bts->gprs.rac = atoi(argv[0]);
2289
2290 return CMD_SUCCESS;
2291}
2292
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002293DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2294 "gprs network-control-order (nc0|nc1|nc2)",
2295 GPRS_TEXT
2296 "GPRS Network Control Order\n"
2297 "MS controlled cell re-selection, no measurement reporting\n"
2298 "MS controlled cell re-selection, MS sends measurement reports\n"
2299 "Network controlled cell re-selection, MS sends measurement reports\n")
2300{
2301 struct gsm_bts *bts = vty->index;
2302
2303 if (bts->gprs.mode == BTS_GPRS_NONE) {
2304 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2305 return CMD_WARNING;
2306 }
2307
2308 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2309
2310 return CMD_SUCCESS;
2311}
2312
Harald Weltecb20b7a2010-04-18 15:51:20 +02002313DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2314 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002315 GPRS_TEXT
2316 "GPRS Mode for this BTS\n"
2317 "GPRS Disabled on this BTS\n"
2318 "GPRS Enabled on this BTS\n"
2319 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002320{
2321 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002322 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002323
Harald Welte20e275a2010-06-14 22:44:42 +02002324 if (mode != BTS_GPRS_NONE &&
2325 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2326 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2327 VTY_NEWLINE);
2328 return CMD_WARNING;
2329 }
2330 if (mode == BTS_GPRS_EGPRS &&
2331 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2332 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2333 VTY_NEWLINE);
2334 return CMD_WARNING;
2335 }
2336
2337 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002338
2339 return CMD_SUCCESS;
2340}
2341
Harald Welted8acf142010-07-30 11:50:09 +02002342#define SI_TEXT "System Information Messages\n"
2343#define SI_TYPE_TEXT "(1|2|3|4|5|6|7|8|9|10|13|16|17|18|19|20|2bis|2ter|2quater|5bis|5ter)"
2344#define SI_TYPE_HELP "System Information Type 1\n" \
2345 "System Information Type 2\n" \
2346 "System Information Type 3\n" \
2347 "System Information Type 4\n" \
2348 "System Information Type 5\n" \
2349 "System Information Type 6\n" \
2350 "System Information Type 7\n" \
2351 "System Information Type 8\n" \
2352 "System Information Type 9\n" \
2353 "System Information Type 10\n" \
2354 "System Information Type 13\n" \
2355 "System Information Type 16\n" \
2356 "System Information Type 17\n" \
2357 "System Information Type 18\n" \
2358 "System Information Type 19\n" \
2359 "System Information Type 20\n" \
2360 "System Information Type 2bis\n" \
2361 "System Information Type 2ter\n" \
2362 "System Information Type 2quater\n" \
2363 "System Information Type 5bis\n" \
2364 "System Information Type 5ter\n"
2365
2366DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2367 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2368 SI_TEXT SI_TYPE_HELP
2369 "System Information Mode\n"
2370 "Static user-specified\n"
2371 "Dynamic, BSC-computed\n")
2372{
2373 struct gsm_bts *bts = vty->index;
2374 int type;
2375
2376 type = get_string_value(osmo_sitype_strs, argv[0]);
2377 if (type < 0) {
2378 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2379 return CMD_WARNING;
2380 }
2381
2382 if (!strcmp(argv[1], "static"))
2383 bts->si_mode_static |= (1 << type);
2384 else
2385 bts->si_mode_static &= ~(1 << type);
2386
2387 return CMD_SUCCESS;
2388}
2389
2390DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2391 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2392 SI_TEXT SI_TYPE_HELP
2393 "Static System Information filling\n"
2394 "Static user-specified SI content in HEX notation\n")
2395{
2396 struct gsm_bts *bts = vty->index;
2397 int rc, type;
2398
2399 type = get_string_value(osmo_sitype_strs, argv[0]);
2400 if (type < 0) {
2401 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2402 return CMD_WARNING;
2403 }
2404
2405 if (!(bts->si_mode_static & (1 << type))) {
2406 vty_out(vty, "SI Type %s is not configured in static mode%s",
2407 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2408 return CMD_WARNING;
2409 }
2410
Harald Welte9f09ac32010-07-30 11:53:18 +02002411 /* Fill buffer with padding pattern */
2412 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2413
2414 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002415 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002416 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2417 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2418 return CMD_WARNING;
2419 }
2420
2421 /* Mark this SI as present */
2422 bts->si_valid |= (1 << type);
2423
2424 return CMD_SUCCESS;
2425}
2426
Harald Welteca46eff2011-01-11 23:44:56 +01002427DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002428 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002429 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002430 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2431 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002432{
2433 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002434 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002435
Harald Weltef989b782011-02-15 11:43:27 +01002436 switch (mode) {
2437 case NL_MODE_MANUAL_SI5SEP:
2438 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002439 /* make sure we clear the current list when switching to
2440 * manual mode */
2441 if (bts->neigh_list_manual_mode == 0)
2442 memset(&bts->si_common.data.neigh_list, 0,
2443 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002444 break;
2445 default:
2446 break;
2447 }
2448
2449 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002450
2451 return CMD_SUCCESS;
2452}
2453
2454DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002455 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002456 "Neighbor List\n" "Add to manual neighbor list\n"
2457 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2458 "ARFCN of neighbor\n")
2459{
2460 struct gsm_bts *bts = vty->index;
2461 struct bitvec *bv = &bts->si_common.neigh_list;
2462 uint16_t arfcn = atoi(argv[1]);
2463
2464 if (!bts->neigh_list_manual_mode) {
2465 vty_out(vty, "%% Cannot configure neighbor list in "
2466 "automatic mode%s", VTY_NEWLINE);
2467 return CMD_WARNING;
2468 }
2469
2470 if (!strcmp(argv[0], "add"))
2471 bitvec_set_bit_pos(bv, arfcn, 1);
2472 else
2473 bitvec_set_bit_pos(bv, arfcn, 0);
2474
2475 return CMD_SUCCESS;
2476}
2477
Harald Weltef989b782011-02-15 11:43:27 +01002478DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002479 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002480 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002481 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2482 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2483 "ARFCN of neighbor\n")
2484{
2485 struct gsm_bts *bts = vty->index;
2486 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2487 uint16_t arfcn = atoi(argv[1]);
2488
2489 if (!bts->neigh_list_manual_mode) {
2490 vty_out(vty, "%% Cannot configure neighbor list in "
2491 "automatic mode%s", VTY_NEWLINE);
2492 return CMD_WARNING;
2493 }
2494
2495 if (!strcmp(argv[0], "add"))
2496 bitvec_set_bit_pos(bv, arfcn, 1);
2497 else
2498 bitvec_set_bit_pos(bv, arfcn, 0);
2499
2500 return CMD_SUCCESS;
2501}
Harald Welted8acf142010-07-30 11:50:09 +02002502
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002503#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2504
2505DEFUN(cfg_bts_excl_rf_lock,
2506 cfg_bts_excl_rf_lock_cmd,
2507 "rf-lock-exclude",
2508 EXCL_RFLOCK_STR)
2509{
2510 struct gsm_bts *bts = vty->index;
2511 bts->excl_from_rf_lock = 1;
2512 return CMD_SUCCESS;
2513}
2514
2515DEFUN(cfg_bts_no_excl_rf_lock,
2516 cfg_bts_no_excl_rf_lock_cmd,
2517 "no rf-lock-exclude",
2518 NO_STR EXCL_RFLOCK_STR)
2519{
2520 struct gsm_bts *bts = vty->index;
2521 bts->excl_from_rf_lock = 0;
2522 return CMD_SUCCESS;
2523}
2524
Harald Welte9e002452010-05-11 21:53:49 +02002525#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002526
Harald Welte59b04682009-06-10 05:40:52 +08002527/* per TRX configuration */
2528DEFUN(cfg_trx,
2529 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02002530 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002531 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002532 "Select a TRX to configure")
2533{
2534 int trx_nr = atoi(argv[0]);
2535 struct gsm_bts *bts = vty->index;
2536 struct gsm_bts_trx *trx;
2537
Harald Weltee712a5f2009-06-21 16:17:15 +02002538 if (trx_nr > bts->num_trx) {
2539 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2540 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002541 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002542 } else if (trx_nr == bts->num_trx) {
2543 /* we need to allocate a new one */
2544 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002545 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002546 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002547
Harald Weltee712a5f2009-06-21 16:17:15 +02002548 if (!trx)
2549 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002550
2551 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002552 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002553 vty->node = TRX_NODE;
2554
2555 return CMD_SUCCESS;
2556}
2557
2558DEFUN(cfg_trx_arfcn,
2559 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002560 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02002561 "Set the ARFCN for this TRX\n"
2562 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002563{
2564 int arfcn = atoi(argv[0]);
2565 struct gsm_bts_trx *trx = vty->index;
2566
2567 /* FIXME: check if this ARFCN is supported by this TRX */
2568
2569 trx->arfcn = arfcn;
2570
2571 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2572 /* FIXME: use OML layer to update the ARFCN */
2573 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2574
2575 return CMD_SUCCESS;
2576}
2577
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002578DEFUN(cfg_trx_nominal_power,
2579 cfg_trx_nominal_power_cmd,
2580 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002581 "Nominal TRX RF Power in dBm\n"
2582 "Nominal TRX RF Power in dBm\n"
2583 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002584{
2585 struct gsm_bts_trx *trx = vty->index;
2586
2587 trx->nominal_power = atoi(argv[0]);
2588
2589 return CMD_SUCCESS;
2590}
2591
Harald Welte91afe4c2009-06-20 18:15:19 +02002592DEFUN(cfg_trx_max_power_red,
2593 cfg_trx_max_power_red_cmd,
2594 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002595 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02002596 "Reduction of maximum BS RF Power in dB\n")
2597{
2598 int maxpwr_r = atoi(argv[0]);
2599 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002600 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002601
2602 /* FIXME: check if our BTS type supports more than 12 */
2603 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2604 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2605 maxpwr_r, VTY_NEWLINE);
2606 return CMD_WARNING;
2607 }
2608 if (maxpwr_r & 1) {
2609 vty_out(vty, "%% Power %d dB is not an even value%s",
2610 maxpwr_r, VTY_NEWLINE);
2611 return CMD_WARNING;
2612 }
2613
2614 trx->max_power_red = maxpwr_r;
2615
2616 /* FIXME: make sure we update this using OML */
2617
2618 return CMD_SUCCESS;
2619}
2620
Harald Welte62868882009-08-08 16:12:58 +02002621DEFUN(cfg_trx_rsl_e1,
2622 cfg_trx_rsl_e1_cmd,
2623 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002624 "RSL Parameters\n"
2625 "E1/T1 interface to be used for RSL\n"
2626 "E1/T1 interface to be used for RSL\n"
2627 "E1/T1 Line Number to be used for RSL\n"
2628 "E1/T1 Timeslot to be used for RSL\n"
2629 "E1/T1 Timeslot to be used for RSL\n"
2630 "E1/T1 Sub-slot to be used for RSL\n"
2631 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2632 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2633 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2634 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2635 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002636{
2637 struct gsm_bts_trx *trx = vty->index;
2638
2639 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2640
2641 return CMD_SUCCESS;
2642}
2643
2644DEFUN(cfg_trx_rsl_e1_tei,
2645 cfg_trx_rsl_e1_tei_cmd,
2646 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002647 "RSL Parameters\n"
2648 "Set the TEI to be used for RSL\n"
2649 "Set the TEI to be used for RSL\n"
2650 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002651{
2652 struct gsm_bts_trx *trx = vty->index;
2653
2654 trx->rsl_tei = atoi(argv[0]);
2655
2656 return CMD_SUCCESS;
2657}
2658
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002659DEFUN(cfg_trx_rf_locked,
2660 cfg_trx_rf_locked_cmd,
2661 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002662 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2663 "TRX is NOT RF locked (active)\n"
2664 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002665{
2666 int locked = atoi(argv[0]);
2667 struct gsm_bts_trx *trx = vty->index;
2668
2669 gsm_trx_lock_rf(trx, locked);
2670 return CMD_SUCCESS;
2671}
Harald Welte62868882009-08-08 16:12:58 +02002672
Harald Welte59b04682009-06-10 05:40:52 +08002673/* per TS configuration */
2674DEFUN(cfg_ts,
2675 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002676 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002677 "Select a Timeslot to configure\n"
2678 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002679{
2680 int ts_nr = atoi(argv[0]);
2681 struct gsm_bts_trx *trx = vty->index;
2682 struct gsm_bts_trx_ts *ts;
2683
2684 if (ts_nr >= TRX_NR_TS) {
2685 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2686 TRX_NR_TS, VTY_NEWLINE);
2687 return CMD_WARNING;
2688 }
2689
2690 ts = &trx->ts[ts_nr];
2691
2692 vty->index = ts;
2693 vty->node = TS_NODE;
2694
2695 return CMD_SUCCESS;
2696}
2697
Harald Welte3ffe1b32009-08-07 00:25:23 +02002698DEFUN(cfg_ts_pchan,
2699 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02002700 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002701 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02002702{
2703 struct gsm_bts_trx_ts *ts = vty->index;
2704 int pchanc;
2705
2706 pchanc = gsm_pchan_parse(argv[0]);
2707 if (pchanc < 0)
2708 return CMD_WARNING;
2709
2710 ts->pchan = pchanc;
2711
2712 return CMD_SUCCESS;
2713}
2714
2715/* used for backwards compatibility with old config files that still
2716 * have uppercase pchan type names */
2717DEFUN_HIDDEN(cfg_ts_pchan_compat,
2718 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02002719 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002720 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002721{
2722 struct gsm_bts_trx_ts *ts = vty->index;
2723 int pchanc;
2724
2725 pchanc = gsm_pchan_parse(argv[0]);
2726 if (pchanc < 0)
2727 return CMD_WARNING;
2728
2729 ts->pchan = pchanc;
2730
2731 return CMD_SUCCESS;
2732}
2733
Harald Welte2addf852012-08-17 12:42:06 +02002734
2735
Harald Welte85771a42011-05-30 12:09:13 +02002736DEFUN(cfg_ts_tsc,
2737 cfg_ts_tsc_cmd,
2738 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002739 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02002740{
2741 struct gsm_bts_trx_ts *ts = vty->index;
2742
2743 ts->tsc = atoi(argv[0]);
2744
2745 return CMD_SUCCESS;
2746}
2747
Harald Weltea42a93f2010-06-14 22:26:10 +02002748#define HOPPING_STR "Configure frequency hopping\n"
2749
2750DEFUN(cfg_ts_hopping,
2751 cfg_ts_hopping_cmd,
2752 "hopping enabled (0|1)",
2753 HOPPING_STR "Enable or disable frequency hopping\n"
2754 "Disable frequency hopping\n" "Enable frequency hopping\n")
2755{
2756 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002757 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002758
Harald Welte059c1ef2010-06-14 22:47:37 +02002759 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2760 vty_out(vty, "BTS model does not support hopping%s",
2761 VTY_NEWLINE);
2762 return CMD_WARNING;
2763 }
2764
2765 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002766
2767 return CMD_SUCCESS;
2768}
2769
Harald Welte67104d12009-09-12 13:05:33 +02002770DEFUN(cfg_ts_hsn,
2771 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002772 "hopping sequence-number <0-63>",
2773 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002774 "Which hopping sequence to use for this channel\n"
2775 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002776{
2777 struct gsm_bts_trx_ts *ts = vty->index;
2778
2779 ts->hopping.hsn = atoi(argv[0]);
2780
2781 return CMD_SUCCESS;
2782}
2783
2784DEFUN(cfg_ts_maio,
2785 cfg_ts_maio_cmd,
2786 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002787 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002788 "Which hopping MAIO to use for this channel\n"
2789 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002790{
2791 struct gsm_bts_trx_ts *ts = vty->index;
2792
2793 ts->hopping.maio = atoi(argv[0]);
2794
2795 return CMD_SUCCESS;
2796}
2797
2798DEFUN(cfg_ts_arfcn_add,
2799 cfg_ts_arfcn_add_cmd,
2800 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002801 HOPPING_STR "Configure hopping ARFCN list\n"
2802 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002803{
2804 struct gsm_bts_trx_ts *ts = vty->index;
2805 int arfcn = atoi(argv[0]);
2806
Harald Weltea42a93f2010-06-14 22:26:10 +02002807 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2808
Harald Welte67104d12009-09-12 13:05:33 +02002809 return CMD_SUCCESS;
2810}
2811
2812DEFUN(cfg_ts_arfcn_del,
2813 cfg_ts_arfcn_del_cmd,
2814 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002815 HOPPING_STR "Configure hopping ARFCN list\n"
2816 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002817{
2818 struct gsm_bts_trx_ts *ts = vty->index;
2819 int arfcn = atoi(argv[0]);
2820
Harald Weltea42a93f2010-06-14 22:26:10 +02002821 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2822
Harald Welte67104d12009-09-12 13:05:33 +02002823 return CMD_SUCCESS;
2824}
2825
Harald Welte3ffe1b32009-08-07 00:25:23 +02002826DEFUN(cfg_ts_e1_subslot,
2827 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002828 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002829 "E1/T1 channel connected to this on-air timeslot\n"
2830 "E1/T1 channel connected to this on-air timeslot\n"
2831 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002832 "E1/T1 timeslot connected to this on-air timeslot\n"
2833 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02002834 "E1/T1 sub-slot connected to this on-air timeslot\n"
2835 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2836 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2837 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2838 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2839 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002840{
2841 struct gsm_bts_trx_ts *ts = vty->index;
2842
Harald Welte62868882009-08-08 16:12:58 +02002843 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002844
2845 return CMD_SUCCESS;
2846}
Harald Welte59b04682009-06-10 05:40:52 +08002847
Harald Weltea5b1dae2010-05-16 21:47:13 +02002848void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2849{
2850 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002851 osmo_counter_get(net->stats.chreq.total),
2852 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002853 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002854 osmo_counter_get(net->stats.chan.rf_fail),
2855 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002856 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002857 osmo_counter_get(net->stats.paging.attempted),
2858 osmo_counter_get(net->stats.paging.completed),
2859 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002860 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002861 osmo_counter_get(net->stats.bts.oml_fail),
2862 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002863}
2864
Harald Welte682ee5f2010-05-16 22:02:16 +02002865DEFUN(logging_fltr_imsi,
2866 logging_fltr_imsi_cmd,
2867 "logging filter imsi IMSI",
2868 LOGGING_STR FILTER_STR
2869 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2870{
Harald Welte58bef962011-02-18 21:10:05 +01002871 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002872
Harald Welte58bef962011-02-18 21:10:05 +01002873 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002874 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002875
Harald Welte58bef962011-02-18 21:10:05 +01002876 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002877 return CMD_SUCCESS;
2878}
2879
Harald Welte58bef962011-02-18 21:10:05 +01002880
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002881DEFUN(drop_bts,
2882 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002883 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02002884 "Debug/Simulation command to drop Abis/IP BTS\n"
2885 "Debug/Simulation command to drop Abis/IP BTS\n"
2886 "Debug/Simulation command to drop Abis/IP BTS\n"
2887 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002888{
2889 struct gsm_network *gsmnet;
2890 struct gsm_bts_trx *trx;
2891 struct gsm_bts *bts;
2892 unsigned int bts_nr;
2893
2894 gsmnet = gsmnet_from_vty(vty);
2895
2896 bts_nr = atoi(argv[0]);
2897 if (bts_nr >= gsmnet->num_bts) {
2898 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2899 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2900 return CMD_WARNING;
2901 }
2902
2903 bts = gsm_bts_num(gsmnet, bts_nr);
2904 if (!bts) {
2905 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2906 return CMD_WARNING;
2907 }
2908
2909 if (!is_ipaccess_bts(bts)) {
2910 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2911 return CMD_WARNING;
2912 }
2913
2914
2915 /* close all connections */
2916 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002917 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002918 } else if (strcmp(argv[1], "rsl") == 0) {
2919 /* close all rsl connections */
2920 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002921 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002922 }
2923 } else {
2924 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2925 return CMD_WARNING;
2926 }
2927
2928 return CMD_SUCCESS;
2929}
2930
Harald Welte5213e992010-12-23 13:18:07 +01002931DEFUN(pdch_act, pdch_act_cmd,
2932 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2933 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2934 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2935 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2936 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2937{
2938 struct gsm_bts *bts;
2939 struct gsm_bts_trx *trx;
2940 struct gsm_bts_trx_ts *ts;
2941 int bts_nr = atoi(argv[0]);
2942 int trx_nr = atoi(argv[1]);
2943 int ts_nr = atoi(argv[2]);
2944 int activate;
2945
2946 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2947 if (!bts) {
2948 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2949 return CMD_WARNING;
2950 }
2951
2952 if (!is_ipaccess_bts(bts)) {
2953 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2954 VTY_NEWLINE);
2955 return CMD_WARNING;
2956 }
2957
2958 trx = gsm_bts_trx_num(bts, trx_nr);
2959 if (!trx) {
2960 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2961 return CMD_WARNING;
2962 }
2963
2964 ts = &trx->ts[ts_nr];
2965 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2966 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2967 "mode%s", ts_nr, VTY_NEWLINE);
2968 return CMD_WARNING;
2969 }
2970
2971 if (!strcmp(argv[3], "activate"))
2972 activate = 1;
2973 else
2974 activate = 0;
2975
2976 rsl_ipacc_pdch_activate(ts, activate);
2977
2978 return CMD_SUCCESS;
2979
2980}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002981
Harald Welte40152872010-05-16 20:52:23 +02002982extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002983extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002984
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002985int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002986{
Harald Welte2addf852012-08-17 12:42:06 +02002987 cfg_ts_pchan_cmd.string =
2988 vty_cmd_string_from_valstr(tall_bsc_ctx,
2989 gsm_pchant_names,
2990 "phys_chan_config (", "|", ")",
2991 VTY_DO_LOWER);
2992 cfg_ts_pchan_cmd.doc =
2993 vty_cmd_string_from_valstr(tall_bsc_ctx,
2994 gsm_pchant_descs,
2995 "Physical Channel Combination\n",
2996 "\n", "", 0);
2997
Harald Welte85a77b12012-08-17 13:02:12 +02002998 cfg_bts_type_cmd.string =
2999 vty_cmd_string_from_valstr(tall_bsc_ctx,
3000 bts_type_names,
3001 "type (", "|", ")",
3002 VTY_DO_LOWER);
3003 cfg_bts_type_cmd.doc =
3004 vty_cmd_string_from_valstr(tall_bsc_ctx,
3005 bts_type_descs,
3006 "BTS Vendor/Type\n",
3007 "\n", "", 0);
3008
3009
Harald Welte7bc28f62010-05-12 16:10:35 +00003010 install_element_ve(&show_net_cmd);
3011 install_element_ve(&show_bts_cmd);
3012 install_element_ve(&show_trx_cmd);
3013 install_element_ve(&show_ts_cmd);
3014 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08003015 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02003016 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003017
Harald Welte7bc28f62010-05-12 16:10:35 +00003018 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003019
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003020 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01003021 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01003022
Harald Weltee87eb462009-08-07 13:29:14 +02003023 install_element(CONFIG_NODE, &cfg_net_cmd);
3024 install_node(&net_node, config_write_net);
3025 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003026 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003027 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003028 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003029 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3030 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3031 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02003032 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01003033 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09003034 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01003035 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01003036 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01003037 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003038 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003039 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3040 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3041 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3042 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3043 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3044 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003045 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003046 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3047 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3048 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3049 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3050 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3051 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3052 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3053 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3054 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003055 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003056 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003057 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003058 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003059 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003060
3061 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003062 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08003063 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003064 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003065 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003066 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003067 install_element(BTS_NODE, &cfg_description_cmd);
3068 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003069 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003070 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003071 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3072 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003073 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003074 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003075 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003076 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
3077 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Harald Welte08011e22011-03-04 13:41:31 +01003078 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003079 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003080 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02003081 install_element(BTS_NODE, &cfg_bts_hsl_oml_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003082 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3083 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003084 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003085 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3086 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003087 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3088 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3089 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003090 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3091 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003092 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003093 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003094 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003095 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003096 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3097 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003098 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3099 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3100 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3101 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3102 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3103 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003104 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003105 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003106 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003107 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003108 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003109 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003110 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003111 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003112 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3113 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3114 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003115 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003116 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3117 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003118 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3119 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003120 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003121 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3122 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003123
3124 install_element(BTS_NODE, &cfg_trx_cmd);
3125 install_node(&trx_node, dummy_config_write);
3126 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003127 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003128 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003129 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003130 install_element(TRX_NODE, &cfg_description_cmd);
3131 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003132 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003133 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003134 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3135 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003136 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003137
3138 install_element(TRX_NODE, &cfg_ts_cmd);
3139 install_node(&ts_node, dummy_config_write);
3140 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003141 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003142 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003143 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003144 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003145 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003146 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003147 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3148 install_element(TS_NODE, &cfg_ts_maio_cmd);
3149 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3150 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003151 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003152
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003153 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003154 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003155
Harald Welte63b964e2010-05-31 16:40:40 +02003156 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003157 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003158 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003159
Harald Welte40152872010-05-16 20:52:23 +02003160 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003161
3162 return 0;
3163}