blob: 9b0f020f3da29751e51c1b7646c84e00c0274abd [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-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 Welte68628e82009-03-10 12:17:57 +00008 * (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 Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-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 Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000022
Harald Welte4b037e42010-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 Welte4ab9d7c2012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte68628e82009-03-10 12:17:57 +000029
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010030#include <osmocom/gsm/gsm0502.h>
31
Harald Welte68628e82009-03-10 12:17:57 +000032#include <arpa/inet.h>
33
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010034#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000035#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020036#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000037#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010038#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010039#include <osmocom/core/utils.h>
40#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020041#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010042#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010043#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000044#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010045#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020046#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080047#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020048#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020049#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010050#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020051#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010052#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010053#include <openbsc/osmo_msc_data.h>
54#include <openbsc/osmo_bsc_rf.h>
Harald Welte68628e82009-03-10 12:17:57 +000055
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +010056#include <inttypes.h>
57
Harald Weltec08e8be2011-03-04 13:53:51 +010058#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020059
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +020060
61#define NETWORK_STR "Configure the GSM network\n"
62#define CODE_CMD_STR "Code commands\n"
63#define NAME_CMD_STR "Name Commands\n"
64#define NAME_STR "Name to use\n"
65#define LCHAN_NR_STR "Logical Channel Number\n"
66
67
Harald Welteea4647d2010-05-12 17:19:53 +000068/* FIXME: this should go to some common file */
69static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020070 { 0, "tns-block" },
71 { 1, "tns-block-retries" },
72 { 2, "tns-reset" },
73 { 3, "tns-reset-retries" },
74 { 4, "tns-test" },
75 { 5, "tns-alive" },
76 { 6, "tns-alive-retries" },
77 { 0, NULL }
78};
79
Harald Welteea4647d2010-05-12 17:19:53 +000080static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-05-11 23:50:21 +020081 { 0, "blocking-timer" },
82 { 1, "blocking-retries" },
83 { 2, "unblocking-retries" },
84 { 3, "reset-timer" },
85 { 4, "reset-retries" },
86 { 5, "suspend-timer" },
87 { 6, "suspend-retries" },
88 { 7, "resume-timer" },
89 { 8, "resume-retries" },
90 { 9, "capability-update-timer" },
91 { 10, "capability-update-retries" },
92 { 0, NULL }
93};
94
Harald Welte64c07d22011-02-15 11:43:27 +010095static const struct value_string bts_neigh_mode_strs[] = {
96 { NL_MODE_AUTOMATIC, "automatic" },
97 { NL_MODE_MANUAL, "manual" },
98 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
99 { 0, NULL }
100};
101
Daniel Willmann7d109832012-05-14 18:43:23 +0200102const struct value_string bts_loc_fix_names[] = {
103 { BTS_LOC_FIX_INVALID, "invalid" },
104 { BTS_LOC_FIX_2D, "fix2d" },
105 { BTS_LOC_FIX_3D, "fix3d" },
106 { 0, NULL }
107};
108
Harald Welte5013b2a2009-08-07 13:29:14 +0200109struct cmd_node net_node = {
110 GSMNET_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200111 "%s(config-net)# ",
Harald Welte5013b2a2009-08-07 13:29:14 +0200112 1,
113};
114
Harald Welte68628e82009-03-10 12:17:57 +0000115struct cmd_node bts_node = {
116 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200117 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000118 1,
119};
120
121struct cmd_node trx_node = {
122 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200123 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000124 1,
125};
126
127struct cmd_node ts_node = {
128 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200129 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000130 1,
131};
132
Harald Welte39231152010-05-27 13:39:40 +0200133extern struct gsm_network *bsc_gsmnet;
134
Harald Weltedcccb182010-05-16 20:52:23 +0200135struct gsm_network *gsmnet_from_vty(struct vty *v)
136{
Harald Welte39231152010-05-27 13:39:40 +0200137 /* In case we read from the config file, the vty->priv cannot
138 * point to a struct telnet_connection, and thus conn->priv
139 * will not point to the gsm_network structure */
140#if 0
Harald Weltedcccb182010-05-16 20:52:23 +0200141 struct telnet_connection *conn = v->priv;
142 return (struct gsm_network *) conn->priv;
Harald Welte39231152010-05-27 13:39:40 +0200143#else
144 return bsc_gsmnet;
145#endif
Harald Weltedcccb182010-05-16 20:52:23 +0200146}
147
Harald Welte68628e82009-03-10 12:17:57 +0000148static int dummy_config_write(struct vty *v)
149{
150 return CMD_SUCCESS;
151}
152
153static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
154{
Harald Welte1304b352013-03-15 16:57:33 +0100155 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
156 abis_nm_opstate_name(nms->operational),
157 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte867d9f32011-05-23 20:30:39 +0200158 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000159}
160
Harald Welteb908cb72009-12-22 13:09:29 +0100161static void dump_pchan_load_vty(struct vty *vty, char *prefix,
162 const struct pchan_load *pl)
163{
164 int i;
165
166 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
167 const struct load_counter *lc = &pl->pchan[i];
168 unsigned int percent;
169
170 if (lc->total == 0)
171 continue;
172
173 percent = (lc->used * 100) / lc->total;
174
175 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
176 gsm_pchan_name(i), percent, lc->used, lc->total,
177 VTY_NEWLINE);
178 }
179}
180
Harald Welte68628e82009-03-10 12:17:57 +0000181static void net_dump_vty(struct vty *vty, struct gsm_network *net)
182{
Harald Welteb908cb72009-12-22 13:09:29 +0100183 struct pchan_load pl;
184
Harald Welteef235b52009-03-10 12:34:02 +0000185 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
186 "and has %u BTS%s", net->country_code, net->network_code,
187 net->num_bts, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000188 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000189 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000190 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000191 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200192 vty_out(vty, " Authentication policy: %s%s",
193 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100194 vty_out(vty, " Location updating reject cause: %u%s",
195 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900196 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
197 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100198 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
199 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800200 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
201 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100202 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
203 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100204 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
205 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100206 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
207 VTY_NEWLINE);
Harald Welteb908cb72009-12-22 13:09:29 +0100208 network_chan_load(&pl, net);
209 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
210 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100211
212 /* show rf */
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100213 if (net->bsc_data)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100214 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200215 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100216 VTY_NEWLINE);
Holger Hans Peter Freythera9fae1a2014-02-08 12:12:03 +0100217 if (net->bsc_data)
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200218 vty_out(vty, " Last RF Lock Command: %s%s",
219 net->bsc_data->rf_ctrl->last_rf_lock_ctrl_command,
220 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000221}
222
223DEFUN(show_net, show_net_cmd, "show network",
224 SHOW_STR "Display information about a GSM NETWORK\n")
225{
Harald Weltedcccb182010-05-16 20:52:23 +0200226 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000227 net_dump_vty(vty, net);
228
229 return CMD_SUCCESS;
230}
231
232static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
233{
Harald Welteedb37782009-05-01 14:59:07 +0000234 struct e1inp_line *line;
235
236 if (!e1l) {
237 vty_out(vty, " None%s", VTY_NEWLINE);
238 return;
239 }
240
241 line = e1l->ts->line;
242
243 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
244 line->num, line->driver->name, e1l->ts->num,
Harald Welte1bc77352009-03-10 19:47:51 +0000245 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000246 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000247 e1l->tei, e1l->sapi, VTY_NEWLINE);
248}
249
250static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
251{
Harald Welteb908cb72009-12-22 13:09:29 +0100252 struct pchan_load pl;
253
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200254 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-06-20 18:15:19 +0200255 "BSIC %u, TSC %u and %u TRX%s",
256 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200257 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200258 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200259 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200260 vty_out(vty, "Description: %s%s",
261 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100262 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100263 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-12-12 15:38:16 +0100264 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
265 VTY_NEWLINE);
266 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welte73225282009-12-12 18:17:25 +0100267 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100268 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
269 VTY_NEWLINE);
270 vty_out(vty, "RACH Max transmissions: %u%s",
271 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
272 VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100273 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200274 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200275 vty_out(vty, "Channel Description Attachment: %s%s",
276 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
277 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
278 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
279 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
280 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200281 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
282 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte4cc34222009-05-01 15:12:31 +0000283 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200284 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000285 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200286 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautc9519462011-10-17 14:04:55 +0200287 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
288 vty_out(vty, " Skip Reset: %d%s",
289 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000290 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200291 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000292 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200293 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther846d8dc2013-05-29 16:22:09 +0200294 vty_out(vty, " GPRS NSE: ");
295 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
296 vty_out(vty, " GPRS CELL: ");
297 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
298 vty_out(vty, " GPRS NSVC0: ");
299 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
300 vty_out(vty, " GPRS NSVC1: ");
301 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200302 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
303 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000304 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100305 if (is_ipaccess_bts(bts)) {
306 vty_out(vty, " OML Link state: %s.%s",
307 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
308 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200309 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
310 e1isl_dump_vty(vty, bts->oml_link);
311 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100312
313 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100314 memset(&pl, 0, sizeof(pl));
315 bts_chan_load(&pl, bts);
316 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
317 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000318}
319
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100320DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000321 SHOW_STR "Display information about a BTS\n"
322 "BTS number")
323{
Harald Weltedcccb182010-05-16 20:52:23 +0200324 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000325 int bts_nr;
326
327 if (argc != 0) {
328 /* use the BTS number that the user has specified */
329 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100330 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000331 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000332 VTY_NEWLINE);
333 return CMD_WARNING;
334 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200335 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000336 return CMD_SUCCESS;
337 }
338 /* print all BTS's */
339 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200340 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000341
342 return CMD_SUCCESS;
343}
344
Harald Welte42581822009-08-08 16:12:58 +0200345/* utility functions */
346static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
347 const char *ts, const char *ss)
348{
349 e1_link->e1_nr = atoi(line);
350 e1_link->e1_ts = atoi(ts);
351 if (!strcmp(ss, "full"))
352 e1_link->e1_ts_ss = 255;
353 else
354 e1_link->e1_ts_ss = atoi(ss);
355}
356
357static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
358 const char *prefix)
359{
360 if (!e1_link->e1_ts)
361 return;
362
363 if (e1_link->e1_ts_ss == 255)
364 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
365 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
366 else
367 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
368 prefix, e1_link->e1_nr, e1_link->e1_ts,
369 e1_link->e1_ts_ss, VTY_NEWLINE);
370}
371
372
Harald Welte67ce0732009-08-06 19:06:46 +0200373static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
374{
Harald Welte42581822009-08-08 16:12:58 +0200375 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte135a6482011-05-30 12:09:13 +0200376 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
377 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200378 if (ts->pchan != GSM_PCHAN_NONE)
379 vty_out(vty, " phys_chan_config %s%s",
380 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200381 vty_out(vty, " hopping enabled %u%s",
382 ts->hopping.enabled, VTY_NEWLINE);
383 if (ts->hopping.enabled) {
384 unsigned int i;
385 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200386 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200387 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200388 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200389 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
390 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
391 continue;
392 vty_out(vty, " hopping arfcn add %u%s",
393 i, VTY_NEWLINE);
394 }
Harald Welte127af342010-12-24 12:07:07 +0100395 }
Harald Welte42581822009-08-08 16:12:58 +0200396 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100397
398 if (ts->trx->bts->model->config_write_ts)
399 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200400}
401
402static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
403{
404 int i;
405
Harald Welte5013b2a2009-08-07 13:29:14 +0200406 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200407 if (trx->description)
408 vty_out(vty, " description %s%s", trx->description,
409 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200410 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200411 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200412 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200413 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100414 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200415 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200416 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
417 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200418
Harald Welteface7ed2011-02-14 16:15:21 +0100419 if (trx->bts->model->config_write_trx)
420 trx->bts->model->config_write_trx(vty, trx);
421
Harald Welte67ce0732009-08-06 19:06:46 +0200422 for (i = 0; i < TRX_NR_TS; i++)
423 config_write_ts_single(vty, &trx->ts[i]);
424}
425
Harald Welte615e9562010-05-11 23:50:21 +0200426static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
427{
428 unsigned int i;
429 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
430 VTY_NEWLINE);
431 if (bts->gprs.mode == BTS_GPRS_NONE)
432 return;
433
434 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
435 VTY_NEWLINE);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +0100436 vty_out(vty, " gprs network-control-order nc%u%s",
437 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Welte615e9562010-05-11 23:50:21 +0200438 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
439 VTY_NEWLINE);
440 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
441 vty_out(vty, " gprs cell timer %s %u%s",
442 get_value_string(gprs_bssgp_cfg_strs, i),
443 bts->gprs.cell.timer[i], VTY_NEWLINE);
444 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
445 VTY_NEWLINE);
446 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
447 vty_out(vty, " gprs ns timer %s %u%s",
448 get_value_string(gprs_ns_timer_strs, i),
449 bts->gprs.nse.timer[i], VTY_NEWLINE);
450 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
451 struct gsm_bts_gprs_nsvc *nsvc =
452 &bts->gprs.nsvc[i];
453 struct in_addr ia;
454
455 ia.s_addr = htonl(nsvc->remote_ip);
456 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
457 nsvc->nsvci, VTY_NEWLINE);
458 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
459 nsvc->local_port, VTY_NEWLINE);
460 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
461 nsvc->remote_port, VTY_NEWLINE);
462 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
463 inet_ntoa(ia), VTY_NEWLINE);
464 }
465}
466
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200467/* Write the model data if there is one */
468static void config_write_bts_model(struct vty *vty, struct gsm_bts *bts)
Harald Welte67ce0732009-08-06 19:06:46 +0200469{
470 struct gsm_bts_trx *trx;
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200471
472 if (!bts->model)
473 return;
474
475 if (bts->model->config_write_bts)
476 bts->model->config_write_bts(vty, bts);
477
478 llist_for_each_entry(trx, &bts->trx_list, list)
479 config_write_trx_single(vty, trx);
480}
481
Andreas Eversberg73266522014-01-19 11:47:44 +0100482static void config_write_bts_amr(struct vty *vty, struct gsm_bts *bts,
483 struct amr_multirate_conf *mr, int full)
484{
485 struct gsm48_multi_rate_conf *mr_conf;
486 const char *prefix = (full) ? "amr tch-f" : "amr tch-h";
487 int i, num;
488
489 if (!(mr->gsm48_ie[1]))
490 return;
491
492 mr_conf = (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
493
494 num = 0;
495 vty_out(vty, " %s modes", prefix);
496 for (i = 0; i < ((full) ? 8 : 6); i++) {
497 if ((mr->gsm48_ie[1] & (1 << i))) {
498 vty_out(vty, " %d", i);
499 num++;
500 }
501 }
502 vty_out(vty, "%s", VTY_NEWLINE);
503 if (num > 4)
504 num = 4;
505 if (num > 1) {
506 vty_out(vty, " %s threshold ms", prefix);
507 for (i = 0; i < num - 1; i++) {
508 vty_out(vty, " %d", mr->mode[i].threshold_ms);
509 }
510 vty_out(vty, "%s", VTY_NEWLINE);
511 vty_out(vty, " %s hysteresis ms", prefix);
512 for (i = 0; i < num - 1; i++) {
513 vty_out(vty, " %d", mr->mode[i].hysteresis_ms);
514 }
515 vty_out(vty, "%s", VTY_NEWLINE);
516 vty_out(vty, " %s threshold bts", prefix);
517 for (i = 0; i < num - 1; i++) {
518 vty_out(vty, " %d", mr->mode[i].threshold_bts);
519 }
520 vty_out(vty, "%s", VTY_NEWLINE);
521 vty_out(vty, " %s hysteresis bts", prefix);
522 for (i = 0; i < num - 1; i++) {
523 vty_out(vty, " %d", mr->mode[i].hysteresis_bts);
524 }
525 vty_out(vty, "%s", VTY_NEWLINE);
526 }
527 vty_out(vty, " %s start-mode ", prefix);
528 if (mr_conf->icmi) {
529 num = 0;
530 for (i = 0; i < ((full) ? 8 : 6) && num < 4; i++) {
531 if ((mr->gsm48_ie[1] & (1 << i)))
532 num++;
533 if (mr_conf->smod == num - 1) {
534 vty_out(vty, "%d%s", num, VTY_NEWLINE);
535 break;
536 }
537 }
538 } else
539 vty_out(vty, "auto%s", VTY_NEWLINE);
540}
541
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200542static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
543{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200544 int i;
Harald Welte67ce0732009-08-06 19:06:46 +0200545
Harald Welte5013b2a2009-08-07 13:29:14 +0200546 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
547 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200548 if (bts->description)
549 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200550 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100551 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200552 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200553 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200554 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte903aaea2014-01-19 17:10:50 +0100555 if (bts->tsc != (bts->bsic & 7))
556 vty_out(vty, " training_sequence_code %u%s", bts->tsc,
557 VTY_NEWLINE);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200558 if (bts->tz.override != 0) {
559 if (bts->tz.dst)
560 vty_out(vty, " timezone %d %d %d%s",
561 bts->tz.hr, bts->tz.mn, bts->tz.dst, VTY_NEWLINE);
562 else
563 vty_out(vty, " timezone %d %d%s",
564 bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
565 }
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200566 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100567 vty_out(vty, " cell reselection hysteresis %u%s",
568 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
569 vty_out(vty, " rxlev access min %u%s",
570 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100571
572 if (bts->si_common.cell_ro_sel_par.present) {
573 struct gsm48_si_selection_params *sp;
574 sp = &bts->si_common.cell_ro_sel_par;
575
576 if (sp->cbq)
577 vty_out(vty, " cell bar qualify %u%s",
578 sp->cbq, VTY_NEWLINE);
579
580 if (sp->cell_resel_off)
581 vty_out(vty, " cell reselection offset %u%s",
582 sp->cell_resel_off*2, VTY_NEWLINE);
583
584 if (sp->temp_offs == 7)
585 vty_out(vty, " temporary offset infinite%s",
586 VTY_NEWLINE);
587 else if (sp->temp_offs)
588 vty_out(vty, " temporary offset %u%s",
589 sp->temp_offs*10, VTY_NEWLINE);
590
591 if (sp->penalty_time == 31)
592 vty_out(vty, " penalty time reserved%s",
593 VTY_NEWLINE);
594 else if (sp->penalty_time)
595 vty_out(vty, " penalty time %u%s",
596 (sp->penalty_time*20)+20, VTY_NEWLINE);
597 }
598
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200599 /* Is periodic LU enabled or disabled? */
600 if (bts->si_common.chan_desc.t3212 == 0)
601 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
602 else
603 vty_out(vty, " periodic location update %u%s",
604 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
605
Andreas Eversberg4d4944a2013-03-10 11:49:35 +0100606 vty_out(vty, " radio-link-timeout %d%s",
607 get_radio_link_timeout(&bts->si_common.cell_options),
608 VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200609 vty_out(vty, " channel allocator %s%s",
610 bts->chan_alloc_reverse ? "descending" : "ascending",
611 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100612 vty_out(vty, " rach tx integer %u%s",
613 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
614 vty_out(vty, " rach max transmission %u%s",
615 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
616 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800617
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200618 vty_out(vty, " channel-descrption attach %u%s",
619 bts->si_common.chan_desc.att, VTY_NEWLINE);
620 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
621 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
622 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
623 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
624
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800625 if (bts->rach_b_thresh != -1)
626 vty_out(vty, " rach nm busy threshold %u%s",
627 bts->rach_b_thresh, VTY_NEWLINE);
628 if (bts->rach_ldavg_slots != -1)
629 vty_out(vty, " rach nm load average %u%s",
630 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100631 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200632 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800633 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
634 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400635 if ((bts->si_common.rach_control.t3) != 0)
636 for (i = 0; i < 8; i++)
637 if (bts->si_common.rach_control.t3 & (0x1 << i))
638 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
639 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
640 for (i = 0; i < 8; i++)
641 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
642 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200643 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
644 if (bts->si_mode_static & (1 << i)) {
645 vty_out(vty, " system-information %s mode static%s",
646 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
647 vty_out(vty, " system-information %s static %s%s",
648 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100649 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200650 VTY_NEWLINE);
651 }
652 }
Harald Weltefd355a32011-03-04 13:41:31 +0100653 switch (bts->type) {
654 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200655 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200656 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200657 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100658 if (bts->ip_access.rsl_ip) {
659 struct in_addr ia;
660 ia.s_addr = htonl(bts->ip_access.rsl_ip);
661 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
662 VTY_NEWLINE);
663 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200664 vty_out(vty, " oml ip.access stream_id %u line %u%s",
665 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100666 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200667 case GSM_BTS_TYPE_NOKIA_SITE:
668 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100669 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
670 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100671 vty_out(vty, " nokia_site bts-reset-timer %d%s", bts->nokia.bts_reset_timer_cnf, VTY_NEWLINE);
Andreas Eversbergb6f95162013-12-05 16:02:37 +0100672 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100673 default:
Harald Welte42581822009-08-08 16:12:58 +0200674 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
675 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100676 break;
Harald Welte42581822009-08-08 16:12:58 +0200677 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800678
679 /* if we have a limit, write it */
680 if (bts->paging.free_chans_need >= 0)
681 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
682
Harald Welte32c09622011-01-11 23:44:56 +0100683 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100684 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
685 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100686 for (i = 0; i < 1024; i++) {
687 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
688 vty_out(vty, " neighbor-list add arfcn %u%s",
689 i, VTY_NEWLINE);
690 }
691 }
Harald Welte64c07d22011-02-15 11:43:27 +0100692 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
693 for (i = 0; i < 1024; i++) {
694 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
695 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
696 i, VTY_NEWLINE);
697 }
698 }
Harald Welte32c09622011-01-11 23:44:56 +0100699
Andreas Eversberga83d5112013-12-07 18:32:28 +0100700 vty_out(vty, " codec-support fr");
701 if (bts->codec.hr)
702 vty_out(vty, " hr");
703 if (bts->codec.efr)
704 vty_out(vty, " efr");
705 if (bts->codec.amr)
706 vty_out(vty, " amr");
707 vty_out(vty, "%s", VTY_NEWLINE);
708
Andreas Eversberg73266522014-01-19 11:47:44 +0100709 config_write_bts_amr(vty, bts, &bts->mr_full, 1);
710 config_write_bts_amr(vty, bts, &bts->mr_half, 0);
711
Harald Welte615e9562010-05-11 23:50:21 +0200712 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200713
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200714 if (bts->excl_from_rf_lock)
715 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
716
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100717 vty_out(vty, " %sforce-combined-si%s",
718 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
719
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100720 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
721 int j;
722
723 if (bts->depends_on[i] == 0)
724 continue;
725
726 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
727 int bts_nr;
728
729 if ((bts->depends_on[i] & (1<<j)) == 0)
730 continue;
731
732 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
733 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
734 }
735 }
736
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200737 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200738}
739
740static int config_write_bts(struct vty *v)
741{
Harald Weltedcccb182010-05-16 20:52:23 +0200742 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200743 struct gsm_bts *bts;
744
745 llist_for_each_entry(bts, &gsmnet->bts_list, list)
746 config_write_bts_single(v, bts);
747
748 return CMD_SUCCESS;
749}
750
Harald Welte5013b2a2009-08-07 13:29:14 +0200751static int config_write_net(struct vty *vty)
752{
Harald Weltedcccb182010-05-16 20:52:23 +0200753 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
754
Harald Welte5013b2a2009-08-07 13:29:14 +0200755 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200756 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200757 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200758 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
759 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200760 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100761 vty_out(vty, " location updating reject cause %u%s",
762 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900763 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100764 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800765 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100766 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
767 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100768 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100769 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100770 vty_out(vty, " handover window rxlev averaging %u%s",
771 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
772 vty_out(vty, " handover window rxqual averaging %u%s",
773 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
774 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
775 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
776 vty_out(vty, " handover power budget interval %u%s",
777 gsmnet->handover.pwr_interval, VTY_NEWLINE);
778 vty_out(vty, " handover power budget hysteresis %u%s",
779 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
780 vty_out(vty, " handover maximum distance %u%s",
781 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100782 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100783 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
784 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
785 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
786 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
787 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
788 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
789 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
790 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
791 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100792 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100793 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100794 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100795 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100796 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200797
798 return CMD_SUCCESS;
799}
Harald Welte67ce0732009-08-06 19:06:46 +0200800
Harald Welte68628e82009-03-10 12:17:57 +0000801static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
802{
803 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
804 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200805 vty_out(vty, "Description: %s%s",
806 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200807 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200808 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200809 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200810 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000811 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200812 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000813 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200814 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200815 if (is_ipaccess_bts(trx->bts)) {
816 vty_out(vty, " ip.access stream ID: 0x%02x%s",
817 trx->rsl_tei, VTY_NEWLINE);
818 } else {
819 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
820 e1isl_dump_vty(vty, trx->rsl_link);
821 }
Harald Welte68628e82009-03-10 12:17:57 +0000822}
823
824DEFUN(show_trx,
825 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100826 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200827 SHOW_STR "Display information about a TRX\n"
828 "BTS Number\n"
829 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000830{
Harald Weltedcccb182010-05-16 20:52:23 +0200831 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000832 struct gsm_bts *bts = NULL;
833 struct gsm_bts_trx *trx;
834 int bts_nr, trx_nr;
835
836 if (argc >= 1) {
837 /* use the BTS number that the user has specified */
838 bts_nr = atoi(argv[0]);
839 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000840 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000841 VTY_NEWLINE);
842 return CMD_WARNING;
843 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200844 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000845 }
846 if (argc >= 2) {
847 trx_nr = atoi(argv[1]);
848 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000849 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000850 VTY_NEWLINE);
851 return CMD_WARNING;
852 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200853 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000854 trx_dump_vty(vty, trx);
855 return CMD_SUCCESS;
856 }
857 if (bts) {
858 /* print all TRX in this BTS */
859 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200860 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000861 trx_dump_vty(vty, trx);
862 }
863 return CMD_SUCCESS;
864 }
865
866 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200867 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000868 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200869 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000870 trx_dump_vty(vty, trx);
871 }
872 }
873
874 return CMD_SUCCESS;
875}
876
Harald Welte67ce0732009-08-06 19:06:46 +0200877
Harald Welte68628e82009-03-10 12:17:57 +0000878static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
879{
Harald Welte135a6482011-05-30 12:09:13 +0200880 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100881 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100882 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100883 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100884 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100885 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
886 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000887 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200888 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530889 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000890 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
891 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
892 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000893}
894
895DEFUN(show_ts,
896 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100897 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200898 SHOW_STR "Display information about a TS\n"
899 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000900{
Harald Weltedcccb182010-05-16 20:52:23 +0200901 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100902 struct gsm_bts *bts = NULL;
903 struct gsm_bts_trx *trx = NULL;
904 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000905 int bts_nr, trx_nr, ts_nr;
906
907 if (argc >= 1) {
908 /* use the BTS number that the user has specified */
909 bts_nr = atoi(argv[0]);
910 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000911 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000912 VTY_NEWLINE);
913 return CMD_WARNING;
914 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200915 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000916 }
917 if (argc >= 2) {
918 trx_nr = atoi(argv[1]);
919 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000920 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000921 VTY_NEWLINE);
922 return CMD_WARNING;
923 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200924 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000925 }
926 if (argc >= 3) {
927 ts_nr = atoi(argv[2]);
928 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000929 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000930 VTY_NEWLINE);
931 return CMD_WARNING;
932 }
Harald Welte274d0152010-12-24 12:05:03 +0100933 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000934 ts = &trx->ts[ts_nr];
935 ts_dump_vty(vty, ts);
936 return CMD_SUCCESS;
937 }
Harald Welte274d0152010-12-24 12:05:03 +0100938
939 if (bts && trx) {
940 /* Iterate over all TS in this TRX */
941 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
942 ts = &trx->ts[ts_nr];
943 ts_dump_vty(vty, ts);
944 }
945 } else if (bts) {
946 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000947 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200948 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000949 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
950 ts = &trx->ts[ts_nr];
951 ts_dump_vty(vty, ts);
952 }
953 }
Harald Welte274d0152010-12-24 12:05:03 +0100954 } else {
955 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
956 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
957 bts = gsm_bts_num(net, bts_nr);
958 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
959 trx = gsm_bts_trx_num(bts, trx_nr);
960 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
961 ts = &trx->ts[ts_nr];
962 ts_dump_vty(vty, ts);
963 }
964 }
965 }
Harald Welte68628e82009-03-10 12:17:57 +0000966 }
967
968 return CMD_SUCCESS;
969}
970
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100971static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000972{
Harald Weltefcd24452009-06-20 18:15:19 +0200973 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000974 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7f180e82013-12-12 15:45:41 +0100975 if (strlen(subscr->name))
Harald Welte1bc77352009-03-10 19:47:51 +0000976 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freytherbd30cd32014-04-04 11:53:18 +0200977 if (strlen(subscr->extension))
Harald Welte68628e82009-03-10 12:17:57 +0000978 vty_out(vty, " Extension: %s%s", subscr->extension,
979 VTY_NEWLINE);
Holger Hans Peter Freyther5ccd0152013-07-14 08:38:24 +0200980 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200981 if (subscr->tmsi != GSM_RESERVED_TMSI)
982 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200983 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100984
Harald Welte (local)15920de2009-08-14 20:27:16 +0200985 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000986}
987
Harald Welte8387a492009-12-22 21:43:14 +0100988static void meas_rep_dump_uni_vty(struct vty *vty,
989 struct gsm_meas_rep_unidir *mru,
990 const char *prefix,
991 const char *dir)
992{
993 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
994 prefix, dir, rxlev2dbm(mru->full.rx_lev),
995 dir, rxlev2dbm(mru->sub.rx_lev));
996 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
997 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
998 VTY_NEWLINE);
999}
1000
1001static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
1002 const char *prefix)
1003{
1004 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
1005 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
1006 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
1007 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
1008 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
1009 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
1010 VTY_NEWLINE);
1011 if (mr->flags & MEAS_REP_F_MS_TO)
1012 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
1013 mr->ms_timing_offset, VTY_NEWLINE);
1014 if (mr->flags & MEAS_REP_F_MS_L1)
1015 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
1016 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
1017 if (mr->flags & MEAS_REP_F_DL_VALID)
1018 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
1019 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
1020}
1021
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001022static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +00001023{
Harald Welte8387a492009-12-22 21:43:14 +01001024 int idx;
1025
Harald Welte85bded82010-12-24 12:22:34 +01001026 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
1027 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1028 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001029 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +08001030 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +01001031 gsm_lchans_name(lchan->state),
1032 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
1033 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
1034 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +01001035 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
1036 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
1037 - lchan->bs_power*2,
1038 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
1039 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001040 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +00001041 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +08001042 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +00001043 } else
1044 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +05301045 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
1046 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +02001047 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +05301048 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
1049 inet_ntoa(ia), lchan->abis_ip.bound_port,
1050 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
1051 VTY_NEWLINE);
1052 }
Harald Welte8387a492009-12-22 21:43:14 +01001053
1054 /* we want to report the last measurement report */
1055 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1056 lchan->meas_rep_idx, 1);
1057 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +00001058}
1059
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001060static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
1061{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001062 struct gsm_meas_rep *mr;
1063 int idx;
1064
1065 /* we want to report the last measurement report */
1066 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1067 lchan->meas_rep_idx, 1);
1068 mr = &lchan->meas_rep[idx];
1069
Harald Welte85bded82010-12-24 12:22:34 +01001070 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
1071 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
1072 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +01001073 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001074 rxlev2dbm(mr->dl.full.rx_lev),
1075 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001076 VTY_NEWLINE);
1077}
1078
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001079
1080static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1081 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1082{
1083 int lchan_nr;
1084 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1085 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1086 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1087 continue;
1088 dump_cb(vty, lchan);
1089 }
1090
1091 return CMD_SUCCESS;
1092}
1093
1094static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1095 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1096{
1097 int ts_nr;
1098
1099 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1100 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1101 dump_lchan_trx_ts(ts, vty, dump_cb);
1102 }
1103
1104 return CMD_SUCCESS;
1105}
1106
1107static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1108 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1109{
1110 int trx_nr;
1111
1112 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1113 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1114 dump_lchan_trx(trx, vty, dump_cb);
1115 }
1116
1117 return CMD_SUCCESS;
1118}
1119
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001120static int lchan_summary(struct vty *vty, int argc, const char **argv,
1121 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001122{
Harald Weltedcccb182010-05-16 20:52:23 +02001123 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001124 struct gsm_bts *bts;
1125 struct gsm_bts_trx *trx;
1126 struct gsm_bts_trx_ts *ts;
1127 struct gsm_lchan *lchan;
1128 int bts_nr, trx_nr, ts_nr, lchan_nr;
1129
1130 if (argc >= 1) {
1131 /* use the BTS number that the user has specified */
1132 bts_nr = atoi(argv[0]);
1133 if (bts_nr >= net->num_bts) {
1134 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1135 VTY_NEWLINE);
1136 return CMD_WARNING;
1137 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001138 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001139
1140 if (argc == 1)
1141 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001142 }
1143 if (argc >= 2) {
1144 trx_nr = atoi(argv[1]);
1145 if (trx_nr >= bts->num_trx) {
1146 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1147 VTY_NEWLINE);
1148 return CMD_WARNING;
1149 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001150 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001151
1152 if (argc == 2)
1153 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001154 }
1155 if (argc >= 3) {
1156 ts_nr = atoi(argv[2]);
1157 if (ts_nr >= TRX_NR_TS) {
1158 vty_out(vty, "%% can't find TS %s%s", argv[2],
1159 VTY_NEWLINE);
1160 return CMD_WARNING;
1161 }
1162 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001163
1164 if (argc == 3)
1165 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001166 }
1167 if (argc >= 4) {
1168 lchan_nr = atoi(argv[3]);
1169 if (lchan_nr >= TS_MAX_LCHAN) {
1170 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1171 VTY_NEWLINE);
1172 return CMD_WARNING;
1173 }
1174 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001175 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001176 return CMD_SUCCESS;
1177 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001178
1179
Harald Welte68628e82009-03-10 12:17:57 +00001180 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001181 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001182 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001183 }
1184
1185 return CMD_SUCCESS;
1186}
1187
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001188
1189DEFUN(show_lchan,
1190 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001191 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001192 SHOW_STR "Display information about a logical channel\n"
1193 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001194 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001195
1196{
1197 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1198}
1199
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001200DEFUN(show_lchan_summary,
1201 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001202 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001203 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001204 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001205 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001206 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001207{
1208 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1209}
1210
Harald Weltebe4b7302009-05-23 16:59:33 +00001211static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001212{
1213 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1214 subscr_dump_vty(vty, pag->subscr);
1215}
1216
Harald Weltebe4b7302009-05-23 16:59:33 +00001217static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001218{
1219 struct gsm_paging_request *pag;
1220
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001221 if (!bts->paging.bts)
1222 return;
1223
Harald Weltef5025b62009-03-28 16:55:11 +00001224 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1225 paging_dump_vty(vty, pag);
1226}
1227
1228DEFUN(show_paging,
1229 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001230 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001231 SHOW_STR "Display information about paging reuqests of a BTS\n"
1232 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001233{
Harald Weltedcccb182010-05-16 20:52:23 +02001234 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001235 struct gsm_bts *bts;
1236 int bts_nr;
1237
1238 if (argc >= 1) {
1239 /* use the BTS number that the user has specified */
1240 bts_nr = atoi(argv[0]);
1241 if (bts_nr >= net->num_bts) {
1242 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1243 VTY_NEWLINE);
1244 return CMD_WARNING;
1245 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001246 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001247 bts_paging_dump_vty(vty, bts);
1248
1249 return CMD_SUCCESS;
1250 }
1251 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001252 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001253 bts_paging_dump_vty(vty, bts);
1254 }
1255
1256 return CMD_SUCCESS;
1257}
1258
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001259DEFUN(show_paging_group,
1260 show_paging_group_cmd,
1261 "show paging-group <0-255> IMSI",
1262 SHOW_STR "Display the paging group\n"
1263 "BTS Number\n" "IMSI\n")
1264{
1265 struct gsm_network *net = gsmnet_from_vty(vty);
1266 struct gsm_bts *bts;
1267 unsigned int page_group;
1268 int bts_nr = atoi(argv[0]);
1269
1270 if (bts_nr >= net->num_bts) {
1271 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1272 return CMD_WARNING;
1273 }
1274
1275 bts = gsm_bts_num(net, bts_nr);
1276 if (!bts) {
1277 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1278 return CMD_WARNING;
1279 }
1280
1281 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1282 str_to_imsi(argv[1]));
1283 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1284 str_to_imsi(argv[1]), bts->nr,
1285 page_group, VTY_NEWLINE);
1286 return CMD_SUCCESS;
1287}
1288
Harald Welte5013b2a2009-08-07 13:29:14 +02001289DEFUN(cfg_net,
1290 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001291 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001292{
Harald Weltedcccb182010-05-16 20:52:23 +02001293 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001294 vty->node = GSMNET_NODE;
1295
1296 return CMD_SUCCESS;
1297}
1298
Harald Welte5013b2a2009-08-07 13:29:14 +02001299DEFUN(cfg_net_ncc,
1300 cfg_net_ncc_cmd,
1301 "network country code <1-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001302 "Set the GSM network country code\n"
1303 "Country commands\n"
1304 CODE_CMD_STR
1305 "Network Country Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001306{
Harald Weltedcccb182010-05-16 20:52:23 +02001307 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1308
Harald Welte5013b2a2009-08-07 13:29:14 +02001309 gsmnet->country_code = atoi(argv[0]);
1310
1311 return CMD_SUCCESS;
1312}
1313
1314DEFUN(cfg_net_mnc,
1315 cfg_net_mnc_cmd,
Dieter Spaar402cced2011-07-27 23:43:56 +02001316 "mobile network code <0-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001317 "Set the GSM mobile network code\n"
1318 "Network Commands\n"
1319 CODE_CMD_STR
1320 "Mobile Network Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001321{
Harald Weltedcccb182010-05-16 20:52:23 +02001322 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1323
Harald Welte5013b2a2009-08-07 13:29:14 +02001324 gsmnet->network_code = atoi(argv[0]);
1325
1326 return CMD_SUCCESS;
1327}
1328
1329DEFUN(cfg_net_name_short,
1330 cfg_net_name_short_cmd,
1331 "short name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001332 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001333{
Harald Weltedcccb182010-05-16 20:52:23 +02001334 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1335
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001336 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001337 return CMD_SUCCESS;
1338}
1339
1340DEFUN(cfg_net_name_long,
1341 cfg_net_name_long_cmd,
1342 "long name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001343 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001344{
Harald Weltedcccb182010-05-16 20:52:23 +02001345 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1346
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001347 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001348 return CMD_SUCCESS;
1349}
Harald Welte40f82892009-05-23 17:31:39 +00001350
Harald Welte (local)69de3972009-08-12 14:42:23 +02001351DEFUN(cfg_net_auth_policy,
1352 cfg_net_auth_policy_cmd,
1353 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001354 "Authentication (not cryptographic)\n"
1355 "Set the GSM network authentication policy\n"
1356 "Require the MS to be activated in HLR\n"
1357 "Accept all MS, whether in HLR or not\n"
1358 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001359{
1360 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001361 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001362
1363 gsmnet->auth_policy = policy;
1364
1365 return CMD_SUCCESS;
1366}
1367
Harald Welte1085c092009-11-18 20:33:19 +01001368DEFUN(cfg_net_reject_cause,
1369 cfg_net_reject_cause_cmd,
1370 "location updating reject cause <2-111>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001371 "Set the reject cause of location updating reject\n"
1372 "Set the reject cause of location updating reject\n"
1373 "Set the reject cause of location updating reject\n"
1374 "Set the reject cause of location updating reject\n"
1375 "Cause Value as Per GSM TS 04.08\n")
Harald Welte1085c092009-11-18 20:33:19 +01001376{
Harald Weltedcccb182010-05-16 20:52:23 +02001377 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1378
Harald Welte1085c092009-11-18 20:33:19 +01001379 gsmnet->reject_cause = atoi(argv[0]);
1380
1381 return CMD_SUCCESS;
1382}
1383
Harald Welte4381cfe2009-08-30 15:47:06 +09001384DEFUN(cfg_net_encryption,
1385 cfg_net_encryption_cmd,
Harald Weltead66a2d2012-07-04 21:37:56 +02001386 "encryption a5 (0|1|2|3)",
Harald Welte28326062010-05-14 20:05:17 +02001387 "Encryption options\n"
1388 "A5 encryption\n" "A5/0: No encryption\n"
Harald Weltead66a2d2012-07-04 21:37:56 +02001389 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1390 "A5/3: 'New' Secure Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001391{
Harald Weltedcccb182010-05-16 20:52:23 +02001392 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1393
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001394 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001395
1396 return CMD_SUCCESS;
1397}
1398
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001399DEFUN(cfg_net_neci,
1400 cfg_net_neci_cmd,
1401 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001402 "New Establish Cause Indication\n"
1403 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001404{
Harald Weltedcccb182010-05-16 20:52:23 +02001405 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1406
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001407 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001408 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001409 return CMD_SUCCESS;
1410}
1411
Harald Welteeab84a12009-12-13 10:53:12 +01001412DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1413 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001414 "Radio Resource Location Protocol\n"
1415 "Set the Radio Resource Location Protocol Mode\n"
1416 "Don't send RRLP request\n"
1417 "Request MS-based location\n"
1418 "Request any location, prefer MS-based\n"
1419 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001420{
Harald Weltedcccb182010-05-16 20:52:23 +02001421 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1422
Harald Welteeab84a12009-12-13 10:53:12 +01001423 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1424
1425 return CMD_SUCCESS;
1426}
1427
Harald Welte648b6ce2009-12-14 09:00:24 +01001428DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1429 "mm info (0|1)",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001430 "Mobility Management\n"
1431 "Send MM INFO after LOC UPD ACCEPT\n"
1432 "Disable\n" "Enable\n")
Harald Welte648b6ce2009-12-14 09:00:24 +01001433{
Harald Weltedcccb182010-05-16 20:52:23 +02001434 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1435
Harald Welte648b6ce2009-12-14 09:00:24 +01001436 gsmnet->send_mm_info = atoi(argv[0]);
1437
1438 return CMD_SUCCESS;
1439}
1440
Harald Welte8f0ed552010-05-11 21:53:49 +02001441#define HANDOVER_STR "Handover Options\n"
1442
Harald Weltebc814502009-12-19 21:41:52 +01001443DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1444 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001445 HANDOVER_STR
1446 "Don't perform in-call handover\n"
1447 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001448{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001449 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001450 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001451
1452 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001453 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1454 "is enabled by using the -P command line option%s",
1455 VTY_NEWLINE);
1456 return CMD_WARNING;
1457 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001458 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001459
1460 return CMD_SUCCESS;
1461}
1462
Harald Welte8f0ed552010-05-11 21:53:49 +02001463#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1464#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1465#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1466#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001467#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001468
Harald Welteb720bd32009-12-21 16:51:50 +01001469DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1470 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001471 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001472 "How many RxLev measurements are used for averaging\n"
1473 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001474{
Harald Weltedcccb182010-05-16 20:52:23 +02001475 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001476 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1477 return CMD_SUCCESS;
1478}
1479
1480DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1481 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001482 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001483 "How many RxQual measurements are used for averaging\n"
1484 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001485{
Harald Weltedcccb182010-05-16 20:52:23 +02001486 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001487 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1488 return CMD_SUCCESS;
1489}
1490
1491DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1492 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001493 HO_WIN_RXLEV_STR "Neighbor\n"
1494 "How many RxQual measurements are used for averaging\n"
1495 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001496{
Harald Weltedcccb182010-05-16 20:52:23 +02001497 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001498 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1499 return CMD_SUCCESS;
1500}
1501
1502DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1503 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001504 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001505 "How often to check if we have a better cell (SACCH frames)\n"
1506 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001507{
Harald Weltedcccb182010-05-16 20:52:23 +02001508 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001509 gsmnet->handover.pwr_interval = atoi(argv[0]);
1510 return CMD_SUCCESS;
1511}
1512
1513DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1514 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001515 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001516 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1517 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001518{
Harald Weltedcccb182010-05-16 20:52:23 +02001519 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001520 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1521 return CMD_SUCCESS;
1522}
1523
1524DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1525 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001526 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001527 "How big is the maximum timing advance before HO is forced\n"
1528 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001529{
Harald Weltedcccb182010-05-16 20:52:23 +02001530 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001531 gsmnet->handover.max_distance = atoi(argv[0]);
1532 return CMD_SUCCESS;
1533}
Harald Weltebc814502009-12-19 21:41:52 +01001534
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001535DEFUN(cfg_net_pag_any_tch,
1536 cfg_net_pag_any_tch_cmd,
1537 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001538 "Assign a TCH when receiving a Paging Any request\n"
1539 "Any Channel\n" "Use\n" "TCH\n"
1540 "Do not use TCH for Paging Request Any\n"
1541 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001542{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001543 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001544 gsmnet->pag_any_tch = atoi(argv[0]);
1545 gsm_net_update_ctype(gsmnet);
1546 return CMD_SUCCESS;
1547}
1548
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001549#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001550 DEFUN(cfg_net_T##number, \
1551 cfg_net_T##number##_cmd, \
1552 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001553 "Configure GSM Timers\n" \
Holger Hans Peter Freyther5dd295f2014-04-11 19:30:27 +02001554 doc "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001555{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001556 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001557 int value = atoi(argv[0]); \
1558 \
1559 if (value < 0 || value > 65535) { \
1560 vty_out(vty, "Timer value %s out of range.%s", \
1561 argv[0], VTY_NEWLINE); \
1562 return CMD_WARNING; \
1563 } \
1564 \
1565 gsmnet->T##number = value; \
1566 return CMD_SUCCESS; \
1567}
1568
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001569DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1570DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001571DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001572DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001573DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001574DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1575DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1576DECLARE_TIMER(3115, "Currently not used.\n")
1577DECLARE_TIMER(3117, "Currently not used.\n")
1578DECLARE_TIMER(3119, "Currently not used.\n")
1579DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1580DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001581
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001582DEFUN(cfg_net_dtx,
1583 cfg_net_dtx_cmd,
1584 "dtx-used (0|1)",
1585 "Enable the usage of DTX.\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001586 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001587{
1588 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1589 gsmnet->dtx_enabled = atoi(argv[0]);
1590 return CMD_SUCCESS;
1591}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001592
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001593DEFUN(cfg_net_subscr_keep,
1594 cfg_net_subscr_keep_cmd,
1595 "subscriber-keep-in-ram (0|1)",
1596 "Keep unused subscribers in RAM.\n"
1597 "Delete unused subscribers\n" "Keep unused subscribers\n")
1598{
1599 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001600 gsmnet->subscr_group->keep_subscr = atoi(argv[0]);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001601 return CMD_SUCCESS;
1602}
1603
Harald Welte5258fc42009-03-28 19:07:53 +00001604/* per-BTS configuration */
1605DEFUN(cfg_bts,
1606 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001607 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001608 "Select a BTS to configure\n"
1609 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001610{
Harald Weltedcccb182010-05-16 20:52:23 +02001611 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001612 int bts_nr = atoi(argv[0]);
1613 struct gsm_bts *bts;
1614
Harald Weltee441d9c2009-06-21 16:17:15 +02001615 if (bts_nr > gsmnet->num_bts) {
1616 vty_out(vty, "%% The next unused BTS number is %u%s",
1617 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001618 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001619 } else if (bts_nr == gsmnet->num_bts) {
1620 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001621 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1622 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001623 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001624 bts = gsm_bts_num(gsmnet, bts_nr);
1625
Daniel Willmannf15c2762010-01-11 13:43:07 +01001626 if (!bts) {
1627 vty_out(vty, "%% Unable to allocate BTS %u%s",
1628 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001629 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001630 }
Harald Welte5258fc42009-03-28 19:07:53 +00001631
1632 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001633 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001634 vty->node = BTS_NODE;
1635
1636 return CMD_SUCCESS;
1637}
1638
1639DEFUN(cfg_bts_type,
1640 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001641 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001642 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001643{
1644 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001645 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001646
Harald Welte39315c42010-01-10 18:01:52 +01001647 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1648 if (rc < 0)
1649 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001650
Harald Welte5258fc42009-03-28 19:07:53 +00001651 return CMD_SUCCESS;
1652}
1653
Harald Weltefcd24452009-06-20 18:15:19 +02001654DEFUN(cfg_bts_band,
1655 cfg_bts_band_cmd,
1656 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001657 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001658{
1659 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001660 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001661
1662 if (band < 0) {
1663 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1664 band, VTY_NEWLINE);
1665 return CMD_WARNING;
1666 }
1667
1668 bts->band = band;
1669
1670 return CMD_SUCCESS;
1671}
1672
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001673DEFUN(cfg_bts_ci,
1674 cfg_bts_ci_cmd,
1675 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001676 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001677{
1678 struct gsm_bts *bts = vty->index;
1679 int ci = atoi(argv[0]);
1680
1681 if (ci < 0 || ci > 0xffff) {
1682 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1683 ci, VTY_NEWLINE);
1684 return CMD_WARNING;
1685 }
1686 bts->cell_identity = ci;
1687
1688 return CMD_SUCCESS;
1689}
1690
Harald Welte5258fc42009-03-28 19:07:53 +00001691DEFUN(cfg_bts_lac,
1692 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001693 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001694 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001695{
1696 struct gsm_bts *bts = vty->index;
1697 int lac = atoi(argv[0]);
1698
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001699 if (lac < 0 || lac > 0xffff) {
1700 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001701 lac, VTY_NEWLINE);
1702 return CMD_WARNING;
1703 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001704
1705 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1706 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1707 lac, VTY_NEWLINE);
1708 return CMD_WARNING;
1709 }
1710
Harald Welte5258fc42009-03-28 19:07:53 +00001711 bts->location_area_code = lac;
1712
1713 return CMD_SUCCESS;
1714}
1715
Harald Weltea43f7892009-12-01 18:04:30 +05301716
Harald Welte5258fc42009-03-28 19:07:53 +00001717DEFUN(cfg_bts_tsc,
1718 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001719 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001720 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001721{
1722 struct gsm_bts *bts = vty->index;
1723 int tsc = atoi(argv[0]);
1724
Harald Welte903aaea2014-01-19 17:10:50 +01001725 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC)) {
1726 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
1727 "falling back to BCC%s", VTY_NEWLINE);
1728 bts->tsc = bts->bsic & 7;
1729 return CMD_WARNING;
1730 }
1731
Harald Welte5258fc42009-03-28 19:07:53 +00001732 bts->tsc = tsc;
1733
1734 return CMD_SUCCESS;
1735}
1736
Harald Welte78f2f502009-05-23 16:56:52 +00001737DEFUN(cfg_bts_bsic,
1738 cfg_bts_bsic_cmd,
1739 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001740 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1741 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001742{
1743 struct gsm_bts *bts = vty->index;
1744 int bsic = atoi(argv[0]);
1745
1746 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001747 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001748 bsic, VTY_NEWLINE);
1749 return CMD_WARNING;
1750 }
1751 bts->bsic = bsic;
1752
Harald Welte903aaea2014-01-19 17:10:50 +01001753 /* automatically re-configuer the TSC if we change the BCC
1754 * which is the lower 3 bits of the BSIC */
1755 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC))
1756 bts->tsc = bts->bsic & 7;
1757
Harald Welte78f2f502009-05-23 16:56:52 +00001758 return CMD_SUCCESS;
1759}
1760
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001761DEFUN(cfg_bts_timezone,
1762 cfg_bts_timezone_cmd,
1763 "timezone <-19-19> (0|15|30|45)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001764 "Set the Timezone Offset of this BTS\n"
1765 "Timezone offset (hours)\n"
1766 "Timezone offset (00 minutes)\n"
1767 "Timezone offset (15 minutes)\n"
1768 "Timezone offset (30 minutes)\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001769 "Timezone offset (45 minutes)\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001770 )
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001771{
1772 struct gsm_bts *bts = vty->index;
1773 int tzhr = atoi(argv[0]);
1774 int tzmn = atoi(argv[1]);
1775
Harald Welte45f91712012-07-08 16:48:11 +02001776 bts->tz.hr = tzhr;
1777 bts->tz.mn = tzmn;
Jacob Erlbeck946d1412013-09-17 13:59:29 +02001778 bts->tz.dst = 0;
1779 bts->tz.override = 1;
1780
1781 return CMD_SUCCESS;
1782}
1783
1784DEFUN(cfg_bts_timezone_dst,
1785 cfg_bts_timezone_dst_cmd,
1786 "timezone <-19-19> (0|15|30|45) <0-2>",
1787 "Set the Timezone Offset of this BTS\n"
1788 "Timezone offset (hours)\n"
1789 "Timezone offset (00 minutes)\n"
1790 "Timezone offset (15 minutes)\n"
1791 "Timezone offset (30 minutes)\n"
1792 "Timezone offset (45 minutes)\n"
1793 "DST offset (hours)\n"
1794 )
1795{
1796 struct gsm_bts *bts = vty->index;
1797 int tzhr = atoi(argv[0]);
1798 int tzmn = atoi(argv[1]);
1799 int tzdst = atoi(argv[2]);
1800
1801 bts->tz.hr = tzhr;
1802 bts->tz.mn = tzmn;
1803 bts->tz.dst = tzdst;
Harald Welte45f91712012-07-08 16:48:11 +02001804 bts->tz.override = 1;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001805
1806 return CMD_SUCCESS;
1807}
1808
1809DEFUN(cfg_bts_no_timezone,
1810 cfg_bts_no_timezone_cmd,
1811 "no timezone",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001812 NO_STR
1813 "Disable BTS specific timezone\n")
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001814{
1815 struct gsm_bts *bts = vty->index;
Harald Welte45f91712012-07-08 16:48:11 +02001816
1817 bts->tz.override = 0;
1818
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001819 return CMD_SUCCESS;
1820}
Harald Welte78f2f502009-05-23 16:56:52 +00001821
Harald Welte4cc34222009-05-01 15:12:31 +00001822DEFUN(cfg_bts_unit_id,
1823 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001824 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001825 "Abis/IP specific options\n"
1826 "Set the IPA BTS Unit ID\n"
1827 "Unit ID (Site)\n"
1828 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001829{
1830 struct gsm_bts *bts = vty->index;
1831 int site_id = atoi(argv[0]);
1832 int bts_id = atoi(argv[1]);
1833
Harald Welte07dc73d2009-08-07 13:27:09 +02001834 if (!is_ipaccess_bts(bts)) {
1835 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1836 return CMD_WARNING;
1837 }
1838
Harald Welte4cc34222009-05-01 15:12:31 +00001839 bts->ip_access.site_id = site_id;
1840 bts->ip_access.bts_id = bts_id;
1841
1842 return CMD_SUCCESS;
1843}
1844
Harald Welte8b291802013-03-12 13:57:05 +01001845DEFUN(cfg_bts_rsl_ip,
1846 cfg_bts_rsl_ip_cmd,
1847 "ip.access rsl-ip A.B.C.D",
1848 "Abis/IP specific options\n"
1849 "Set the IPA RSL IP Address of the BSC\n"
1850 "Destination IP address for RSL connection\n")
1851{
1852 struct gsm_bts *bts = vty->index;
1853 struct in_addr ia;
1854
1855 if (!is_ipaccess_bts(bts)) {
1856 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1857 return CMD_WARNING;
1858 }
1859
1860 inet_aton(argv[0], &ia);
1861 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1862
1863 return CMD_SUCCESS;
1864}
1865
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001866#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001867
Sylvain Munautc9519462011-10-17 14:04:55 +02001868DEFUN(cfg_bts_nokia_site_skip_reset,
1869 cfg_bts_nokia_site_skip_reset_cmd,
1870 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001871 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001872 "Skip the reset step during bootstrap process of this BTS\n"
1873 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001874{
1875 struct gsm_bts *bts = vty->index;
1876
1877 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1878 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1879 return CMD_WARNING;
1880 }
1881
1882 bts->nokia.skip_reset = atoi(argv[0]);
1883
1884 return CMD_SUCCESS;
1885}
1886
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001887DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1888 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1889 "nokia_site no-local-rel-conf (0|1)",
1890 NOKIA_STR
1891 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1892 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1893{
1894 struct gsm_bts *bts = vty->index;
1895
1896 if (!is_nokia_bts(bts)) {
1897 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1898 VTY_NEWLINE);
1899 return CMD_WARNING;
1900 }
1901
1902 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1903
1904 return CMD_SUCCESS;
1905}
1906
Sipos Csaba56e17662015-02-07 13:27:36 +01001907DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1908 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1909 "nokia_site bts-reset-timer <15-100>",
1910 NOKIA_STR
1911 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1912 "and the BTS is being bootstrapped.\n")
1913{
1914 struct gsm_bts *bts = vty->index;
1915
1916 if (!is_nokia_bts(bts)) {
1917 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1918 VTY_NEWLINE);
1919 return CMD_WARNING;
1920 }
1921
1922 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1923
1924 return CMD_SUCCESS;
1925}
Harald Welte8f0ed552010-05-11 21:53:49 +02001926#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001927#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001928
Harald Welte8175e952009-10-20 00:22:00 +02001929DEFUN(cfg_bts_stream_id,
1930 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001931 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001932 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001933 "Set the ip.access Stream ID of the OML link of this BTS\n"
1934 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001935{
1936 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001937 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001938
1939 if (!is_ipaccess_bts(bts)) {
1940 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1941 return CMD_WARNING;
1942 }
1943
1944 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001945 /* This is used by e1inp_bind_ops callback for each BTS model. */
1946 bts->oml_e1_link.e1_nr = linenr;
1947
1948 return CMD_SUCCESS;
1949}
1950
Harald Welted13e0cd2012-08-17 09:52:03 +02001951#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001952
Harald Welte42581822009-08-08 16:12:58 +02001953DEFUN(cfg_bts_oml_e1,
1954 cfg_bts_oml_e1_cmd,
1955 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001956 OML_E1_STR
1957 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001958 "E1/T1 line number to be used for OML\n"
1959 "E1/T1 timeslot to be used for OML\n"
1960 "E1/T1 timeslot to be used for OML\n"
1961 "E1/T1 sub-slot to be used for OML\n"
1962 "Use E1/T1 sub-slot 0\n"
1963 "Use E1/T1 sub-slot 1\n"
1964 "Use E1/T1 sub-slot 2\n"
1965 "Use E1/T1 sub-slot 3\n"
1966 "Use full E1 slot 3\n"
1967 )
Harald Welte42581822009-08-08 16:12:58 +02001968{
1969 struct gsm_bts *bts = vty->index;
1970
1971 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1972
1973 return CMD_SUCCESS;
1974}
1975
1976
1977DEFUN(cfg_bts_oml_e1_tei,
1978 cfg_bts_oml_e1_tei_cmd,
1979 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001980 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001981 "Set the TEI to be used for OML\n"
1982 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001983{
1984 struct gsm_bts *bts = vty->index;
1985
1986 bts->oml_tei = atoi(argv[0]);
1987
1988 return CMD_SUCCESS;
1989}
1990
Harald Welte7a8fa412009-08-10 13:48:16 +02001991DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1992 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001993 "Channnel Allocator\n" "Channel Allocator\n"
1994 "Allocate Timeslots and Transceivers in ascending order\n"
1995 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001996{
1997 struct gsm_bts *bts = vty->index;
1998
1999 if (!strcmp(argv[0], "ascending"))
2000 bts->chan_alloc_reverse = 0;
2001 else
2002 bts->chan_alloc_reverse = 1;
2003
2004 return CMD_SUCCESS;
2005}
2006
Harald Welte8f0ed552010-05-11 21:53:49 +02002007#define RACH_STR "Random Access Control Channel\n"
2008
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002009DEFUN(cfg_bts_rach_tx_integer,
2010 cfg_bts_rach_tx_integer_cmd,
2011 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002012 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002013 "Set the raw tx integer value in RACH Control parameters IE\n"
2014 "Set the raw tx integer value in RACH Control parameters IE\n"
2015 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002016{
2017 struct gsm_bts *bts = vty->index;
2018 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
2019 return CMD_SUCCESS;
2020}
2021
2022DEFUN(cfg_bts_rach_max_trans,
2023 cfg_bts_rach_max_trans_cmd,
2024 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002025 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002026 "Set the maximum number of RACH burst transmissions\n"
2027 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002028 "Maximum number of 1 RACH burst transmissions\n"
2029 "Maximum number of 2 RACH burst transmissions\n"
2030 "Maximum number of 4 RACH burst transmissions\n"
2031 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01002032{
2033 struct gsm_bts *bts = vty->index;
2034 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
2035 return CMD_SUCCESS;
2036}
2037
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02002038#define CD_STR "Channel Description\n"
2039
2040DEFUN(cfg_bts_chan_desc_att,
2041 cfg_bts_chan_desc_att_cmd,
2042 "channel-descrption attach (0|1)",
2043 CD_STR
2044 "Set if attachment is required\n"
2045 "Attachment is NOT required\n"
2046 "Attachment is required (standard)\n")
2047{
2048 struct gsm_bts *bts = vty->index;
2049 bts->si_common.chan_desc.att = atoi(argv[0]);
2050 return CMD_SUCCESS;
2051}
2052
2053DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
2054 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
2055 "channel-descrption bs-pa-mfrms <2-9>",
2056 CD_STR
2057 "Set number of multiframe periods for paging groups\n"
2058 "Number of multiframe periods for paging groups\n")
2059{
2060 struct gsm_bts *bts = vty->index;
2061 int bs_pa_mfrms = atoi(argv[0]);
2062
2063 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2064 return CMD_SUCCESS;
2065}
2066
2067DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2068 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2069 "channel-descrption bs-ag-blks-res <0-7>",
2070 CD_STR
2071 "Set number of blocks reserved for access grant\n"
2072 "Number of blocks reserved for access grant\n")
2073{
2074 struct gsm_bts *bts = vty->index;
2075 int bs_ag_blks_res = atoi(argv[0]);
2076
2077 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2078 return CMD_SUCCESS;
2079}
2080
Harald Welte8f0ed552010-05-11 21:53:49 +02002081#define NM_STR "Network Management\n"
2082
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002083DEFUN(cfg_bts_rach_nm_b_thresh,
2084 cfg_bts_rach_nm_b_thresh_cmd,
2085 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002086 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002087 "Set the NM Busy Threshold\n"
2088 "Set the NM Busy Threshold\n"
2089 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002090{
2091 struct gsm_bts *bts = vty->index;
2092 bts->rach_b_thresh = atoi(argv[0]);
2093 return CMD_SUCCESS;
2094}
2095
2096DEFUN(cfg_bts_rach_nm_ldavg,
2097 cfg_bts_rach_nm_ldavg_cmd,
2098 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002099 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002100 "Set the NM Loadaverage Slots value\n"
2101 "Set the NM Loadaverage Slots value\n"
2102 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002103{
2104 struct gsm_bts *bts = vty->index;
2105 bts->rach_ldavg_slots = atoi(argv[0]);
2106 return CMD_SUCCESS;
2107}
2108
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002109DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2110 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002111 "Should this cell be barred from access?\n"
2112 "Should this cell be barred from access?\n"
2113 "Cell should NOT be barred\n"
2114 "Cell should be barred\n")
2115
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002116{
2117 struct gsm_bts *bts = vty->index;
2118
Harald Welte71355012009-12-21 23:08:18 +01002119 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002120
2121 return CMD_SUCCESS;
2122}
2123
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002124DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2125 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002126 RACH_STR
2127 "Should this cell allow emergency calls?\n"
2128 "Should this cell allow emergency calls?\n"
2129 "Should this cell allow emergency calls?\n"
2130 "Do NOT allow emergency calls\n"
2131 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002132{
2133 struct gsm_bts *bts = vty->index;
2134
2135 if (atoi(argv[0]) == 0)
2136 bts->si_common.rach_control.t2 |= 0x4;
2137 else
2138 bts->si_common.rach_control.t2 &= ~0x4;
2139
2140 return CMD_SUCCESS;
2141}
2142
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002143DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2144 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2145 RACH_STR
2146 "Set access control class\n"
2147 "Access control class 0\n"
2148 "Access control class 1\n"
2149 "Access control class 2\n"
2150 "Access control class 3\n"
2151 "Access control class 4\n"
2152 "Access control class 5\n"
2153 "Access control class 6\n"
2154 "Access control class 7\n"
2155 "Access control class 8\n"
2156 "Access control class 9\n"
2157 "Access control class 11 for PLMN use\n"
2158 "Access control class 12 for security services\n"
2159 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2160 "Access control class 14 for emergency services\n"
2161 "Access control class 15 for PLMN staff\n"
2162 "barred to use access control class\n"
2163 "allowed to use access control class\n")
2164{
2165 struct gsm_bts *bts = vty->index;
2166
2167 uint8_t control_class;
2168 uint8_t allowed = 0;
2169
2170 if (strcmp(argv[1], "allowed") == 0)
2171 allowed = 1;
2172
2173 control_class = atoi(argv[0]);
2174 if (control_class < 8)
2175 if (allowed)
2176 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2177 else
2178 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2179 else
2180 if (allowed)
2181 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2182 else
2183 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2184
2185 return CMD_SUCCESS;
2186}
2187
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002188DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2189 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002190 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002191 "Maximum transmit power of the MS\n"
2192 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002193 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002194{
2195 struct gsm_bts *bts = vty->index;
2196
2197 bts->ms_max_power = atoi(argv[0]);
2198
2199 return CMD_SUCCESS;
2200}
2201
Harald Weltecfaabbb2012-08-16 23:23:50 +02002202#define CELL_STR "Cell Parameters\n"
2203
Harald Welte73225282009-12-12 18:17:25 +01002204DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2205 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002206 CELL_STR "Cell re-selection parameters\n"
2207 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002208 "Cell Re-Selection Hysteresis in dB")
2209{
2210 struct gsm_bts *bts = vty->index;
2211
2212 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2213
2214 return CMD_SUCCESS;
2215}
2216
2217DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2218 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002219 "Minimum RxLev needed for cell access\n"
2220 "Minimum RxLev needed for cell access\n"
2221 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002222 "Minimum RxLev needed for cell access (better than -110dBm)")
2223{
2224 struct gsm_bts *bts = vty->index;
2225
2226 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2227
2228 return CMD_SUCCESS;
2229}
2230
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002231DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2232 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002233 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2234 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002235{
2236 struct gsm_bts *bts = vty->index;
2237
2238 bts->si_common.cell_ro_sel_par.present = 1;
2239 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2240
2241 return CMD_SUCCESS;
2242}
2243
2244DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2245 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002246 CELL_STR "Cell Re-Selection Parameters\n"
2247 "Cell Re-Selection Offset (CRO) in dB\n"
2248 "Cell Re-Selection Offset (CRO) in dB\n"
2249 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002250{
2251 struct gsm_bts *bts = vty->index;
2252
2253 bts->si_common.cell_ro_sel_par.present = 1;
2254 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2255
2256 return CMD_SUCCESS;
2257}
2258
2259DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2260 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002261 "Cell selection temporary negative offset\n"
2262 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002263 "Cell selection temporary negative offset in dB")
2264{
2265 struct gsm_bts *bts = vty->index;
2266
2267 bts->si_common.cell_ro_sel_par.present = 1;
2268 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2269
2270 return CMD_SUCCESS;
2271}
2272
2273DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2274 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002275 "Cell selection temporary negative offset\n"
2276 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002277 "Sets cell selection temporary negative offset to infinity")
2278{
2279 struct gsm_bts *bts = vty->index;
2280
2281 bts->si_common.cell_ro_sel_par.present = 1;
2282 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2283
2284 return CMD_SUCCESS;
2285}
2286
2287DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2288 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002289 "Cell selection penalty time\n"
2290 "Cell selection penalty time\n"
2291 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002292{
2293 struct gsm_bts *bts = vty->index;
2294
2295 bts->si_common.cell_ro_sel_par.present = 1;
2296 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2297
2298 return CMD_SUCCESS;
2299}
2300
2301DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2302 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002303 "Cell selection penalty time\n"
2304 "Cell selection penalty time\n"
2305 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002306 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2307 "and TEMPORARY_OFFSET is ignored)")
2308{
2309 struct gsm_bts *bts = vty->index;
2310
2311 bts->si_common.cell_ro_sel_par.present = 1;
2312 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2313
2314 return CMD_SUCCESS;
2315}
2316
Harald Welte (local)efc92312009-08-14 23:09:25 +02002317DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002318 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002319 "Periodic Location Updating Interval\n"
2320 "Periodic Location Updating Interval\n"
2321 "Periodic Location Updating Interval\n"
2322 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002323{
2324 struct gsm_bts *bts = vty->index;
2325
Dieter Spaard6613e02010-10-05 21:10:55 +02002326 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002327
2328 return CMD_SUCCESS;
2329}
2330
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002331DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2332 "no periodic location update",
2333 NO_STR
2334 "Periodic Location Updating Interval\n"
2335 "Periodic Location Updating Interval\n"
2336 "Periodic Location Updating Interval\n")
2337{
2338 struct gsm_bts *bts = vty->index;
2339
2340 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002341
2342 return CMD_SUCCESS;
2343}
2344
2345DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2346 "radio-link-timeout <4-64>",
2347 "Radio link timeout criterion (BTS side)\n"
2348 "Radio link timeout value (lost SACCH block)\n")
2349{
2350 struct gsm_bts *bts = vty->index;
2351
2352 set_radio_link_timeout(&bts->si_common.cell_options, atoi(argv[0]));
2353
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002354 return CMD_SUCCESS;
2355}
2356
Harald Welte8f0ed552010-05-11 21:53:49 +02002357#define GPRS_TEXT "GPRS Packet Network\n"
2358
Harald Welteaf387632010-03-14 23:30:30 +08002359DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002360 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002361 GPRS_TEXT
2362 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002363 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002364 "GPRS BSSGP VC Identifier")
2365{
2366 struct gsm_bts *bts = vty->index;
2367
Harald Welte4511d892010-04-18 15:51:20 +02002368 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002369 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2370 return CMD_WARNING;
2371 }
2372
Harald Welte97a282b2010-03-14 15:37:43 +08002373 bts->gprs.cell.bvci = atoi(argv[0]);
2374
2375 return CMD_SUCCESS;
2376}
2377
Harald Weltea5731cf2010-03-22 11:48:36 +08002378DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2379 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002380 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002381 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002382 "GPRS NS Entity Identifier")
2383{
2384 struct gsm_bts *bts = vty->index;
2385
Harald Welte4511d892010-04-18 15:51:20 +02002386 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002387 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2388 return CMD_WARNING;
2389 }
2390
2391 bts->gprs.nse.nsei = atoi(argv[0]);
2392
2393 return CMD_SUCCESS;
2394}
2395
Harald Welte8f0ed552010-05-11 21:53:49 +02002396#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2397 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002398
Harald Welte97a282b2010-03-14 15:37:43 +08002399DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2400 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002401 GPRS_TEXT NSVC_TEXT
2402 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002403 "GPRS NS VC Identifier")
2404{
2405 struct gsm_bts *bts = vty->index;
2406 int idx = atoi(argv[0]);
2407
Harald Welte4511d892010-04-18 15:51:20 +02002408 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002409 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2410 return CMD_WARNING;
2411 }
2412
Harald Welte97a282b2010-03-14 15:37:43 +08002413 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2414
2415 return CMD_SUCCESS;
2416}
2417
Harald Welteaf387632010-03-14 23:30:30 +08002418DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2419 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002420 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002421 "GPRS NS Local UDP Port\n"
2422 "GPRS NS Local UDP Port\n"
2423 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002424 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002425{
2426 struct gsm_bts *bts = vty->index;
2427 int idx = atoi(argv[0]);
2428
Harald Welte4511d892010-04-18 15:51:20 +02002429 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002430 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2431 return CMD_WARNING;
2432 }
2433
Harald Welteaf387632010-03-14 23:30:30 +08002434 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2435
2436 return CMD_SUCCESS;
2437}
2438
2439DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2440 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002441 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002442 "GPRS NS Remote UDP Port\n"
2443 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002444 "GPRS NS Remote UDP Port\n"
2445 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002446{
2447 struct gsm_bts *bts = vty->index;
2448 int idx = atoi(argv[0]);
2449
Harald Welte4511d892010-04-18 15:51:20 +02002450 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002451 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2452 return CMD_WARNING;
2453 }
2454
Harald Welteaf387632010-03-14 23:30:30 +08002455 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2456
2457 return CMD_SUCCESS;
2458}
2459
2460DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2461 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002462 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002463 "GPRS NS Remote IP Address\n"
2464 "GPRS NS Remote IP Address\n"
2465 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002466{
2467 struct gsm_bts *bts = vty->index;
2468 int idx = atoi(argv[0]);
2469 struct in_addr ia;
2470
Harald Welte4511d892010-04-18 15:51:20 +02002471 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002472 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2473 return CMD_WARNING;
2474 }
2475
Harald Welteaf387632010-03-14 23:30:30 +08002476 inet_aton(argv[1], &ia);
2477 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2478
2479 return CMD_SUCCESS;
2480}
2481
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002482DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002483 "paging free <-1-1024>",
2484 "Paging options\n"
2485 "Only page when having a certain amount of free slots\n"
2486 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002487{
2488 struct gsm_bts *bts = vty->index;
2489
2490 bts->paging.free_chans_need = atoi(argv[0]);
2491 return CMD_SUCCESS;
2492}
2493
Harald Welte615e9562010-05-11 23:50:21 +02002494DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2495 "gprs ns timer " NS_TIMERS " <0-255>",
2496 GPRS_TEXT "Network Service\n"
2497 "Network Service Timer\n"
2498 NS_TIMERS_HELP "Timer Value\n")
2499{
2500 struct gsm_bts *bts = vty->index;
2501 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2502 int val = atoi(argv[1]);
2503
2504 if (bts->gprs.mode == BTS_GPRS_NONE) {
2505 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2506 return CMD_WARNING;
2507 }
2508
2509 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2510 return CMD_WARNING;
2511
2512 bts->gprs.nse.timer[idx] = val;
2513
2514 return CMD_SUCCESS;
2515}
2516
2517#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 Welte28326062010-05-14 20:05:17 +02002518#define BSSGP_TIMERS_HELP \
2519 "Tbvc-block timeout\n" \
2520 "Tbvc-block retries\n" \
2521 "Tbvc-unblock retries\n" \
2522 "Tbvcc-reset timeout\n" \
2523 "Tbvc-reset retries\n" \
2524 "Tbvc-suspend timeout\n" \
2525 "Tbvc-suspend retries\n" \
2526 "Tbvc-resume timeout\n" \
2527 "Tbvc-resume retries\n" \
2528 "Tbvc-capa-update timeout\n" \
2529 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002530
2531DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2532 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2533 GPRS_TEXT "Cell / BSSGP\n"
2534 "Cell/BSSGP Timer\n"
2535 BSSGP_TIMERS_HELP "Timer Value\n")
2536{
2537 struct gsm_bts *bts = vty->index;
2538 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2539 int val = atoi(argv[1]);
2540
2541 if (bts->gprs.mode == BTS_GPRS_NONE) {
2542 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2543 return CMD_WARNING;
2544 }
2545
2546 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2547 return CMD_WARNING;
2548
2549 bts->gprs.cell.timer[idx] = val;
2550
2551 return CMD_SUCCESS;
2552}
2553
Harald Welte97a282b2010-03-14 15:37:43 +08002554DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2555 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002556 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002557 "GPRS Routing Area Code\n"
2558 "GPRS Routing Area Code\n"
2559 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002560{
2561 struct gsm_bts *bts = vty->index;
2562
Harald Welte4511d892010-04-18 15:51:20 +02002563 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002564 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2565 return CMD_WARNING;
2566 }
2567
Harald Welte97a282b2010-03-14 15:37:43 +08002568 bts->gprs.rac = atoi(argv[0]);
2569
2570 return CMD_SUCCESS;
2571}
2572
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002573DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2574 "gprs network-control-order (nc0|nc1|nc2)",
2575 GPRS_TEXT
2576 "GPRS Network Control Order\n"
2577 "MS controlled cell re-selection, no measurement reporting\n"
2578 "MS controlled cell re-selection, MS sends measurement reports\n"
2579 "Network controlled cell re-selection, MS sends measurement reports\n")
2580{
2581 struct gsm_bts *bts = vty->index;
2582
2583 if (bts->gprs.mode == BTS_GPRS_NONE) {
2584 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2585 return CMD_WARNING;
2586 }
2587
2588 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2589
2590 return CMD_SUCCESS;
2591}
2592
Harald Welte4511d892010-04-18 15:51:20 +02002593DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2594 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002595 GPRS_TEXT
2596 "GPRS Mode for this BTS\n"
2597 "GPRS Disabled on this BTS\n"
2598 "GPRS Enabled on this BTS\n"
2599 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002600{
2601 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002602 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welteaf387632010-03-14 23:30:30 +08002603
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002604 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Weltef3d8e922010-06-14 22:44:42 +02002605 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2606 VTY_NEWLINE);
2607 return CMD_WARNING;
2608 }
2609
2610 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002611
2612 return CMD_SUCCESS;
2613}
2614
Harald Welte9fbff4a2010-07-30 11:50:09 +02002615#define SI_TEXT "System Information Messages\n"
2616#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)"
2617#define SI_TYPE_HELP "System Information Type 1\n" \
2618 "System Information Type 2\n" \
2619 "System Information Type 3\n" \
2620 "System Information Type 4\n" \
2621 "System Information Type 5\n" \
2622 "System Information Type 6\n" \
2623 "System Information Type 7\n" \
2624 "System Information Type 8\n" \
2625 "System Information Type 9\n" \
2626 "System Information Type 10\n" \
2627 "System Information Type 13\n" \
2628 "System Information Type 16\n" \
2629 "System Information Type 17\n" \
2630 "System Information Type 18\n" \
2631 "System Information Type 19\n" \
2632 "System Information Type 20\n" \
2633 "System Information Type 2bis\n" \
2634 "System Information Type 2ter\n" \
2635 "System Information Type 2quater\n" \
2636 "System Information Type 5bis\n" \
2637 "System Information Type 5ter\n"
2638
2639DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2640 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2641 SI_TEXT SI_TYPE_HELP
2642 "System Information Mode\n"
2643 "Static user-specified\n"
2644 "Dynamic, BSC-computed\n")
2645{
2646 struct gsm_bts *bts = vty->index;
2647 int type;
2648
2649 type = get_string_value(osmo_sitype_strs, argv[0]);
2650 if (type < 0) {
2651 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2652 return CMD_WARNING;
2653 }
2654
2655 if (!strcmp(argv[1], "static"))
2656 bts->si_mode_static |= (1 << type);
2657 else
2658 bts->si_mode_static &= ~(1 << type);
2659
2660 return CMD_SUCCESS;
2661}
2662
2663DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2664 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2665 SI_TEXT SI_TYPE_HELP
2666 "Static System Information filling\n"
2667 "Static user-specified SI content in HEX notation\n")
2668{
2669 struct gsm_bts *bts = vty->index;
2670 int rc, type;
2671
2672 type = get_string_value(osmo_sitype_strs, argv[0]);
2673 if (type < 0) {
2674 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2675 return CMD_WARNING;
2676 }
2677
2678 if (!(bts->si_mode_static & (1 << type))) {
2679 vty_out(vty, "SI Type %s is not configured in static mode%s",
2680 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2681 return CMD_WARNING;
2682 }
2683
Harald Welte290aaed2010-07-30 11:53:18 +02002684 /* Fill buffer with padding pattern */
2685 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2686
2687 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002688 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002689 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2690 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2691 return CMD_WARNING;
2692 }
2693
2694 /* Mark this SI as present */
2695 bts->si_valid |= (1 << type);
2696
2697 return CMD_SUCCESS;
2698}
2699
Harald Welte32c09622011-01-11 23:44:56 +01002700DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002701 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002702 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002703 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2704 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002705{
2706 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002707 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002708
Harald Welte64c07d22011-02-15 11:43:27 +01002709 switch (mode) {
2710 case NL_MODE_MANUAL_SI5SEP:
2711 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002712 /* make sure we clear the current list when switching to
2713 * manual mode */
2714 if (bts->neigh_list_manual_mode == 0)
2715 memset(&bts->si_common.data.neigh_list, 0,
2716 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002717 break;
2718 default:
2719 break;
2720 }
2721
2722 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002723
2724 return CMD_SUCCESS;
2725}
2726
2727DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002728 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002729 "Neighbor List\n" "Add to manual neighbor list\n"
2730 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2731 "ARFCN of neighbor\n")
2732{
2733 struct gsm_bts *bts = vty->index;
2734 struct bitvec *bv = &bts->si_common.neigh_list;
2735 uint16_t arfcn = atoi(argv[1]);
2736
2737 if (!bts->neigh_list_manual_mode) {
2738 vty_out(vty, "%% Cannot configure neighbor list in "
2739 "automatic mode%s", VTY_NEWLINE);
2740 return CMD_WARNING;
2741 }
2742
2743 if (!strcmp(argv[0], "add"))
2744 bitvec_set_bit_pos(bv, arfcn, 1);
2745 else
2746 bitvec_set_bit_pos(bv, arfcn, 0);
2747
2748 return CMD_SUCCESS;
2749}
2750
Harald Welte64c07d22011-02-15 11:43:27 +01002751DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002752 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002753 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002754 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2755 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2756 "ARFCN of neighbor\n")
2757{
2758 struct gsm_bts *bts = vty->index;
2759 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2760 uint16_t arfcn = atoi(argv[1]);
2761
2762 if (!bts->neigh_list_manual_mode) {
2763 vty_out(vty, "%% Cannot configure neighbor list in "
2764 "automatic mode%s", VTY_NEWLINE);
2765 return CMD_WARNING;
2766 }
2767
2768 if (!strcmp(argv[0], "add"))
2769 bitvec_set_bit_pos(bv, arfcn, 1);
2770 else
2771 bitvec_set_bit_pos(bv, arfcn, 0);
2772
2773 return CMD_SUCCESS;
2774}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002775
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002776#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2777
2778DEFUN(cfg_bts_excl_rf_lock,
2779 cfg_bts_excl_rf_lock_cmd,
2780 "rf-lock-exclude",
2781 EXCL_RFLOCK_STR)
2782{
2783 struct gsm_bts *bts = vty->index;
2784 bts->excl_from_rf_lock = 1;
2785 return CMD_SUCCESS;
2786}
2787
2788DEFUN(cfg_bts_no_excl_rf_lock,
2789 cfg_bts_no_excl_rf_lock_cmd,
2790 "no rf-lock-exclude",
2791 NO_STR EXCL_RFLOCK_STR)
2792{
2793 struct gsm_bts *bts = vty->index;
2794 bts->excl_from_rf_lock = 0;
2795 return CMD_SUCCESS;
2796}
2797
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002798#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2799
2800DEFUN(cfg_bts_force_comb_si,
2801 cfg_bts_force_comb_si_cmd,
2802 "force-combined-si",
2803 FORCE_COMB_SI_STR)
2804{
2805 struct gsm_bts *bts = vty->index;
2806 bts->force_combined_si = 1;
2807 return CMD_SUCCESS;
2808}
2809
2810DEFUN(cfg_bts_no_force_comb_si,
2811 cfg_bts_no_force_comb_si_cmd,
2812 "no force-combined-si",
2813 NO_STR FORCE_COMB_SI_STR)
2814{
2815 struct gsm_bts *bts = vty->index;
2816 bts->force_combined_si = 0;
2817 return CMD_SUCCESS;
2818}
2819
Andreas Eversberga83d5112013-12-07 18:32:28 +01002820static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2821{
2822 struct gsm_bts *bts = vty->index;
2823 struct bts_codec_conf *codec = &bts->codec;
2824 int i;
2825
2826 codec->hr = 0;
2827 codec->efr = 0;
2828 codec->amr = 0;
2829 for (i = 0; i < argc; i++) {
2830 if (!strcmp(argv[i], "hr"))
2831 codec->hr = 1;
2832 if (!strcmp(argv[i], "efr"))
2833 codec->efr = 1;
2834 if (!strcmp(argv[i], "amr"))
2835 codec->amr = 1;
2836 }
2837}
2838
2839#define CODEC_PAR_STR " (hr|efr|amr)"
2840#define CODEC_HELP_STR "Half Rate\n" \
2841 "Enhanced Full Rate\nAdaptive Multirate\n"
2842
2843DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
2844 "codec-support fr",
2845 "Codec Support settings\nFullrate\n")
2846{
2847 _get_codec_from_arg(vty, 0, argv);
2848 return CMD_SUCCESS;
2849}
2850
2851DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
2852 "codec-support fr" CODEC_PAR_STR,
2853 "Codec Support settings\nFullrate\n"
2854 CODEC_HELP_STR)
2855{
2856 _get_codec_from_arg(vty, 1, argv);
2857 return CMD_SUCCESS;
2858}
2859
2860DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
2861 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
2862 "Codec Support settings\nFullrate\n"
2863 CODEC_HELP_STR CODEC_HELP_STR)
2864{
2865 _get_codec_from_arg(vty, 2, argv);
2866 return CMD_SUCCESS;
2867}
2868
2869DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
2870 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2871 "Codec Support settings\nFullrate\n"
2872 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2873{
2874 _get_codec_from_arg(vty, 3, argv);
2875 return CMD_SUCCESS;
2876}
2877
2878DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
2879 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2880 "Codec Support settings\nFullrate\n"
2881 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2882{
2883 _get_codec_from_arg(vty, 4, argv);
2884 return CMD_SUCCESS;
2885}
2886
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01002887DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
2888 "depends-on-bts <0-255>",
2889 "This BTS can only be started if another one is up\n" "BTS Number\n")
2890{
2891 struct gsm_bts *bts = vty->index;
2892 struct gsm_bts *other_bts;
2893 int dep = atoi(argv[0]);
2894
2895
2896 if (!is_ipaccess_bts(bts)) {
2897 vty_out(vty, "This feature is only available for IP systems.%s",
2898 VTY_NEWLINE);
2899 return CMD_WARNING;
2900 }
2901
2902 other_bts = gsm_bts_num(bts->network, dep);
2903 if (!other_bts || !is_ipaccess_bts(other_bts)) {
2904 vty_out(vty, "This feature is only available for IP systems.%s",
2905 VTY_NEWLINE);
2906 return CMD_WARNING;
2907 }
2908
2909 if (dep >= bts->nr) {
2910 vty_out(vty, "%%Need to depend on an already declared unit.%s",
2911 VTY_NEWLINE);
2912 return CMD_WARNING;
2913 }
2914
2915 bts_depend_mark(bts, dep);
2916 return CMD_SUCCESS;
2917}
2918
2919DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
2920 "depeneds-on-bts <0-255>",
2921 NO_STR "This BTS can only be started if another one is up\n"
2922 "BTS Number\n")
2923{
2924 struct gsm_bts *bts = vty->index;
2925 int dep = atoi(argv[0]);
2926
2927 bts_depend_clear(bts, dep);
2928 return CMD_SUCCESS;
2929}
2930
Andreas Eversberg73266522014-01-19 11:47:44 +01002931#define AMR_TEXT "Adaptive Multi Rate settings\n"
2932#define AMR_MODE_TEXT "Codec modes to use with AMR codec\n"
2933#define AMR_START_TEXT "Initial codec to use with AMR\n" \
2934 "Automatically\nFirst codec\nSecond codec\nThird codec\nFourth codec\n"
2935#define AMR_TH_TEXT "AMR threshold between codecs\nMS side\nBTS side\n"
2936#define AMR_HY_TEXT "AMR hysteresis between codecs\nMS side\nBTS side\n"
2937
2938static void get_amr_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2939{
2940 struct gsm_bts *bts = vty->index;
2941 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2942 struct gsm48_multi_rate_conf *mr_conf =
2943 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2944 int i;
2945
2946 mr->gsm48_ie[1] = 0;
2947 for (i = 0; i < argc; i++)
2948 mr->gsm48_ie[1] |= 1 << atoi(argv[i]);
2949 mr_conf->icmi = 0;
2950}
2951
2952static void get_amr_th_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2953{
2954 struct gsm_bts *bts = vty->index;
2955 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2956 int i;
2957
2958 if (argv[0][0]=='m') {
2959 for (i = 0; i < argc - 1; i++)
2960 mr->mode[i].threshold_ms = atoi(argv[i + 1]);
2961 } else {
2962 for (i = 0; i < argc - 1; i++)
2963 mr->mode[i].threshold_bts = atoi(argv[i + 1]);
2964 }
2965}
2966
2967static void get_amr_hy_from_arg(struct vty *vty, int argc, const char *argv[], int full)
2968{
2969 struct gsm_bts *bts = vty->index;
2970 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2971 int i;
2972
2973 if (argv[0][0]=='m') {
2974 for (i = 0; i < argc - 1; i++)
2975 mr->mode[i].hysteresis_ms = atoi(argv[i + 1]);
2976 } else {
2977 for (i = 0; i < argc - 1; i++)
2978 mr->mode[i].hysteresis_bts = atoi(argv[i + 1]);
2979 }
2980}
2981
2982static void get_amr_start_from_arg(struct vty *vty, const char *argv[], int full)
2983{
2984 struct gsm_bts *bts = vty->index;
2985 struct amr_multirate_conf *mr = (full) ? &bts->mr_full: &bts->mr_half;
2986 struct gsm48_multi_rate_conf *mr_conf =
2987 (struct gsm48_multi_rate_conf *) mr->gsm48_ie;
2988 int num = 0, i;
2989
2990 for (i = 0; i < ((full) ? 8 : 6); i++) {
2991 if ((mr->gsm48_ie[1] & (1 << i))) {
2992 num++;
2993 }
2994 }
2995
2996 if (argv[0][0] == 'a' || num == 0)
2997 mr_conf->icmi = 0;
2998 else {
2999 mr_conf->icmi = 1;
3000 if (num < atoi(argv[0]))
3001 mr_conf->smod = num - 1;
3002 else
3003 mr_conf->smod = atoi(argv[0]) - 1;
3004 }
3005}
3006
3007#define AMR_TCHF_PAR_STR " (0|1|2|3|4|5|6|7)"
3008#define AMR_TCHF_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n" \
3009 "10,2k\n12,2k\n"
3010
3011#define AMR_TCHH_PAR_STR " (0|1|2|3|4|5)"
3012#define AMR_TCHH_HELP_STR "4,75k\n5,15k\n5,90k\n6,70k\n7,40k\n7,95k\n"
3013
3014#define AMR_TH_HELP_STR "Threshold between codec 1 and 2\n"
3015#define AMR_HY_HELP_STR "Hysteresis between codec 1 and 2\n"
3016
3017DEFUN(cfg_bts_amr_fr_modes1, cfg_bts_amr_fr_modes1_cmd,
3018 "amr tch-f modes" AMR_TCHF_PAR_STR,
3019 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3020 AMR_TCHF_HELP_STR)
3021{
3022 get_amr_from_arg(vty, 1, argv, 1);
3023 return CMD_SUCCESS;
3024}
3025
3026DEFUN(cfg_bts_amr_fr_modes2, cfg_bts_amr_fr_modes2_cmd,
3027 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3028 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3029 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3030{
3031 get_amr_from_arg(vty, 2, argv, 1);
3032 return CMD_SUCCESS;
3033}
3034
3035DEFUN(cfg_bts_amr_fr_modes3, cfg_bts_amr_fr_modes3_cmd,
3036 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3037 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3038 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3039{
3040 get_amr_from_arg(vty, 3, argv, 1);
3041 return CMD_SUCCESS;
3042}
3043
3044DEFUN(cfg_bts_amr_fr_modes4, cfg_bts_amr_fr_modes4_cmd,
3045 "amr tch-f modes" AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR AMR_TCHF_PAR_STR,
3046 AMR_TEXT "Full Rate\n" AMR_MODE_TEXT
3047 AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR AMR_TCHF_HELP_STR)
3048{
3049 get_amr_from_arg(vty, 4, argv, 1);
3050 return CMD_SUCCESS;
3051}
3052
3053DEFUN(cfg_bts_amr_fr_start_mode, cfg_bts_amr_fr_start_mode_cmd,
3054 "amr tch-f start-mode (auto|1|2|3|4)",
3055 AMR_TEXT "Full Rate\n" AMR_START_TEXT)
3056{
3057 get_amr_start_from_arg(vty, argv, 1);
3058 return CMD_SUCCESS;
3059}
3060
3061DEFUN(cfg_bts_amr_fr_thres1, cfg_bts_amr_fr_thres1_cmd,
3062 "amr tch-f threshold (ms|bts) <0-63>",
3063 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3064 AMR_TH_HELP_STR)
3065{
3066 get_amr_th_from_arg(vty, 2, argv, 1);
3067 return CMD_SUCCESS;
3068}
3069
3070DEFUN(cfg_bts_amr_fr_thres2, cfg_bts_amr_fr_thres2_cmd,
3071 "amr tch-f threshold (ms|bts) <0-63> <0-63>",
3072 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3073 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3074{
3075 get_amr_th_from_arg(vty, 3, argv, 1);
3076 return CMD_SUCCESS;
3077}
3078
3079DEFUN(cfg_bts_amr_fr_thres3, cfg_bts_amr_fr_thres3_cmd,
3080 "amr tch-f threshold (ms|bts) <0-63> <0-63> <0-63>",
3081 AMR_TEXT "Full Rate\n" AMR_TH_TEXT
3082 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3083{
3084 get_amr_th_from_arg(vty, 4, argv, 1);
3085 return CMD_SUCCESS;
3086}
3087
3088DEFUN(cfg_bts_amr_fr_hyst1, cfg_bts_amr_fr_hyst1_cmd,
3089 "amr tch-f hysteresis (ms|bts) <0-15>",
3090 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3091 AMR_HY_HELP_STR)
3092{
3093 get_amr_hy_from_arg(vty, 2, argv, 1);
3094 return CMD_SUCCESS;
3095}
3096
3097DEFUN(cfg_bts_amr_fr_hyst2, cfg_bts_amr_fr_hyst2_cmd,
3098 "amr tch-f hysteresis (ms|bts) <0-15> <0-15>",
3099 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3100 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3101{
3102 get_amr_hy_from_arg(vty, 3, argv, 1);
3103 return CMD_SUCCESS;
3104}
3105
3106DEFUN(cfg_bts_amr_fr_hyst3, cfg_bts_amr_fr_hyst3_cmd,
3107 "amr tch-f hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3108 AMR_TEXT "Full Rate\n" AMR_HY_TEXT
3109 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3110{
3111 get_amr_hy_from_arg(vty, 4, argv, 1);
3112 return CMD_SUCCESS;
3113}
3114
3115DEFUN(cfg_bts_amr_hr_modes1, cfg_bts_amr_hr_modes1_cmd,
3116 "amr tch-h modes" AMR_TCHH_PAR_STR,
3117 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3118 AMR_TCHH_HELP_STR)
3119{
3120 get_amr_from_arg(vty, 1, argv, 0);
3121 return CMD_SUCCESS;
3122}
3123
3124DEFUN(cfg_bts_amr_hr_modes2, cfg_bts_amr_hr_modes2_cmd,
3125 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3126 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3127 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3128{
3129 get_amr_from_arg(vty, 2, argv, 0);
3130 return CMD_SUCCESS;
3131}
3132
3133DEFUN(cfg_bts_amr_hr_modes3, cfg_bts_amr_hr_modes3_cmd,
3134 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3135 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3136 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3137{
3138 get_amr_from_arg(vty, 3, argv, 0);
3139 return CMD_SUCCESS;
3140}
3141
3142DEFUN(cfg_bts_amr_hr_modes4, cfg_bts_amr_hr_modes4_cmd,
3143 "amr tch-h modes" AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR AMR_TCHH_PAR_STR,
3144 AMR_TEXT "Half Rate\n" AMR_MODE_TEXT
3145 AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR AMR_TCHH_HELP_STR)
3146{
3147 get_amr_from_arg(vty, 4, argv, 0);
3148 return CMD_SUCCESS;
3149}
3150
3151DEFUN(cfg_bts_amr_hr_start_mode, cfg_bts_amr_hr_start_mode_cmd,
3152 "amr tch-h start-mode (auto|1|2|3|4)",
3153 AMR_TEXT "Half Rate\n" AMR_START_TEXT)
3154{
3155 get_amr_start_from_arg(vty, argv, 0);
3156 return CMD_SUCCESS;
3157}
3158
3159DEFUN(cfg_bts_amr_hr_thres1, cfg_bts_amr_hr_thres1_cmd,
3160 "amr tch-h threshold (ms|bts) <0-63>",
3161 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3162 AMR_TH_HELP_STR)
3163{
3164 get_amr_th_from_arg(vty, 2, argv, 0);
3165 return CMD_SUCCESS;
3166}
3167
3168DEFUN(cfg_bts_amr_hr_thres2, cfg_bts_amr_hr_thres2_cmd,
3169 "amr tch-h threshold (ms|bts) <0-63> <0-63>",
3170 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3171 AMR_TH_HELP_STR AMR_TH_HELP_STR)
3172{
3173 get_amr_th_from_arg(vty, 3, argv, 0);
3174 return CMD_SUCCESS;
3175}
3176
3177DEFUN(cfg_bts_amr_hr_thres3, cfg_bts_amr_hr_thres3_cmd,
3178 "amr tch-h threshold (ms|bts) <0-63> <0-63> <0-63>",
3179 AMR_TEXT "Half Rate\n" AMR_TH_TEXT
3180 AMR_TH_HELP_STR AMR_TH_HELP_STR AMR_TH_HELP_STR)
3181{
3182 get_amr_th_from_arg(vty, 4, argv, 0);
3183 return CMD_SUCCESS;
3184}
3185
3186DEFUN(cfg_bts_amr_hr_hyst1, cfg_bts_amr_hr_hyst1_cmd,
3187 "amr tch-h hysteresis (ms|bts) <0-15>",
3188 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3189 AMR_HY_HELP_STR)
3190{
3191 get_amr_hy_from_arg(vty, 2, argv, 0);
3192 return CMD_SUCCESS;
3193}
3194
3195DEFUN(cfg_bts_amr_hr_hyst2, cfg_bts_amr_hr_hyst2_cmd,
3196 "amr tch-h hysteresis (ms|bts) <0-15> <0-15>",
3197 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3198 AMR_HY_HELP_STR AMR_HY_HELP_STR)
3199{
3200 get_amr_hy_from_arg(vty, 3, argv, 0);
3201 return CMD_SUCCESS;
3202}
3203
3204DEFUN(cfg_bts_amr_hr_hyst3, cfg_bts_amr_hr_hyst3_cmd,
3205 "amr tch-h hysteresis (ms|bts) <0-15> <0-15> <0-15>",
3206 AMR_TEXT "Half Rate\n" AMR_HY_TEXT
3207 AMR_HY_HELP_STR AMR_HY_HELP_STR AMR_HY_HELP_STR)
3208{
3209 get_amr_hy_from_arg(vty, 4, argv, 0);
3210 return CMD_SUCCESS;
3211}
3212
Harald Welte8f0ed552010-05-11 21:53:49 +02003213#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02003214
Harald Welte5258fc42009-03-28 19:07:53 +00003215/* per TRX configuration */
3216DEFUN(cfg_trx,
3217 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02003218 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02003219 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00003220 "Select a TRX to configure")
3221{
3222 int trx_nr = atoi(argv[0]);
3223 struct gsm_bts *bts = vty->index;
3224 struct gsm_bts_trx *trx;
3225
Harald Weltee441d9c2009-06-21 16:17:15 +02003226 if (trx_nr > bts->num_trx) {
3227 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
3228 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00003229 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02003230 } else if (trx_nr == bts->num_trx) {
3231 /* we need to allocate a new one */
3232 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003233 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02003234 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02003235
Harald Weltee441d9c2009-06-21 16:17:15 +02003236 if (!trx)
3237 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00003238
3239 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02003240 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00003241 vty->node = TRX_NODE;
3242
3243 return CMD_SUCCESS;
3244}
3245
3246DEFUN(cfg_trx_arfcn,
3247 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01003248 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02003249 "Set the ARFCN for this TRX\n"
3250 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003251{
3252 int arfcn = atoi(argv[0]);
3253 struct gsm_bts_trx *trx = vty->index;
3254
3255 /* FIXME: check if this ARFCN is supported by this TRX */
3256
3257 trx->arfcn = arfcn;
3258
3259 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
3260 /* FIXME: use OML layer to update the ARFCN */
3261 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
3262
3263 return CMD_SUCCESS;
3264}
3265
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003266DEFUN(cfg_trx_nominal_power,
3267 cfg_trx_nominal_power_cmd,
3268 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003269 "Nominal TRX RF Power in dBm\n"
3270 "Nominal TRX RF Power in dBm\n"
3271 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003272{
3273 struct gsm_bts_trx *trx = vty->index;
3274
3275 trx->nominal_power = atoi(argv[0]);
3276
3277 return CMD_SUCCESS;
3278}
3279
Harald Weltefcd24452009-06-20 18:15:19 +02003280DEFUN(cfg_trx_max_power_red,
3281 cfg_trx_max_power_red_cmd,
3282 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003283 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02003284 "Reduction of maximum BS RF Power in dB\n")
3285{
3286 int maxpwr_r = atoi(argv[0]);
3287 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01003288 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02003289
3290 /* FIXME: check if our BTS type supports more than 12 */
3291 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
3292 vty_out(vty, "%% Power %d dB is not in the valid range%s",
3293 maxpwr_r, VTY_NEWLINE);
3294 return CMD_WARNING;
3295 }
3296 if (maxpwr_r & 1) {
3297 vty_out(vty, "%% Power %d dB is not an even value%s",
3298 maxpwr_r, VTY_NEWLINE);
3299 return CMD_WARNING;
3300 }
3301
3302 trx->max_power_red = maxpwr_r;
3303
3304 /* FIXME: make sure we update this using OML */
3305
3306 return CMD_SUCCESS;
3307}
3308
Harald Welte42581822009-08-08 16:12:58 +02003309DEFUN(cfg_trx_rsl_e1,
3310 cfg_trx_rsl_e1_cmd,
3311 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003312 "RSL Parameters\n"
3313 "E1/T1 interface to be used for RSL\n"
3314 "E1/T1 interface to be used for RSL\n"
3315 "E1/T1 Line Number to be used for RSL\n"
3316 "E1/T1 Timeslot to be used for RSL\n"
3317 "E1/T1 Timeslot to be used for RSL\n"
3318 "E1/T1 Sub-slot to be used for RSL\n"
3319 "E1/T1 Sub-slot 0 is to be used for RSL\n"
3320 "E1/T1 Sub-slot 1 is to be used for RSL\n"
3321 "E1/T1 Sub-slot 2 is to be used for RSL\n"
3322 "E1/T1 Sub-slot 3 is to be used for RSL\n"
3323 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003324{
3325 struct gsm_bts_trx *trx = vty->index;
3326
3327 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
3328
3329 return CMD_SUCCESS;
3330}
3331
3332DEFUN(cfg_trx_rsl_e1_tei,
3333 cfg_trx_rsl_e1_tei_cmd,
3334 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003335 "RSL Parameters\n"
3336 "Set the TEI to be used for RSL\n"
3337 "Set the TEI to be used for RSL\n"
3338 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02003339{
3340 struct gsm_bts_trx *trx = vty->index;
3341
3342 trx->rsl_tei = atoi(argv[0]);
3343
3344 return CMD_SUCCESS;
3345}
3346
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003347DEFUN(cfg_trx_rf_locked,
3348 cfg_trx_rf_locked_cmd,
3349 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003350 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3351 "TRX is NOT RF locked (active)\n"
3352 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003353{
3354 int locked = atoi(argv[0]);
3355 struct gsm_bts_trx *trx = vty->index;
3356
3357 gsm_trx_lock_rf(trx, locked);
3358 return CMD_SUCCESS;
3359}
Harald Welte42581822009-08-08 16:12:58 +02003360
Harald Welte5258fc42009-03-28 19:07:53 +00003361/* per TS configuration */
3362DEFUN(cfg_ts,
3363 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003364 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003365 "Select a Timeslot to configure\n"
3366 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003367{
3368 int ts_nr = atoi(argv[0]);
3369 struct gsm_bts_trx *trx = vty->index;
3370 struct gsm_bts_trx_ts *ts;
3371
3372 if (ts_nr >= TRX_NR_TS) {
3373 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3374 TRX_NR_TS, VTY_NEWLINE);
3375 return CMD_WARNING;
3376 }
3377
3378 ts = &trx->ts[ts_nr];
3379
3380 vty->index = ts;
3381 vty->node = TS_NODE;
3382
3383 return CMD_SUCCESS;
3384}
3385
Harald Weltea6fd58e2009-08-07 00:25:23 +02003386DEFUN(cfg_ts_pchan,
3387 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003388 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003389 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003390{
3391 struct gsm_bts_trx_ts *ts = vty->index;
3392 int pchanc;
3393
3394 pchanc = gsm_pchan_parse(argv[0]);
3395 if (pchanc < 0)
3396 return CMD_WARNING;
3397
3398 ts->pchan = pchanc;
3399
3400 return CMD_SUCCESS;
3401}
3402
3403/* used for backwards compatibility with old config files that still
3404 * have uppercase pchan type names */
3405DEFUN_HIDDEN(cfg_ts_pchan_compat,
3406 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003407 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003408 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003409{
3410 struct gsm_bts_trx_ts *ts = vty->index;
3411 int pchanc;
3412
3413 pchanc = gsm_pchan_parse(argv[0]);
3414 if (pchanc < 0)
3415 return CMD_WARNING;
3416
3417 ts->pchan = pchanc;
3418
3419 return CMD_SUCCESS;
3420}
3421
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003422
3423
Harald Welte135a6482011-05-30 12:09:13 +02003424DEFUN(cfg_ts_tsc,
3425 cfg_ts_tsc_cmd,
3426 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003427 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003428{
3429 struct gsm_bts_trx_ts *ts = vty->index;
3430
Harald Welte903aaea2014-01-19 17:10:50 +01003431 if (!gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_MULTI_TSC)) {
3432 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3433 "falling back to BCC%s", VTY_NEWLINE);
3434 ts->tsc = -1;
3435 return CMD_WARNING;
3436 }
3437
Harald Welte135a6482011-05-30 12:09:13 +02003438 ts->tsc = atoi(argv[0]);
3439
3440 return CMD_SUCCESS;
3441}
3442
Harald Weltea39b0f22010-06-14 22:26:10 +02003443#define HOPPING_STR "Configure frequency hopping\n"
3444
3445DEFUN(cfg_ts_hopping,
3446 cfg_ts_hopping_cmd,
3447 "hopping enabled (0|1)",
3448 HOPPING_STR "Enable or disable frequency hopping\n"
3449 "Disable frequency hopping\n" "Enable frequency hopping\n")
3450{
3451 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003452 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003453
Harald Weltec2fb3d02010-06-14 22:47:37 +02003454 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
3455 vty_out(vty, "BTS model does not support hopping%s",
3456 VTY_NEWLINE);
3457 return CMD_WARNING;
3458 }
3459
3460 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003461
3462 return CMD_SUCCESS;
3463}
3464
Harald Welte6e0cd042009-09-12 13:05:33 +02003465DEFUN(cfg_ts_hsn,
3466 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003467 "hopping sequence-number <0-63>",
3468 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003469 "Which hopping sequence to use for this channel\n"
3470 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003471{
3472 struct gsm_bts_trx_ts *ts = vty->index;
3473
3474 ts->hopping.hsn = atoi(argv[0]);
3475
3476 return CMD_SUCCESS;
3477}
3478
3479DEFUN(cfg_ts_maio,
3480 cfg_ts_maio_cmd,
3481 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003482 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003483 "Which hopping MAIO to use for this channel\n"
3484 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003485{
3486 struct gsm_bts_trx_ts *ts = vty->index;
3487
3488 ts->hopping.maio = atoi(argv[0]);
3489
3490 return CMD_SUCCESS;
3491}
3492
3493DEFUN(cfg_ts_arfcn_add,
3494 cfg_ts_arfcn_add_cmd,
3495 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003496 HOPPING_STR "Configure hopping ARFCN list\n"
3497 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003498{
3499 struct gsm_bts_trx_ts *ts = vty->index;
3500 int arfcn = atoi(argv[0]);
3501
Harald Weltea39b0f22010-06-14 22:26:10 +02003502 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3503
Harald Welte6e0cd042009-09-12 13:05:33 +02003504 return CMD_SUCCESS;
3505}
3506
3507DEFUN(cfg_ts_arfcn_del,
3508 cfg_ts_arfcn_del_cmd,
3509 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003510 HOPPING_STR "Configure hopping ARFCN list\n"
3511 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003512{
3513 struct gsm_bts_trx_ts *ts = vty->index;
3514 int arfcn = atoi(argv[0]);
3515
Harald Weltea39b0f22010-06-14 22:26:10 +02003516 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3517
Harald Welte6e0cd042009-09-12 13:05:33 +02003518 return CMD_SUCCESS;
3519}
3520
Harald Weltea6fd58e2009-08-07 00:25:23 +02003521DEFUN(cfg_ts_e1_subslot,
3522 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003523 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003524 "E1/T1 channel connected to this on-air timeslot\n"
3525 "E1/T1 channel connected to this on-air timeslot\n"
3526 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003527 "E1/T1 timeslot connected to this on-air timeslot\n"
3528 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003529 "E1/T1 sub-slot connected to this on-air timeslot\n"
3530 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3531 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3532 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3533 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3534 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003535{
3536 struct gsm_bts_trx_ts *ts = vty->index;
3537
Harald Welte42581822009-08-08 16:12:58 +02003538 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003539
3540 return CMD_SUCCESS;
3541}
Harald Welte5258fc42009-03-28 19:07:53 +00003542
Harald Welte4f10c252010-05-16 21:47:13 +02003543void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3544{
3545 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003546 osmo_counter_get(net->stats.chreq.total),
3547 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003548 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003549 osmo_counter_get(net->stats.chan.rf_fail),
3550 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003551 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003552 osmo_counter_get(net->stats.paging.attempted),
3553 osmo_counter_get(net->stats.paging.completed),
3554 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003555 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003556 osmo_counter_get(net->stats.bts.oml_fail),
3557 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003558}
3559
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003560DEFUN(drop_bts,
3561 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003562 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003563 "Debug/Simulation command to drop Abis/IP BTS\n"
3564 "Debug/Simulation command to drop Abis/IP BTS\n"
3565 "Debug/Simulation command to drop Abis/IP BTS\n"
3566 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003567{
3568 struct gsm_network *gsmnet;
3569 struct gsm_bts_trx *trx;
3570 struct gsm_bts *bts;
3571 unsigned int bts_nr;
3572
3573 gsmnet = gsmnet_from_vty(vty);
3574
3575 bts_nr = atoi(argv[0]);
3576 if (bts_nr >= gsmnet->num_bts) {
3577 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3578 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3579 return CMD_WARNING;
3580 }
3581
3582 bts = gsm_bts_num(gsmnet, bts_nr);
3583 if (!bts) {
3584 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3585 return CMD_WARNING;
3586 }
3587
3588 if (!is_ipaccess_bts(bts)) {
3589 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3590 return CMD_WARNING;
3591 }
3592
3593
3594 /* close all connections */
3595 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003596 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003597 } else if (strcmp(argv[1], "rsl") == 0) {
3598 /* close all rsl connections */
3599 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003600 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003601 }
3602 } else {
3603 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3604 return CMD_WARNING;
3605 }
3606
3607 return CMD_SUCCESS;
3608}
3609
Harald Welte30f1f372014-12-28 15:00:45 +01003610DEFUN(smscb_cmd, smscb_cmd_cmd,
3611 "bts <0-255> smscb-command <1-4> HEXSTRING",
3612 "BTS related commands\n" "BTS Number\n"
3613 "SMS Cell Broadcast\n" "Last Valid Block\n"
3614 "Hex Encoded SMSCB message (up to 88 octets)\n")
3615{
3616 struct gsm_bts *bts;
3617 int bts_nr = atoi(argv[0]);
3618 int last_block = atoi(argv[1]);
3619 struct rsl_ie_cb_cmd_type cb_cmd;
3620 uint8_t buf[88];
3621 int rc;
3622
3623 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3624 if (!bts) {
3625 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3626 return CMD_WARNING;
3627 }
3628 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3629 if (rc < 0 || rc > sizeof(buf)) {
3630 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3631 return CMD_WARNING;
3632 }
3633
3634 cb_cmd.spare = 0;
3635 cb_cmd.def_bcast = 0;
3636 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3637
3638 switch (last_block) {
3639 case 1:
3640 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3641 break;
3642 case 2:
3643 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3644 break;
3645 case 3:
3646 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3647 break;
3648 case 4:
3649 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3650 break;
3651 }
3652
3653 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3654
3655 return CMD_SUCCESS;
3656}
3657
3658
Harald Welted0d2b0b2010-12-23 13:18:07 +01003659DEFUN(pdch_act, pdch_act_cmd,
3660 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3661 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3662 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3663 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3664 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3665{
3666 struct gsm_bts *bts;
3667 struct gsm_bts_trx *trx;
3668 struct gsm_bts_trx_ts *ts;
3669 int bts_nr = atoi(argv[0]);
3670 int trx_nr = atoi(argv[1]);
3671 int ts_nr = atoi(argv[2]);
3672 int activate;
3673
3674 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3675 if (!bts) {
3676 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3677 return CMD_WARNING;
3678 }
3679
3680 if (!is_ipaccess_bts(bts)) {
3681 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3682 VTY_NEWLINE);
3683 return CMD_WARNING;
3684 }
3685
3686 trx = gsm_bts_trx_num(bts, trx_nr);
3687 if (!trx) {
3688 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3689 return CMD_WARNING;
3690 }
3691
3692 ts = &trx->ts[ts_nr];
3693 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3694 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3695 "mode%s", ts_nr, VTY_NEWLINE);
3696 return CMD_WARNING;
3697 }
3698
3699 if (!strcmp(argv[3], "activate"))
3700 activate = 1;
3701 else
3702 activate = 0;
3703
3704 rsl_ipacc_pdch_activate(ts, activate);
3705
3706 return CMD_SUCCESS;
3707
3708}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003709
Harald Weltedcccb182010-05-16 20:52:23 +02003710extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02003711extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02003712
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003713int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00003714{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003715 cfg_ts_pchan_cmd.string =
3716 vty_cmd_string_from_valstr(tall_bsc_ctx,
3717 gsm_pchant_names,
3718 "phys_chan_config (", "|", ")",
3719 VTY_DO_LOWER);
3720 cfg_ts_pchan_cmd.doc =
3721 vty_cmd_string_from_valstr(tall_bsc_ctx,
3722 gsm_pchant_descs,
3723 "Physical Channel Combination\n",
3724 "\n", "", 0);
3725
Harald Weltee555c2b2012-08-17 13:02:12 +02003726 cfg_bts_type_cmd.string =
3727 vty_cmd_string_from_valstr(tall_bsc_ctx,
3728 bts_type_names,
3729 "type (", "|", ")",
3730 VTY_DO_LOWER);
3731 cfg_bts_type_cmd.doc =
3732 vty_cmd_string_from_valstr(tall_bsc_ctx,
3733 bts_type_descs,
3734 "BTS Vendor/Type\n",
3735 "\n", "", 0);
3736
3737
Harald Welteb4d5b172010-05-12 16:10:35 +00003738 install_element_ve(&show_net_cmd);
3739 install_element_ve(&show_bts_cmd);
3740 install_element_ve(&show_trx_cmd);
3741 install_element_ve(&show_ts_cmd);
3742 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08003743 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00003744
Harald Welteb4d5b172010-05-12 16:10:35 +00003745 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01003746 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003747
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003748 logging_vty_add_cmds(cat);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01003749
Harald Welte5013b2a2009-08-07 13:29:14 +02003750 install_element(CONFIG_NODE, &cfg_net_cmd);
3751 install_node(&net_node, config_write_net);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003752 vty_install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02003753 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003754 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3755 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3756 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02003757 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01003758 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09003759 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01003760 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01003761 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01003762 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01003763 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01003764 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3765 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3766 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3767 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3768 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3769 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01003770 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003771 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3772 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3773 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3774 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3775 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3776 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3777 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3778 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3779 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01003780 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003781 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08003782 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01003783 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08003784 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003785
3786 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02003787 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003788 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003789 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003790 install_element(BTS_NODE, &cfg_description_cmd);
3791 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02003792 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02003793 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003794 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3795 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003796 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00003797 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01003798 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003799 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeck946d1412013-09-17 13:59:29 +02003800 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003801 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02003802 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01003803 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01003804 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02003805 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003806 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3807 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02003808 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01003809 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3810 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02003811 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3812 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3813 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08003814 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3815 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02003816 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08003817 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04003818 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02003819 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02003820 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02003821 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01003822 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3823 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01003824 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3825 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3826 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3827 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3828 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3829 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01003830 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02003831 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003832 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003833 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01003834 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003835 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003836 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08003837 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003838 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08003839 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3840 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3841 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08003842 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02003843 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3844 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01003845 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3846 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01003847 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02003848 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3849 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01003850 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
3851 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01003852 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
3853 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
3854 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
3855 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
3856 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003857 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
3858 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Andreas Eversberg73266522014-01-19 11:47:44 +01003859 install_element(BTS_NODE, &cfg_bts_amr_fr_modes1_cmd);
3860 install_element(BTS_NODE, &cfg_bts_amr_fr_modes2_cmd);
3861 install_element(BTS_NODE, &cfg_bts_amr_fr_modes3_cmd);
3862 install_element(BTS_NODE, &cfg_bts_amr_fr_modes4_cmd);
3863 install_element(BTS_NODE, &cfg_bts_amr_fr_thres1_cmd);
3864 install_element(BTS_NODE, &cfg_bts_amr_fr_thres2_cmd);
3865 install_element(BTS_NODE, &cfg_bts_amr_fr_thres3_cmd);
3866 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst1_cmd);
3867 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst2_cmd);
3868 install_element(BTS_NODE, &cfg_bts_amr_fr_hyst3_cmd);
3869 install_element(BTS_NODE, &cfg_bts_amr_fr_start_mode_cmd);
3870 install_element(BTS_NODE, &cfg_bts_amr_hr_modes1_cmd);
3871 install_element(BTS_NODE, &cfg_bts_amr_hr_modes2_cmd);
3872 install_element(BTS_NODE, &cfg_bts_amr_hr_modes3_cmd);
3873 install_element(BTS_NODE, &cfg_bts_amr_hr_modes4_cmd);
3874 install_element(BTS_NODE, &cfg_bts_amr_hr_thres1_cmd);
3875 install_element(BTS_NODE, &cfg_bts_amr_hr_thres2_cmd);
3876 install_element(BTS_NODE, &cfg_bts_amr_hr_thres3_cmd);
3877 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst1_cmd);
3878 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst2_cmd);
3879 install_element(BTS_NODE, &cfg_bts_amr_hr_hyst3_cmd);
3880 install_element(BTS_NODE, &cfg_bts_amr_hr_start_mode_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003881
Harald Welte5258fc42009-03-28 19:07:53 +00003882 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003883 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003884 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003885 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003886 install_element(TRX_NODE, &cfg_description_cmd);
3887 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003888 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02003889 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003890 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3891 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003892 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003893
Harald Welte5258fc42009-03-28 19:07:53 +00003894 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003895 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003896 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003897 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003898 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02003899 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02003900 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02003901 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3902 install_element(TS_NODE, &cfg_ts_maio_cmd);
3903 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3904 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003905 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003906
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003907 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003908 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01003909 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003910
Harald Welte81c9b9c2010-05-31 16:40:40 +02003911 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01003912 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01003913 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02003914
Harald Weltedcccb182010-05-16 20:52:23 +02003915 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00003916
Harald Welte68628e82009-03-10 12:17:57 +00003917 return 0;
3918}