blob: b03498168625d78def3661c1b902cea25c82e25b [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 Freyther8ec49522011-08-15 15:53:00 +0200213 if (net->bsc_data && net->bsc_data->rf_ctrl)
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);
Jacob Erlbeck779a7282013-09-11 10:46:57 +0200217 if (net->bsc_data && net->bsc_data->rf_ctrl)
218 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, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
495 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200496 if (bts->tz.override != 0) {
497 if (bts->tz.dst)
498 vty_out(vty, " timezone %d %d %d%s",
499 bts->tz.hr, bts->tz.mn, bts->tz.dst, VTY_NEWLINE);
500 else
501 vty_out(vty, " timezone %d %d%s",
502 bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
503 }
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200504 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100505 vty_out(vty, " cell reselection hysteresis %u%s",
506 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
507 vty_out(vty, " rxlev access min %u%s",
508 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100509
510 if (bts->si_common.cell_ro_sel_par.present) {
511 struct gsm48_si_selection_params *sp;
512 sp = &bts->si_common.cell_ro_sel_par;
513
514 if (sp->cbq)
515 vty_out(vty, " cell bar qualify %u%s",
516 sp->cbq, VTY_NEWLINE);
517
518 if (sp->cell_resel_off)
519 vty_out(vty, " cell reselection offset %u%s",
520 sp->cell_resel_off*2, VTY_NEWLINE);
521
522 if (sp->temp_offs == 7)
523 vty_out(vty, " temporary offset infinite%s",
524 VTY_NEWLINE);
525 else if (sp->temp_offs)
526 vty_out(vty, " temporary offset %u%s",
527 sp->temp_offs*10, VTY_NEWLINE);
528
529 if (sp->penalty_time == 31)
530 vty_out(vty, " penalty time reserved%s",
531 VTY_NEWLINE);
532 else if (sp->penalty_time)
533 vty_out(vty, " penalty time %u%s",
534 (sp->penalty_time*20)+20, VTY_NEWLINE);
535 }
536
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200537 /* Is periodic LU enabled or disabled? */
538 if (bts->si_common.chan_desc.t3212 == 0)
539 vty_out(vty, " no periodic location update%s", VTY_NEWLINE);
540 else
541 vty_out(vty, " periodic location update %u%s",
542 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
543
Harald Welte7a8fa412009-08-10 13:48:16 +0200544 vty_out(vty, " channel allocator %s%s",
545 bts->chan_alloc_reverse ? "descending" : "ascending",
546 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100547 vty_out(vty, " rach tx integer %u%s",
548 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
549 vty_out(vty, " rach max transmission %u%s",
550 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
551 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800552
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200553 vty_out(vty, " channel-descrption attach %u%s",
554 bts->si_common.chan_desc.att, VTY_NEWLINE);
555 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
556 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
557 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
558 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
559
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800560 if (bts->rach_b_thresh != -1)
561 vty_out(vty, " rach nm busy threshold %u%s",
562 bts->rach_b_thresh, VTY_NEWLINE);
563 if (bts->rach_ldavg_slots != -1)
564 vty_out(vty, " rach nm load average %u%s",
565 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100566 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200567 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800568 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
569 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400570 if ((bts->si_common.rach_control.t3) != 0)
571 for (i = 0; i < 8; i++)
572 if (bts->si_common.rach_control.t3 & (0x1 << i))
573 vty_out(vty, " rach access-control-class %d barred%s", i, VTY_NEWLINE);
574 if ((bts->si_common.rach_control.t2 & 0xfb) != 0)
575 for (i = 0; i < 8; i++)
576 if ((i != 2) && (bts->si_common.rach_control.t2 & (0x1 << i)))
577 vty_out(vty, " rach access-control-class %d barred%s", i+8, VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200578 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
579 if (bts->si_mode_static & (1 << i)) {
580 vty_out(vty, " system-information %s mode static%s",
581 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
582 vty_out(vty, " system-information %s static %s%s",
583 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100584 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200585 VTY_NEWLINE);
586 }
587 }
Harald Weltefd355a32011-03-04 13:41:31 +0100588 switch (bts->type) {
589 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200590 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200591 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200592 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b291802013-03-12 13:57:05 +0100593 if (bts->ip_access.rsl_ip) {
594 struct in_addr ia;
595 ia.s_addr = htonl(bts->ip_access.rsl_ip);
596 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
597 VTY_NEWLINE);
598 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200599 vty_out(vty, " oml ip.access stream_id %u line %u%s",
600 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100601 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200602 case GSM_BTS_TYPE_NOKIA_SITE:
603 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
604 break;
Harald Weltefd355a32011-03-04 13:41:31 +0100605 default:
Harald Welte42581822009-08-08 16:12:58 +0200606 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
607 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100608 break;
Harald Welte42581822009-08-08 16:12:58 +0200609 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800610
611 /* if we have a limit, write it */
612 if (bts->paging.free_chans_need >= 0)
613 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
614
Harald Welte32c09622011-01-11 23:44:56 +0100615 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100616 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
617 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100618 for (i = 0; i < 1024; i++) {
619 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
620 vty_out(vty, " neighbor-list add arfcn %u%s",
621 i, VTY_NEWLINE);
622 }
623 }
Harald Welte64c07d22011-02-15 11:43:27 +0100624 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
625 for (i = 0; i < 1024; i++) {
626 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
627 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
628 i, VTY_NEWLINE);
629 }
630 }
Harald Welte32c09622011-01-11 23:44:56 +0100631
Harald Welte615e9562010-05-11 23:50:21 +0200632 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200633
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200634 if (bts->excl_from_rf_lock)
635 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
636
Holger Hans Peter Freythercd40fb42013-09-15 17:23:34 +0200637 config_write_bts_model(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200638}
639
640static int config_write_bts(struct vty *v)
641{
Harald Weltedcccb182010-05-16 20:52:23 +0200642 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200643 struct gsm_bts *bts;
644
645 llist_for_each_entry(bts, &gsmnet->bts_list, list)
646 config_write_bts_single(v, bts);
647
648 return CMD_SUCCESS;
649}
650
Harald Welte5013b2a2009-08-07 13:29:14 +0200651static int config_write_net(struct vty *vty)
652{
Harald Weltedcccb182010-05-16 20:52:23 +0200653 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
654
Harald Welte5013b2a2009-08-07 13:29:14 +0200655 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200656 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200657 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200658 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
659 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200660 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100661 vty_out(vty, " location updating reject cause %u%s",
662 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900663 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100664 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800665 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100666 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
667 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100668 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100669 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100670 vty_out(vty, " handover window rxlev averaging %u%s",
671 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
672 vty_out(vty, " handover window rxqual averaging %u%s",
673 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
674 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
675 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
676 vty_out(vty, " handover power budget interval %u%s",
677 gsmnet->handover.pwr_interval, VTY_NEWLINE);
678 vty_out(vty, " handover power budget hysteresis %u%s",
679 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
680 vty_out(vty, " handover maximum distance %u%s",
681 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100682 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100683 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
684 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
685 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
686 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
687 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
688 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
689 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
690 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
691 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100692 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100693 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100694 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100695 vty_out(vty, " subscriber-keep-in-ram %d%s",
696 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200697
698 return CMD_SUCCESS;
699}
Harald Welte67ce0732009-08-06 19:06:46 +0200700
Harald Welte68628e82009-03-10 12:17:57 +0000701static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
702{
703 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
704 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200705 vty_out(vty, "Description: %s%s",
706 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200707 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200708 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200709 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200710 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000711 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200712 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000713 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200714 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200715 if (is_ipaccess_bts(trx->bts)) {
716 vty_out(vty, " ip.access stream ID: 0x%02x%s",
717 trx->rsl_tei, VTY_NEWLINE);
718 } else {
719 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
720 e1isl_dump_vty(vty, trx->rsl_link);
721 }
Harald Welte68628e82009-03-10 12:17:57 +0000722}
723
724DEFUN(show_trx,
725 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100726 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200727 SHOW_STR "Display information about a TRX\n"
728 "BTS Number\n"
729 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000730{
Harald Weltedcccb182010-05-16 20:52:23 +0200731 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000732 struct gsm_bts *bts = NULL;
733 struct gsm_bts_trx *trx;
734 int bts_nr, trx_nr;
735
736 if (argc >= 1) {
737 /* use the BTS number that the user has specified */
738 bts_nr = atoi(argv[0]);
739 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000740 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000741 VTY_NEWLINE);
742 return CMD_WARNING;
743 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200744 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000745 }
746 if (argc >= 2) {
747 trx_nr = atoi(argv[1]);
748 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000749 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000750 VTY_NEWLINE);
751 return CMD_WARNING;
752 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200753 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000754 trx_dump_vty(vty, trx);
755 return CMD_SUCCESS;
756 }
757 if (bts) {
758 /* print all TRX in this BTS */
759 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200760 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000761 trx_dump_vty(vty, trx);
762 }
763 return CMD_SUCCESS;
764 }
765
766 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200767 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000768 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200769 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000770 trx_dump_vty(vty, trx);
771 }
772 }
773
774 return CMD_SUCCESS;
775}
776
Harald Welte67ce0732009-08-06 19:06:46 +0200777
Harald Welte68628e82009-03-10 12:17:57 +0000778static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
779{
Harald Welte135a6482011-05-30 12:09:13 +0200780 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100781 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Weltee972dba2013-03-08 07:44:45 +0000782 gsm_pchan_name(ts->pchan),
783 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Weltecd103a92010-12-24 12:14:52 +0100784 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100785 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100786 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
787 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000788 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200789 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530790 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000791 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
792 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
793 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000794}
795
796DEFUN(show_ts,
797 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100798 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200799 SHOW_STR "Display information about a TS\n"
800 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000801{
Harald Weltedcccb182010-05-16 20:52:23 +0200802 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100803 struct gsm_bts *bts = NULL;
804 struct gsm_bts_trx *trx = NULL;
805 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000806 int bts_nr, trx_nr, ts_nr;
807
808 if (argc >= 1) {
809 /* use the BTS number that the user has specified */
810 bts_nr = atoi(argv[0]);
811 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000812 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000813 VTY_NEWLINE);
814 return CMD_WARNING;
815 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200816 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000817 }
818 if (argc >= 2) {
819 trx_nr = atoi(argv[1]);
820 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000821 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000822 VTY_NEWLINE);
823 return CMD_WARNING;
824 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200825 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000826 }
827 if (argc >= 3) {
828 ts_nr = atoi(argv[2]);
829 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000830 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000831 VTY_NEWLINE);
832 return CMD_WARNING;
833 }
Harald Welte274d0152010-12-24 12:05:03 +0100834 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000835 ts = &trx->ts[ts_nr];
836 ts_dump_vty(vty, ts);
837 return CMD_SUCCESS;
838 }
Harald Welte274d0152010-12-24 12:05:03 +0100839
840 if (bts && trx) {
841 /* Iterate over all TS in this TRX */
842 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
843 ts = &trx->ts[ts_nr];
844 ts_dump_vty(vty, ts);
845 }
846 } else if (bts) {
847 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000848 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200849 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000850 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
851 ts = &trx->ts[ts_nr];
852 ts_dump_vty(vty, ts);
853 }
854 }
Harald Welte274d0152010-12-24 12:05:03 +0100855 } else {
856 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
857 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
858 bts = gsm_bts_num(net, bts_nr);
859 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
860 trx = gsm_bts_trx_num(bts, trx_nr);
861 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
862 ts = &trx->ts[ts_nr];
863 ts_dump_vty(vty, ts);
864 }
865 }
866 }
Harald Welte68628e82009-03-10 12:17:57 +0000867 }
868
869 return CMD_SUCCESS;
870}
871
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100872static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000873{
Harald Weltefcd24452009-06-20 18:15:19 +0200874 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000875 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000876 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000877 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000878 if (subscr->extension)
879 vty_out(vty, " Extension: %s%s", subscr->extension,
880 VTY_NEWLINE);
Holger Hans Peter Freyther5ccd0152013-07-14 08:38:24 +0200881 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200882 if (subscr->tmsi != GSM_RESERVED_TMSI)
883 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200884 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100885
Harald Welte (local)15920de2009-08-14 20:27:16 +0200886 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000887}
888
Harald Welte8387a492009-12-22 21:43:14 +0100889static void meas_rep_dump_uni_vty(struct vty *vty,
890 struct gsm_meas_rep_unidir *mru,
891 const char *prefix,
892 const char *dir)
893{
894 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
895 prefix, dir, rxlev2dbm(mru->full.rx_lev),
896 dir, rxlev2dbm(mru->sub.rx_lev));
897 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
898 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
899 VTY_NEWLINE);
900}
901
902static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
903 const char *prefix)
904{
905 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
906 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
907 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
908 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
909 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
910 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
911 VTY_NEWLINE);
912 if (mr->flags & MEAS_REP_F_MS_TO)
913 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
914 mr->ms_timing_offset, VTY_NEWLINE);
915 if (mr->flags & MEAS_REP_F_MS_L1)
916 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
917 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
918 if (mr->flags & MEAS_REP_F_DL_VALID)
919 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
920 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
921}
922
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800923static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000924{
Harald Welte8387a492009-12-22 21:43:14 +0100925 int idx;
926
Harald Welte85bded82010-12-24 12:22:34 +0100927 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
928 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
929 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800930 vty_out(vty, " Connection: %u, State: %s%s",
931 lchan->conn ? 1: 0,
Harald Welte1887f9d2009-12-29 10:52:38 +0100932 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100933 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
934 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
935 - lchan->bs_power*2,
936 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
937 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800938 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000939 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800940 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000941 } else
942 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530943 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
944 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200945 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530946 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
947 inet_ntoa(ia), lchan->abis_ip.bound_port,
948 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
949 VTY_NEWLINE);
950 }
Harald Welte8387a492009-12-22 21:43:14 +0100951
952 /* we want to report the last measurement report */
953 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
954 lchan->meas_rep_idx, 1);
955 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000956}
957
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800958static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
959{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800960 struct gsm_meas_rep *mr;
961 int idx;
962
963 /* we want to report the last measurement report */
964 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
965 lchan->meas_rep_idx, 1);
966 mr = &lchan->meas_rep[idx];
967
Harald Welte85bded82010-12-24 12:22:34 +0100968 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
969 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
970 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +0100971 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800972 rxlev2dbm(mr->dl.full.rx_lev),
973 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800974 VTY_NEWLINE);
975}
976
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100977
978static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
979 void (*dump_cb)(struct vty *, struct gsm_lchan *))
980{
981 int lchan_nr;
982 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
983 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
984 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
985 continue;
986 dump_cb(vty, lchan);
987 }
988
989 return CMD_SUCCESS;
990}
991
992static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
993 void (*dump_cb)(struct vty *, struct gsm_lchan *))
994{
995 int ts_nr;
996
997 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
998 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
999 dump_lchan_trx_ts(ts, vty, dump_cb);
1000 }
1001
1002 return CMD_SUCCESS;
1003}
1004
1005static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1006 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1007{
1008 int trx_nr;
1009
1010 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1011 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1012 dump_lchan_trx(trx, vty, dump_cb);
1013 }
1014
1015 return CMD_SUCCESS;
1016}
1017
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001018static int lchan_summary(struct vty *vty, int argc, const char **argv,
1019 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +00001020{
Harald Weltedcccb182010-05-16 20:52:23 +02001021 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +00001022 struct gsm_bts *bts;
1023 struct gsm_bts_trx *trx;
1024 struct gsm_bts_trx_ts *ts;
1025 struct gsm_lchan *lchan;
1026 int bts_nr, trx_nr, ts_nr, lchan_nr;
1027
1028 if (argc >= 1) {
1029 /* use the BTS number that the user has specified */
1030 bts_nr = atoi(argv[0]);
1031 if (bts_nr >= net->num_bts) {
1032 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1033 VTY_NEWLINE);
1034 return CMD_WARNING;
1035 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001036 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001037
1038 if (argc == 1)
1039 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001040 }
1041 if (argc >= 2) {
1042 trx_nr = atoi(argv[1]);
1043 if (trx_nr >= bts->num_trx) {
1044 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1045 VTY_NEWLINE);
1046 return CMD_WARNING;
1047 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001048 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001049
1050 if (argc == 2)
1051 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001052 }
1053 if (argc >= 3) {
1054 ts_nr = atoi(argv[2]);
1055 if (ts_nr >= TRX_NR_TS) {
1056 vty_out(vty, "%% can't find TS %s%s", argv[2],
1057 VTY_NEWLINE);
1058 return CMD_WARNING;
1059 }
1060 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001061
1062 if (argc == 3)
1063 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001064 }
1065 if (argc >= 4) {
1066 lchan_nr = atoi(argv[3]);
1067 if (lchan_nr >= TS_MAX_LCHAN) {
1068 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1069 VTY_NEWLINE);
1070 return CMD_WARNING;
1071 }
1072 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001073 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001074 return CMD_SUCCESS;
1075 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001076
1077
Harald Welte68628e82009-03-10 12:17:57 +00001078 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001079 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001080 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001081 }
1082
1083 return CMD_SUCCESS;
1084}
1085
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001086
1087DEFUN(show_lchan,
1088 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001089 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001090 SHOW_STR "Display information about a logical channel\n"
1091 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001092 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001093
1094{
1095 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1096}
1097
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001098DEFUN(show_lchan_summary,
1099 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001100 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001101 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001102 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001103 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001104 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001105{
1106 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1107}
1108
Harald Weltebe4b7302009-05-23 16:59:33 +00001109static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001110{
1111 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1112 subscr_dump_vty(vty, pag->subscr);
1113}
1114
Harald Weltebe4b7302009-05-23 16:59:33 +00001115static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001116{
1117 struct gsm_paging_request *pag;
1118
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001119 if (!bts->paging.bts)
1120 return;
1121
Harald Weltef5025b62009-03-28 16:55:11 +00001122 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1123 paging_dump_vty(vty, pag);
1124}
1125
1126DEFUN(show_paging,
1127 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001128 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001129 SHOW_STR "Display information about paging reuqests of a BTS\n"
1130 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001131{
Harald Weltedcccb182010-05-16 20:52:23 +02001132 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001133 struct gsm_bts *bts;
1134 int bts_nr;
1135
1136 if (argc >= 1) {
1137 /* use the BTS number that the user has specified */
1138 bts_nr = atoi(argv[0]);
1139 if (bts_nr >= net->num_bts) {
1140 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1141 VTY_NEWLINE);
1142 return CMD_WARNING;
1143 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001144 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001145 bts_paging_dump_vty(vty, bts);
1146
1147 return CMD_SUCCESS;
1148 }
1149 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001150 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001151 bts_paging_dump_vty(vty, bts);
1152 }
1153
1154 return CMD_SUCCESS;
1155}
1156
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01001157DEFUN(show_paging_group,
1158 show_paging_group_cmd,
1159 "show paging-group <0-255> IMSI",
1160 SHOW_STR "Display the paging group\n"
1161 "BTS Number\n" "IMSI\n")
1162{
1163 struct gsm_network *net = gsmnet_from_vty(vty);
1164 struct gsm_bts *bts;
1165 unsigned int page_group;
1166 int bts_nr = atoi(argv[0]);
1167
1168 if (bts_nr >= net->num_bts) {
1169 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1170 return CMD_WARNING;
1171 }
1172
1173 bts = gsm_bts_num(net, bts_nr);
1174 if (!bts) {
1175 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1176 return CMD_WARNING;
1177 }
1178
1179 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1180 str_to_imsi(argv[1]));
1181 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1182 str_to_imsi(argv[1]), bts->nr,
1183 page_group, VTY_NEWLINE);
1184 return CMD_SUCCESS;
1185}
1186
Harald Welte5013b2a2009-08-07 13:29:14 +02001187DEFUN(cfg_net,
1188 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001189 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001190{
Harald Weltedcccb182010-05-16 20:52:23 +02001191 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001192 vty->node = GSMNET_NODE;
1193
1194 return CMD_SUCCESS;
1195}
1196
Harald Welte5013b2a2009-08-07 13:29:14 +02001197DEFUN(cfg_net_ncc,
1198 cfg_net_ncc_cmd,
1199 "network country code <1-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001200 "Set the GSM network country code\n"
1201 "Country commands\n"
1202 CODE_CMD_STR
1203 "Network Country Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001204{
Harald Weltedcccb182010-05-16 20:52:23 +02001205 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1206
Harald Welte5013b2a2009-08-07 13:29:14 +02001207 gsmnet->country_code = atoi(argv[0]);
1208
1209 return CMD_SUCCESS;
1210}
1211
1212DEFUN(cfg_net_mnc,
1213 cfg_net_mnc_cmd,
Dieter Spaar402cced2011-07-27 23:43:56 +02001214 "mobile network code <0-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001215 "Set the GSM mobile network code\n"
1216 "Network Commands\n"
1217 CODE_CMD_STR
1218 "Mobile Network Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001219{
Harald Weltedcccb182010-05-16 20:52:23 +02001220 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1221
Harald Welte5013b2a2009-08-07 13:29:14 +02001222 gsmnet->network_code = atoi(argv[0]);
1223
1224 return CMD_SUCCESS;
1225}
1226
1227DEFUN(cfg_net_name_short,
1228 cfg_net_name_short_cmd,
1229 "short name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001230 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001231{
Harald Weltedcccb182010-05-16 20:52:23 +02001232 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1233
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001234 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001235 return CMD_SUCCESS;
1236}
1237
1238DEFUN(cfg_net_name_long,
1239 cfg_net_name_long_cmd,
1240 "long name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001241 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001242{
Harald Weltedcccb182010-05-16 20:52:23 +02001243 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1244
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001245 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001246 return CMD_SUCCESS;
1247}
Harald Welte40f82892009-05-23 17:31:39 +00001248
Harald Welte (local)69de3972009-08-12 14:42:23 +02001249DEFUN(cfg_net_auth_policy,
1250 cfg_net_auth_policy_cmd,
1251 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001252 "Authentication (not cryptographic)\n"
1253 "Set the GSM network authentication policy\n"
1254 "Require the MS to be activated in HLR\n"
1255 "Accept all MS, whether in HLR or not\n"
1256 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001257{
1258 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001259 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001260
1261 gsmnet->auth_policy = policy;
1262
1263 return CMD_SUCCESS;
1264}
1265
Harald Welte1085c092009-11-18 20:33:19 +01001266DEFUN(cfg_net_reject_cause,
1267 cfg_net_reject_cause_cmd,
1268 "location updating reject cause <2-111>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001269 "Set the reject cause of location updating reject\n"
1270 "Set the reject cause of location updating reject\n"
1271 "Set the reject cause of location updating reject\n"
1272 "Set the reject cause of location updating reject\n"
1273 "Cause Value as Per GSM TS 04.08\n")
Harald Welte1085c092009-11-18 20:33:19 +01001274{
Harald Weltedcccb182010-05-16 20:52:23 +02001275 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1276
Harald Welte1085c092009-11-18 20:33:19 +01001277 gsmnet->reject_cause = atoi(argv[0]);
1278
1279 return CMD_SUCCESS;
1280}
1281
Harald Welte4381cfe2009-08-30 15:47:06 +09001282DEFUN(cfg_net_encryption,
1283 cfg_net_encryption_cmd,
Harald Weltead66a2d2012-07-04 21:37:56 +02001284 "encryption a5 (0|1|2|3)",
Harald Welte28326062010-05-14 20:05:17 +02001285 "Encryption options\n"
1286 "A5 encryption\n" "A5/0: No encryption\n"
Harald Weltead66a2d2012-07-04 21:37:56 +02001287 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1288 "A5/3: 'New' Secure Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001289{
Harald Weltedcccb182010-05-16 20:52:23 +02001290 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1291
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001292 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001293
1294 return CMD_SUCCESS;
1295}
1296
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001297DEFUN(cfg_net_neci,
1298 cfg_net_neci_cmd,
1299 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001300 "New Establish Cause Indication\n"
1301 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001302{
Harald Weltedcccb182010-05-16 20:52:23 +02001303 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1304
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001305 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001306 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001307 return CMD_SUCCESS;
1308}
1309
Harald Welteeab84a12009-12-13 10:53:12 +01001310DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1311 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001312 "Radio Resource Location Protocol\n"
1313 "Set the Radio Resource Location Protocol Mode\n"
1314 "Don't send RRLP request\n"
1315 "Request MS-based location\n"
1316 "Request any location, prefer MS-based\n"
1317 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001318{
Harald Weltedcccb182010-05-16 20:52:23 +02001319 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1320
Harald Welteeab84a12009-12-13 10:53:12 +01001321 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1322
1323 return CMD_SUCCESS;
1324}
1325
Harald Welte648b6ce2009-12-14 09:00:24 +01001326DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1327 "mm info (0|1)",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001328 "Mobility Management\n"
1329 "Send MM INFO after LOC UPD ACCEPT\n"
1330 "Disable\n" "Enable\n")
Harald Welte648b6ce2009-12-14 09:00:24 +01001331{
Harald Weltedcccb182010-05-16 20:52:23 +02001332 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1333
Harald Welte648b6ce2009-12-14 09:00:24 +01001334 gsmnet->send_mm_info = atoi(argv[0]);
1335
1336 return CMD_SUCCESS;
1337}
1338
Harald Welte8f0ed552010-05-11 21:53:49 +02001339#define HANDOVER_STR "Handover Options\n"
1340
Harald Weltebc814502009-12-19 21:41:52 +01001341DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1342 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001343 HANDOVER_STR
1344 "Don't perform in-call handover\n"
1345 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001346{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001347 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001348 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001349
1350 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001351 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1352 "is enabled by using the -P command line option%s",
1353 VTY_NEWLINE);
1354 return CMD_WARNING;
1355 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001356 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001357
1358 return CMD_SUCCESS;
1359}
1360
Harald Welte8f0ed552010-05-11 21:53:49 +02001361#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1362#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1363#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1364#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001365#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001366
Harald Welteb720bd32009-12-21 16:51:50 +01001367DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1368 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001369 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001370 "How many RxLev measurements are used for averaging\n"
1371 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001372{
Harald Weltedcccb182010-05-16 20:52:23 +02001373 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001374 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1375 return CMD_SUCCESS;
1376}
1377
1378DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1379 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001380 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001381 "How many RxQual measurements are used for averaging\n"
1382 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001383{
Harald Weltedcccb182010-05-16 20:52:23 +02001384 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001385 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1386 return CMD_SUCCESS;
1387}
1388
1389DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1390 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001391 HO_WIN_RXLEV_STR "Neighbor\n"
1392 "How many RxQual measurements are used for averaging\n"
1393 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001394{
Harald Weltedcccb182010-05-16 20:52:23 +02001395 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001396 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1397 return CMD_SUCCESS;
1398}
1399
1400DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1401 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001402 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001403 "How often to check if we have a better cell (SACCH frames)\n"
1404 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001405{
Harald Weltedcccb182010-05-16 20:52:23 +02001406 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001407 gsmnet->handover.pwr_interval = atoi(argv[0]);
1408 return CMD_SUCCESS;
1409}
1410
1411DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1412 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001413 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001414 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1415 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001416{
Harald Weltedcccb182010-05-16 20:52:23 +02001417 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001418 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1419 return CMD_SUCCESS;
1420}
1421
1422DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1423 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001424 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001425 "How big is the maximum timing advance before HO is forced\n"
1426 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001427{
Harald Weltedcccb182010-05-16 20:52:23 +02001428 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001429 gsmnet->handover.max_distance = atoi(argv[0]);
1430 return CMD_SUCCESS;
1431}
Harald Weltebc814502009-12-19 21:41:52 +01001432
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001433DEFUN(cfg_net_pag_any_tch,
1434 cfg_net_pag_any_tch_cmd,
1435 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001436 "Assign a TCH when receiving a Paging Any request\n"
1437 "Any Channel\n" "Use\n" "TCH\n"
1438 "Do not use TCH for Paging Request Any\n"
1439 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001440{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001441 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001442 gsmnet->pag_any_tch = atoi(argv[0]);
1443 gsm_net_update_ctype(gsmnet);
1444 return CMD_SUCCESS;
1445}
1446
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001447#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001448 DEFUN(cfg_net_T##number, \
1449 cfg_net_T##number##_cmd, \
1450 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001451 "Configure GSM Timers\n" \
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001452 doc "Timer Value\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001453{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001454 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001455 int value = atoi(argv[0]); \
1456 \
1457 if (value < 0 || value > 65535) { \
1458 vty_out(vty, "Timer value %s out of range.%s", \
1459 argv[0], VTY_NEWLINE); \
1460 return CMD_WARNING; \
1461 } \
1462 \
1463 gsmnet->T##number = value; \
1464 return CMD_SUCCESS; \
1465}
1466
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001467DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1468DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001469DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001470DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001471DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001472DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1473DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1474DECLARE_TIMER(3115, "Currently not used.\n")
1475DECLARE_TIMER(3117, "Currently not used.\n")
1476DECLARE_TIMER(3119, "Currently not used.\n")
1477DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1478DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001479
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001480DEFUN(cfg_net_dtx,
1481 cfg_net_dtx_cmd,
1482 "dtx-used (0|1)",
1483 "Enable the usage of DTX.\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001484 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001485{
1486 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1487 gsmnet->dtx_enabled = atoi(argv[0]);
1488 return CMD_SUCCESS;
1489}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001490
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001491DEFUN(cfg_net_subscr_keep,
1492 cfg_net_subscr_keep_cmd,
1493 "subscriber-keep-in-ram (0|1)",
1494 "Keep unused subscribers in RAM.\n"
1495 "Delete unused subscribers\n" "Keep unused subscribers\n")
1496{
1497 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1498 gsmnet->keep_subscr = atoi(argv[0]);
1499 return CMD_SUCCESS;
1500}
1501
Harald Welte5258fc42009-03-28 19:07:53 +00001502/* per-BTS configuration */
1503DEFUN(cfg_bts,
1504 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001505 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001506 "Select a BTS to configure\n"
1507 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001508{
Harald Weltedcccb182010-05-16 20:52:23 +02001509 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001510 int bts_nr = atoi(argv[0]);
1511 struct gsm_bts *bts;
1512
Harald Weltee441d9c2009-06-21 16:17:15 +02001513 if (bts_nr > gsmnet->num_bts) {
1514 vty_out(vty, "%% The next unused BTS number is %u%s",
1515 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001516 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001517 } else if (bts_nr == gsmnet->num_bts) {
1518 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001519 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1520 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001521 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001522 bts = gsm_bts_num(gsmnet, bts_nr);
1523
Daniel Willmannf15c2762010-01-11 13:43:07 +01001524 if (!bts) {
1525 vty_out(vty, "%% Unable to allocate BTS %u%s",
1526 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001527 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001528 }
Harald Welte5258fc42009-03-28 19:07:53 +00001529
1530 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001531 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001532 vty->node = BTS_NODE;
1533
1534 return CMD_SUCCESS;
1535}
1536
1537DEFUN(cfg_bts_type,
1538 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001539 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001540 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001541{
1542 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001543 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001544
Harald Welte39315c42010-01-10 18:01:52 +01001545 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1546 if (rc < 0)
1547 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001548
Harald Welte5258fc42009-03-28 19:07:53 +00001549 return CMD_SUCCESS;
1550}
1551
Harald Weltefcd24452009-06-20 18:15:19 +02001552DEFUN(cfg_bts_band,
1553 cfg_bts_band_cmd,
1554 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001555 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001556{
1557 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001558 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001559
1560 if (band < 0) {
1561 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1562 band, VTY_NEWLINE);
1563 return CMD_WARNING;
1564 }
1565
1566 bts->band = band;
1567
1568 return CMD_SUCCESS;
1569}
1570
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001571DEFUN(cfg_bts_ci,
1572 cfg_bts_ci_cmd,
1573 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001574 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001575{
1576 struct gsm_bts *bts = vty->index;
1577 int ci = atoi(argv[0]);
1578
1579 if (ci < 0 || ci > 0xffff) {
1580 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1581 ci, VTY_NEWLINE);
1582 return CMD_WARNING;
1583 }
1584 bts->cell_identity = ci;
1585
1586 return CMD_SUCCESS;
1587}
1588
Harald Welte5258fc42009-03-28 19:07:53 +00001589DEFUN(cfg_bts_lac,
1590 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001591 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001592 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001593{
1594 struct gsm_bts *bts = vty->index;
1595 int lac = atoi(argv[0]);
1596
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001597 if (lac < 0 || lac > 0xffff) {
1598 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001599 lac, VTY_NEWLINE);
1600 return CMD_WARNING;
1601 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001602
1603 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1604 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1605 lac, VTY_NEWLINE);
1606 return CMD_WARNING;
1607 }
1608
Harald Welte5258fc42009-03-28 19:07:53 +00001609 bts->location_area_code = lac;
1610
1611 return CMD_SUCCESS;
1612}
1613
Harald Weltea43f7892009-12-01 18:04:30 +05301614
Harald Welte5258fc42009-03-28 19:07:53 +00001615DEFUN(cfg_bts_tsc,
1616 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001617 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001618 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001619{
1620 struct gsm_bts *bts = vty->index;
1621 int tsc = atoi(argv[0]);
1622
Harald Welte5258fc42009-03-28 19:07:53 +00001623 bts->tsc = tsc;
1624
1625 return CMD_SUCCESS;
1626}
1627
Harald Welte78f2f502009-05-23 16:56:52 +00001628DEFUN(cfg_bts_bsic,
1629 cfg_bts_bsic_cmd,
1630 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001631 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1632 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001633{
1634 struct gsm_bts *bts = vty->index;
1635 int bsic = atoi(argv[0]);
1636
1637 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001638 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001639 bsic, VTY_NEWLINE);
1640 return CMD_WARNING;
1641 }
1642 bts->bsic = bsic;
1643
1644 return CMD_SUCCESS;
1645}
1646
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001647DEFUN(cfg_bts_timezone,
1648 cfg_bts_timezone_cmd,
1649 "timezone <-19-19> (0|15|30|45)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001650 "Set the Timezone Offset of this BTS\n"
1651 "Timezone offset (hours)\n"
1652 "Timezone offset (00 minutes)\n"
1653 "Timezone offset (15 minutes)\n"
1654 "Timezone offset (30 minutes)\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001655 "Timezone offset (45 minutes)\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001656 )
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001657{
1658 struct gsm_bts *bts = vty->index;
1659 int tzhr = atoi(argv[0]);
1660 int tzmn = atoi(argv[1]);
1661
Harald Welte45f91712012-07-08 16:48:11 +02001662 bts->tz.hr = tzhr;
1663 bts->tz.mn = tzmn;
Jacob Erlbeck946d1412013-09-17 13:59:29 +02001664 bts->tz.dst = 0;
1665 bts->tz.override = 1;
1666
1667 return CMD_SUCCESS;
1668}
1669
1670DEFUN(cfg_bts_timezone_dst,
1671 cfg_bts_timezone_dst_cmd,
1672 "timezone <-19-19> (0|15|30|45) <0-2>",
1673 "Set the Timezone Offset of this BTS\n"
1674 "Timezone offset (hours)\n"
1675 "Timezone offset (00 minutes)\n"
1676 "Timezone offset (15 minutes)\n"
1677 "Timezone offset (30 minutes)\n"
1678 "Timezone offset (45 minutes)\n"
1679 "DST offset (hours)\n"
1680 )
1681{
1682 struct gsm_bts *bts = vty->index;
1683 int tzhr = atoi(argv[0]);
1684 int tzmn = atoi(argv[1]);
1685 int tzdst = atoi(argv[2]);
1686
1687 bts->tz.hr = tzhr;
1688 bts->tz.mn = tzmn;
1689 bts->tz.dst = tzdst;
Harald Welte45f91712012-07-08 16:48:11 +02001690 bts->tz.override = 1;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001691
1692 return CMD_SUCCESS;
1693}
1694
1695DEFUN(cfg_bts_no_timezone,
1696 cfg_bts_no_timezone_cmd,
1697 "no timezone",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001698 NO_STR
1699 "Disable BTS specific timezone\n")
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001700{
1701 struct gsm_bts *bts = vty->index;
Harald Welte45f91712012-07-08 16:48:11 +02001702
1703 bts->tz.override = 0;
1704
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001705 return CMD_SUCCESS;
1706}
Harald Welte78f2f502009-05-23 16:56:52 +00001707
Harald Welte4cc34222009-05-01 15:12:31 +00001708DEFUN(cfg_bts_unit_id,
1709 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001710 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001711 "Abis/IP specific options\n"
1712 "Set the IPA BTS Unit ID\n"
1713 "Unit ID (Site)\n"
1714 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001715{
1716 struct gsm_bts *bts = vty->index;
1717 int site_id = atoi(argv[0]);
1718 int bts_id = atoi(argv[1]);
1719
Harald Welte07dc73d2009-08-07 13:27:09 +02001720 if (!is_ipaccess_bts(bts)) {
1721 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1722 return CMD_WARNING;
1723 }
1724
Harald Welte4cc34222009-05-01 15:12:31 +00001725 bts->ip_access.site_id = site_id;
1726 bts->ip_access.bts_id = bts_id;
1727
1728 return CMD_SUCCESS;
1729}
1730
Harald Welte8b291802013-03-12 13:57:05 +01001731DEFUN(cfg_bts_rsl_ip,
1732 cfg_bts_rsl_ip_cmd,
1733 "ip.access rsl-ip A.B.C.D",
1734 "Abis/IP specific options\n"
1735 "Set the IPA RSL IP Address of the BSC\n"
1736 "Destination IP address for RSL connection\n")
1737{
1738 struct gsm_bts *bts = vty->index;
1739 struct in_addr ia;
1740
1741 if (!is_ipaccess_bts(bts)) {
1742 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1743 return CMD_WARNING;
1744 }
1745
1746 inet_aton(argv[0], &ia);
1747 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1748
1749 return CMD_SUCCESS;
1750}
1751
1752
Sylvain Munautc9519462011-10-17 14:04:55 +02001753DEFUN(cfg_bts_nokia_site_skip_reset,
1754 cfg_bts_nokia_site_skip_reset_cmd,
1755 "nokia_site skip-reset (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001756 "Nokia *Site related commands\n"
1757 "Skip the reset step during bootstrap process of this BTS\n"
1758 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001759{
1760 struct gsm_bts *bts = vty->index;
1761
1762 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1763 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1764 return CMD_WARNING;
1765 }
1766
1767 bts->nokia.skip_reset = atoi(argv[0]);
1768
1769 return CMD_SUCCESS;
1770}
1771
Harald Welte8f0ed552010-05-11 21:53:49 +02001772#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001773#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001774
Harald Welte8175e952009-10-20 00:22:00 +02001775DEFUN(cfg_bts_stream_id,
1776 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001777 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001778 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001779 "Set the ip.access Stream ID of the OML link of this BTS\n"
1780 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001781{
1782 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001783 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001784
1785 if (!is_ipaccess_bts(bts)) {
1786 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1787 return CMD_WARNING;
1788 }
1789
1790 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001791 /* This is used by e1inp_bind_ops callback for each BTS model. */
1792 bts->oml_e1_link.e1_nr = linenr;
1793
1794 return CMD_SUCCESS;
1795}
1796
Harald Welted13e0cd2012-08-17 09:52:03 +02001797#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001798
Harald Welte42581822009-08-08 16:12:58 +02001799DEFUN(cfg_bts_oml_e1,
1800 cfg_bts_oml_e1_cmd,
1801 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001802 OML_E1_STR
1803 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001804 "E1/T1 line number to be used for OML\n"
1805 "E1/T1 timeslot to be used for OML\n"
1806 "E1/T1 timeslot to be used for OML\n"
1807 "E1/T1 sub-slot to be used for OML\n"
1808 "Use E1/T1 sub-slot 0\n"
1809 "Use E1/T1 sub-slot 1\n"
1810 "Use E1/T1 sub-slot 2\n"
1811 "Use E1/T1 sub-slot 3\n"
1812 "Use full E1 slot 3\n"
1813 )
Harald Welte42581822009-08-08 16:12:58 +02001814{
1815 struct gsm_bts *bts = vty->index;
1816
1817 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1818
1819 return CMD_SUCCESS;
1820}
1821
1822
1823DEFUN(cfg_bts_oml_e1_tei,
1824 cfg_bts_oml_e1_tei_cmd,
1825 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001826 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001827 "Set the TEI to be used for OML\n"
1828 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001829{
1830 struct gsm_bts *bts = vty->index;
1831
1832 bts->oml_tei = atoi(argv[0]);
1833
1834 return CMD_SUCCESS;
1835}
1836
Harald Welte7a8fa412009-08-10 13:48:16 +02001837DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1838 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001839 "Channnel Allocator\n" "Channel Allocator\n"
1840 "Allocate Timeslots and Transceivers in ascending order\n"
1841 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001842{
1843 struct gsm_bts *bts = vty->index;
1844
1845 if (!strcmp(argv[0], "ascending"))
1846 bts->chan_alloc_reverse = 0;
1847 else
1848 bts->chan_alloc_reverse = 1;
1849
1850 return CMD_SUCCESS;
1851}
1852
Harald Welte8f0ed552010-05-11 21:53:49 +02001853#define RACH_STR "Random Access Control Channel\n"
1854
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001855DEFUN(cfg_bts_rach_tx_integer,
1856 cfg_bts_rach_tx_integer_cmd,
1857 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001858 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001859 "Set the raw tx integer value in RACH Control parameters IE\n"
1860 "Set the raw tx integer value in RACH Control parameters IE\n"
1861 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001862{
1863 struct gsm_bts *bts = vty->index;
1864 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1865 return CMD_SUCCESS;
1866}
1867
1868DEFUN(cfg_bts_rach_max_trans,
1869 cfg_bts_rach_max_trans_cmd,
1870 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001871 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001872 "Set the maximum number of RACH burst transmissions\n"
1873 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001874 "Maximum number of 1 RACH burst transmissions\n"
1875 "Maximum number of 2 RACH burst transmissions\n"
1876 "Maximum number of 4 RACH burst transmissions\n"
1877 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001878{
1879 struct gsm_bts *bts = vty->index;
1880 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1881 return CMD_SUCCESS;
1882}
1883
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001884#define CD_STR "Channel Description\n"
1885
1886DEFUN(cfg_bts_chan_desc_att,
1887 cfg_bts_chan_desc_att_cmd,
1888 "channel-descrption attach (0|1)",
1889 CD_STR
1890 "Set if attachment is required\n"
1891 "Attachment is NOT required\n"
1892 "Attachment is required (standard)\n")
1893{
1894 struct gsm_bts *bts = vty->index;
1895 bts->si_common.chan_desc.att = atoi(argv[0]);
1896 return CMD_SUCCESS;
1897}
1898
1899DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1900 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1901 "channel-descrption bs-pa-mfrms <2-9>",
1902 CD_STR
1903 "Set number of multiframe periods for paging groups\n"
1904 "Number of multiframe periods for paging groups\n")
1905{
1906 struct gsm_bts *bts = vty->index;
1907 int bs_pa_mfrms = atoi(argv[0]);
1908
1909 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1910 return CMD_SUCCESS;
1911}
1912
1913DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1914 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1915 "channel-descrption bs-ag-blks-res <0-7>",
1916 CD_STR
1917 "Set number of blocks reserved for access grant\n"
1918 "Number of blocks reserved for access grant\n")
1919{
1920 struct gsm_bts *bts = vty->index;
1921 int bs_ag_blks_res = atoi(argv[0]);
1922
1923 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1924 return CMD_SUCCESS;
1925}
1926
Harald Welte8f0ed552010-05-11 21:53:49 +02001927#define NM_STR "Network Management\n"
1928
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001929DEFUN(cfg_bts_rach_nm_b_thresh,
1930 cfg_bts_rach_nm_b_thresh_cmd,
1931 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001932 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001933 "Set the NM Busy Threshold\n"
1934 "Set the NM Busy Threshold\n"
1935 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001936{
1937 struct gsm_bts *bts = vty->index;
1938 bts->rach_b_thresh = atoi(argv[0]);
1939 return CMD_SUCCESS;
1940}
1941
1942DEFUN(cfg_bts_rach_nm_ldavg,
1943 cfg_bts_rach_nm_ldavg_cmd,
1944 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001945 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001946 "Set the NM Loadaverage Slots value\n"
1947 "Set the NM Loadaverage Slots value\n"
1948 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001949{
1950 struct gsm_bts *bts = vty->index;
1951 bts->rach_ldavg_slots = atoi(argv[0]);
1952 return CMD_SUCCESS;
1953}
1954
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001955DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1956 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001957 "Should this cell be barred from access?\n"
1958 "Should this cell be barred from access?\n"
1959 "Cell should NOT be barred\n"
1960 "Cell should be barred\n")
1961
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001962{
1963 struct gsm_bts *bts = vty->index;
1964
Harald Welte71355012009-12-21 23:08:18 +01001965 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001966
1967 return CMD_SUCCESS;
1968}
1969
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001970DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1971 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001972 RACH_STR
1973 "Should this cell allow emergency calls?\n"
1974 "Should this cell allow emergency calls?\n"
1975 "Should this cell allow emergency calls?\n"
1976 "Do NOT allow emergency calls\n"
1977 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001978{
1979 struct gsm_bts *bts = vty->index;
1980
1981 if (atoi(argv[0]) == 0)
1982 bts->si_common.rach_control.t2 |= 0x4;
1983 else
1984 bts->si_common.rach_control.t2 &= ~0x4;
1985
1986 return CMD_SUCCESS;
1987}
1988
Ivan Kluchnikov67920592013-09-16 13:13:04 +04001989DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
1990 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
1991 RACH_STR
1992 "Set access control class\n"
1993 "Access control class 0\n"
1994 "Access control class 1\n"
1995 "Access control class 2\n"
1996 "Access control class 3\n"
1997 "Access control class 4\n"
1998 "Access control class 5\n"
1999 "Access control class 6\n"
2000 "Access control class 7\n"
2001 "Access control class 8\n"
2002 "Access control class 9\n"
2003 "Access control class 11 for PLMN use\n"
2004 "Access control class 12 for security services\n"
2005 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2006 "Access control class 14 for emergency services\n"
2007 "Access control class 15 for PLMN staff\n"
2008 "barred to use access control class\n"
2009 "allowed to use access control class\n")
2010{
2011 struct gsm_bts *bts = vty->index;
2012
2013 uint8_t control_class;
2014 uint8_t allowed = 0;
2015
2016 if (strcmp(argv[1], "allowed") == 0)
2017 allowed = 1;
2018
2019 control_class = atoi(argv[0]);
2020 if (control_class < 8)
2021 if (allowed)
2022 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2023 else
2024 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2025 else
2026 if (allowed)
2027 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2028 else
2029 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2030
2031 return CMD_SUCCESS;
2032}
2033
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002034DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2035 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002036 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002037 "Maximum transmit power of the MS\n"
2038 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002039 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02002040{
2041 struct gsm_bts *bts = vty->index;
2042
2043 bts->ms_max_power = atoi(argv[0]);
2044
2045 return CMD_SUCCESS;
2046}
2047
Harald Weltecfaabbb2012-08-16 23:23:50 +02002048#define CELL_STR "Cell Parameters\n"
2049
Harald Welte73225282009-12-12 18:17:25 +01002050DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2051 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002052 CELL_STR "Cell re-selection parameters\n"
2053 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01002054 "Cell Re-Selection Hysteresis in dB")
2055{
2056 struct gsm_bts *bts = vty->index;
2057
2058 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2059
2060 return CMD_SUCCESS;
2061}
2062
2063DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2064 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002065 "Minimum RxLev needed for cell access\n"
2066 "Minimum RxLev needed for cell access\n"
2067 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01002068 "Minimum RxLev needed for cell access (better than -110dBm)")
2069{
2070 struct gsm_bts *bts = vty->index;
2071
2072 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2073
2074 return CMD_SUCCESS;
2075}
2076
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002077DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2078 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002079 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2080 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002081{
2082 struct gsm_bts *bts = vty->index;
2083
2084 bts->si_common.cell_ro_sel_par.present = 1;
2085 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2086
2087 return CMD_SUCCESS;
2088}
2089
2090DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2091 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002092 CELL_STR "Cell Re-Selection Parameters\n"
2093 "Cell Re-Selection Offset (CRO) in dB\n"
2094 "Cell Re-Selection Offset (CRO) in dB\n"
2095 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002096{
2097 struct gsm_bts *bts = vty->index;
2098
2099 bts->si_common.cell_ro_sel_par.present = 1;
2100 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2101
2102 return CMD_SUCCESS;
2103}
2104
2105DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2106 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002107 "Cell selection temporary negative offset\n"
2108 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002109 "Cell selection temporary negative offset in dB")
2110{
2111 struct gsm_bts *bts = vty->index;
2112
2113 bts->si_common.cell_ro_sel_par.present = 1;
2114 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2115
2116 return CMD_SUCCESS;
2117}
2118
2119DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2120 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002121 "Cell selection temporary negative offset\n"
2122 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002123 "Sets cell selection temporary negative offset to infinity")
2124{
2125 struct gsm_bts *bts = vty->index;
2126
2127 bts->si_common.cell_ro_sel_par.present = 1;
2128 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2129
2130 return CMD_SUCCESS;
2131}
2132
2133DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2134 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002135 "Cell selection penalty time\n"
2136 "Cell selection penalty time\n"
2137 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002138{
2139 struct gsm_bts *bts = vty->index;
2140
2141 bts->si_common.cell_ro_sel_par.present = 1;
2142 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2143
2144 return CMD_SUCCESS;
2145}
2146
2147DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2148 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002149 "Cell selection penalty time\n"
2150 "Cell selection penalty time\n"
2151 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002152 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2153 "and TEMPORARY_OFFSET is ignored)")
2154{
2155 struct gsm_bts *bts = vty->index;
2156
2157 bts->si_common.cell_ro_sel_par.present = 1;
2158 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2159
2160 return CMD_SUCCESS;
2161}
2162
Harald Welte (local)efc92312009-08-14 23:09:25 +02002163DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002164 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002165 "Periodic Location Updating Interval\n"
2166 "Periodic Location Updating Interval\n"
2167 "Periodic Location Updating Interval\n"
2168 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002169{
2170 struct gsm_bts *bts = vty->index;
2171
Dieter Spaard6613e02010-10-05 21:10:55 +02002172 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002173
2174 return CMD_SUCCESS;
2175}
2176
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02002177DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2178 "no periodic location update",
2179 NO_STR
2180 "Periodic Location Updating Interval\n"
2181 "Periodic Location Updating Interval\n"
2182 "Periodic Location Updating Interval\n")
2183{
2184 struct gsm_bts *bts = vty->index;
2185
2186 bts->si_common.chan_desc.t3212 = 0;
2187 return CMD_SUCCESS;
2188}
2189
Harald Welte8f0ed552010-05-11 21:53:49 +02002190#define GPRS_TEXT "GPRS Packet Network\n"
2191
Harald Welteaf387632010-03-14 23:30:30 +08002192DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002193 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002194 GPRS_TEXT
2195 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002196 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002197 "GPRS BSSGP VC Identifier")
2198{
2199 struct gsm_bts *bts = vty->index;
2200
Harald Welte4511d892010-04-18 15:51:20 +02002201 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002202 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2203 return CMD_WARNING;
2204 }
2205
Harald Welte97a282b2010-03-14 15:37:43 +08002206 bts->gprs.cell.bvci = atoi(argv[0]);
2207
2208 return CMD_SUCCESS;
2209}
2210
Harald Weltea5731cf2010-03-22 11:48:36 +08002211DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2212 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002213 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002214 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002215 "GPRS NS Entity Identifier")
2216{
2217 struct gsm_bts *bts = vty->index;
2218
Harald Welte4511d892010-04-18 15:51:20 +02002219 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002220 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2221 return CMD_WARNING;
2222 }
2223
2224 bts->gprs.nse.nsei = atoi(argv[0]);
2225
2226 return CMD_SUCCESS;
2227}
2228
Harald Welte8f0ed552010-05-11 21:53:49 +02002229#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2230 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002231
Harald Welte97a282b2010-03-14 15:37:43 +08002232DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2233 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002234 GPRS_TEXT NSVC_TEXT
2235 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002236 "GPRS NS VC Identifier")
2237{
2238 struct gsm_bts *bts = vty->index;
2239 int idx = atoi(argv[0]);
2240
Harald Welte4511d892010-04-18 15:51:20 +02002241 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002242 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2243 return CMD_WARNING;
2244 }
2245
Harald Welte97a282b2010-03-14 15:37:43 +08002246 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2247
2248 return CMD_SUCCESS;
2249}
2250
Harald Welteaf387632010-03-14 23:30:30 +08002251DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2252 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002253 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002254 "GPRS NS Local UDP Port\n"
2255 "GPRS NS Local UDP Port\n"
2256 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002257 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002258{
2259 struct gsm_bts *bts = vty->index;
2260 int idx = atoi(argv[0]);
2261
Harald Welte4511d892010-04-18 15:51:20 +02002262 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002263 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2264 return CMD_WARNING;
2265 }
2266
Harald Welteaf387632010-03-14 23:30:30 +08002267 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2268
2269 return CMD_SUCCESS;
2270}
2271
2272DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2273 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002274 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002275 "GPRS NS Remote UDP Port\n"
2276 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002277 "GPRS NS Remote UDP Port\n"
2278 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002279{
2280 struct gsm_bts *bts = vty->index;
2281 int idx = atoi(argv[0]);
2282
Harald Welte4511d892010-04-18 15:51:20 +02002283 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002284 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2285 return CMD_WARNING;
2286 }
2287
Harald Welteaf387632010-03-14 23:30:30 +08002288 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2289
2290 return CMD_SUCCESS;
2291}
2292
2293DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2294 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002295 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002296 "GPRS NS Remote IP Address\n"
2297 "GPRS NS Remote IP Address\n"
2298 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002299{
2300 struct gsm_bts *bts = vty->index;
2301 int idx = atoi(argv[0]);
2302 struct in_addr ia;
2303
Harald Welte4511d892010-04-18 15:51:20 +02002304 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002305 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2306 return CMD_WARNING;
2307 }
2308
Harald Welteaf387632010-03-14 23:30:30 +08002309 inet_aton(argv[1], &ia);
2310 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2311
2312 return CMD_SUCCESS;
2313}
2314
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002315DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002316 "paging free <-1-1024>",
2317 "Paging options\n"
2318 "Only page when having a certain amount of free slots\n"
2319 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002320{
2321 struct gsm_bts *bts = vty->index;
2322
2323 bts->paging.free_chans_need = atoi(argv[0]);
2324 return CMD_SUCCESS;
2325}
2326
Harald Welte615e9562010-05-11 23:50:21 +02002327DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2328 "gprs ns timer " NS_TIMERS " <0-255>",
2329 GPRS_TEXT "Network Service\n"
2330 "Network Service Timer\n"
2331 NS_TIMERS_HELP "Timer Value\n")
2332{
2333 struct gsm_bts *bts = vty->index;
2334 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2335 int val = atoi(argv[1]);
2336
2337 if (bts->gprs.mode == BTS_GPRS_NONE) {
2338 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2339 return CMD_WARNING;
2340 }
2341
2342 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2343 return CMD_WARNING;
2344
2345 bts->gprs.nse.timer[idx] = val;
2346
2347 return CMD_SUCCESS;
2348}
2349
2350#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 +02002351#define BSSGP_TIMERS_HELP \
2352 "Tbvc-block timeout\n" \
2353 "Tbvc-block retries\n" \
2354 "Tbvc-unblock retries\n" \
2355 "Tbvcc-reset timeout\n" \
2356 "Tbvc-reset retries\n" \
2357 "Tbvc-suspend timeout\n" \
2358 "Tbvc-suspend retries\n" \
2359 "Tbvc-resume timeout\n" \
2360 "Tbvc-resume retries\n" \
2361 "Tbvc-capa-update timeout\n" \
2362 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002363
2364DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2365 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2366 GPRS_TEXT "Cell / BSSGP\n"
2367 "Cell/BSSGP Timer\n"
2368 BSSGP_TIMERS_HELP "Timer Value\n")
2369{
2370 struct gsm_bts *bts = vty->index;
2371 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2372 int val = atoi(argv[1]);
2373
2374 if (bts->gprs.mode == BTS_GPRS_NONE) {
2375 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2376 return CMD_WARNING;
2377 }
2378
2379 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2380 return CMD_WARNING;
2381
2382 bts->gprs.cell.timer[idx] = val;
2383
2384 return CMD_SUCCESS;
2385}
2386
Harald Welte97a282b2010-03-14 15:37:43 +08002387DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2388 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002389 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002390 "GPRS Routing Area Code\n"
2391 "GPRS Routing Area Code\n"
2392 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002393{
2394 struct gsm_bts *bts = vty->index;
2395
Harald Welte4511d892010-04-18 15:51:20 +02002396 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002397 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2398 return CMD_WARNING;
2399 }
2400
Harald Welte97a282b2010-03-14 15:37:43 +08002401 bts->gprs.rac = atoi(argv[0]);
2402
2403 return CMD_SUCCESS;
2404}
2405
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01002406DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2407 "gprs network-control-order (nc0|nc1|nc2)",
2408 GPRS_TEXT
2409 "GPRS Network Control Order\n"
2410 "MS controlled cell re-selection, no measurement reporting\n"
2411 "MS controlled cell re-selection, MS sends measurement reports\n"
2412 "Network controlled cell re-selection, MS sends measurement reports\n")
2413{
2414 struct gsm_bts *bts = vty->index;
2415
2416 if (bts->gprs.mode == BTS_GPRS_NONE) {
2417 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2418 return CMD_WARNING;
2419 }
2420
2421 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2422
2423 return CMD_SUCCESS;
2424}
2425
Harald Welte4511d892010-04-18 15:51:20 +02002426DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2427 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002428 GPRS_TEXT
2429 "GPRS Mode for this BTS\n"
2430 "GPRS Disabled on this BTS\n"
2431 "GPRS Enabled on this BTS\n"
2432 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002433{
2434 struct gsm_bts *bts = vty->index;
Harald Weltef3d8e922010-06-14 22:44:42 +02002435 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08002436
Harald Weltef3d8e922010-06-14 22:44:42 +02002437 if (mode != BTS_GPRS_NONE &&
2438 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2439 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2440 VTY_NEWLINE);
2441 return CMD_WARNING;
2442 }
2443 if (mode == BTS_GPRS_EGPRS &&
2444 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2445 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2446 VTY_NEWLINE);
2447 return CMD_WARNING;
2448 }
2449
2450 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002451
2452 return CMD_SUCCESS;
2453}
2454
Harald Welte9fbff4a2010-07-30 11:50:09 +02002455#define SI_TEXT "System Information Messages\n"
2456#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)"
2457#define SI_TYPE_HELP "System Information Type 1\n" \
2458 "System Information Type 2\n" \
2459 "System Information Type 3\n" \
2460 "System Information Type 4\n" \
2461 "System Information Type 5\n" \
2462 "System Information Type 6\n" \
2463 "System Information Type 7\n" \
2464 "System Information Type 8\n" \
2465 "System Information Type 9\n" \
2466 "System Information Type 10\n" \
2467 "System Information Type 13\n" \
2468 "System Information Type 16\n" \
2469 "System Information Type 17\n" \
2470 "System Information Type 18\n" \
2471 "System Information Type 19\n" \
2472 "System Information Type 20\n" \
2473 "System Information Type 2bis\n" \
2474 "System Information Type 2ter\n" \
2475 "System Information Type 2quater\n" \
2476 "System Information Type 5bis\n" \
2477 "System Information Type 5ter\n"
2478
2479DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2480 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2481 SI_TEXT SI_TYPE_HELP
2482 "System Information Mode\n"
2483 "Static user-specified\n"
2484 "Dynamic, BSC-computed\n")
2485{
2486 struct gsm_bts *bts = vty->index;
2487 int type;
2488
2489 type = get_string_value(osmo_sitype_strs, argv[0]);
2490 if (type < 0) {
2491 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2492 return CMD_WARNING;
2493 }
2494
2495 if (!strcmp(argv[1], "static"))
2496 bts->si_mode_static |= (1 << type);
2497 else
2498 bts->si_mode_static &= ~(1 << type);
2499
2500 return CMD_SUCCESS;
2501}
2502
2503DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2504 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2505 SI_TEXT SI_TYPE_HELP
2506 "Static System Information filling\n"
2507 "Static user-specified SI content in HEX notation\n")
2508{
2509 struct gsm_bts *bts = vty->index;
2510 int rc, type;
2511
2512 type = get_string_value(osmo_sitype_strs, argv[0]);
2513 if (type < 0) {
2514 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2515 return CMD_WARNING;
2516 }
2517
2518 if (!(bts->si_mode_static & (1 << type))) {
2519 vty_out(vty, "SI Type %s is not configured in static mode%s",
2520 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2521 return CMD_WARNING;
2522 }
2523
Harald Welte290aaed2010-07-30 11:53:18 +02002524 /* Fill buffer with padding pattern */
2525 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2526
2527 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002528 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002529 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2530 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2531 return CMD_WARNING;
2532 }
2533
2534 /* Mark this SI as present */
2535 bts->si_valid |= (1 << type);
2536
2537 return CMD_SUCCESS;
2538}
2539
Harald Welte32c09622011-01-11 23:44:56 +01002540DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002541 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002542 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002543 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2544 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002545{
2546 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002547 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002548
Harald Welte64c07d22011-02-15 11:43:27 +01002549 switch (mode) {
2550 case NL_MODE_MANUAL_SI5SEP:
2551 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002552 /* make sure we clear the current list when switching to
2553 * manual mode */
2554 if (bts->neigh_list_manual_mode == 0)
2555 memset(&bts->si_common.data.neigh_list, 0,
2556 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002557 break;
2558 default:
2559 break;
2560 }
2561
2562 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002563
2564 return CMD_SUCCESS;
2565}
2566
2567DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002568 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002569 "Neighbor List\n" "Add to manual neighbor list\n"
2570 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2571 "ARFCN of neighbor\n")
2572{
2573 struct gsm_bts *bts = vty->index;
2574 struct bitvec *bv = &bts->si_common.neigh_list;
2575 uint16_t arfcn = atoi(argv[1]);
2576
2577 if (!bts->neigh_list_manual_mode) {
2578 vty_out(vty, "%% Cannot configure neighbor list in "
2579 "automatic mode%s", VTY_NEWLINE);
2580 return CMD_WARNING;
2581 }
2582
2583 if (!strcmp(argv[0], "add"))
2584 bitvec_set_bit_pos(bv, arfcn, 1);
2585 else
2586 bitvec_set_bit_pos(bv, arfcn, 0);
2587
2588 return CMD_SUCCESS;
2589}
2590
Harald Welte64c07d22011-02-15 11:43:27 +01002591DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002592 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002593 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002594 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2595 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2596 "ARFCN of neighbor\n")
2597{
2598 struct gsm_bts *bts = vty->index;
2599 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2600 uint16_t arfcn = atoi(argv[1]);
2601
2602 if (!bts->neigh_list_manual_mode) {
2603 vty_out(vty, "%% Cannot configure neighbor list in "
2604 "automatic mode%s", VTY_NEWLINE);
2605 return CMD_WARNING;
2606 }
2607
2608 if (!strcmp(argv[0], "add"))
2609 bitvec_set_bit_pos(bv, arfcn, 1);
2610 else
2611 bitvec_set_bit_pos(bv, arfcn, 0);
2612
2613 return CMD_SUCCESS;
2614}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002615
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002616#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2617
2618DEFUN(cfg_bts_excl_rf_lock,
2619 cfg_bts_excl_rf_lock_cmd,
2620 "rf-lock-exclude",
2621 EXCL_RFLOCK_STR)
2622{
2623 struct gsm_bts *bts = vty->index;
2624 bts->excl_from_rf_lock = 1;
2625 return CMD_SUCCESS;
2626}
2627
2628DEFUN(cfg_bts_no_excl_rf_lock,
2629 cfg_bts_no_excl_rf_lock_cmd,
2630 "no rf-lock-exclude",
2631 NO_STR EXCL_RFLOCK_STR)
2632{
2633 struct gsm_bts *bts = vty->index;
2634 bts->excl_from_rf_lock = 0;
2635 return CMD_SUCCESS;
2636}
2637
Harald Welte8f0ed552010-05-11 21:53:49 +02002638#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02002639
Harald Welte5258fc42009-03-28 19:07:53 +00002640/* per TRX configuration */
2641DEFUN(cfg_trx,
2642 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02002643 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002644 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00002645 "Select a TRX to configure")
2646{
2647 int trx_nr = atoi(argv[0]);
2648 struct gsm_bts *bts = vty->index;
2649 struct gsm_bts_trx *trx;
2650
Harald Weltee441d9c2009-06-21 16:17:15 +02002651 if (trx_nr > bts->num_trx) {
2652 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2653 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00002654 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02002655 } else if (trx_nr == bts->num_trx) {
2656 /* we need to allocate a new one */
2657 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002658 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02002659 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002660
Harald Weltee441d9c2009-06-21 16:17:15 +02002661 if (!trx)
2662 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00002663
2664 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02002665 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00002666 vty->node = TRX_NODE;
2667
2668 return CMD_SUCCESS;
2669}
2670
2671DEFUN(cfg_trx_arfcn,
2672 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002673 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02002674 "Set the ARFCN for this TRX\n"
2675 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002676{
2677 int arfcn = atoi(argv[0]);
2678 struct gsm_bts_trx *trx = vty->index;
2679
2680 /* FIXME: check if this ARFCN is supported by this TRX */
2681
2682 trx->arfcn = arfcn;
2683
2684 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2685 /* FIXME: use OML layer to update the ARFCN */
2686 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2687
2688 return CMD_SUCCESS;
2689}
2690
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002691DEFUN(cfg_trx_nominal_power,
2692 cfg_trx_nominal_power_cmd,
2693 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002694 "Nominal TRX RF Power in dBm\n"
2695 "Nominal TRX RF Power in dBm\n"
2696 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002697{
2698 struct gsm_bts_trx *trx = vty->index;
2699
2700 trx->nominal_power = atoi(argv[0]);
2701
2702 return CMD_SUCCESS;
2703}
2704
Harald Weltefcd24452009-06-20 18:15:19 +02002705DEFUN(cfg_trx_max_power_red,
2706 cfg_trx_max_power_red_cmd,
2707 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002708 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02002709 "Reduction of maximum BS RF Power in dB\n")
2710{
2711 int maxpwr_r = atoi(argv[0]);
2712 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01002713 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02002714
2715 /* FIXME: check if our BTS type supports more than 12 */
2716 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2717 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2718 maxpwr_r, VTY_NEWLINE);
2719 return CMD_WARNING;
2720 }
2721 if (maxpwr_r & 1) {
2722 vty_out(vty, "%% Power %d dB is not an even value%s",
2723 maxpwr_r, VTY_NEWLINE);
2724 return CMD_WARNING;
2725 }
2726
2727 trx->max_power_red = maxpwr_r;
2728
2729 /* FIXME: make sure we update this using OML */
2730
2731 return CMD_SUCCESS;
2732}
2733
Harald Welte42581822009-08-08 16:12:58 +02002734DEFUN(cfg_trx_rsl_e1,
2735 cfg_trx_rsl_e1_cmd,
2736 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002737 "RSL Parameters\n"
2738 "E1/T1 interface to be used for RSL\n"
2739 "E1/T1 interface to be used for RSL\n"
2740 "E1/T1 Line Number to be used for RSL\n"
2741 "E1/T1 Timeslot to be used for RSL\n"
2742 "E1/T1 Timeslot to be used for RSL\n"
2743 "E1/T1 Sub-slot to be used for RSL\n"
2744 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2745 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2746 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2747 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2748 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002749{
2750 struct gsm_bts_trx *trx = vty->index;
2751
2752 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2753
2754 return CMD_SUCCESS;
2755}
2756
2757DEFUN(cfg_trx_rsl_e1_tei,
2758 cfg_trx_rsl_e1_tei_cmd,
2759 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002760 "RSL Parameters\n"
2761 "Set the TEI to be used for RSL\n"
2762 "Set the TEI to be used for RSL\n"
2763 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002764{
2765 struct gsm_bts_trx *trx = vty->index;
2766
2767 trx->rsl_tei = atoi(argv[0]);
2768
2769 return CMD_SUCCESS;
2770}
2771
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002772DEFUN(cfg_trx_rf_locked,
2773 cfg_trx_rf_locked_cmd,
2774 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002775 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2776 "TRX is NOT RF locked (active)\n"
2777 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002778{
2779 int locked = atoi(argv[0]);
2780 struct gsm_bts_trx *trx = vty->index;
2781
2782 gsm_trx_lock_rf(trx, locked);
2783 return CMD_SUCCESS;
2784}
Harald Welte42581822009-08-08 16:12:58 +02002785
Harald Welte5258fc42009-03-28 19:07:53 +00002786/* per TS configuration */
2787DEFUN(cfg_ts,
2788 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002789 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002790 "Select a Timeslot to configure\n"
2791 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002792{
2793 int ts_nr = atoi(argv[0]);
2794 struct gsm_bts_trx *trx = vty->index;
2795 struct gsm_bts_trx_ts *ts;
2796
2797 if (ts_nr >= TRX_NR_TS) {
2798 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2799 TRX_NR_TS, VTY_NEWLINE);
2800 return CMD_WARNING;
2801 }
2802
2803 ts = &trx->ts[ts_nr];
2804
2805 vty->index = ts;
2806 vty->node = TS_NODE;
2807
2808 return CMD_SUCCESS;
2809}
2810
Harald Weltea6fd58e2009-08-07 00:25:23 +02002811DEFUN(cfg_ts_pchan,
2812 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002813 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01002814 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002815{
2816 struct gsm_bts_trx_ts *ts = vty->index;
2817 int pchanc;
2818
2819 pchanc = gsm_pchan_parse(argv[0]);
2820 if (pchanc < 0)
2821 return CMD_WARNING;
2822
2823 ts->pchan = pchanc;
2824
2825 return CMD_SUCCESS;
2826}
2827
2828/* used for backwards compatibility with old config files that still
2829 * have uppercase pchan type names */
2830DEFUN_HIDDEN(cfg_ts_pchan_compat,
2831 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02002832 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01002833 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02002834{
2835 struct gsm_bts_trx_ts *ts = vty->index;
2836 int pchanc;
2837
2838 pchanc = gsm_pchan_parse(argv[0]);
2839 if (pchanc < 0)
2840 return CMD_WARNING;
2841
2842 ts->pchan = pchanc;
2843
2844 return CMD_SUCCESS;
2845}
2846
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002847
2848
Harald Welte135a6482011-05-30 12:09:13 +02002849DEFUN(cfg_ts_tsc,
2850 cfg_ts_tsc_cmd,
2851 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002852 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02002853{
2854 struct gsm_bts_trx_ts *ts = vty->index;
2855
2856 ts->tsc = atoi(argv[0]);
2857
2858 return CMD_SUCCESS;
2859}
2860
Harald Weltea39b0f22010-06-14 22:26:10 +02002861#define HOPPING_STR "Configure frequency hopping\n"
2862
2863DEFUN(cfg_ts_hopping,
2864 cfg_ts_hopping_cmd,
2865 "hopping enabled (0|1)",
2866 HOPPING_STR "Enable or disable frequency hopping\n"
2867 "Disable frequency hopping\n" "Enable frequency hopping\n")
2868{
2869 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02002870 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02002871
Harald Weltec2fb3d02010-06-14 22:47:37 +02002872 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2873 vty_out(vty, "BTS model does not support hopping%s",
2874 VTY_NEWLINE);
2875 return CMD_WARNING;
2876 }
2877
2878 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02002879
2880 return CMD_SUCCESS;
2881}
2882
Harald Welte6e0cd042009-09-12 13:05:33 +02002883DEFUN(cfg_ts_hsn,
2884 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02002885 "hopping sequence-number <0-63>",
2886 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002887 "Which hopping sequence to use for this channel\n"
2888 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002889{
2890 struct gsm_bts_trx_ts *ts = vty->index;
2891
2892 ts->hopping.hsn = atoi(argv[0]);
2893
2894 return CMD_SUCCESS;
2895}
2896
2897DEFUN(cfg_ts_maio,
2898 cfg_ts_maio_cmd,
2899 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002900 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002901 "Which hopping MAIO to use for this channel\n"
2902 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002903{
2904 struct gsm_bts_trx_ts *ts = vty->index;
2905
2906 ts->hopping.maio = atoi(argv[0]);
2907
2908 return CMD_SUCCESS;
2909}
2910
2911DEFUN(cfg_ts_arfcn_add,
2912 cfg_ts_arfcn_add_cmd,
2913 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002914 HOPPING_STR "Configure hopping ARFCN list\n"
2915 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002916{
2917 struct gsm_bts_trx_ts *ts = vty->index;
2918 int arfcn = atoi(argv[0]);
2919
Harald Weltea39b0f22010-06-14 22:26:10 +02002920 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2921
Harald Welte6e0cd042009-09-12 13:05:33 +02002922 return CMD_SUCCESS;
2923}
2924
2925DEFUN(cfg_ts_arfcn_del,
2926 cfg_ts_arfcn_del_cmd,
2927 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002928 HOPPING_STR "Configure hopping ARFCN list\n"
2929 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002930{
2931 struct gsm_bts_trx_ts *ts = vty->index;
2932 int arfcn = atoi(argv[0]);
2933
Harald Weltea39b0f22010-06-14 22:26:10 +02002934 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2935
Harald Welte6e0cd042009-09-12 13:05:33 +02002936 return CMD_SUCCESS;
2937}
2938
Harald Weltea6fd58e2009-08-07 00:25:23 +02002939DEFUN(cfg_ts_e1_subslot,
2940 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002941 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002942 "E1/T1 channel connected to this on-air timeslot\n"
2943 "E1/T1 channel connected to this on-air timeslot\n"
2944 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002945 "E1/T1 timeslot connected to this on-air timeslot\n"
2946 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002947 "E1/T1 sub-slot connected to this on-air timeslot\n"
2948 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2949 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2950 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2951 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2952 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02002953{
2954 struct gsm_bts_trx_ts *ts = vty->index;
2955
Harald Welte42581822009-08-08 16:12:58 +02002956 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002957
2958 return CMD_SUCCESS;
2959}
Harald Welte5258fc42009-03-28 19:07:53 +00002960
Harald Welte4f10c252010-05-16 21:47:13 +02002961void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2962{
2963 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002964 osmo_counter_get(net->stats.chreq.total),
2965 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002966 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002967 osmo_counter_get(net->stats.chan.rf_fail),
2968 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002969 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002970 osmo_counter_get(net->stats.paging.attempted),
2971 osmo_counter_get(net->stats.paging.completed),
2972 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002973 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002974 osmo_counter_get(net->stats.bts.oml_fail),
2975 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002976}
2977
Harald Welte5bc61dc2010-05-16 22:02:16 +02002978DEFUN(logging_fltr_imsi,
2979 logging_fltr_imsi_cmd,
2980 "logging filter imsi IMSI",
2981 LOGGING_STR FILTER_STR
2982 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2983{
Harald Welte8dcebd32011-02-18 21:10:05 +01002984 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002985
Harald Welte8dcebd32011-02-18 21:10:05 +01002986 if (!tgt)
Harald Welte5bc61dc2010-05-16 22:02:16 +02002987 return CMD_WARNING;
Harald Welte5bc61dc2010-05-16 22:02:16 +02002988
Harald Welte8dcebd32011-02-18 21:10:05 +01002989 log_set_imsi_filter(tgt, argv[0]);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002990 return CMD_SUCCESS;
2991}
2992
Harald Welte8dcebd32011-02-18 21:10:05 +01002993
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002994DEFUN(drop_bts,
2995 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02002996 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002997 "Debug/Simulation command to drop Abis/IP BTS\n"
2998 "Debug/Simulation command to drop Abis/IP BTS\n"
2999 "Debug/Simulation command to drop Abis/IP BTS\n"
3000 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003001{
3002 struct gsm_network *gsmnet;
3003 struct gsm_bts_trx *trx;
3004 struct gsm_bts *bts;
3005 unsigned int bts_nr;
3006
3007 gsmnet = gsmnet_from_vty(vty);
3008
3009 bts_nr = atoi(argv[0]);
3010 if (bts_nr >= gsmnet->num_bts) {
3011 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3012 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3013 return CMD_WARNING;
3014 }
3015
3016 bts = gsm_bts_num(gsmnet, bts_nr);
3017 if (!bts) {
3018 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3019 return CMD_WARNING;
3020 }
3021
3022 if (!is_ipaccess_bts(bts)) {
3023 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3024 return CMD_WARNING;
3025 }
3026
3027
3028 /* close all connections */
3029 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003030 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003031 } else if (strcmp(argv[1], "rsl") == 0) {
3032 /* close all rsl connections */
3033 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01003034 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003035 }
3036 } else {
3037 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3038 return CMD_WARNING;
3039 }
3040
3041 return CMD_SUCCESS;
3042}
3043
Harald Welted0d2b0b2010-12-23 13:18:07 +01003044DEFUN(pdch_act, pdch_act_cmd,
3045 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3046 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3047 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3048 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3049 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3050{
3051 struct gsm_bts *bts;
3052 struct gsm_bts_trx *trx;
3053 struct gsm_bts_trx_ts *ts;
3054 int bts_nr = atoi(argv[0]);
3055 int trx_nr = atoi(argv[1]);
3056 int ts_nr = atoi(argv[2]);
3057 int activate;
3058
3059 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3060 if (!bts) {
3061 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3062 return CMD_WARNING;
3063 }
3064
3065 if (!is_ipaccess_bts(bts)) {
3066 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3067 VTY_NEWLINE);
3068 return CMD_WARNING;
3069 }
3070
3071 trx = gsm_bts_trx_num(bts, trx_nr);
3072 if (!trx) {
3073 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3074 return CMD_WARNING;
3075 }
3076
3077 ts = &trx->ts[ts_nr];
3078 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3079 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3080 "mode%s", ts_nr, VTY_NEWLINE);
3081 return CMD_WARNING;
3082 }
3083
3084 if (!strcmp(argv[3], "activate"))
3085 activate = 1;
3086 else
3087 activate = 0;
3088
3089 rsl_ipacc_pdch_activate(ts, activate);
3090
3091 return CMD_SUCCESS;
3092
3093}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003094
Harald Weltedcccb182010-05-16 20:52:23 +02003095extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02003096extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02003097
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003098int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00003099{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003100 cfg_ts_pchan_cmd.string =
3101 vty_cmd_string_from_valstr(tall_bsc_ctx,
3102 gsm_pchant_names,
3103 "phys_chan_config (", "|", ")",
3104 VTY_DO_LOWER);
3105 cfg_ts_pchan_cmd.doc =
3106 vty_cmd_string_from_valstr(tall_bsc_ctx,
3107 gsm_pchant_descs,
3108 "Physical Channel Combination\n",
3109 "\n", "", 0);
3110
Harald Weltee555c2b2012-08-17 13:02:12 +02003111 cfg_bts_type_cmd.string =
3112 vty_cmd_string_from_valstr(tall_bsc_ctx,
3113 bts_type_names,
3114 "type (", "|", ")",
3115 VTY_DO_LOWER);
3116 cfg_bts_type_cmd.doc =
3117 vty_cmd_string_from_valstr(tall_bsc_ctx,
3118 bts_type_descs,
3119 "BTS Vendor/Type\n",
3120 "\n", "", 0);
3121
3122
Harald Welteb4d5b172010-05-12 16:10:35 +00003123 install_element_ve(&show_net_cmd);
3124 install_element_ve(&show_bts_cmd);
3125 install_element_ve(&show_trx_cmd);
3126 install_element_ve(&show_ts_cmd);
3127 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08003128 install_element_ve(&show_lchan_summary_cmd);
Harald Welte5bc61dc2010-05-16 22:02:16 +02003129 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00003130
Harald Welteb4d5b172010-05-12 16:10:35 +00003131 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +01003132 install_element_ve(&show_paging_group_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003133
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01003134 logging_vty_add_cmds(cat);
Harald Welte8dcebd32011-02-18 21:10:05 +01003135 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01003136
Harald Welte5013b2a2009-08-07 13:29:14 +02003137 install_element(CONFIG_NODE, &cfg_net_cmd);
3138 install_node(&net_node, config_write_net);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003139 vty_install_default(GSMNET_NODE);
Harald Welte42581822009-08-08 16:12:58 +02003140 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003141 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3142 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3143 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02003144 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01003145 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09003146 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01003147 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01003148 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01003149 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01003150 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01003151 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3152 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3153 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3154 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3155 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3156 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01003157 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003158 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3159 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3160 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3161 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3162 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3163 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3164 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3165 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3166 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01003167 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003168 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08003169 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01003170 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08003171 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003172
3173 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02003174 install_node(&bts_node, config_write_bts);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003175 vty_install_default(BTS_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003176 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003177 install_element(BTS_NODE, &cfg_description_cmd);
3178 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02003179 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02003180 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003181 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3182 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003183 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00003184 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b291802013-03-12 13:57:05 +01003185 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003186 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeck946d1412013-09-17 13:59:29 +02003187 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003188 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02003189 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02003190 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003191 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3192 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02003193 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01003194 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3195 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02003196 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3197 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3198 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08003199 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3200 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02003201 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08003202 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov67920592013-09-16 13:13:04 +04003203 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02003204 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02003205 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +02003206 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01003207 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3208 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01003209 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3210 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3211 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3212 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3213 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3214 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02003215 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003216 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003217 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberg0c8f9ca2013-03-16 16:31:26 +01003218 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003219 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003220 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08003221 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003222 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08003223 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3224 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3225 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08003226 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02003227 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3228 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01003229 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3230 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01003231 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02003232 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3233 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003234
Harald Welte5258fc42009-03-28 19:07:53 +00003235 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003236 install_node(&trx_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003237 vty_install_default(TRX_NODE);
Harald Welte5258fc42009-03-28 19:07:53 +00003238 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003239 install_element(TRX_NODE, &cfg_description_cmd);
3240 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003241 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02003242 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003243 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3244 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003245 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003246
Harald Welte5258fc42009-03-28 19:07:53 +00003247 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003248 install_node(&ts_node, dummy_config_write);
Jacob Erlbeck36722e12013-10-29 09:30:30 +01003249 vty_install_default(TS_NODE);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003250 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003251 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02003252 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02003253 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02003254 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3255 install_element(TS_NODE, &cfg_ts_maio_cmd);
3256 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3257 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003258 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003259
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003260 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003261 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003262
Harald Welte81c9b9c2010-05-31 16:40:40 +02003263 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01003264 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01003265 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02003266
Harald Weltedcccb182010-05-16 20:52:23 +02003267 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00003268
Harald Welte68628e82009-03-10 12:17:57 +00003269 return 0;
3270}