blob: e3eb7ccb56305dac36bbf2e543861c482abfdaba [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
482static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
483{
Harald Welte9fbff4a2010-07-30 11:50:09 +0200484 int i;
Harald Welte67ce0732009-08-06 19:06:46 +0200485
Harald Welte5013b2a2009-08-07 13:29:14 +0200486 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
487 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200488 if (bts->description)
489 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200490 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100491 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200492 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200493 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200494 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte903aaea2014-01-19 17:10:50 +0100495 if (bts->tsc != (bts->bsic & 7))
496 vty_out(vty, " training_sequence_code %u%s", bts->tsc,
497 VTY_NEWLINE);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200498 if (bts->tz.override != 0) {
499 if (bts->tz.dst)
500 vty_out(vty, " timezone %d %d %d%s",
501 bts->tz.hr, bts->tz.mn, bts->tz.dst, VTY_NEWLINE);
502 else
503 vty_out(vty, " timezone %d %d%s",
504 bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
505 }
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200506 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100507 vty_out(vty, " cell reselection hysteresis %u%s",
508 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
509 vty_out(vty, " rxlev access min %u%s",
510 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100511
512 if (bts->si_common.cell_ro_sel_par.present) {
513 struct gsm48_si_selection_params *sp;
514 sp = &bts->si_common.cell_ro_sel_par;
515
516 if (sp->cbq)
517 vty_out(vty, " cell bar qualify %u%s",
518 sp->cbq, VTY_NEWLINE);
519
520 if (sp->cell_resel_off)
521 vty_out(vty, " cell reselection offset %u%s",
522 sp->cell_resel_off*2, VTY_NEWLINE);
523
524 if (sp->temp_offs == 7)
525 vty_out(vty, " temporary offset infinite%s",
526 VTY_NEWLINE);
527 else if (sp->temp_offs)
528 vty_out(vty, " temporary offset %u%s",
529 sp->temp_offs*10, VTY_NEWLINE);
530
531 if (sp->penalty_time == 31)
532 vty_out(vty, " penalty time reserved%s",
533 VTY_NEWLINE);
534 else if (sp->penalty_time)
535 vty_out(vty, " penalty time %u%s",
536 (sp->penalty_time*20)+20, VTY_NEWLINE);
537 }
538
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200539 /* Is periodic LU enabled or disabled? */
540 if (bts->si_common.chan_desc.t3212 == 0)
541 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
542 else
543 vty_out(vty, " periodic location update %u%s",
544 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
545
Andreas Eversberg4d4944a2013-03-10 11:49:35 +0100546 vty_out(vty, " radio-link-timeout %d%s",
547 get_radio_link_timeout(&bts->si_common.cell_options),
548 VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200549 vty_out(vty, " channel allocator %s%s",
550 bts->chan_alloc_reverse ? "descending" : "ascending",
551 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100552 vty_out(vty, " rach tx integer %u%s",
553 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
554 vty_out(vty, " rach max transmission %u%s",
555 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
556 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800557
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200558 vty_out(vty, " channel-descrption attach %u%s",
559 bts->si_common.chan_desc.att, VTY_NEWLINE);
560 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
561 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
562 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
563 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
564
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800565 if (bts->rach_b_thresh != -1)
566 vty_out(vty, " rach nm busy threshold %u%s",
567 bts->rach_b_thresh, VTY_NEWLINE);
568 if (bts->rach_ldavg_slots != -1)
569 vty_out(vty, " rach nm load average %u%s",
570 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100571 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200572 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800573 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
574 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400575 if ((bts->si_common.rach_control.t3) != 0)
576 for (i = 0; i < 8; i++)
577 if (bts->si_common.rach_control.t3 & (0x1 << i))
578 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
579 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
580 for (i = 0; i < 8; i++)
581 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
582 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200583 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
584 if (bts->si_mode_static & (1 << i)) {
585 vty_out(vty, " system-information %s mode static%s",
586 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
587 vty_out(vty, " system-information %s static %s%s",
588 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100589 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200590 VTY_NEWLINE);
591 }
592 }
Harald Weltefd355a32011-03-04 13:41:31 +0100593 switch (bts->type) {
594 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200595 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200596 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200597 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100598 if (bts->ip_access.rsl_ip) {
599 struct in_addr ia;
600 ia.s_addr = htonl(bts->ip_access.rsl_ip);
601 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
602 VTY_NEWLINE);
603 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200604 vty_out(vty, " oml ip.access stream_id %u line %u%s",
605 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100606 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200607 case GSM_BTS_TYPE_NOKIA_SITE:
608 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +0100609 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
610 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Sipos Csaba56e17662015-02-07 13:27:36 +0100611 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 +0100612 /* fall through: Nokia requires "oml e1" parameters also */
Harald Weltefd355a32011-03-04 13:41:31 +0100613 default:
Harald Welte42581822009-08-08 16:12:58 +0200614 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
615 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100616 break;
Harald Welte42581822009-08-08 16:12:58 +0200617 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800618
619 /* if we have a limit, write it */
620 if (bts->paging.free_chans_need >= 0)
621 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
622
Harald Welte32c09622011-01-11 23:44:56 +0100623 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100624 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
625 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100626 for (i = 0; i < 1024; i++) {
627 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
628 vty_out(vty, " neighbor-list add arfcn %u%s",
629 i, VTY_NEWLINE);
630 }
631 }
Harald Welte64c07d22011-02-15 11:43:27 +0100632 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
633 for (i = 0; i < 1024; i++) {
634 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
635 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
636 i, VTY_NEWLINE);
637 }
638 }
Harald Welte32c09622011-01-11 23:44:56 +0100639
Andreas Eversberga83d5112013-12-07 18:32:28 +0100640 vty_out(vty, " codec-support fr");
641 if (bts->codec.hr)
642 vty_out(vty, " hr");
643 if (bts->codec.efr)
644 vty_out(vty, " efr");
645 if (bts->codec.amr)
646 vty_out(vty, " amr");
647 vty_out(vty, "%s", VTY_NEWLINE);
648
Harald Welte615e9562010-05-11 23:50:21 +0200649 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200650
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200651 if (bts->excl_from_rf_lock)
652 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
653
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100654 vty_out(vty, " %sforce-combined-si%s",
655 bts->force_combined_si ? "" : "no ", VTY_NEWLINE);
656
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +0100657 for (i = 0; i < ARRAY_SIZE(bts->depends_on); ++i) {
658 int j;
659
660 if (bts->depends_on[i] == 0)
661 continue;
662
663 for (j = 0; j < sizeof(bts->depends_on[i]) * 8; ++j) {
664 int bts_nr;
665
666 if ((bts->depends_on[i] & (1<<j)) == 0)
667 continue;
668
669 bts_nr = (i * sizeof(bts->depends_on[i]) * 8) + j;
670 vty_out(vty, " depends-on-bts %d%s", bts_nr, VTY_NEWLINE);
671 }
672 }
673
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200674 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200675}
676
677static int config_write_bts(struct vty *v)
678{
Harald Weltedcccb182010-05-16 20:52:23 +0200679 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200680 struct gsm_bts *bts;
681
682 llist_for_each_entry(bts, &gsmnet->bts_list, list)
683 config_write_bts_single(v, bts);
684
685 return CMD_SUCCESS;
686}
687
Harald Welte5013b2a2009-08-07 13:29:14 +0200688static int config_write_net(struct vty *vty)
689{
Harald Weltedcccb182010-05-16 20:52:23 +0200690 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
691
Harald Welte5013b2a2009-08-07 13:29:14 +0200692 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200693 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200694 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200695 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
696 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200697 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100698 vty_out(vty, " location updating reject cause %u%s",
699 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900700 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100701 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800702 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100703 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
704 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100705 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100706 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100707 vty_out(vty, " handover window rxlev averaging %u%s",
708 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
709 vty_out(vty, " handover window rxqual averaging %u%s",
710 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
711 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
712 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
713 vty_out(vty, " handover power budget interval %u%s",
714 gsmnet->handover.pwr_interval, VTY_NEWLINE);
715 vty_out(vty, " handover power budget hysteresis %u%s",
716 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
717 vty_out(vty, " handover maximum distance %u%s",
718 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100719 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100720 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
721 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
722 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
723 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
724 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
725 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
726 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
727 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
728 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100729 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100730 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100731 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100732 vty_out(vty, " subscriber-keep-in-ram %d%s",
Jacob Erlbeck1e30a282014-12-03 09:28:24 +0100733 gsmnet->subscr_group->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200734
735 return CMD_SUCCESS;
736}
Harald Welte67ce0732009-08-06 19:06:46 +0200737
Harald Welte68628e82009-03-10 12:17:57 +0000738static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
739{
740 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
741 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200742 vty_out(vty, "Description: %s%s",
743 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200744 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200745 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200746 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200747 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000748 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200749 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000750 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200751 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200752 if (is_ipaccess_bts(trx->bts)) {
753 vty_out(vty, " ip.access stream ID: 0x%02x%s",
754 trx->rsl_tei, VTY_NEWLINE);
755 } else {
756 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
757 e1isl_dump_vty(vty, trx->rsl_link);
758 }
Harald Welte68628e82009-03-10 12:17:57 +0000759}
760
761DEFUN(show_trx,
762 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100763 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200764 SHOW_STR "Display information about a TRX\n"
765 "BTS Number\n"
766 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000767{
Harald Weltedcccb182010-05-16 20:52:23 +0200768 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000769 struct gsm_bts *bts = NULL;
770 struct gsm_bts_trx *trx;
771 int bts_nr, trx_nr;
772
773 if (argc >= 1) {
774 /* use the BTS number that the user has specified */
775 bts_nr = atoi(argv[0]);
776 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000777 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000778 VTY_NEWLINE);
779 return CMD_WARNING;
780 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200781 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000782 }
783 if (argc >= 2) {
784 trx_nr = atoi(argv[1]);
785 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000786 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000787 VTY_NEWLINE);
788 return CMD_WARNING;
789 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200790 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000791 trx_dump_vty(vty, trx);
792 return CMD_SUCCESS;
793 }
794 if (bts) {
795 /* print all TRX in this BTS */
796 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200797 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000798 trx_dump_vty(vty, trx);
799 }
800 return CMD_SUCCESS;
801 }
802
803 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200804 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000805 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200806 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000807 trx_dump_vty(vty, trx);
808 }
809 }
810
811 return CMD_SUCCESS;
812}
813
Harald Welte67ce0732009-08-06 19:06:46 +0200814
Harald Welte68628e82009-03-10 12:17:57 +0000815static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
816{
Harald Welte135a6482011-05-30 12:09:13 +0200817 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100818 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welte1fe24122014-01-19 17:18:21 +0100819 gsm_pchan_name(ts->pchan), gsm_ts_tsc(ts));
Harald Weltecd103a92010-12-24 12:14:52 +0100820 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100821 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100822 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
823 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000824 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200825 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530826 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000827 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
828 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
829 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000830}
831
832DEFUN(show_ts,
833 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100834 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200835 SHOW_STR "Display information about a TS\n"
836 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000837{
Harald Weltedcccb182010-05-16 20:52:23 +0200838 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100839 struct gsm_bts *bts = NULL;
840 struct gsm_bts_trx *trx = NULL;
841 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000842 int bts_nr, trx_nr, ts_nr;
843
844 if (argc >= 1) {
845 /* use the BTS number that the user has specified */
846 bts_nr = atoi(argv[0]);
847 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000848 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000849 VTY_NEWLINE);
850 return CMD_WARNING;
851 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200852 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000853 }
854 if (argc >= 2) {
855 trx_nr = atoi(argv[1]);
856 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000857 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000858 VTY_NEWLINE);
859 return CMD_WARNING;
860 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200861 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000862 }
863 if (argc >= 3) {
864 ts_nr = atoi(argv[2]);
865 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000866 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000867 VTY_NEWLINE);
868 return CMD_WARNING;
869 }
Harald Welte274d0152010-12-24 12:05:03 +0100870 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000871 ts = &trx->ts[ts_nr];
872 ts_dump_vty(vty, ts);
873 return CMD_SUCCESS;
874 }
Harald Welte274d0152010-12-24 12:05:03 +0100875
876 if (bts && trx) {
877 /* Iterate over all TS in this TRX */
878 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
879 ts = &trx->ts[ts_nr];
880 ts_dump_vty(vty, ts);
881 }
882 } else if (bts) {
883 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000884 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200885 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000886 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
887 ts = &trx->ts[ts_nr];
888 ts_dump_vty(vty, ts);
889 }
890 }
Harald Welte274d0152010-12-24 12:05:03 +0100891 } else {
892 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
893 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
894 bts = gsm_bts_num(net, bts_nr);
895 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
896 trx = gsm_bts_trx_num(bts, trx_nr);
897 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
898 ts = &trx->ts[ts_nr];
899 ts_dump_vty(vty, ts);
900 }
901 }
902 }
Harald Welte68628e82009-03-10 12:17:57 +0000903 }
904
905 return CMD_SUCCESS;
906}
907
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100908static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000909{
Harald Weltefcd24452009-06-20 18:15:19 +0200910 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000911 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7f180e82013-12-12 15:45:41 +0100912 if (strlen(subscr->name))
Harald Welte1bc77352009-03-10 19:47:51 +0000913 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Holger Hans Peter Freytherbd30cd32014-04-04 11:53:18 +0200914 if (strlen(subscr->extension))
Harald Welte68628e82009-03-10 12:17:57 +0000915 vty_out(vty, " Extension: %s%s", subscr->extension,
916 VTY_NEWLINE);
Holger Hans Peter Freyther5ccd0152013-07-14 08:38:24 +0200917 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200918 if (subscr->tmsi != GSM_RESERVED_TMSI)
919 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200920 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100921
Harald Welte (local)15920de2009-08-14 20:27:16 +0200922 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000923}
924
Harald Welte8387a492009-12-22 21:43:14 +0100925static void meas_rep_dump_uni_vty(struct vty *vty,
926 struct gsm_meas_rep_unidir *mru,
927 const char *prefix,
928 const char *dir)
929{
930 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
931 prefix, dir, rxlev2dbm(mru->full.rx_lev),
932 dir, rxlev2dbm(mru->sub.rx_lev));
933 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
934 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
935 VTY_NEWLINE);
936}
937
938static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
939 const char *prefix)
940{
941 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
942 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
943 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
944 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
945 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
946 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
947 VTY_NEWLINE);
948 if (mr->flags & MEAS_REP_F_MS_TO)
949 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
950 mr->ms_timing_offset, VTY_NEWLINE);
951 if (mr->flags & MEAS_REP_F_MS_L1)
952 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
953 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
954 if (mr->flags & MEAS_REP_F_DL_VALID)
955 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
956 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
957}
958
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800959static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000960{
Harald Welte8387a492009-12-22 21:43:14 +0100961 int idx;
962
Harald Welte85bded82010-12-24 12:22:34 +0100963 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
964 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
965 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100966 vty_out(vty, " Connection: %u, State: %s%s%s%s",
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800967 lchan->conn ? 1: 0,
Holger Hans Peter Freyther454140e2014-12-28 12:08:28 +0100968 gsm_lchans_name(lchan->state),
969 lchan->state == LCHAN_S_BROKEN ? " Error reason: " : "",
970 lchan->state == LCHAN_S_BROKEN ? lchan->broken_reason : "",
971 VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100972 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
973 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
974 - lchan->bs_power*2,
975 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
976 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800977 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000978 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800979 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000980 } else
981 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530982 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
983 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200984 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530985 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
986 inet_ntoa(ia), lchan->abis_ip.bound_port,
987 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
988 VTY_NEWLINE);
989 }
Harald Welte8387a492009-12-22 21:43:14 +0100990
991 /* we want to report the last measurement report */
992 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
993 lchan->meas_rep_idx, 1);
994 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000995}
996
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800997static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
998{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800999 struct gsm_meas_rep *mr;
1000 int idx;
1001
1002 /* we want to report the last measurement report */
1003 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
1004 lchan->meas_rep_idx, 1);
1005 mr = &lchan->meas_rep[idx];
1006
Harald Welte85bded82010-12-24 12:22:34 +01001007 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
1008 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
1009 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +01001010 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +08001011 rxlev2dbm(mr->dl.full.rx_lev),
1012 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001013 VTY_NEWLINE);
1014}
1015
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001016
1017static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
1018 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1019{
1020 int lchan_nr;
1021 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
1022 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
1023 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
1024 continue;
1025 dump_cb(vty, lchan);
1026 }
1027
1028 return CMD_SUCCESS;
1029}
1030
1031static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1032 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1033{
1034 int ts_nr;
1035
1036 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1037 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1038 dump_lchan_trx_ts(ts, vty, dump_cb);
1039 }
1040
1041 return CMD_SUCCESS;
1042}
1043
1044static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1045 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1046{
1047 int trx_nr;
1048
1049 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1050 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1051 dump_lchan_trx(trx, vty, dump_cb);
1052 }
1053
1054 return CMD_SUCCESS;
1055}
1056
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001057static int lchan_summary(struct vty *vty, int argc, const char **argv,
1058 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001059{
Harald Weltedcccb182010-05-16 20:52:23 +02001060 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001061 struct gsm_bts *bts;
1062 struct gsm_bts_trx *trx;
1063 struct gsm_bts_trx_ts *ts;
1064 struct gsm_lchan *lchan;
1065 int bts_nr, trx_nr, ts_nr, lchan_nr;
1066
1067 if (argc >= 1) {
1068 /* use the BTS number that the user has specified */
1069 bts_nr = atoi(argv[0]);
1070 if (bts_nr >= net->num_bts) {
1071 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1072 VTY_NEWLINE);
1073 return CMD_WARNING;
1074 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001075 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001076
1077 if (argc == 1)
1078 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001079 }
1080 if (argc >= 2) {
1081 trx_nr = atoi(argv[1]);
1082 if (trx_nr >= bts->num_trx) {
1083 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1084 VTY_NEWLINE);
1085 return CMD_WARNING;
1086 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001087 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001088
1089 if (argc == 2)
1090 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001091 }
1092 if (argc >= 3) {
1093 ts_nr = atoi(argv[2]);
1094 if (ts_nr >= TRX_NR_TS) {
1095 vty_out(vty, "%% can't find TS %s%s", argv[2],
1096 VTY_NEWLINE);
1097 return CMD_WARNING;
1098 }
1099 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001100
1101 if (argc == 3)
1102 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001103 }
1104 if (argc >= 4) {
1105 lchan_nr = atoi(argv[3]);
1106 if (lchan_nr >= TS_MAX_LCHAN) {
1107 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1108 VTY_NEWLINE);
1109 return CMD_WARNING;
1110 }
1111 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001112 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001113 return CMD_SUCCESS;
1114 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001115
1116
Harald Welte68628e82009-03-10 12:17:57 +00001117 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001118 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001119 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001120 }
1121
1122 return CMD_SUCCESS;
1123}
1124
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001125
1126DEFUN(show_lchan,
1127 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001128 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001129 SHOW_STR "Display information about a logical channel\n"
1130 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001131 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001132
1133{
1134 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1135}
1136
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001137DEFUN(show_lchan_summary,
1138 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001139 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001140 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001141 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001142 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001143 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001144{
1145 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1146}
1147
Harald Weltebe4b7302009-05-23 16:59:33 +00001148static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001149{
1150 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1151 subscr_dump_vty(vty, pag->subscr);
1152}
1153
Harald Weltebe4b7302009-05-23 16:59:33 +00001154static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001155{
1156 struct gsm_paging_request *pag;
1157
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001158 if (!bts->paging.bts)
1159 return;
1160
Harald Weltef5025b62009-03-28 16:55:11 +00001161 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1162 paging_dump_vty(vty, pag);
1163}
1164
1165DEFUN(show_paging,
1166 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001167 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001168 SHOW_STR "Display information about paging reuqests of a BTS\n"
1169 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001170{
Harald Weltedcccb182010-05-16 20:52:23 +02001171 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001172 struct gsm_bts *bts;
1173 int bts_nr;
1174
1175 if (argc >= 1) {
1176 /* use the BTS number that the user has specified */
1177 bts_nr = atoi(argv[0]);
1178 if (bts_nr >= net->num_bts) {
1179 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1180 VTY_NEWLINE);
1181 return CMD_WARNING;
1182 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001183 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001184 bts_paging_dump_vty(vty, bts);
1185
1186 return CMD_SUCCESS;
1187 }
1188 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001189 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001190 bts_paging_dump_vty(vty, bts);
1191 }
1192
1193 return CMD_SUCCESS;
1194}
1195
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001196DEFUN(show_paging_group,
1197 show_paging_group_cmd,
1198 "show paging-group <0-255> IMSI",
1199 SHOW_STR "Display the paging group\n"
1200 "BTS Number\n" "IMSI\n")
1201{
1202 struct gsm_network *net = gsmnet_from_vty(vty);
1203 struct gsm_bts *bts;
1204 unsigned int page_group;
1205 int bts_nr = atoi(argv[0]);
1206
1207 if (bts_nr >= net->num_bts) {
1208 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1209 return CMD_WARNING;
1210 }
1211
1212 bts = gsm_bts_num(net, bts_nr);
1213 if (!bts) {
1214 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1215 return CMD_WARNING;
1216 }
1217
1218 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1219 str_to_imsi(argv[1]));
1220 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1221 str_to_imsi(argv[1]), bts->nr,
1222 page_group, VTY_NEWLINE);
1223 return CMD_SUCCESS;
1224}
1225
Harald Welte5013b2a2009-08-07 13:29:14 +02001226DEFUN(cfg_net,
1227 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001228 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001229{
Harald Weltedcccb182010-05-16 20:52:23 +02001230 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001231 vty->node = GSMNET_NODE;
1232
1233 return CMD_SUCCESS;
1234}
1235
Harald Welte5013b2a2009-08-07 13:29:14 +02001236DEFUN(cfg_net_ncc,
1237 cfg_net_ncc_cmd,
1238 "network country code <1-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001239 "Set the GSM network country code\n"
1240 "Country commands\n"
1241 CODE_CMD_STR
1242 "Network Country Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001243{
Harald Weltedcccb182010-05-16 20:52:23 +02001244 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1245
Harald Welte5013b2a2009-08-07 13:29:14 +02001246 gsmnet->country_code = atoi(argv[0]);
1247
1248 return CMD_SUCCESS;
1249}
1250
1251DEFUN(cfg_net_mnc,
1252 cfg_net_mnc_cmd,
Dieter Spaar402cced2011-07-27 23:43:56 +02001253 "mobile network code <0-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001254 "Set the GSM mobile network code\n"
1255 "Network Commands\n"
1256 CODE_CMD_STR
1257 "Mobile Network Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001258{
Harald Weltedcccb182010-05-16 20:52:23 +02001259 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1260
Harald Welte5013b2a2009-08-07 13:29:14 +02001261 gsmnet->network_code = atoi(argv[0]);
1262
1263 return CMD_SUCCESS;
1264}
1265
1266DEFUN(cfg_net_name_short,
1267 cfg_net_name_short_cmd,
1268 "short name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001269 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001270{
Harald Weltedcccb182010-05-16 20:52:23 +02001271 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1272
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001273 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001274 return CMD_SUCCESS;
1275}
1276
1277DEFUN(cfg_net_name_long,
1278 cfg_net_name_long_cmd,
1279 "long name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001280 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001281{
Harald Weltedcccb182010-05-16 20:52:23 +02001282 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1283
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001284 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001285 return CMD_SUCCESS;
1286}
Harald Welte40f82892009-05-23 17:31:39 +00001287
Harald Welte (local)69de3972009-08-12 14:42:23 +02001288DEFUN(cfg_net_auth_policy,
1289 cfg_net_auth_policy_cmd,
1290 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001291 "Authentication (not cryptographic)\n"
1292 "Set the GSM network authentication policy\n"
1293 "Require the MS to be activated in HLR\n"
1294 "Accept all MS, whether in HLR or not\n"
1295 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001296{
1297 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001298 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001299
1300 gsmnet->auth_policy = policy;
1301
1302 return CMD_SUCCESS;
1303}
1304
Harald Welte1085c092009-11-18 20:33:19 +01001305DEFUN(cfg_net_reject_cause,
1306 cfg_net_reject_cause_cmd,
1307 "location updating reject cause <2-111>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001308 "Set the reject cause of location updating reject\n"
1309 "Set the reject cause of location updating reject\n"
1310 "Set the reject cause of location updating reject\n"
1311 "Set the reject cause of location updating reject\n"
1312 "Cause Value as Per GSM TS 04.08\n")
Harald Welte1085c092009-11-18 20:33:19 +01001313{
Harald Weltedcccb182010-05-16 20:52:23 +02001314 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1315
Harald Welte1085c092009-11-18 20:33:19 +01001316 gsmnet->reject_cause = atoi(argv[0]);
1317
1318 return CMD_SUCCESS;
1319}
1320
Harald Welte4381cfe2009-08-30 15:47:06 +09001321DEFUN(cfg_net_encryption,
1322 cfg_net_encryption_cmd,
Harald Weltead66a2d2012-07-04 21:37:56 +02001323 "encryption a5 (0|1|2|3)",
Harald Welte28326062010-05-14 20:05:17 +02001324 "Encryption options\n"
1325 "A5 encryption\n" "A5/0: No encryption\n"
Harald Weltead66a2d2012-07-04 21:37:56 +02001326 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1327 "A5/3: 'New' Secure Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001328{
Harald Weltedcccb182010-05-16 20:52:23 +02001329 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1330
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001331 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001332
1333 return CMD_SUCCESS;
1334}
1335
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001336DEFUN(cfg_net_neci,
1337 cfg_net_neci_cmd,
1338 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001339 "New Establish Cause Indication\n"
1340 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001341{
Harald Weltedcccb182010-05-16 20:52:23 +02001342 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1343
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001344 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001345 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001346 return CMD_SUCCESS;
1347}
1348
Harald Welteeab84a12009-12-13 10:53:12 +01001349DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1350 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001351 "Radio Resource Location Protocol\n"
1352 "Set the Radio Resource Location Protocol Mode\n"
1353 "Don't send RRLP request\n"
1354 "Request MS-based location\n"
1355 "Request any location, prefer MS-based\n"
1356 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001357{
Harald Weltedcccb182010-05-16 20:52:23 +02001358 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1359
Harald Welteeab84a12009-12-13 10:53:12 +01001360 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1361
1362 return CMD_SUCCESS;
1363}
1364
Harald Welte648b6ce2009-12-14 09:00:24 +01001365DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1366 "mm info (0|1)",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001367 "Mobility Management\n"
1368 "Send MM INFO after LOC UPD ACCEPT\n"
1369 "Disable\n" "Enable\n")
Harald Welte648b6ce2009-12-14 09:00:24 +01001370{
Harald Weltedcccb182010-05-16 20:52:23 +02001371 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1372
Harald Welte648b6ce2009-12-14 09:00:24 +01001373 gsmnet->send_mm_info = atoi(argv[0]);
1374
1375 return CMD_SUCCESS;
1376}
1377
Harald Welte8f0ed552010-05-11 21:53:49 +02001378#define HANDOVER_STR "Handover Options\n"
1379
Harald Weltebc814502009-12-19 21:41:52 +01001380DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1381 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001382 HANDOVER_STR
1383 "Don't perform in-call handover\n"
1384 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001385{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001386 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001387 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001388
1389 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001390 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1391 "is enabled by using the -P command line option%s",
1392 VTY_NEWLINE);
1393 return CMD_WARNING;
1394 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001395 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001396
1397 return CMD_SUCCESS;
1398}
1399
Harald Welte8f0ed552010-05-11 21:53:49 +02001400#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1401#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1402#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1403#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001404#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001405
Harald Welteb720bd32009-12-21 16:51:50 +01001406DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1407 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001408 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001409 "How many RxLev measurements are used for averaging\n"
1410 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001411{
Harald Weltedcccb182010-05-16 20:52:23 +02001412 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001413 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1414 return CMD_SUCCESS;
1415}
1416
1417DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1418 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001419 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001420 "How many RxQual measurements are used for averaging\n"
1421 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001422{
Harald Weltedcccb182010-05-16 20:52:23 +02001423 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001424 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1425 return CMD_SUCCESS;
1426}
1427
1428DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1429 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001430 HO_WIN_RXLEV_STR "Neighbor\n"
1431 "How many RxQual measurements are used for averaging\n"
1432 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001433{
Harald Weltedcccb182010-05-16 20:52:23 +02001434 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001435 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1436 return CMD_SUCCESS;
1437}
1438
1439DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1440 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001441 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001442 "How often to check if we have a better cell (SACCH frames)\n"
1443 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001444{
Harald Weltedcccb182010-05-16 20:52:23 +02001445 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001446 gsmnet->handover.pwr_interval = atoi(argv[0]);
1447 return CMD_SUCCESS;
1448}
1449
1450DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1451 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001452 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001453 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1454 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001455{
Harald Weltedcccb182010-05-16 20:52:23 +02001456 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001457 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1458 return CMD_SUCCESS;
1459}
1460
1461DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1462 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001463 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001464 "How big is the maximum timing advance before HO is forced\n"
1465 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001466{
Harald Weltedcccb182010-05-16 20:52:23 +02001467 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001468 gsmnet->handover.max_distance = atoi(argv[0]);
1469 return CMD_SUCCESS;
1470}
Harald Weltebc814502009-12-19 21:41:52 +01001471
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001472DEFUN(cfg_net_pag_any_tch,
1473 cfg_net_pag_any_tch_cmd,
1474 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001475 "Assign a TCH when receiving a Paging Any request\n"
1476 "Any Channel\n" "Use\n" "TCH\n"
1477 "Do not use TCH for Paging Request Any\n"
1478 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001479{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001480 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001481 gsmnet->pag_any_tch = atoi(argv[0]);
1482 gsm_net_update_ctype(gsmnet);
1483 return CMD_SUCCESS;
1484}
1485
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001486#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001487 DEFUN(cfg_net_T##number, \
1488 cfg_net_T##number##_cmd, \
1489 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001490 "Configure GSM Timers\n" \
Holger Hans Peter Freyther5dd295f2014-04-11 19:30:27 +02001491 doc "Timer Value in seconds\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001492{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001493 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001494 int value = atoi(argv[0]); \
1495 \
1496 if (value < 0 || value > 65535) { \
1497 vty_out(vty, "Timer value %s out of range.%s", \
1498 argv[0], VTY_NEWLINE); \
1499 return CMD_WARNING; \
1500 } \
1501 \
1502 gsmnet->T##number = value; \
1503 return CMD_SUCCESS; \
1504}
1505
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001506DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1507DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001508DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001509DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001510DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001511DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1512DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1513DECLARE_TIMER(3115, "Currently not used.\n")
1514DECLARE_TIMER(3117, "Currently not used.\n")
1515DECLARE_TIMER(3119, "Currently not used.\n")
1516DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1517DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001518
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001519DEFUN(cfg_net_dtx,
1520 cfg_net_dtx_cmd,
1521 "dtx-used (0|1)",
1522 "Enable the usage of DTX.\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001523 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001524{
1525 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1526 gsmnet->dtx_enabled = atoi(argv[0]);
1527 return CMD_SUCCESS;
1528}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001529
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001530DEFUN(cfg_net_subscr_keep,
1531 cfg_net_subscr_keep_cmd,
1532 "subscriber-keep-in-ram (0|1)",
1533 "Keep unused subscribers in RAM.\n"
1534 "Delete unused subscribers\n" "Keep unused subscribers\n")
1535{
1536 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Jacob Erlbeck1e30a282014-12-03 09:28:24 +01001537 gsmnet->subscr_group->keep_subscr = atoi(argv[0]);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001538 return CMD_SUCCESS;
1539}
1540
Harald Welte5258fc42009-03-28 19:07:53 +00001541/* per-BTS configuration */
1542DEFUN(cfg_bts,
1543 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001544 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001545 "Select a BTS to configure\n"
1546 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001547{
Harald Weltedcccb182010-05-16 20:52:23 +02001548 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001549 int bts_nr = atoi(argv[0]);
1550 struct gsm_bts *bts;
1551
Harald Weltee441d9c2009-06-21 16:17:15 +02001552 if (bts_nr > gsmnet->num_bts) {
1553 vty_out(vty, "%% The next unused BTS number is %u%s",
1554 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001555 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001556 } else if (bts_nr == gsmnet->num_bts) {
1557 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001558 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1559 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001560 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001561 bts = gsm_bts_num(gsmnet, bts_nr);
1562
Daniel Willmannf15c2762010-01-11 13:43:07 +01001563 if (!bts) {
1564 vty_out(vty, "%% Unable to allocate BTS %u%s",
1565 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001566 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001567 }
Harald Welte5258fc42009-03-28 19:07:53 +00001568
1569 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001570 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001571 vty->node = BTS_NODE;
1572
1573 return CMD_SUCCESS;
1574}
1575
1576DEFUN(cfg_bts_type,
1577 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001578 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001579 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001580{
1581 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001582 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001583
Harald Welte39315c42010-01-10 18:01:52 +01001584 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1585 if (rc < 0)
1586 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001587
Harald Welte5258fc42009-03-28 19:07:53 +00001588 return CMD_SUCCESS;
1589}
1590
Harald Weltefcd24452009-06-20 18:15:19 +02001591DEFUN(cfg_bts_band,
1592 cfg_bts_band_cmd,
1593 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001594 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001595{
1596 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001597 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001598
1599 if (band < 0) {
1600 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1601 band, VTY_NEWLINE);
1602 return CMD_WARNING;
1603 }
1604
1605 bts->band = band;
1606
1607 return CMD_SUCCESS;
1608}
1609
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001610DEFUN(cfg_bts_ci,
1611 cfg_bts_ci_cmd,
1612 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001613 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001614{
1615 struct gsm_bts *bts = vty->index;
1616 int ci = atoi(argv[0]);
1617
1618 if (ci < 0 || ci > 0xffff) {
1619 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1620 ci, VTY_NEWLINE);
1621 return CMD_WARNING;
1622 }
1623 bts->cell_identity = ci;
1624
1625 return CMD_SUCCESS;
1626}
1627
Harald Welte5258fc42009-03-28 19:07:53 +00001628DEFUN(cfg_bts_lac,
1629 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001630 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001631 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001632{
1633 struct gsm_bts *bts = vty->index;
1634 int lac = atoi(argv[0]);
1635
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001636 if (lac < 0 || lac > 0xffff) {
1637 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001638 lac, VTY_NEWLINE);
1639 return CMD_WARNING;
1640 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001641
1642 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1643 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1644 lac, VTY_NEWLINE);
1645 return CMD_WARNING;
1646 }
1647
Harald Welte5258fc42009-03-28 19:07:53 +00001648 bts->location_area_code = lac;
1649
1650 return CMD_SUCCESS;
1651}
1652
Harald Weltea43f7892009-12-01 18:04:30 +05301653
Harald Welte5258fc42009-03-28 19:07:53 +00001654DEFUN(cfg_bts_tsc,
1655 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001656 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001657 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001658{
1659 struct gsm_bts *bts = vty->index;
1660 int tsc = atoi(argv[0]);
1661
Harald Welte903aaea2014-01-19 17:10:50 +01001662 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC)) {
1663 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
1664 "falling back to BCC%s", VTY_NEWLINE);
1665 bts->tsc = bts->bsic & 7;
1666 return CMD_WARNING;
1667 }
1668
Harald Welte5258fc42009-03-28 19:07:53 +00001669 bts->tsc = tsc;
1670
1671 return CMD_SUCCESS;
1672}
1673
Harald Welte78f2f502009-05-23 16:56:52 +00001674DEFUN(cfg_bts_bsic,
1675 cfg_bts_bsic_cmd,
1676 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001677 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1678 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001679{
1680 struct gsm_bts *bts = vty->index;
1681 int bsic = atoi(argv[0]);
1682
1683 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001684 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001685 bsic, VTY_NEWLINE);
1686 return CMD_WARNING;
1687 }
1688 bts->bsic = bsic;
1689
Harald Welte903aaea2014-01-19 17:10:50 +01001690 /* automatically re-configuer the TSC if we change the BCC
1691 * which is the lower 3 bits of the BSIC */
1692 if (!gsm_bts_has_feature(bts, BTS_FEAT_MULTI_TSC))
1693 bts->tsc = bts->bsic & 7;
1694
Harald Welte78f2f502009-05-23 16:56:52 +00001695 return CMD_SUCCESS;
1696}
1697
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001698DEFUN(cfg_bts_timezone,
1699 cfg_bts_timezone_cmd,
1700 "timezone <-19-19> (0|15|30|45)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001701 "Set the Timezone Offset of this BTS\n"
1702 "Timezone offset (hours)\n"
1703 "Timezone offset (00 minutes)\n"
1704 "Timezone offset (15 minutes)\n"
1705 "Timezone offset (30 minutes)\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001706 "Timezone offset (45 minutes)\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001707 )
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001708{
1709 struct gsm_bts *bts = vty->index;
1710 int tzhr = atoi(argv[0]);
1711 int tzmn = atoi(argv[1]);
1712
Harald Welte45f91712012-07-08 16:48:11 +02001713 bts->tz.hr = tzhr;
1714 bts->tz.mn = tzmn;
Jacob Erlbeck946d1412013-09-17 13:59:29 +02001715 bts->tz.dst = 0;
1716 bts->tz.override = 1;
1717
1718 return CMD_SUCCESS;
1719}
1720
1721DEFUN(cfg_bts_timezone_dst,
1722 cfg_bts_timezone_dst_cmd,
1723 "timezone <-19-19> (0|15|30|45) <0-2>",
1724 "Set the Timezone Offset of this BTS\n"
1725 "Timezone offset (hours)\n"
1726 "Timezone offset (00 minutes)\n"
1727 "Timezone offset (15 minutes)\n"
1728 "Timezone offset (30 minutes)\n"
1729 "Timezone offset (45 minutes)\n"
1730 "DST offset (hours)\n"
1731 )
1732{
1733 struct gsm_bts *bts = vty->index;
1734 int tzhr = atoi(argv[0]);
1735 int tzmn = atoi(argv[1]);
1736 int tzdst = atoi(argv[2]);
1737
1738 bts->tz.hr = tzhr;
1739 bts->tz.mn = tzmn;
1740 bts->tz.dst = tzdst;
Harald Welte45f91712012-07-08 16:48:11 +02001741 bts->tz.override = 1;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001742
1743 return CMD_SUCCESS;
1744}
1745
1746DEFUN(cfg_bts_no_timezone,
1747 cfg_bts_no_timezone_cmd,
1748 "no timezone",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001749 NO_STR
1750 "Disable BTS specific timezone\n")
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001751{
1752 struct gsm_bts *bts = vty->index;
Harald Welte45f91712012-07-08 16:48:11 +02001753
1754 bts->tz.override = 0;
1755
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001756 return CMD_SUCCESS;
1757}
Harald Welte78f2f502009-05-23 16:56:52 +00001758
Harald Welte4cc34222009-05-01 15:12:31 +00001759DEFUN(cfg_bts_unit_id,
1760 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001761 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001762 "Abis/IP specific options\n"
1763 "Set the IPA BTS Unit ID\n"
1764 "Unit ID (Site)\n"
1765 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001766{
1767 struct gsm_bts *bts = vty->index;
1768 int site_id = atoi(argv[0]);
1769 int bts_id = atoi(argv[1]);
1770
Harald Welte07dc73d2009-08-07 13:27:09 +02001771 if (!is_ipaccess_bts(bts)) {
1772 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1773 return CMD_WARNING;
1774 }
1775
Harald Welte4cc34222009-05-01 15:12:31 +00001776 bts->ip_access.site_id = site_id;
1777 bts->ip_access.bts_id = bts_id;
1778
1779 return CMD_SUCCESS;
1780}
1781
Harald Welte8b291802013-03-12 13:57:05 +01001782DEFUN(cfg_bts_rsl_ip,
1783 cfg_bts_rsl_ip_cmd,
1784 "ip.access rsl-ip A.B.C.D",
1785 "Abis/IP specific options\n"
1786 "Set the IPA RSL IP Address of the BSC\n"
1787 "Destination IP address for RSL connection\n")
1788{
1789 struct gsm_bts *bts = vty->index;
1790 struct in_addr ia;
1791
1792 if (!is_ipaccess_bts(bts)) {
1793 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1794 return CMD_WARNING;
1795 }
1796
1797 inet_aton(argv[0], &ia);
1798 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1799
1800 return CMD_SUCCESS;
1801}
1802
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001803#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b291802013-03-12 13:57:05 +01001804
Sylvain Munautc9519462011-10-17 14:04:55 +02001805DEFUN(cfg_bts_nokia_site_skip_reset,
1806 cfg_bts_nokia_site_skip_reset_cmd,
1807 "nokia_site skip-reset (0|1)",
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001808 NOKIA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001809 "Skip the reset step during bootstrap process of this BTS\n"
1810 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001811{
1812 struct gsm_bts *bts = vty->index;
1813
1814 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1815 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1816 return CMD_WARNING;
1817 }
1818
1819 bts->nokia.skip_reset = atoi(argv[0]);
1820
1821 return CMD_SUCCESS;
1822}
1823
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01001824DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1825 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1826 "nokia_site no-local-rel-conf (0|1)",
1827 NOKIA_STR
1828 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1829 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1830{
1831 struct gsm_bts *bts = vty->index;
1832
1833 if (!is_nokia_bts(bts)) {
1834 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1835 VTY_NEWLINE);
1836 return CMD_WARNING;
1837 }
1838
1839 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1840
1841 return CMD_SUCCESS;
1842}
1843
Sipos Csaba56e17662015-02-07 13:27:36 +01001844DEFUN(cfg_bts_nokia_site_bts_reset_timer_cnf,
1845 cfg_bts_nokia_site_bts_reset_timer_cnf_cmd,
1846 "nokia_site bts-reset-timer <15-100>",
1847 NOKIA_STR
1848 "The amount of time (in sec.) between BTS_RESET is sent,\n"
1849 "and the BTS is being bootstrapped.\n")
1850{
1851 struct gsm_bts *bts = vty->index;
1852
1853 if (!is_nokia_bts(bts)) {
1854 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1855 VTY_NEWLINE);
1856 return CMD_WARNING;
1857 }
1858
1859 bts->nokia.bts_reset_timer_cnf = atoi(argv[0]);
1860
1861 return CMD_SUCCESS;
1862}
Harald Welte8f0ed552010-05-11 21:53:49 +02001863#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001864#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001865
Harald Welte8175e952009-10-20 00:22:00 +02001866DEFUN(cfg_bts_stream_id,
1867 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001868 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001869 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001870 "Set the ip.access Stream ID of the OML link of this BTS\n"
1871 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001872{
1873 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001874 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001875
1876 if (!is_ipaccess_bts(bts)) {
1877 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1878 return CMD_WARNING;
1879 }
1880
1881 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001882 /* This is used by e1inp_bind_ops callback for each BTS model. */
1883 bts->oml_e1_link.e1_nr = linenr;
1884
1885 return CMD_SUCCESS;
1886}
1887
Harald Welted13e0cd2012-08-17 09:52:03 +02001888#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001889
Harald Welte42581822009-08-08 16:12:58 +02001890DEFUN(cfg_bts_oml_e1,
1891 cfg_bts_oml_e1_cmd,
1892 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001893 OML_E1_STR
1894 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001895 "E1/T1 line number to be used for OML\n"
1896 "E1/T1 timeslot to be used for OML\n"
1897 "E1/T1 timeslot to be used for OML\n"
1898 "E1/T1 sub-slot to be used for OML\n"
1899 "Use E1/T1 sub-slot 0\n"
1900 "Use E1/T1 sub-slot 1\n"
1901 "Use E1/T1 sub-slot 2\n"
1902 "Use E1/T1 sub-slot 3\n"
1903 "Use full E1 slot 3\n"
1904 )
Harald Welte42581822009-08-08 16:12:58 +02001905{
1906 struct gsm_bts *bts = vty->index;
1907
1908 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1909
1910 return CMD_SUCCESS;
1911}
1912
1913
1914DEFUN(cfg_bts_oml_e1_tei,
1915 cfg_bts_oml_e1_tei_cmd,
1916 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001917 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001918 "Set the TEI to be used for OML\n"
1919 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001920{
1921 struct gsm_bts *bts = vty->index;
1922
1923 bts->oml_tei = atoi(argv[0]);
1924
1925 return CMD_SUCCESS;
1926}
1927
Harald Welte7a8fa412009-08-10 13:48:16 +02001928DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1929 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001930 "Channnel Allocator\n" "Channel Allocator\n"
1931 "Allocate Timeslots and Transceivers in ascending order\n"
1932 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001933{
1934 struct gsm_bts *bts = vty->index;
1935
1936 if (!strcmp(argv[0], "ascending"))
1937 bts->chan_alloc_reverse = 0;
1938 else
1939 bts->chan_alloc_reverse = 1;
1940
1941 return CMD_SUCCESS;
1942}
1943
Harald Welte8f0ed552010-05-11 21:53:49 +02001944#define RACH_STR "Random Access Control Channel\n"
1945
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001946DEFUN(cfg_bts_rach_tx_integer,
1947 cfg_bts_rach_tx_integer_cmd,
1948 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001949 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001950 "Set the raw tx integer value in RACH Control parameters IE\n"
1951 "Set the raw tx integer value in RACH Control parameters IE\n"
1952 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001953{
1954 struct gsm_bts *bts = vty->index;
1955 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1956 return CMD_SUCCESS;
1957}
1958
1959DEFUN(cfg_bts_rach_max_trans,
1960 cfg_bts_rach_max_trans_cmd,
1961 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001962 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001963 "Set the maximum number of RACH burst transmissions\n"
1964 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001965 "Maximum number of 1 RACH burst transmissions\n"
1966 "Maximum number of 2 RACH burst transmissions\n"
1967 "Maximum number of 4 RACH burst transmissions\n"
1968 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001969{
1970 struct gsm_bts *bts = vty->index;
1971 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1972 return CMD_SUCCESS;
1973}
1974
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001975#define CD_STR "Channel Description\n"
1976
1977DEFUN(cfg_bts_chan_desc_att,
1978 cfg_bts_chan_desc_att_cmd,
1979 "channel-descrption attach (0|1)",
1980 CD_STR
1981 "Set if attachment is required\n"
1982 "Attachment is NOT required\n"
1983 "Attachment is required (standard)\n")
1984{
1985 struct gsm_bts *bts = vty->index;
1986 bts->si_common.chan_desc.att = atoi(argv[0]);
1987 return CMD_SUCCESS;
1988}
1989
1990DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1991 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1992 "channel-descrption bs-pa-mfrms <2-9>",
1993 CD_STR
1994 "Set number of multiframe periods for paging groups\n"
1995 "Number of multiframe periods for paging groups\n")
1996{
1997 struct gsm_bts *bts = vty->index;
1998 int bs_pa_mfrms = atoi(argv[0]);
1999
2000 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
2001 return CMD_SUCCESS;
2002}
2003
2004DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
2005 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
2006 "channel-descrption bs-ag-blks-res <0-7>",
2007 CD_STR
2008 "Set number of blocks reserved for access grant\n"
2009 "Number of blocks reserved for access grant\n")
2010{
2011 struct gsm_bts *bts = vty->index;
2012 int bs_ag_blks_res = atoi(argv[0]);
2013
2014 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
2015 return CMD_SUCCESS;
2016}
2017
Harald Welte8f0ed552010-05-11 21:53:49 +02002018#define NM_STR "Network Management\n"
2019
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002020DEFUN(cfg_bts_rach_nm_b_thresh,
2021 cfg_bts_rach_nm_b_thresh_cmd,
2022 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002023 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002024 "Set the NM Busy Threshold\n"
2025 "Set the NM Busy Threshold\n"
2026 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002027{
2028 struct gsm_bts *bts = vty->index;
2029 bts->rach_b_thresh = atoi(argv[0]);
2030 return CMD_SUCCESS;
2031}
2032
2033DEFUN(cfg_bts_rach_nm_ldavg,
2034 cfg_bts_rach_nm_ldavg_cmd,
2035 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002036 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002037 "Set the NM Loadaverage Slots value\n"
2038 "Set the NM Loadaverage Slots value\n"
2039 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08002040{
2041 struct gsm_bts *bts = vty->index;
2042 bts->rach_ldavg_slots = atoi(argv[0]);
2043 return CMD_SUCCESS;
2044}
2045
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002046DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
2047 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002048 "Should this cell be barred from access?\n"
2049 "Should this cell be barred from access?\n"
2050 "Cell should NOT be barred\n"
2051 "Cell should be barred\n")
2052
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002053{
2054 struct gsm_bts *bts = vty->index;
2055
Harald Welte71355012009-12-21 23:08:18 +01002056 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02002057
2058 return CMD_SUCCESS;
2059}
2060
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002061DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2062 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002063 RACH_STR
2064 "Should this cell allow emergency calls?\n"
2065 "Should this cell allow emergency calls?\n"
2066 "Should this cell allow emergency calls?\n"
2067 "Do NOT allow emergency calls\n"
2068 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08002069{
2070 struct gsm_bts *bts = vty->index;
2071
2072 if (atoi(argv[0]) == 0)
2073 bts->si_common.rach_control.t2 |= 0x4;
2074 else
2075 bts->si_common.rach_control.t2 &= ~0x4;
2076
2077 return CMD_SUCCESS;
2078}
2079
Ivan Kluchnikov67920592013-09-16 13:13:04 +04002080DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2081 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2082 RACH_STR
2083 "Set access control class\n"
2084 "Access control class 0\n"
2085 "Access control class 1\n"
2086 "Access control class 2\n"
2087 "Access control class 3\n"
2088 "Access control class 4\n"
2089 "Access control class 5\n"
2090 "Access control class 6\n"
2091 "Access control class 7\n"
2092 "Access control class 8\n"
2093 "Access control class 9\n"
2094 "Access control class 11 for PLMN use\n"
2095 "Access control class 12 for security services\n"
2096 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2097 "Access control class 14 for emergency services\n"
2098 "Access control class 15 for PLMN staff\n"
2099 "barred to use access control class\n"
2100 "allowed to use access control class\n")
2101{
2102 struct gsm_bts *bts = vty->index;
2103
2104 uint8_t control_class;
2105 uint8_t allowed = 0;
2106
2107 if (strcmp(argv[1], "allowed") == 0)
2108 allowed = 1;
2109
2110 control_class = atoi(argv[0]);
2111 if (control_class < 8)
2112 if (allowed)
2113 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2114 else
2115 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2116 else
2117 if (allowed)
2118 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2119 else
2120 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2121
2122 return CMD_SUCCESS;
2123}
2124
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002125DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2126 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002127 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002128 "Maximum transmit power of the MS\n"
2129 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002130 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002131{
2132 struct gsm_bts *bts = vty->index;
2133
2134 bts->ms_max_power = atoi(argv[0]);
2135
2136 return CMD_SUCCESS;
2137}
2138
Harald Weltecfaabbb2012-08-16 23:23:50 +02002139#define CELL_STR "Cell Parameters\n"
2140
Harald Welte73225282009-12-12 18:17:25 +01002141DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2142 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002143 CELL_STR "Cell re-selection parameters\n"
2144 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002145 "Cell Re-Selection Hysteresis in dB")
2146{
2147 struct gsm_bts *bts = vty->index;
2148
2149 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2150
2151 return CMD_SUCCESS;
2152}
2153
2154DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2155 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002156 "Minimum RxLev needed for cell access\n"
2157 "Minimum RxLev needed for cell access\n"
2158 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002159 "Minimum RxLev needed for cell access (better than -110dBm)")
2160{
2161 struct gsm_bts *bts = vty->index;
2162
2163 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2164
2165 return CMD_SUCCESS;
2166}
2167
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002168DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2169 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002170 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2171 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002172{
2173 struct gsm_bts *bts = vty->index;
2174
2175 bts->si_common.cell_ro_sel_par.present = 1;
2176 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2177
2178 return CMD_SUCCESS;
2179}
2180
2181DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2182 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002183 CELL_STR "Cell Re-Selection Parameters\n"
2184 "Cell Re-Selection Offset (CRO) in dB\n"
2185 "Cell Re-Selection Offset (CRO) in dB\n"
2186 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002187{
2188 struct gsm_bts *bts = vty->index;
2189
2190 bts->si_common.cell_ro_sel_par.present = 1;
2191 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2192
2193 return CMD_SUCCESS;
2194}
2195
2196DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2197 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002198 "Cell selection temporary negative offset\n"
2199 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002200 "Cell selection temporary negative offset in dB")
2201{
2202 struct gsm_bts *bts = vty->index;
2203
2204 bts->si_common.cell_ro_sel_par.present = 1;
2205 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2206
2207 return CMD_SUCCESS;
2208}
2209
2210DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2211 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002212 "Cell selection temporary negative offset\n"
2213 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002214 "Sets cell selection temporary negative offset to infinity")
2215{
2216 struct gsm_bts *bts = vty->index;
2217
2218 bts->si_common.cell_ro_sel_par.present = 1;
2219 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2220
2221 return CMD_SUCCESS;
2222}
2223
2224DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2225 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002226 "Cell selection penalty time\n"
2227 "Cell selection penalty time\n"
2228 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002229{
2230 struct gsm_bts *bts = vty->index;
2231
2232 bts->si_common.cell_ro_sel_par.present = 1;
2233 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2234
2235 return CMD_SUCCESS;
2236}
2237
2238DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2239 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002240 "Cell selection penalty time\n"
2241 "Cell selection penalty time\n"
2242 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002243 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2244 "and TEMPORARY_OFFSET is ignored)")
2245{
2246 struct gsm_bts *bts = vty->index;
2247
2248 bts->si_common.cell_ro_sel_par.present = 1;
2249 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2250
2251 return CMD_SUCCESS;
2252}
2253
Harald Welte (local)efc92312009-08-14 23:09:25 +02002254DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002255 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002256 "Periodic Location Updating Interval\n"
2257 "Periodic Location Updating Interval\n"
2258 "Periodic Location Updating Interval\n"
2259 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002260{
2261 struct gsm_bts *bts = vty->index;
2262
Dieter Spaard6613e02010-10-05 21:10:55 +02002263 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002264
2265 return CMD_SUCCESS;
2266}
2267
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002268DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2269 "no periodic location update",
2270 NO_STR
2271 "Periodic Location Updating Interval\n"
2272 "Periodic Location Updating Interval\n"
2273 "Periodic Location Updating Interval\n")
2274{
2275 struct gsm_bts *bts = vty->index;
2276
2277 bts->si_common.chan_desc.t3212 = 0;
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01002278
2279 return CMD_SUCCESS;
2280}
2281
2282DEFUN(cfg_bts_radio_link_timeout, cfg_bts_radio_link_timeout_cmd,
2283 "radio-link-timeout <4-64>",
2284 "Radio link timeout criterion (BTS side)\n"
2285 "Radio link timeout value (lost SACCH block)\n")
2286{
2287 struct gsm_bts *bts = vty->index;
2288
2289 set_radio_link_timeout(&bts->si_common.cell_options, atoi(argv[0]));
2290
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002291 return CMD_SUCCESS;
2292}
2293
Harald Welte8f0ed552010-05-11 21:53:49 +02002294#define GPRS_TEXT "GPRS Packet Network\n"
2295
Harald Welteaf387632010-03-14 23:30:30 +08002296DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002297 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002298 GPRS_TEXT
2299 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002300 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002301 "GPRS BSSGP VC Identifier")
2302{
2303 struct gsm_bts *bts = vty->index;
2304
Harald Welte4511d892010-04-18 15:51:20 +02002305 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002306 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2307 return CMD_WARNING;
2308 }
2309
Harald Welte97a282b2010-03-14 15:37:43 +08002310 bts->gprs.cell.bvci = atoi(argv[0]);
2311
2312 return CMD_SUCCESS;
2313}
2314
Harald Weltea5731cf2010-03-22 11:48:36 +08002315DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2316 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002317 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002318 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002319 "GPRS NS Entity Identifier")
2320{
2321 struct gsm_bts *bts = vty->index;
2322
Harald Welte4511d892010-04-18 15:51:20 +02002323 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002324 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2325 return CMD_WARNING;
2326 }
2327
2328 bts->gprs.nse.nsei = atoi(argv[0]);
2329
2330 return CMD_SUCCESS;
2331}
2332
Harald Welte8f0ed552010-05-11 21:53:49 +02002333#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2334 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002335
Harald Welte97a282b2010-03-14 15:37:43 +08002336DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2337 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002338 GPRS_TEXT NSVC_TEXT
2339 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002340 "GPRS NS VC Identifier")
2341{
2342 struct gsm_bts *bts = vty->index;
2343 int idx = atoi(argv[0]);
2344
Harald Welte4511d892010-04-18 15:51:20 +02002345 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002346 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2347 return CMD_WARNING;
2348 }
2349
Harald Welte97a282b2010-03-14 15:37:43 +08002350 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2351
2352 return CMD_SUCCESS;
2353}
2354
Harald Welteaf387632010-03-14 23:30:30 +08002355DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2356 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002357 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002358 "GPRS NS Local UDP Port\n"
2359 "GPRS NS Local UDP Port\n"
2360 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002361 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002362{
2363 struct gsm_bts *bts = vty->index;
2364 int idx = atoi(argv[0]);
2365
Harald Welte4511d892010-04-18 15:51:20 +02002366 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002367 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2368 return CMD_WARNING;
2369 }
2370
Harald Welteaf387632010-03-14 23:30:30 +08002371 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2372
2373 return CMD_SUCCESS;
2374}
2375
2376DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2377 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002378 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002379 "GPRS NS Remote UDP Port\n"
2380 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002381 "GPRS NS Remote UDP Port\n"
2382 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002383{
2384 struct gsm_bts *bts = vty->index;
2385 int idx = atoi(argv[0]);
2386
Harald Welte4511d892010-04-18 15:51:20 +02002387 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002388 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2389 return CMD_WARNING;
2390 }
2391
Harald Welteaf387632010-03-14 23:30:30 +08002392 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2393
2394 return CMD_SUCCESS;
2395}
2396
2397DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2398 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002399 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002400 "GPRS NS Remote IP Address\n"
2401 "GPRS NS Remote IP Address\n"
2402 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002403{
2404 struct gsm_bts *bts = vty->index;
2405 int idx = atoi(argv[0]);
2406 struct in_addr ia;
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 Welteaf387632010-03-14 23:30:30 +08002413 inet_aton(argv[1], &ia);
2414 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2415
2416 return CMD_SUCCESS;
2417}
2418
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002419DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002420 "paging free <-1-1024>",
2421 "Paging options\n"
2422 "Only page when having a certain amount of free slots\n"
2423 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002424{
2425 struct gsm_bts *bts = vty->index;
2426
2427 bts->paging.free_chans_need = atoi(argv[0]);
2428 return CMD_SUCCESS;
2429}
2430
Harald Welte615e9562010-05-11 23:50:21 +02002431DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2432 "gprs ns timer " NS_TIMERS " <0-255>",
2433 GPRS_TEXT "Network Service\n"
2434 "Network Service Timer\n"
2435 NS_TIMERS_HELP "Timer Value\n")
2436{
2437 struct gsm_bts *bts = vty->index;
2438 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2439 int val = atoi(argv[1]);
2440
2441 if (bts->gprs.mode == BTS_GPRS_NONE) {
2442 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2443 return CMD_WARNING;
2444 }
2445
2446 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2447 return CMD_WARNING;
2448
2449 bts->gprs.nse.timer[idx] = val;
2450
2451 return CMD_SUCCESS;
2452}
2453
2454#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 +02002455#define BSSGP_TIMERS_HELP \
2456 "Tbvc-block timeout\n" \
2457 "Tbvc-block retries\n" \
2458 "Tbvc-unblock retries\n" \
2459 "Tbvcc-reset timeout\n" \
2460 "Tbvc-reset retries\n" \
2461 "Tbvc-suspend timeout\n" \
2462 "Tbvc-suspend retries\n" \
2463 "Tbvc-resume timeout\n" \
2464 "Tbvc-resume retries\n" \
2465 "Tbvc-capa-update timeout\n" \
2466 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002467
2468DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2469 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2470 GPRS_TEXT "Cell / BSSGP\n"
2471 "Cell/BSSGP Timer\n"
2472 BSSGP_TIMERS_HELP "Timer Value\n")
2473{
2474 struct gsm_bts *bts = vty->index;
2475 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2476 int val = atoi(argv[1]);
2477
2478 if (bts->gprs.mode == BTS_GPRS_NONE) {
2479 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2480 return CMD_WARNING;
2481 }
2482
2483 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2484 return CMD_WARNING;
2485
2486 bts->gprs.cell.timer[idx] = val;
2487
2488 return CMD_SUCCESS;
2489}
2490
Harald Welte97a282b2010-03-14 15:37:43 +08002491DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2492 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002493 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002494 "GPRS Routing Area Code\n"
2495 "GPRS Routing Area Code\n"
2496 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002497{
2498 struct gsm_bts *bts = vty->index;
2499
Harald Welte4511d892010-04-18 15:51:20 +02002500 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002501 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2502 return CMD_WARNING;
2503 }
2504
Harald Welte97a282b2010-03-14 15:37:43 +08002505 bts->gprs.rac = atoi(argv[0]);
2506
2507 return CMD_SUCCESS;
2508}
2509
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002510DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2511 "gprs network-control-order (nc0|nc1|nc2)",
2512 GPRS_TEXT
2513 "GPRS Network Control Order\n"
2514 "MS controlled cell re-selection, no measurement reporting\n"
2515 "MS controlled cell re-selection, MS sends measurement reports\n"
2516 "Network controlled cell re-selection, MS sends measurement reports\n")
2517{
2518 struct gsm_bts *bts = vty->index;
2519
2520 if (bts->gprs.mode == BTS_GPRS_NONE) {
2521 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2522 return CMD_WARNING;
2523 }
2524
2525 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2526
2527 return CMD_SUCCESS;
2528}
2529
Harald Welte4511d892010-04-18 15:51:20 +02002530DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2531 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002532 GPRS_TEXT
2533 "GPRS Mode for this BTS\n"
2534 "GPRS Disabled on this BTS\n"
2535 "GPRS Enabled on this BTS\n"
2536 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002537{
2538 struct gsm_bts *bts = vty->index;
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002539 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0], NULL);
Harald Welteaf387632010-03-14 23:30:30 +08002540
Holger Hans Peter Freyther4e13a8f2015-01-31 22:16:00 +01002541 if (!bts_gprs_mode_is_compat(bts, mode)) {
Harald Weltef3d8e922010-06-14 22:44:42 +02002542 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2543 VTY_NEWLINE);
2544 return CMD_WARNING;
2545 }
2546
2547 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002548
2549 return CMD_SUCCESS;
2550}
2551
Harald Welte9fbff4a2010-07-30 11:50:09 +02002552#define SI_TEXT "System Information Messages\n"
2553#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)"
2554#define SI_TYPE_HELP "System Information Type 1\n" \
2555 "System Information Type 2\n" \
2556 "System Information Type 3\n" \
2557 "System Information Type 4\n" \
2558 "System Information Type 5\n" \
2559 "System Information Type 6\n" \
2560 "System Information Type 7\n" \
2561 "System Information Type 8\n" \
2562 "System Information Type 9\n" \
2563 "System Information Type 10\n" \
2564 "System Information Type 13\n" \
2565 "System Information Type 16\n" \
2566 "System Information Type 17\n" \
2567 "System Information Type 18\n" \
2568 "System Information Type 19\n" \
2569 "System Information Type 20\n" \
2570 "System Information Type 2bis\n" \
2571 "System Information Type 2ter\n" \
2572 "System Information Type 2quater\n" \
2573 "System Information Type 5bis\n" \
2574 "System Information Type 5ter\n"
2575
2576DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2577 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2578 SI_TEXT SI_TYPE_HELP
2579 "System Information Mode\n"
2580 "Static user-specified\n"
2581 "Dynamic, BSC-computed\n")
2582{
2583 struct gsm_bts *bts = vty->index;
2584 int type;
2585
2586 type = get_string_value(osmo_sitype_strs, argv[0]);
2587 if (type < 0) {
2588 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2589 return CMD_WARNING;
2590 }
2591
2592 if (!strcmp(argv[1], "static"))
2593 bts->si_mode_static |= (1 << type);
2594 else
2595 bts->si_mode_static &= ~(1 << type);
2596
2597 return CMD_SUCCESS;
2598}
2599
2600DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2601 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2602 SI_TEXT SI_TYPE_HELP
2603 "Static System Information filling\n"
2604 "Static user-specified SI content in HEX notation\n")
2605{
2606 struct gsm_bts *bts = vty->index;
2607 int rc, type;
2608
2609 type = get_string_value(osmo_sitype_strs, argv[0]);
2610 if (type < 0) {
2611 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2612 return CMD_WARNING;
2613 }
2614
2615 if (!(bts->si_mode_static & (1 << type))) {
2616 vty_out(vty, "SI Type %s is not configured in static mode%s",
2617 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2618 return CMD_WARNING;
2619 }
2620
Harald Welte290aaed2010-07-30 11:53:18 +02002621 /* Fill buffer with padding pattern */
2622 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2623
2624 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002625 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002626 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2627 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2628 return CMD_WARNING;
2629 }
2630
2631 /* Mark this SI as present */
2632 bts->si_valid |= (1 << type);
2633
2634 return CMD_SUCCESS;
2635}
2636
Harald Welte32c09622011-01-11 23:44:56 +01002637DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002638 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002639 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002640 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2641 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002642{
2643 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002644 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002645
Harald Welte64c07d22011-02-15 11:43:27 +01002646 switch (mode) {
2647 case NL_MODE_MANUAL_SI5SEP:
2648 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002649 /* make sure we clear the current list when switching to
2650 * manual mode */
2651 if (bts->neigh_list_manual_mode == 0)
2652 memset(&bts->si_common.data.neigh_list, 0,
2653 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002654 break;
2655 default:
2656 break;
2657 }
2658
2659 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002660
2661 return CMD_SUCCESS;
2662}
2663
2664DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002665 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002666 "Neighbor List\n" "Add to manual neighbor list\n"
2667 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2668 "ARFCN of neighbor\n")
2669{
2670 struct gsm_bts *bts = vty->index;
2671 struct bitvec *bv = &bts->si_common.neigh_list;
2672 uint16_t arfcn = atoi(argv[1]);
2673
2674 if (!bts->neigh_list_manual_mode) {
2675 vty_out(vty, "%% Cannot configure neighbor list in "
2676 "automatic mode%s", VTY_NEWLINE);
2677 return CMD_WARNING;
2678 }
2679
2680 if (!strcmp(argv[0], "add"))
2681 bitvec_set_bit_pos(bv, arfcn, 1);
2682 else
2683 bitvec_set_bit_pos(bv, arfcn, 0);
2684
2685 return CMD_SUCCESS;
2686}
2687
Harald Welte64c07d22011-02-15 11:43:27 +01002688DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002689 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002690 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002691 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2692 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2693 "ARFCN of neighbor\n")
2694{
2695 struct gsm_bts *bts = vty->index;
2696 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2697 uint16_t arfcn = atoi(argv[1]);
2698
2699 if (!bts->neigh_list_manual_mode) {
2700 vty_out(vty, "%% Cannot configure neighbor list in "
2701 "automatic mode%s", VTY_NEWLINE);
2702 return CMD_WARNING;
2703 }
2704
2705 if (!strcmp(argv[0], "add"))
2706 bitvec_set_bit_pos(bv, arfcn, 1);
2707 else
2708 bitvec_set_bit_pos(bv, arfcn, 0);
2709
2710 return CMD_SUCCESS;
2711}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002712
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002713#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2714
2715DEFUN(cfg_bts_excl_rf_lock,
2716 cfg_bts_excl_rf_lock_cmd,
2717 "rf-lock-exclude",
2718 EXCL_RFLOCK_STR)
2719{
2720 struct gsm_bts *bts = vty->index;
2721 bts->excl_from_rf_lock = 1;
2722 return CMD_SUCCESS;
2723}
2724
2725DEFUN(cfg_bts_no_excl_rf_lock,
2726 cfg_bts_no_excl_rf_lock_cmd,
2727 "no rf-lock-exclude",
2728 NO_STR EXCL_RFLOCK_STR)
2729{
2730 struct gsm_bts *bts = vty->index;
2731 bts->excl_from_rf_lock = 0;
2732 return CMD_SUCCESS;
2733}
2734
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01002735#define FORCE_COMB_SI_STR "Force the generation of a single SI (no ter/bis)\n"
2736
2737DEFUN(cfg_bts_force_comb_si,
2738 cfg_bts_force_comb_si_cmd,
2739 "force-combined-si",
2740 FORCE_COMB_SI_STR)
2741{
2742 struct gsm_bts *bts = vty->index;
2743 bts->force_combined_si = 1;
2744 return CMD_SUCCESS;
2745}
2746
2747DEFUN(cfg_bts_no_force_comb_si,
2748 cfg_bts_no_force_comb_si_cmd,
2749 "no force-combined-si",
2750 NO_STR FORCE_COMB_SI_STR)
2751{
2752 struct gsm_bts *bts = vty->index;
2753 bts->force_combined_si = 0;
2754 return CMD_SUCCESS;
2755}
2756
Andreas Eversberga83d5112013-12-07 18:32:28 +01002757static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2758{
2759 struct gsm_bts *bts = vty->index;
2760 struct bts_codec_conf *codec = &bts->codec;
2761 int i;
2762
2763 codec->hr = 0;
2764 codec->efr = 0;
2765 codec->amr = 0;
2766 for (i = 0; i < argc; i++) {
2767 if (!strcmp(argv[i], "hr"))
2768 codec->hr = 1;
2769 if (!strcmp(argv[i], "efr"))
2770 codec->efr = 1;
2771 if (!strcmp(argv[i], "amr"))
2772 codec->amr = 1;
2773 }
2774}
2775
2776#define CODEC_PAR_STR " (hr|efr|amr)"
2777#define CODEC_HELP_STR "Half Rate\n" \
2778 "Enhanced Full Rate\nAdaptive Multirate\n"
2779
2780DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
2781 "codec-support fr",
2782 "Codec Support settings\nFullrate\n")
2783{
2784 _get_codec_from_arg(vty, 0, argv);
2785 return CMD_SUCCESS;
2786}
2787
2788DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
2789 "codec-support fr" CODEC_PAR_STR,
2790 "Codec Support settings\nFullrate\n"
2791 CODEC_HELP_STR)
2792{
2793 _get_codec_from_arg(vty, 1, argv);
2794 return CMD_SUCCESS;
2795}
2796
2797DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
2798 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
2799 "Codec Support settings\nFullrate\n"
2800 CODEC_HELP_STR CODEC_HELP_STR)
2801{
2802 _get_codec_from_arg(vty, 2, argv);
2803 return CMD_SUCCESS;
2804}
2805
2806DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
2807 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2808 "Codec Support settings\nFullrate\n"
2809 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2810{
2811 _get_codec_from_arg(vty, 3, argv);
2812 return CMD_SUCCESS;
2813}
2814
2815DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
2816 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2817 "Codec Support settings\nFullrate\n"
2818 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2819{
2820 _get_codec_from_arg(vty, 4, argv);
2821 return CMD_SUCCESS;
2822}
2823
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01002824DEFUN(cfg_bts_depends_on, cfg_bts_depends_on_cmd,
2825 "depends-on-bts <0-255>",
2826 "This BTS can only be started if another one is up\n" "BTS Number\n")
2827{
2828 struct gsm_bts *bts = vty->index;
2829 struct gsm_bts *other_bts;
2830 int dep = atoi(argv[0]);
2831
2832
2833 if (!is_ipaccess_bts(bts)) {
2834 vty_out(vty, "This feature is only available for IP systems.%s",
2835 VTY_NEWLINE);
2836 return CMD_WARNING;
2837 }
2838
2839 other_bts = gsm_bts_num(bts->network, dep);
2840 if (!other_bts || !is_ipaccess_bts(other_bts)) {
2841 vty_out(vty, "This feature is only available for IP systems.%s",
2842 VTY_NEWLINE);
2843 return CMD_WARNING;
2844 }
2845
2846 if (dep >= bts->nr) {
2847 vty_out(vty, "%%Need to depend on an already declared unit.%s",
2848 VTY_NEWLINE);
2849 return CMD_WARNING;
2850 }
2851
2852 bts_depend_mark(bts, dep);
2853 return CMD_SUCCESS;
2854}
2855
2856DEFUN(cfg_bts_no_depends_on, cfg_bts_no_depends_on_cmd,
2857 "depeneds-on-bts <0-255>",
2858 NO_STR "This BTS can only be started if another one is up\n"
2859 "BTS Number\n")
2860{
2861 struct gsm_bts *bts = vty->index;
2862 int dep = atoi(argv[0]);
2863
2864 bts_depend_clear(bts, dep);
2865 return CMD_SUCCESS;
2866}
2867
Harald Welte8f0ed552010-05-11 21:53:49 +02002868#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02002869
Harald Welte5258fc42009-03-28 19:07:53 +00002870/* per TRX configuration */
2871DEFUN(cfg_trx,
2872 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02002873 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002874 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00002875 "Select a TRX to configure")
2876{
2877 int trx_nr = atoi(argv[0]);
2878 struct gsm_bts *bts = vty->index;
2879 struct gsm_bts_trx *trx;
2880
Harald Weltee441d9c2009-06-21 16:17:15 +02002881 if (trx_nr > bts->num_trx) {
2882 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2883 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00002884 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02002885 } else if (trx_nr == bts->num_trx) {
2886 /* we need to allocate a new one */
2887 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002888 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02002889 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002890
Harald Weltee441d9c2009-06-21 16:17:15 +02002891 if (!trx)
2892 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00002893
2894 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02002895 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00002896 vty->node = TRX_NODE;
2897
2898 return CMD_SUCCESS;
2899}
2900
2901DEFUN(cfg_trx_arfcn,
2902 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002903 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02002904 "Set the ARFCN for this TRX\n"
2905 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002906{
2907 int arfcn = atoi(argv[0]);
2908 struct gsm_bts_trx *trx = vty->index;
2909
2910 /* FIXME: check if this ARFCN is supported by this TRX */
2911
2912 trx->arfcn = arfcn;
2913
2914 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2915 /* FIXME: use OML layer to update the ARFCN */
2916 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2917
2918 return CMD_SUCCESS;
2919}
2920
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002921DEFUN(cfg_trx_nominal_power,
2922 cfg_trx_nominal_power_cmd,
2923 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002924 "Nominal TRX RF Power in dBm\n"
2925 "Nominal TRX RF Power in dBm\n"
2926 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002927{
2928 struct gsm_bts_trx *trx = vty->index;
2929
2930 trx->nominal_power = atoi(argv[0]);
2931
2932 return CMD_SUCCESS;
2933}
2934
Harald Weltefcd24452009-06-20 18:15:19 +02002935DEFUN(cfg_trx_max_power_red,
2936 cfg_trx_max_power_red_cmd,
2937 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002938 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02002939 "Reduction of maximum BS RF Power in dB\n")
2940{
2941 int maxpwr_r = atoi(argv[0]);
2942 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01002943 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02002944
2945 /* FIXME: check if our BTS type supports more than 12 */
2946 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2947 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2948 maxpwr_r, VTY_NEWLINE);
2949 return CMD_WARNING;
2950 }
2951 if (maxpwr_r & 1) {
2952 vty_out(vty, "%% Power %d dB is not an even value%s",
2953 maxpwr_r, VTY_NEWLINE);
2954 return CMD_WARNING;
2955 }
2956
2957 trx->max_power_red = maxpwr_r;
2958
2959 /* FIXME: make sure we update this using OML */
2960
2961 return CMD_SUCCESS;
2962}
2963
Harald Welte42581822009-08-08 16:12:58 +02002964DEFUN(cfg_trx_rsl_e1,
2965 cfg_trx_rsl_e1_cmd,
2966 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002967 "RSL Parameters\n"
2968 "E1/T1 interface to be used for RSL\n"
2969 "E1/T1 interface to be used for RSL\n"
2970 "E1/T1 Line Number to be used for RSL\n"
2971 "E1/T1 Timeslot to be used for RSL\n"
2972 "E1/T1 Timeslot to be used for RSL\n"
2973 "E1/T1 Sub-slot to be used for RSL\n"
2974 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2975 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2976 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2977 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2978 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002979{
2980 struct gsm_bts_trx *trx = vty->index;
2981
2982 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2983
2984 return CMD_SUCCESS;
2985}
2986
2987DEFUN(cfg_trx_rsl_e1_tei,
2988 cfg_trx_rsl_e1_tei_cmd,
2989 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002990 "RSL Parameters\n"
2991 "Set the TEI to be used for RSL\n"
2992 "Set the TEI to be used for RSL\n"
2993 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002994{
2995 struct gsm_bts_trx *trx = vty->index;
2996
2997 trx->rsl_tei = atoi(argv[0]);
2998
2999 return CMD_SUCCESS;
3000}
3001
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003002DEFUN(cfg_trx_rf_locked,
3003 cfg_trx_rf_locked_cmd,
3004 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003005 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
3006 "TRX is NOT RF locked (active)\n"
3007 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003008{
3009 int locked = atoi(argv[0]);
3010 struct gsm_bts_trx *trx = vty->index;
3011
3012 gsm_trx_lock_rf(trx, locked);
3013 return CMD_SUCCESS;
3014}
Harald Welte42581822009-08-08 16:12:58 +02003015
Harald Welte5258fc42009-03-28 19:07:53 +00003016/* per TS configuration */
3017DEFUN(cfg_ts,
3018 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003019 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003020 "Select a Timeslot to configure\n"
3021 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00003022{
3023 int ts_nr = atoi(argv[0]);
3024 struct gsm_bts_trx *trx = vty->index;
3025 struct gsm_bts_trx_ts *ts;
3026
3027 if (ts_nr >= TRX_NR_TS) {
3028 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
3029 TRX_NR_TS, VTY_NEWLINE);
3030 return CMD_WARNING;
3031 }
3032
3033 ts = &trx->ts[ts_nr];
3034
3035 vty->index = ts;
3036 vty->node = TS_NODE;
3037
3038 return CMD_SUCCESS;
3039}
3040
Harald Weltea6fd58e2009-08-07 00:25:23 +02003041DEFUN(cfg_ts_pchan,
3042 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003043 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003044 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003045{
3046 struct gsm_bts_trx_ts *ts = vty->index;
3047 int pchanc;
3048
3049 pchanc = gsm_pchan_parse(argv[0]);
3050 if (pchanc < 0)
3051 return CMD_WARNING;
3052
3053 ts->pchan = pchanc;
3054
3055 return CMD_SUCCESS;
3056}
3057
3058/* used for backwards compatibility with old config files that still
3059 * have uppercase pchan type names */
3060DEFUN_HIDDEN(cfg_ts_pchan_compat,
3061 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02003062 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01003063 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003064{
3065 struct gsm_bts_trx_ts *ts = vty->index;
3066 int pchanc;
3067
3068 pchanc = gsm_pchan_parse(argv[0]);
3069 if (pchanc < 0)
3070 return CMD_WARNING;
3071
3072 ts->pchan = pchanc;
3073
3074 return CMD_SUCCESS;
3075}
3076
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003077
3078
Harald Welte135a6482011-05-30 12:09:13 +02003079DEFUN(cfg_ts_tsc,
3080 cfg_ts_tsc_cmd,
3081 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003082 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02003083{
3084 struct gsm_bts_trx_ts *ts = vty->index;
3085
Harald Welte903aaea2014-01-19 17:10:50 +01003086 if (!gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_MULTI_TSC)) {
3087 vty_out(vty, "%% This BTS does not support a TSC != BCC, "
3088 "falling back to BCC%s", VTY_NEWLINE);
3089 ts->tsc = -1;
3090 return CMD_WARNING;
3091 }
3092
Harald Welte135a6482011-05-30 12:09:13 +02003093 ts->tsc = atoi(argv[0]);
3094
3095 return CMD_SUCCESS;
3096}
3097
Harald Weltea39b0f22010-06-14 22:26:10 +02003098#define HOPPING_STR "Configure frequency hopping\n"
3099
3100DEFUN(cfg_ts_hopping,
3101 cfg_ts_hopping_cmd,
3102 "hopping enabled (0|1)",
3103 HOPPING_STR "Enable or disable frequency hopping\n"
3104 "Disable frequency hopping\n" "Enable frequency hopping\n")
3105{
3106 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02003107 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02003108
Harald Weltec2fb3d02010-06-14 22:47:37 +02003109 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
3110 vty_out(vty, "BTS model does not support hopping%s",
3111 VTY_NEWLINE);
3112 return CMD_WARNING;
3113 }
3114
3115 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02003116
3117 return CMD_SUCCESS;
3118}
3119
Harald Welte6e0cd042009-09-12 13:05:33 +02003120DEFUN(cfg_ts_hsn,
3121 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02003122 "hopping sequence-number <0-63>",
3123 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003124 "Which hopping sequence to use for this channel\n"
3125 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003126{
3127 struct gsm_bts_trx_ts *ts = vty->index;
3128
3129 ts->hopping.hsn = atoi(argv[0]);
3130
3131 return CMD_SUCCESS;
3132}
3133
3134DEFUN(cfg_ts_maio,
3135 cfg_ts_maio_cmd,
3136 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003137 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02003138 "Which hopping MAIO to use for this channel\n"
3139 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003140{
3141 struct gsm_bts_trx_ts *ts = vty->index;
3142
3143 ts->hopping.maio = atoi(argv[0]);
3144
3145 return CMD_SUCCESS;
3146}
3147
3148DEFUN(cfg_ts_arfcn_add,
3149 cfg_ts_arfcn_add_cmd,
3150 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003151 HOPPING_STR "Configure hopping ARFCN list\n"
3152 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003153{
3154 struct gsm_bts_trx_ts *ts = vty->index;
3155 int arfcn = atoi(argv[0]);
3156
Harald Weltea39b0f22010-06-14 22:26:10 +02003157 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3158
Harald Welte6e0cd042009-09-12 13:05:33 +02003159 return CMD_SUCCESS;
3160}
3161
3162DEFUN(cfg_ts_arfcn_del,
3163 cfg_ts_arfcn_del_cmd,
3164 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02003165 HOPPING_STR "Configure hopping ARFCN list\n"
3166 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02003167{
3168 struct gsm_bts_trx_ts *ts = vty->index;
3169 int arfcn = atoi(argv[0]);
3170
Harald Weltea39b0f22010-06-14 22:26:10 +02003171 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3172
Harald Welte6e0cd042009-09-12 13:05:33 +02003173 return CMD_SUCCESS;
3174}
3175
Harald Weltea6fd58e2009-08-07 00:25:23 +02003176DEFUN(cfg_ts_e1_subslot,
3177 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02003178 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003179 "E1/T1 channel connected to this on-air timeslot\n"
3180 "E1/T1 channel connected to this on-air timeslot\n"
3181 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02003182 "E1/T1 timeslot connected to this on-air timeslot\n"
3183 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02003184 "E1/T1 sub-slot connected to this on-air timeslot\n"
3185 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3186 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3187 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3188 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3189 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02003190{
3191 struct gsm_bts_trx_ts *ts = vty->index;
3192
Harald Welte42581822009-08-08 16:12:58 +02003193 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003194
3195 return CMD_SUCCESS;
3196}
Harald Welte5258fc42009-03-28 19:07:53 +00003197
Harald Welte4f10c252010-05-16 21:47:13 +02003198void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3199{
3200 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003201 osmo_counter_get(net->stats.chreq.total),
3202 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003203 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003204 osmo_counter_get(net->stats.chan.rf_fail),
3205 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003206 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003207 osmo_counter_get(net->stats.paging.attempted),
3208 osmo_counter_get(net->stats.paging.completed),
3209 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003210 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02003211 osmo_counter_get(net->stats.bts.oml_fail),
3212 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02003213}
3214
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003215DEFUN(drop_bts,
3216 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02003217 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02003218 "Debug/Simulation command to drop Abis/IP BTS\n"
3219 "Debug/Simulation command to drop Abis/IP BTS\n"
3220 "Debug/Simulation command to drop Abis/IP BTS\n"
3221 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003222{
3223 struct gsm_network *gsmnet;
3224 struct gsm_bts_trx *trx;
3225 struct gsm_bts *bts;
3226 unsigned int bts_nr;
3227
3228 gsmnet = gsmnet_from_vty(vty);
3229
3230 bts_nr = atoi(argv[0]);
3231 if (bts_nr >= gsmnet->num_bts) {
3232 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3233 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3234 return CMD_WARNING;
3235 }
3236
3237 bts = gsm_bts_num(gsmnet, bts_nr);
3238 if (!bts) {
3239 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3240 return CMD_WARNING;
3241 }
3242
3243 if (!is_ipaccess_bts(bts)) {
3244 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3245 return CMD_WARNING;
3246 }
3247
3248
3249 /* close all connections */
3250 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003251 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003252 } else if (strcmp(argv[1], "rsl") == 0) {
3253 /* close all rsl connections */
3254 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003255 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003256 }
3257 } else {
3258 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3259 return CMD_WARNING;
3260 }
3261
3262 return CMD_SUCCESS;
3263}
3264
Harald Welte30f1f372014-12-28 15:00:45 +01003265DEFUN(smscb_cmd, smscb_cmd_cmd,
3266 "bts <0-255> smscb-command <1-4> HEXSTRING",
3267 "BTS related commands\n" "BTS Number\n"
3268 "SMS Cell Broadcast\n" "Last Valid Block\n"
3269 "Hex Encoded SMSCB message (up to 88 octets)\n")
3270{
3271 struct gsm_bts *bts;
3272 int bts_nr = atoi(argv[0]);
3273 int last_block = atoi(argv[1]);
3274 struct rsl_ie_cb_cmd_type cb_cmd;
3275 uint8_t buf[88];
3276 int rc;
3277
3278 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3279 if (!bts) {
3280 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3281 return CMD_WARNING;
3282 }
3283 rc = osmo_hexparse(argv[2], buf, sizeof(buf));
3284 if (rc < 0 || rc > sizeof(buf)) {
3285 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
3286 return CMD_WARNING;
3287 }
3288
3289 cb_cmd.spare = 0;
3290 cb_cmd.def_bcast = 0;
3291 cb_cmd.command = RSL_CB_CMD_TYPE_NORMAL;
3292
3293 switch (last_block) {
3294 case 1:
3295 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_1;
3296 break;
3297 case 2:
3298 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_2;
3299 break;
3300 case 3:
3301 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_3;
3302 break;
3303 case 4:
3304 cb_cmd.last_block = RSL_CB_CMD_LASTBLOCK_4;
3305 break;
3306 }
3307
3308 rsl_sms_cb_command(bts, RSL_CHAN_SDCCH4_ACCH, cb_cmd, buf, rc);
3309
3310 return CMD_SUCCESS;
3311}
3312
3313
Harald Welted0d2b0b2010-12-23 13:18:07 +01003314DEFUN(pdch_act, pdch_act_cmd,
3315 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3316 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3317 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3318 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3319 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3320{
3321 struct gsm_bts *bts;
3322 struct gsm_bts_trx *trx;
3323 struct gsm_bts_trx_ts *ts;
3324 int bts_nr = atoi(argv[0]);
3325 int trx_nr = atoi(argv[1]);
3326 int ts_nr = atoi(argv[2]);
3327 int activate;
3328
3329 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3330 if (!bts) {
3331 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3332 return CMD_WARNING;
3333 }
3334
3335 if (!is_ipaccess_bts(bts)) {
3336 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3337 VTY_NEWLINE);
3338 return CMD_WARNING;
3339 }
3340
3341 trx = gsm_bts_trx_num(bts, trx_nr);
3342 if (!trx) {
3343 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3344 return CMD_WARNING;
3345 }
3346
3347 ts = &trx->ts[ts_nr];
3348 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3349 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3350 "mode%s", ts_nr, VTY_NEWLINE);
3351 return CMD_WARNING;
3352 }
3353
3354 if (!strcmp(argv[3], "activate"))
3355 activate = 1;
3356 else
3357 activate = 0;
3358
3359 rsl_ipacc_pdch_activate(ts, activate);
3360
3361 return CMD_SUCCESS;
3362
3363}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003364
Harald Weltedcccb182010-05-16 20:52:23 +02003365extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02003366extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02003367
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003368int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00003369{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003370 cfg_ts_pchan_cmd.string =
3371 vty_cmd_string_from_valstr(tall_bsc_ctx,
3372 gsm_pchant_names,
3373 "phys_chan_config (", "|", ")",
3374 VTY_DO_LOWER);
3375 cfg_ts_pchan_cmd.doc =
3376 vty_cmd_string_from_valstr(tall_bsc_ctx,
3377 gsm_pchant_descs,
3378 "Physical Channel Combination\n",
3379 "\n", "", 0);
3380
Harald Weltee555c2b2012-08-17 13:02:12 +02003381 cfg_bts_type_cmd.string =
3382 vty_cmd_string_from_valstr(tall_bsc_ctx,
3383 bts_type_names,
3384 "type (", "|", ")",
3385 VTY_DO_LOWER);
3386 cfg_bts_type_cmd.doc =
3387 vty_cmd_string_from_valstr(tall_bsc_ctx,
3388 bts_type_descs,
3389 "BTS Vendor/Type\n",
3390 "\n", "", 0);
3391
3392
Harald Welteb4d5b172010-05-12 16:10:35 +00003393 install_element_ve(&show_net_cmd);
3394 install_element_ve(&show_bts_cmd);
3395 install_element_ve(&show_trx_cmd);
3396 install_element_ve(&show_ts_cmd);
3397 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08003398 install_element_ve(&show_lchan_summary_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00003399
Harald Welteb4d5b172010-05-12 16:10:35 +00003400 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01003401 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003402
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003403 logging_vty_add_cmds(cat);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01003404
Harald Welte5013b2a2009-08-07 13:29:14 +02003405 install_element(CONFIG_NODE, &cfg_net_cmd);
3406 install_node(&net_node, config_write_net);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003407 vty_install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02003408 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003409 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3410 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3411 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02003412 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01003413 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09003414 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01003415 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01003416 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01003417 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01003418 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01003419 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3420 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3421 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3422 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3423 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3424 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01003425 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003426 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3427 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3428 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3429 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3430 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3431 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3432 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3433 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3434 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01003435 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003436 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08003437 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01003438 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08003439 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003440
3441 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02003442 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003443 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003444 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003445 install_element(BTS_NODE, &cfg_description_cmd);
3446 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02003447 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02003448 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003449 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3450 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003451 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00003452 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01003453 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003454 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeck946d1412013-09-17 13:59:29 +02003455 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003456 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02003457 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversberg7d8fa342013-12-05 13:25:06 +01003458 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Sipos Csaba56e17662015-02-07 13:27:36 +01003459 install_element(BTS_NODE, &cfg_bts_nokia_site_bts_reset_timer_cnf_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02003460 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003461 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3462 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02003463 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01003464 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3465 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02003466 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3467 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3468 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08003469 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3470 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02003471 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08003472 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04003473 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02003474 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02003475 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02003476 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01003477 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3478 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01003479 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3480 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3481 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3482 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3483 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3484 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Andreas Eversberg4d4944a2013-03-10 11:49:35 +01003485 install_element(BTS_NODE, &cfg_bts_radio_link_timeout_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02003486 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003487 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003488 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01003489 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003490 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003491 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08003492 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003493 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08003494 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3495 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3496 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08003497 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02003498 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3499 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01003500 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3501 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01003502 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02003503 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3504 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Jacob Erlbeck65d114f2014-01-16 11:02:14 +01003505 install_element(BTS_NODE, &cfg_bts_force_comb_si_cmd);
3506 install_element(BTS_NODE, &cfg_bts_no_force_comb_si_cmd);
Andreas Eversberga83d5112013-12-07 18:32:28 +01003507 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
3508 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
3509 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
3510 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
3511 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Holger Hans Peter Freytherc22930e2014-12-17 14:46:17 +01003512 install_element(BTS_NODE, &cfg_bts_depends_on_cmd);
3513 install_element(BTS_NODE, &cfg_bts_no_depends_on_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003514
Harald Welte5258fc42009-03-28 19:07:53 +00003515 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003516 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003517 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003518 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003519 install_element(TRX_NODE, &cfg_description_cmd);
3520 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003521 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02003522 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003523 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3524 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003525 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003526
Harald Welte5258fc42009-03-28 19:07:53 +00003527 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003528 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003529 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003530 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003531 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02003532 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02003533 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02003534 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3535 install_element(TS_NODE, &cfg_ts_maio_cmd);
3536 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3537 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003538 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003539
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003540 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003541 install_element(ENABLE_NODE, &pdch_act_cmd);
Harald Welte30f1f372014-12-28 15:00:45 +01003542 install_element(ENABLE_NODE, &smscb_cmd_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003543
Harald Welte81c9b9c2010-05-31 16:40:40 +02003544 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01003545 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01003546 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02003547
Harald Weltedcccb182010-05-16 20:52:23 +02003548 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00003549
Harald Welte68628e82009-03-10 12:17:57 +00003550 return 0;
3551}