blob: b27184be3f4b981391f1c676985115e042ef365b [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte59b04682009-06-10 05:40:52 +08008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte0e3e88e2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080014 *
Harald Welte0e3e88e2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080022
Harald Weltebd9591f2010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte2addf852012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte59b04682009-06-10 05:40:52 +080029
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +010030#include <osmocom/gsm/gsm0502.h>
31
Harald Welte59b04682009-06-10 05:40:52 +080032#include <arpa/inet.h>
33
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010034#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/gsm_data.h>
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +020036#include <osmocom/abis/e1_input.h>
Harald Welte59b04682009-06-10 05:40:52 +080037#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010038#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010039#include <osmocom/core/utils.h>
40#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020041#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010042#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010043#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080044#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010045#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020046#include <openbsc/vty.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080047#include <osmocom/gprs/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020048#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020049#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010050#include <openbsc/paging.h>
Harald Welte64fcd772011-08-20 18:25:02 +020051#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010052#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010053#include <openbsc/osmo_msc_data.h>
54#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080055
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +010056#include <inttypes.h>
57
Harald Welted9dea592011-03-04 13:53:51 +010058#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020059
Holger Hans Peter Freythere8127042011-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 Welted6b62e32010-05-12 17:19:53 +000068/* FIXME: this should go to some common file */
69static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-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 Welted6b62e32010-05-12 17:19:53 +000080static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-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 Weltef989b782011-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 Willmann2c9540c2012-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 Weltee87eb462009-08-07 13:29:14 +0200109struct cmd_node net_node = {
110 GSMNET_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200111 "%s(config-net)# ",
Harald Weltee87eb462009-08-07 13:29:14 +0200112 1,
113};
114
Harald Welte59b04682009-06-10 05:40:52 +0800115struct cmd_node bts_node = {
116 BTS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200117 "%s(config-net-bts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800118 1,
119};
120
121struct cmd_node trx_node = {
122 TRX_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200123 "%s(config-net-bts-trx)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800124 1,
125};
126
127struct cmd_node ts_node = {
128 TS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200129 "%s(config-net-bts-trx-ts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800130 1,
131};
132
Harald Welte61daf6d2010-05-27 13:39:40 +0200133extern struct gsm_network *bsc_gsmnet;
134
Harald Welte40152872010-05-16 20:52:23 +0200135struct gsm_network *gsmnet_from_vty(struct vty *v)
136{
Harald Welte61daf6d2010-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 Welte40152872010-05-16 20:52:23 +0200141 struct telnet_connection *conn = v->priv;
142 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200143#else
144 return bsc_gsmnet;
145#endif
Harald Welte40152872010-05-16 20:52:23 +0200146}
147
Harald Welte59b04682009-06-10 05:40:52 +0800148static 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 Weltee7b751c2013-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 Welte306a8892011-05-23 20:30:39 +0200158 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800159}
160
Harald Weltefe96f382009-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 Welte59b04682009-06-10 05:40:52 +0800181static void net_dump_vty(struct vty *vty, struct gsm_network *net)
182{
Harald Weltefe96f382009-12-22 13:09:29 +0100183 struct pchan_load pl;
184
Harald Welte59b04682009-06-10 05:40:52 +0800185 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);
188 vty_out(vty, " Long network name: '%s'%s",
189 net->name_long, VTY_NEWLINE);
190 vty_out(vty, " Short network name: '%s'%s",
191 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200192 vty_out(vty, " Authentication policy: %s%s",
193 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100194 vty_out(vty, " Location updating reject cause: %u%s",
195 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900196 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
197 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100198 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
199 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800200 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
201 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100202 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
203 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100204 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
205 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100206 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
207 VTY_NEWLINE);
Harald Weltefe96f382009-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 Freytherd0146922011-02-24 14:19:14 +0100211
212 /* show rf */
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200213 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100214 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200215 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100216 VTY_NEWLINE);
Jacob Erlbeckdcce8e82013-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 Welte59b04682009-06-10 05:40:52 +0800221}
222
223DEFUN(show_net, show_net_cmd, "show network",
224 SHOW_STR "Display information about a GSM NETWORK\n")
225{
Harald Welte40152872010-05-16 20:52:23 +0200226 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800227 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{
234 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,
245 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
246 vty_out(vty, " E1 TEI %u, SAPI %u%s",
247 e1l->tei, e1l->sapi, VTY_NEWLINE);
248}
249
250static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
251{
Harald Weltefe96f382009-12-22 13:09:29 +0100252 struct pchan_load pl;
253
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200254 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-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 Freythera098dfb2009-08-21 14:44:12 +0200257 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200258 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200259 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200260 vty_out(vty, "Description: %s%s",
261 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100262 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100263 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-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 Welteb761bf82009-12-12 18:17:25 +0100267 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-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 Welte8c973ba2009-12-21 23:08:18 +0100273 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200274 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-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 Welted8acf142010-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 Welte59b04682009-06-10 05:40:52 +0800283 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200284 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800285 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200286 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautcb8e8432011-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 Welte59b04682009-06-10 05:40:52 +0800290 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200291 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800292 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200293 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther03d80af2013-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 Freyther914ff192011-04-26 15:52:34 +0200302 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
303 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800304 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-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 Welte25572872009-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 Freytherb5c79c92010-11-25 16:28:45 +0100312
313 /* FIXME: chan_desc */
Harald Weltefe96f382009-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 Welte59b04682009-06-10 05:40:52 +0800318}
319
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100320DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800321 SHOW_STR "Display information about a BTS\n"
322 "BTS number")
323{
Harald Welte40152872010-05-16 20:52:23 +0200324 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800325 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 Welteda5db862010-12-24 12:24:03 +0100330 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800331 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
332 VTY_NEWLINE);
333 return CMD_WARNING;
334 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200335 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800336 return CMD_SUCCESS;
337 }
338 /* print all BTS's */
339 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200340 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800341
342 return CMD_SUCCESS;
343}
344
Harald Welte62868882009-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 Welte97ceef92009-08-06 19:06:46 +0200373static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
374{
Harald Welte62868882009-08-08 16:12:58 +0200375 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-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 Welte62868882009-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 Weltea42a93f2010-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 Welte67104d12009-09-12 13:05:33 +0200386 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200387 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200388 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-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 Welteff598092010-12-24 12:07:07 +0100395 }
Harald Welte62868882009-08-08 16:12:58 +0200396 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-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 Welte97ceef92009-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 Weltee87eb462009-08-07 13:29:14 +0200406 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200407 if (trx->description)
408 vty_out(vty, " description %s%s", trx->description,
409 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200410 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200411 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200412 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200413 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100414 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200415 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-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 Welte97ceef92009-08-06 19:06:46 +0200418
Harald Weltec02789e2011-02-14 16:15:21 +0100419 if (trx->bts->model->config_write_trx)
420 trx->bts->model->config_write_trx(vty, trx);
421
Harald Welte97ceef92009-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 Weltea9251762010-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 Eversberga4fa21c2013-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 Weltea9251762010-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 Freyther38c56672013-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 Welte97ceef92009-08-06 19:06:46 +0200469{
470 struct gsm_bts_trx *trx;
Holger Hans Peter Freyther38c56672013-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 Welted8acf142010-07-30 11:50:09 +0200484 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200485
Harald Weltee87eb462009-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 Welte8791dac2010-05-14 17:59:53 +0200488 if (bts->description)
489 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200490 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100491 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200492 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200493 VTY_NEWLINE);
Harald Weltee87eb462009-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 Erlbeckcc0d8842013-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)cbd46102009-08-13 10:14:26 +0200504 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-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 Munaut00d71462010-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 Freyther2fb8ebf2013-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 Welte3e774612009-08-10 13:48:16 +0200544 vty_out(vty, " channel allocator %s%s",
545 bts->chan_alloc_reverse ? "descending" : "ascending",
546 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-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 Freyther697ed2b2010-04-25 23:08:39 +0800552
Andreas Eversberg14e12f22012-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 Freyther697ed2b2010-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 Welte8c973ba2009-12-21 23:08:18 +0100566 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200567 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-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 Kluchnikov80d58432013-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 Welted8acf142010-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 Munaut79eae142011-11-13 23:05:23 +0100584 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200585 VTY_NEWLINE);
586 }
587 }
Harald Welte08011e22011-03-04 13:41:31 +0100588 switch (bts->type) {
589 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200590 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200591 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200592 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-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 Ayuso42e41df2011-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 Welte08011e22011-03-04 13:41:31 +0100601 break;
Sylvain Munautcb8e8432011-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);
Andreas Eversbergac27b952013-12-05 13:25:06 +0100604 vty_out(vty, " nokia_site no-local-rel-conf %d%s",
605 bts->nokia.no_loc_rel_cnf, VTY_NEWLINE);
Andreas Eversbergc3daa0f2013-12-05 16:02:37 +0100606 /* fall through: Nokia requires "oml e1" parameters also */
Harald Welte08011e22011-03-04 13:41:31 +0100607 default:
Harald Welte62868882009-08-08 16:12:58 +0200608 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
609 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100610 break;
Harald Welte62868882009-08-08 16:12:58 +0200611 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800612
613 /* if we have a limit, write it */
614 if (bts->paging.free_chans_need >= 0)
615 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
616
Harald Welteca46eff2011-01-11 23:44:56 +0100617 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100618 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
619 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100620 for (i = 0; i < 1024; i++) {
621 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
622 vty_out(vty, " neighbor-list add arfcn %u%s",
623 i, VTY_NEWLINE);
624 }
625 }
Harald Weltef989b782011-02-15 11:43:27 +0100626 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
627 for (i = 0; i < 1024; i++) {
628 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
629 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
630 i, VTY_NEWLINE);
631 }
632 }
Harald Welteca46eff2011-01-11 23:44:56 +0100633
Andreas Eversberg976493b2013-12-07 18:32:28 +0100634 vty_out(vty, " codec-support fr");
635 if (bts->codec.hr)
636 vty_out(vty, " hr");
637 if (bts->codec.efr)
638 vty_out(vty, " efr");
639 if (bts->codec.amr)
640 vty_out(vty, " amr");
641 vty_out(vty, "%s", VTY_NEWLINE);
642
Harald Weltea9251762010-05-11 23:50:21 +0200643 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200644
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200645 if (bts->excl_from_rf_lock)
646 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
647
Holger Hans Peter Freyther38c56672013-09-15 17:23:34 +0200648 config_write_bts_model(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200649}
650
651static int config_write_bts(struct vty *v)
652{
Harald Welte40152872010-05-16 20:52:23 +0200653 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200654 struct gsm_bts *bts;
655
656 llist_for_each_entry(bts, &gsmnet->bts_list, list)
657 config_write_bts_single(v, bts);
658
659 return CMD_SUCCESS;
660}
661
Harald Weltee87eb462009-08-07 13:29:14 +0200662static int config_write_net(struct vty *vty)
663{
Harald Welte40152872010-05-16 20:52:23 +0200664 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
665
Harald Weltee87eb462009-08-07 13:29:14 +0200666 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200667 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200668 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200669 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
670 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200671 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100672 vty_out(vty, " location updating reject cause %u%s",
673 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900674 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100675 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800676 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100677 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
678 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100679 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100680 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100681 vty_out(vty, " handover window rxlev averaging %u%s",
682 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
683 vty_out(vty, " handover window rxqual averaging %u%s",
684 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
685 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
686 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
687 vty_out(vty, " handover power budget interval %u%s",
688 gsmnet->handover.pwr_interval, VTY_NEWLINE);
689 vty_out(vty, " handover power budget hysteresis %u%s",
690 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
691 vty_out(vty, " handover maximum distance %u%s",
692 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100693 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100694 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
695 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
696 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
697 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
698 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
699 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
700 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
701 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
702 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100703 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100704 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100705 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100706 vty_out(vty, " subscriber-keep-in-ram %d%s",
707 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200708
709 return CMD_SUCCESS;
710}
Harald Welte97ceef92009-08-06 19:06:46 +0200711
Harald Welte59b04682009-06-10 05:40:52 +0800712static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
713{
714 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
715 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200716 vty_out(vty, "Description: %s%s",
717 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200718 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200719 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200720 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200721 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800722 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200723 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800724 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200725 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200726 if (is_ipaccess_bts(trx->bts)) {
727 vty_out(vty, " ip.access stream ID: 0x%02x%s",
728 trx->rsl_tei, VTY_NEWLINE);
729 } else {
730 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
731 e1isl_dump_vty(vty, trx->rsl_link);
732 }
Harald Welte59b04682009-06-10 05:40:52 +0800733}
734
735DEFUN(show_trx,
736 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100737 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200738 SHOW_STR "Display information about a TRX\n"
739 "BTS Number\n"
740 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800741{
Harald Welte40152872010-05-16 20:52:23 +0200742 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800743 struct gsm_bts *bts = NULL;
744 struct gsm_bts_trx *trx;
745 int bts_nr, trx_nr;
746
747 if (argc >= 1) {
748 /* use the BTS number that the user has specified */
749 bts_nr = atoi(argv[0]);
750 if (bts_nr >= net->num_bts) {
751 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
752 VTY_NEWLINE);
753 return CMD_WARNING;
754 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200755 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800756 }
757 if (argc >= 2) {
758 trx_nr = atoi(argv[1]);
759 if (trx_nr >= bts->num_trx) {
760 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
761 VTY_NEWLINE);
762 return CMD_WARNING;
763 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200764 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800765 trx_dump_vty(vty, trx);
766 return CMD_SUCCESS;
767 }
768 if (bts) {
769 /* print all TRX in this BTS */
770 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200771 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800772 trx_dump_vty(vty, trx);
773 }
774 return CMD_SUCCESS;
775 }
776
777 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200778 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800779 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200780 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800781 trx_dump_vty(vty, trx);
782 }
783 }
784
785 return CMD_SUCCESS;
786}
787
Harald Welte97ceef92009-08-06 19:06:46 +0200788
Harald Welte59b04682009-06-10 05:40:52 +0800789static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
790{
Harald Welte85771a42011-05-30 12:09:13 +0200791 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100792 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welted1dcdb82013-03-08 07:44:45 +0000793 gsm_pchan_name(ts->pchan),
794 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100795 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100796 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100797 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
798 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800799 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200800 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530801 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800802 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
803 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
804 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800805}
806
807DEFUN(show_ts,
808 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100809 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200810 SHOW_STR "Display information about a TS\n"
811 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800812{
Harald Welte40152872010-05-16 20:52:23 +0200813 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100814 struct gsm_bts *bts = NULL;
815 struct gsm_bts_trx *trx = NULL;
816 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800817 int bts_nr, trx_nr, ts_nr;
818
819 if (argc >= 1) {
820 /* use the BTS number that the user has specified */
821 bts_nr = atoi(argv[0]);
822 if (bts_nr >= net->num_bts) {
823 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
824 VTY_NEWLINE);
825 return CMD_WARNING;
826 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200827 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800828 }
829 if (argc >= 2) {
830 trx_nr = atoi(argv[1]);
831 if (trx_nr >= bts->num_trx) {
832 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
833 VTY_NEWLINE);
834 return CMD_WARNING;
835 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200836 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800837 }
838 if (argc >= 3) {
839 ts_nr = atoi(argv[2]);
840 if (ts_nr >= TRX_NR_TS) {
841 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
842 VTY_NEWLINE);
843 return CMD_WARNING;
844 }
Harald Welte06868382010-12-24 12:05:03 +0100845 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800846 ts = &trx->ts[ts_nr];
847 ts_dump_vty(vty, ts);
848 return CMD_SUCCESS;
849 }
Harald Welte06868382010-12-24 12:05:03 +0100850
851 if (bts && trx) {
852 /* Iterate over all TS in this TRX */
853 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
854 ts = &trx->ts[ts_nr];
855 ts_dump_vty(vty, ts);
856 }
857 } else if (bts) {
858 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800859 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200860 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800861 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 }
Harald Welte06868382010-12-24 12:05:03 +0100866 } else {
867 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
868 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
869 bts = gsm_bts_num(net, bts_nr);
870 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
871 trx = gsm_bts_trx_num(bts, trx_nr);
872 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
873 ts = &trx->ts[ts_nr];
874 ts_dump_vty(vty, ts);
875 }
876 }
877 }
Harald Welte59b04682009-06-10 05:40:52 +0800878 }
879
880 return CMD_SUCCESS;
881}
882
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100883static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800884{
Harald Welte91afe4c2009-06-20 18:15:19 +0200885 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800886 subscr->authorized, VTY_NEWLINE);
Holger Hans Peter Freyther7d552fc2013-12-12 15:45:41 +0100887 if (strlen(subscr->name))
Harald Welte59b04682009-06-10 05:40:52 +0800888 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
889 if (subscr->extension)
890 vty_out(vty, " Extension: %s%s", subscr->extension,
891 VTY_NEWLINE);
Holger Hans Peter Freytherb0be39b2013-07-14 08:38:24 +0200892 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200893 if (subscr->tmsi != GSM_RESERVED_TMSI)
894 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200895 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100896
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200897 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800898}
899
Harald Welte44007742009-12-22 21:43:14 +0100900static void meas_rep_dump_uni_vty(struct vty *vty,
901 struct gsm_meas_rep_unidir *mru,
902 const char *prefix,
903 const char *dir)
904{
905 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
906 prefix, dir, rxlev2dbm(mru->full.rx_lev),
907 dir, rxlev2dbm(mru->sub.rx_lev));
908 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
909 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
910 VTY_NEWLINE);
911}
912
913static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
914 const char *prefix)
915{
916 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
917 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
918 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
919 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
920 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
921 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
922 VTY_NEWLINE);
923 if (mr->flags & MEAS_REP_F_MS_TO)
924 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
925 mr->ms_timing_offset, VTY_NEWLINE);
926 if (mr->flags & MEAS_REP_F_MS_L1)
927 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
928 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
929 if (mr->flags & MEAS_REP_F_DL_VALID)
930 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
931 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
932}
933
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800934static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800935{
Harald Welte44007742009-12-22 21:43:14 +0100936 int idx;
937
Harald Weltef62dad62010-12-24 12:22:34 +0100938 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
939 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
940 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800941 vty_out(vty, " Connection: %u, State: %s%s",
942 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100943 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100944 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
945 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
946 - lchan->bs_power*2,
947 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
948 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800949 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800950 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800951 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800952 } else
953 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530954 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
955 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200956 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530957 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
958 inet_ntoa(ia), lchan->abis_ip.bound_port,
959 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
960 VTY_NEWLINE);
961 }
Harald Welte44007742009-12-22 21:43:14 +0100962
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 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800967}
968
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800969static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
970{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800971 struct gsm_meas_rep *mr;
972 int idx;
973
974 /* we want to report the last measurement report */
975 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
976 lchan->meas_rep_idx, 1);
977 mr = &lchan->meas_rep[idx];
978
Harald Weltef62dad62010-12-24 12:22:34 +0100979 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
980 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
981 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100982 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800983 rxlev2dbm(mr->dl.full.rx_lev),
984 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800985 VTY_NEWLINE);
986}
987
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100988
989static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
990 void (*dump_cb)(struct vty *, struct gsm_lchan *))
991{
992 int lchan_nr;
993 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
994 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
995 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
996 continue;
997 dump_cb(vty, lchan);
998 }
999
1000 return CMD_SUCCESS;
1001}
1002
1003static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
1004 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1005{
1006 int ts_nr;
1007
1008 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
1009 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
1010 dump_lchan_trx_ts(ts, vty, dump_cb);
1011 }
1012
1013 return CMD_SUCCESS;
1014}
1015
1016static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
1017 void (*dump_cb)(struct vty *, struct gsm_lchan *))
1018{
1019 int trx_nr;
1020
1021 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
1022 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
1023 dump_lchan_trx(trx, vty, dump_cb);
1024 }
1025
1026 return CMD_SUCCESS;
1027}
1028
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001029static int lchan_summary(struct vty *vty, int argc, const char **argv,
1030 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +08001031{
Harald Welte40152872010-05-16 20:52:23 +02001032 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001033 struct gsm_bts *bts;
1034 struct gsm_bts_trx *trx;
1035 struct gsm_bts_trx_ts *ts;
1036 struct gsm_lchan *lchan;
1037 int bts_nr, trx_nr, ts_nr, lchan_nr;
1038
1039 if (argc >= 1) {
1040 /* use the BTS number that the user has specified */
1041 bts_nr = atoi(argv[0]);
1042 if (bts_nr >= net->num_bts) {
1043 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1044 VTY_NEWLINE);
1045 return CMD_WARNING;
1046 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001047 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001048
1049 if (argc == 1)
1050 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001051 }
1052 if (argc >= 2) {
1053 trx_nr = atoi(argv[1]);
1054 if (trx_nr >= bts->num_trx) {
1055 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1056 VTY_NEWLINE);
1057 return CMD_WARNING;
1058 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001059 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001060
1061 if (argc == 2)
1062 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001063 }
1064 if (argc >= 3) {
1065 ts_nr = atoi(argv[2]);
1066 if (ts_nr >= TRX_NR_TS) {
1067 vty_out(vty, "%% can't find TS %s%s", argv[2],
1068 VTY_NEWLINE);
1069 return CMD_WARNING;
1070 }
1071 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001072
1073 if (argc == 3)
1074 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001075 }
1076 if (argc >= 4) {
1077 lchan_nr = atoi(argv[3]);
1078 if (lchan_nr >= TS_MAX_LCHAN) {
1079 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1080 VTY_NEWLINE);
1081 return CMD_WARNING;
1082 }
1083 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001084 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001085 return CMD_SUCCESS;
1086 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001087
1088
Harald Welte59b04682009-06-10 05:40:52 +08001089 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001090 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001091 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001092 }
1093
1094 return CMD_SUCCESS;
1095}
1096
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001097
1098DEFUN(show_lchan,
1099 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001100 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001101 SHOW_STR "Display information about a logical channel\n"
1102 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001103 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001104
1105{
1106 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1107}
1108
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001109DEFUN(show_lchan_summary,
1110 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001111 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001112 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001113 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001114 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001115 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001116{
1117 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1118}
1119
Harald Welte59b04682009-06-10 05:40:52 +08001120static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1121{
1122 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1123 subscr_dump_vty(vty, pag->subscr);
1124}
1125
1126static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1127{
1128 struct gsm_paging_request *pag;
1129
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001130 if (!bts->paging.bts)
1131 return;
1132
Harald Welte59b04682009-06-10 05:40:52 +08001133 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1134 paging_dump_vty(vty, pag);
1135}
1136
1137DEFUN(show_paging,
1138 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001139 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001140 SHOW_STR "Display information about paging reuqests of a BTS\n"
1141 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001142{
Harald Welte40152872010-05-16 20:52:23 +02001143 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001144 struct gsm_bts *bts;
1145 int bts_nr;
1146
1147 if (argc >= 1) {
1148 /* use the BTS number that the user has specified */
1149 bts_nr = atoi(argv[0]);
1150 if (bts_nr >= net->num_bts) {
1151 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1152 VTY_NEWLINE);
1153 return CMD_WARNING;
1154 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001155 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001156 bts_paging_dump_vty(vty, bts);
1157
1158 return CMD_SUCCESS;
1159 }
1160 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001161 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001162 bts_paging_dump_vty(vty, bts);
1163 }
1164
1165 return CMD_SUCCESS;
1166}
1167
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01001168DEFUN(show_paging_group,
1169 show_paging_group_cmd,
1170 "show paging-group <0-255> IMSI",
1171 SHOW_STR "Display the paging group\n"
1172 "BTS Number\n" "IMSI\n")
1173{
1174 struct gsm_network *net = gsmnet_from_vty(vty);
1175 struct gsm_bts *bts;
1176 unsigned int page_group;
1177 int bts_nr = atoi(argv[0]);
1178
1179 if (bts_nr >= net->num_bts) {
1180 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1181 return CMD_WARNING;
1182 }
1183
1184 bts = gsm_bts_num(net, bts_nr);
1185 if (!bts) {
1186 vty_out(vty, "%% can't find BTS %s%s", argv[0], VTY_NEWLINE);
1187 return CMD_WARNING;
1188 }
1189
1190 page_group = gsm0502_calc_paging_group(&bts->si_common.chan_desc,
1191 str_to_imsi(argv[1]));
1192 vty_out(vty, "%%Paging group for IMSI %" PRIu64 " on BTS #%d is %u%s",
1193 str_to_imsi(argv[1]), bts->nr,
1194 page_group, VTY_NEWLINE);
1195 return CMD_SUCCESS;
1196}
1197
Harald Weltee87eb462009-08-07 13:29:14 +02001198DEFUN(cfg_net,
1199 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001200 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001201{
Harald Welte40152872010-05-16 20:52:23 +02001202 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001203 vty->node = GSMNET_NODE;
1204
1205 return CMD_SUCCESS;
1206}
1207
Harald Weltee87eb462009-08-07 13:29:14 +02001208DEFUN(cfg_net_ncc,
1209 cfg_net_ncc_cmd,
1210 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001211 "Set the GSM network country code\n"
1212 "Country commands\n"
1213 CODE_CMD_STR
1214 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001215{
Harald Welte40152872010-05-16 20:52:23 +02001216 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1217
Harald Weltee87eb462009-08-07 13:29:14 +02001218 gsmnet->country_code = atoi(argv[0]);
1219
1220 return CMD_SUCCESS;
1221}
1222
1223DEFUN(cfg_net_mnc,
1224 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001225 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001226 "Set the GSM mobile network code\n"
1227 "Network Commands\n"
1228 CODE_CMD_STR
1229 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001230{
Harald Welte40152872010-05-16 20:52:23 +02001231 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1232
Harald Weltee87eb462009-08-07 13:29:14 +02001233 gsmnet->network_code = atoi(argv[0]);
1234
1235 return CMD_SUCCESS;
1236}
1237
1238DEFUN(cfg_net_name_short,
1239 cfg_net_name_short_cmd,
1240 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001241 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001242{
Harald Welte40152872010-05-16 20:52:23 +02001243 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1244
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001245 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001246 return CMD_SUCCESS;
1247}
1248
1249DEFUN(cfg_net_name_long,
1250 cfg_net_name_long_cmd,
1251 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001252 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001253{
Harald Welte40152872010-05-16 20:52:23 +02001254 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1255
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001256 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001257 return CMD_SUCCESS;
1258}
Harald Welte59b04682009-06-10 05:40:52 +08001259
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001260DEFUN(cfg_net_auth_policy,
1261 cfg_net_auth_policy_cmd,
1262 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001263 "Authentication (not cryptographic)\n"
1264 "Set the GSM network authentication policy\n"
1265 "Require the MS to be activated in HLR\n"
1266 "Accept all MS, whether in HLR or not\n"
1267 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001268{
1269 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001270 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001271
1272 gsmnet->auth_policy = policy;
1273
1274 return CMD_SUCCESS;
1275}
1276
Harald Welte59936d72009-11-18 20:33:19 +01001277DEFUN(cfg_net_reject_cause,
1278 cfg_net_reject_cause_cmd,
1279 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001280 "Set the reject cause of location updating reject\n"
1281 "Set the reject cause of location updating reject\n"
1282 "Set the reject cause of location updating reject\n"
1283 "Set the reject cause of location updating reject\n"
1284 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001285{
Harald Welte40152872010-05-16 20:52:23 +02001286 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1287
Harald Welte59936d72009-11-18 20:33:19 +01001288 gsmnet->reject_cause = atoi(argv[0]);
1289
1290 return CMD_SUCCESS;
1291}
1292
Harald Weltecca253a2009-08-30 15:47:06 +09001293DEFUN(cfg_net_encryption,
1294 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001295 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001296 "Encryption options\n"
1297 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001298 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1299 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001300{
Harald Welte40152872010-05-16 20:52:23 +02001301 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1302
Andreas.Eversberg53293292009-11-17 09:55:26 +01001303 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001304
1305 return CMD_SUCCESS;
1306}
1307
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001308DEFUN(cfg_net_neci,
1309 cfg_net_neci_cmd,
1310 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001311 "New Establish Cause Indication\n"
1312 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001313{
Harald Welte40152872010-05-16 20:52:23 +02001314 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1315
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001316 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001317 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001318 return CMD_SUCCESS;
1319}
1320
Harald Welte52af1952009-12-13 10:53:12 +01001321DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1322 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001323 "Radio Resource Location Protocol\n"
1324 "Set the Radio Resource Location Protocol Mode\n"
1325 "Don't send RRLP request\n"
1326 "Request MS-based location\n"
1327 "Request any location, prefer MS-based\n"
1328 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001329{
Harald Welte40152872010-05-16 20:52:23 +02001330 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1331
Harald Welte52af1952009-12-13 10:53:12 +01001332 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1333
1334 return CMD_SUCCESS;
1335}
1336
Harald Weltea310f3e2009-12-14 09:00:24 +01001337DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1338 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001339 "Mobility Management\n"
1340 "Send MM INFO after LOC UPD ACCEPT\n"
1341 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001342{
Harald Welte40152872010-05-16 20:52:23 +02001343 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1344
Harald Weltea310f3e2009-12-14 09:00:24 +01001345 gsmnet->send_mm_info = atoi(argv[0]);
1346
1347 return CMD_SUCCESS;
1348}
1349
Harald Welte9e002452010-05-11 21:53:49 +02001350#define HANDOVER_STR "Handover Options\n"
1351
Harald Welte0af9c9f2009-12-19 21:41:52 +01001352DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1353 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001354 HANDOVER_STR
1355 "Don't perform in-call handover\n"
1356 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001357{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001358 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001359 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001360
1361 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001362 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1363 "is enabled by using the -P command line option%s",
1364 VTY_NEWLINE);
1365 return CMD_WARNING;
1366 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001367 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001368
1369 return CMD_SUCCESS;
1370}
1371
Harald Welte9e002452010-05-11 21:53:49 +02001372#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1373#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1374#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1375#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001376#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001377
Harald Weltea8062f12009-12-21 16:51:50 +01001378DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1379 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001380 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001381 "How many RxLev measurements are used for averaging\n"
1382 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001383{
Harald Welte40152872010-05-16 20:52:23 +02001384 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001385 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1386 return CMD_SUCCESS;
1387}
1388
1389DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1390 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001391 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001392 "How many RxQual measurements are used for averaging\n"
1393 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001394{
Harald Welte40152872010-05-16 20:52:23 +02001395 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001396 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1397 return CMD_SUCCESS;
1398}
1399
1400DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1401 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001402 HO_WIN_RXLEV_STR "Neighbor\n"
1403 "How many RxQual measurements are used for averaging\n"
1404 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001405{
Harald Welte40152872010-05-16 20:52:23 +02001406 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001407 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1408 return CMD_SUCCESS;
1409}
1410
1411DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1412 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001413 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001414 "How often to check if we have a better cell (SACCH frames)\n"
1415 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001416{
Harald Welte40152872010-05-16 20:52:23 +02001417 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001418 gsmnet->handover.pwr_interval = atoi(argv[0]);
1419 return CMD_SUCCESS;
1420}
1421
1422DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1423 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001424 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001425 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1426 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001427{
Harald Welte40152872010-05-16 20:52:23 +02001428 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001429 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1430 return CMD_SUCCESS;
1431}
1432
1433DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1434 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001435 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001436 "How big is the maximum timing advance before HO is forced\n"
1437 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001438{
Harald Welte40152872010-05-16 20:52:23 +02001439 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001440 gsmnet->handover.max_distance = atoi(argv[0]);
1441 return CMD_SUCCESS;
1442}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001443
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001444DEFUN(cfg_net_pag_any_tch,
1445 cfg_net_pag_any_tch_cmd,
1446 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001447 "Assign a TCH when receiving a Paging Any request\n"
1448 "Any Channel\n" "Use\n" "TCH\n"
1449 "Do not use TCH for Paging Request Any\n"
1450 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001451{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001452 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001453 gsmnet->pag_any_tch = atoi(argv[0]);
1454 gsm_net_update_ctype(gsmnet);
1455 return CMD_SUCCESS;
1456}
1457
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001458#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001459 DEFUN(cfg_net_T##number, \
1460 cfg_net_T##number##_cmd, \
1461 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001462 "Configure GSM Timers\n" \
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001463 doc "Timer Value\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001464{ \
Harald Welte40152872010-05-16 20:52:23 +02001465 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001466 int value = atoi(argv[0]); \
1467 \
1468 if (value < 0 || value > 65535) { \
1469 vty_out(vty, "Timer value %s out of range.%s", \
1470 argv[0], VTY_NEWLINE); \
1471 return CMD_WARNING; \
1472 } \
1473 \
1474 gsmnet->T##number = value; \
1475 return CMD_SUCCESS; \
1476}
1477
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001478DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1479DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001480DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001481DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001482DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001483DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1484DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1485DECLARE_TIMER(3115, "Currently not used.\n")
1486DECLARE_TIMER(3117, "Currently not used.\n")
1487DECLARE_TIMER(3119, "Currently not used.\n")
1488DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1489DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001490
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001491DEFUN(cfg_net_dtx,
1492 cfg_net_dtx_cmd,
1493 "dtx-used (0|1)",
1494 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001495 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001496{
1497 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1498 gsmnet->dtx_enabled = atoi(argv[0]);
1499 return CMD_SUCCESS;
1500}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001501
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001502DEFUN(cfg_net_subscr_keep,
1503 cfg_net_subscr_keep_cmd,
1504 "subscriber-keep-in-ram (0|1)",
1505 "Keep unused subscribers in RAM.\n"
1506 "Delete unused subscribers\n" "Keep unused subscribers\n")
1507{
1508 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1509 gsmnet->keep_subscr = atoi(argv[0]);
1510 return CMD_SUCCESS;
1511}
1512
Harald Welte59b04682009-06-10 05:40:52 +08001513/* per-BTS configuration */
1514DEFUN(cfg_bts,
1515 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001516 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001517 "Select a BTS to configure\n"
1518 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001519{
Harald Welte40152872010-05-16 20:52:23 +02001520 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001521 int bts_nr = atoi(argv[0]);
1522 struct gsm_bts *bts;
1523
Harald Weltee712a5f2009-06-21 16:17:15 +02001524 if (bts_nr > gsmnet->num_bts) {
1525 vty_out(vty, "%% The next unused BTS number is %u%s",
1526 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001527 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001528 } else if (bts_nr == gsmnet->num_bts) {
1529 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001530 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1531 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001532 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001533 bts = gsm_bts_num(gsmnet, bts_nr);
1534
Daniel Willmann580085f2010-01-11 13:43:07 +01001535 if (!bts) {
1536 vty_out(vty, "%% Unable to allocate BTS %u%s",
1537 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001538 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001539 }
Harald Welte59b04682009-06-10 05:40:52 +08001540
1541 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001542 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001543 vty->node = BTS_NODE;
1544
1545 return CMD_SUCCESS;
1546}
1547
1548DEFUN(cfg_bts_type,
1549 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001550 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001551 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001552{
1553 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001554 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001555
Harald Welte59698fb2010-01-10 18:01:52 +01001556 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1557 if (rc < 0)
1558 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001559
Harald Welte59b04682009-06-10 05:40:52 +08001560 return CMD_SUCCESS;
1561}
1562
Harald Welte91afe4c2009-06-20 18:15:19 +02001563DEFUN(cfg_bts_band,
1564 cfg_bts_band_cmd,
1565 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001566 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001567{
1568 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001569 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001570
1571 if (band < 0) {
1572 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1573 band, VTY_NEWLINE);
1574 return CMD_WARNING;
1575 }
1576
1577 bts->band = band;
1578
1579 return CMD_SUCCESS;
1580}
1581
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001582DEFUN(cfg_bts_ci,
1583 cfg_bts_ci_cmd,
1584 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001585 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001586{
1587 struct gsm_bts *bts = vty->index;
1588 int ci = atoi(argv[0]);
1589
1590 if (ci < 0 || ci > 0xffff) {
1591 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1592 ci, VTY_NEWLINE);
1593 return CMD_WARNING;
1594 }
1595 bts->cell_identity = ci;
1596
1597 return CMD_SUCCESS;
1598}
1599
Harald Welte59b04682009-06-10 05:40:52 +08001600DEFUN(cfg_bts_lac,
1601 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001602 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001603 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001604{
1605 struct gsm_bts *bts = vty->index;
1606 int lac = atoi(argv[0]);
1607
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001608 if (lac < 0 || lac > 0xffff) {
1609 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001610 lac, VTY_NEWLINE);
1611 return CMD_WARNING;
1612 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001613
1614 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1615 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1616 lac, VTY_NEWLINE);
1617 return CMD_WARNING;
1618 }
1619
Harald Welte59b04682009-06-10 05:40:52 +08001620 bts->location_area_code = lac;
1621
1622 return CMD_SUCCESS;
1623}
1624
Harald Weltea54a2bb2009-12-01 18:04:30 +05301625
Harald Welte59b04682009-06-10 05:40:52 +08001626DEFUN(cfg_bts_tsc,
1627 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001628 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001629 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001630{
1631 struct gsm_bts *bts = vty->index;
1632 int tsc = atoi(argv[0]);
1633
Harald Welte59b04682009-06-10 05:40:52 +08001634 bts->tsc = tsc;
1635
1636 return CMD_SUCCESS;
1637}
1638
1639DEFUN(cfg_bts_bsic,
1640 cfg_bts_bsic_cmd,
1641 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001642 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1643 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001644{
1645 struct gsm_bts *bts = vty->index;
1646 int bsic = atoi(argv[0]);
1647
1648 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001649 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001650 bsic, VTY_NEWLINE);
1651 return CMD_WARNING;
1652 }
1653 bts->bsic = bsic;
1654
1655 return CMD_SUCCESS;
1656}
1657
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001658DEFUN(cfg_bts_timezone,
1659 cfg_bts_timezone_cmd,
1660 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001661 "Set the Timezone Offset of this BTS\n"
1662 "Timezone offset (hours)\n"
1663 "Timezone offset (00 minutes)\n"
1664 "Timezone offset (15 minutes)\n"
1665 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001666 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001667 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001668{
1669 struct gsm_bts *bts = vty->index;
1670 int tzhr = atoi(argv[0]);
1671 int tzmn = atoi(argv[1]);
1672
Harald Welte5c3abf92012-07-08 16:48:11 +02001673 bts->tz.hr = tzhr;
1674 bts->tz.mn = tzmn;
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02001675 bts->tz.dst = 0;
1676 bts->tz.override = 1;
1677
1678 return CMD_SUCCESS;
1679}
1680
1681DEFUN(cfg_bts_timezone_dst,
1682 cfg_bts_timezone_dst_cmd,
1683 "timezone <-19-19> (0|15|30|45) <0-2>",
1684 "Set the Timezone Offset of this BTS\n"
1685 "Timezone offset (hours)\n"
1686 "Timezone offset (00 minutes)\n"
1687 "Timezone offset (15 minutes)\n"
1688 "Timezone offset (30 minutes)\n"
1689 "Timezone offset (45 minutes)\n"
1690 "DST offset (hours)\n"
1691 )
1692{
1693 struct gsm_bts *bts = vty->index;
1694 int tzhr = atoi(argv[0]);
1695 int tzmn = atoi(argv[1]);
1696 int tzdst = atoi(argv[2]);
1697
1698 bts->tz.hr = tzhr;
1699 bts->tz.mn = tzmn;
1700 bts->tz.dst = tzdst;
Harald Welte5c3abf92012-07-08 16:48:11 +02001701 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001702
1703 return CMD_SUCCESS;
1704}
1705
1706DEFUN(cfg_bts_no_timezone,
1707 cfg_bts_no_timezone_cmd,
1708 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001709 NO_STR
1710 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001711{
1712 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001713
1714 bts->tz.override = 0;
1715
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001716 return CMD_SUCCESS;
1717}
Harald Welte59b04682009-06-10 05:40:52 +08001718
1719DEFUN(cfg_bts_unit_id,
1720 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001721 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001722 "Abis/IP specific options\n"
1723 "Set the IPA BTS Unit ID\n"
1724 "Unit ID (Site)\n"
1725 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001726{
1727 struct gsm_bts *bts = vty->index;
1728 int site_id = atoi(argv[0]);
1729 int bts_id = atoi(argv[1]);
1730
Harald Weltef515aa02009-08-07 13:27:09 +02001731 if (!is_ipaccess_bts(bts)) {
1732 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1733 return CMD_WARNING;
1734 }
1735
Harald Welte59b04682009-06-10 05:40:52 +08001736 bts->ip_access.site_id = site_id;
1737 bts->ip_access.bts_id = bts_id;
1738
1739 return CMD_SUCCESS;
1740}
1741
Harald Welte8b3c5952013-03-12 13:57:05 +01001742DEFUN(cfg_bts_rsl_ip,
1743 cfg_bts_rsl_ip_cmd,
1744 "ip.access rsl-ip A.B.C.D",
1745 "Abis/IP specific options\n"
1746 "Set the IPA RSL IP Address of the BSC\n"
1747 "Destination IP address for RSL connection\n")
1748{
1749 struct gsm_bts *bts = vty->index;
1750 struct in_addr ia;
1751
1752 if (!is_ipaccess_bts(bts)) {
1753 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1754 return CMD_WARNING;
1755 }
1756
1757 inet_aton(argv[0], &ia);
1758 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1759
1760 return CMD_SUCCESS;
1761}
1762
Andreas Eversbergac27b952013-12-05 13:25:06 +01001763#define NOKIA_STR "Nokia *Site related commands\n"
Harald Welte8b3c5952013-03-12 13:57:05 +01001764
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001765DEFUN(cfg_bts_nokia_site_skip_reset,
1766 cfg_bts_nokia_site_skip_reset_cmd,
1767 "nokia_site skip-reset (0|1)",
Andreas Eversbergac27b952013-12-05 13:25:06 +01001768 NOKIA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001769 "Skip the reset step during bootstrap process of this BTS\n"
1770 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001771{
1772 struct gsm_bts *bts = vty->index;
1773
1774 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1775 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1776 return CMD_WARNING;
1777 }
1778
1779 bts->nokia.skip_reset = atoi(argv[0]);
1780
1781 return CMD_SUCCESS;
1782}
1783
Andreas Eversbergac27b952013-12-05 13:25:06 +01001784DEFUN(cfg_bts_nokia_site_no_loc_rel_cnf,
1785 cfg_bts_nokia_site_no_loc_rel_cnf_cmd,
1786 "nokia_site no-local-rel-conf (0|1)",
1787 NOKIA_STR
1788 "Do not wait for RELease CONFirm message when releasing channel locally\n"
1789 "Wait for RELease CONFirm\n" "Do not wait for RELease CONFirm\n")
1790{
1791 struct gsm_bts *bts = vty->index;
1792
1793 if (!is_nokia_bts(bts)) {
1794 vty_out(vty, "%% BTS is not of Nokia *Site type%s",
1795 VTY_NEWLINE);
1796 return CMD_WARNING;
1797 }
1798
1799 bts->nokia.no_loc_rel_cnf = atoi(argv[0]);
1800
1801 return CMD_SUCCESS;
1802}
1803
Harald Welte9e002452010-05-11 21:53:49 +02001804#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001805#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001806
Harald Welte25572872009-10-20 00:22:00 +02001807DEFUN(cfg_bts_stream_id,
1808 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001809 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001810 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001811 "Set the ip.access Stream ID of the OML link of this BTS\n"
1812 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001813{
1814 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001815 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001816
1817 if (!is_ipaccess_bts(bts)) {
1818 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1819 return CMD_WARNING;
1820 }
1821
1822 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001823 /* This is used by e1inp_bind_ops callback for each BTS model. */
1824 bts->oml_e1_link.e1_nr = linenr;
1825
1826 return CMD_SUCCESS;
1827}
1828
Harald Weltefa2015f2012-08-17 09:52:03 +02001829#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001830
Harald Welte62868882009-08-08 16:12:58 +02001831DEFUN(cfg_bts_oml_e1,
1832 cfg_bts_oml_e1_cmd,
1833 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001834 OML_E1_STR
1835 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001836 "E1/T1 line number to be used for OML\n"
1837 "E1/T1 timeslot to be used for OML\n"
1838 "E1/T1 timeslot to be used for OML\n"
1839 "E1/T1 sub-slot to be used for OML\n"
1840 "Use E1/T1 sub-slot 0\n"
1841 "Use E1/T1 sub-slot 1\n"
1842 "Use E1/T1 sub-slot 2\n"
1843 "Use E1/T1 sub-slot 3\n"
1844 "Use full E1 slot 3\n"
1845 )
Harald Welte62868882009-08-08 16:12:58 +02001846{
1847 struct gsm_bts *bts = vty->index;
1848
1849 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1850
1851 return CMD_SUCCESS;
1852}
1853
1854
1855DEFUN(cfg_bts_oml_e1_tei,
1856 cfg_bts_oml_e1_tei_cmd,
1857 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001858 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001859 "Set the TEI to be used for OML\n"
1860 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001861{
1862 struct gsm_bts *bts = vty->index;
1863
1864 bts->oml_tei = atoi(argv[0]);
1865
1866 return CMD_SUCCESS;
1867}
1868
Harald Welte3e774612009-08-10 13:48:16 +02001869DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1870 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001871 "Channnel Allocator\n" "Channel Allocator\n"
1872 "Allocate Timeslots and Transceivers in ascending order\n"
1873 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001874{
1875 struct gsm_bts *bts = vty->index;
1876
1877 if (!strcmp(argv[0], "ascending"))
1878 bts->chan_alloc_reverse = 0;
1879 else
1880 bts->chan_alloc_reverse = 1;
1881
1882 return CMD_SUCCESS;
1883}
1884
Harald Welte9e002452010-05-11 21:53:49 +02001885#define RACH_STR "Random Access Control Channel\n"
1886
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001887DEFUN(cfg_bts_rach_tx_integer,
1888 cfg_bts_rach_tx_integer_cmd,
1889 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001890 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001891 "Set the raw tx integer value in RACH Control parameters IE\n"
1892 "Set the raw tx integer value in RACH Control parameters IE\n"
1893 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001894{
1895 struct gsm_bts *bts = vty->index;
1896 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1897 return CMD_SUCCESS;
1898}
1899
1900DEFUN(cfg_bts_rach_max_trans,
1901 cfg_bts_rach_max_trans_cmd,
1902 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001903 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001904 "Set the maximum number of RACH burst transmissions\n"
1905 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001906 "Maximum number of 1 RACH burst transmissions\n"
1907 "Maximum number of 2 RACH burst transmissions\n"
1908 "Maximum number of 4 RACH burst transmissions\n"
1909 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001910{
1911 struct gsm_bts *bts = vty->index;
1912 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1913 return CMD_SUCCESS;
1914}
1915
Andreas Eversberg14e12f22012-10-13 07:27:47 +02001916#define CD_STR "Channel Description\n"
1917
1918DEFUN(cfg_bts_chan_desc_att,
1919 cfg_bts_chan_desc_att_cmd,
1920 "channel-descrption attach (0|1)",
1921 CD_STR
1922 "Set if attachment is required\n"
1923 "Attachment is NOT required\n"
1924 "Attachment is required (standard)\n")
1925{
1926 struct gsm_bts *bts = vty->index;
1927 bts->si_common.chan_desc.att = atoi(argv[0]);
1928 return CMD_SUCCESS;
1929}
1930
1931DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1932 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1933 "channel-descrption bs-pa-mfrms <2-9>",
1934 CD_STR
1935 "Set number of multiframe periods for paging groups\n"
1936 "Number of multiframe periods for paging groups\n")
1937{
1938 struct gsm_bts *bts = vty->index;
1939 int bs_pa_mfrms = atoi(argv[0]);
1940
1941 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1942 return CMD_SUCCESS;
1943}
1944
1945DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1946 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1947 "channel-descrption bs-ag-blks-res <0-7>",
1948 CD_STR
1949 "Set number of blocks reserved for access grant\n"
1950 "Number of blocks reserved for access grant\n")
1951{
1952 struct gsm_bts *bts = vty->index;
1953 int bs_ag_blks_res = atoi(argv[0]);
1954
1955 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1956 return CMD_SUCCESS;
1957}
1958
Harald Welte9e002452010-05-11 21:53:49 +02001959#define NM_STR "Network Management\n"
1960
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001961DEFUN(cfg_bts_rach_nm_b_thresh,
1962 cfg_bts_rach_nm_b_thresh_cmd,
1963 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001964 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001965 "Set the NM Busy Threshold\n"
1966 "Set the NM Busy Threshold\n"
1967 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001968{
1969 struct gsm_bts *bts = vty->index;
1970 bts->rach_b_thresh = atoi(argv[0]);
1971 return CMD_SUCCESS;
1972}
1973
1974DEFUN(cfg_bts_rach_nm_ldavg,
1975 cfg_bts_rach_nm_ldavg_cmd,
1976 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001977 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001978 "Set the NM Loadaverage Slots value\n"
1979 "Set the NM Loadaverage Slots value\n"
1980 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001981{
1982 struct gsm_bts *bts = vty->index;
1983 bts->rach_ldavg_slots = atoi(argv[0]);
1984 return CMD_SUCCESS;
1985}
1986
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001987DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1988 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001989 "Should this cell be barred from access?\n"
1990 "Should this cell be barred from access?\n"
1991 "Cell should NOT be barred\n"
1992 "Cell should be barred\n")
1993
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001994{
1995 struct gsm_bts *bts = vty->index;
1996
Harald Welte8c973ba2009-12-21 23:08:18 +01001997 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001998
1999 return CMD_SUCCESS;
2000}
2001
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002002DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
2003 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002004 RACH_STR
2005 "Should this cell allow emergency calls?\n"
2006 "Should this cell allow emergency calls?\n"
2007 "Should this cell allow emergency calls?\n"
2008 "Do NOT allow emergency calls\n"
2009 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08002010{
2011 struct gsm_bts *bts = vty->index;
2012
2013 if (atoi(argv[0]) == 0)
2014 bts->si_common.rach_control.t2 |= 0x4;
2015 else
2016 bts->si_common.rach_control.t2 &= ~0x4;
2017
2018 return CMD_SUCCESS;
2019}
2020
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04002021DEFUN(cfg_bts_rach_ac_class, cfg_bts_rach_ac_class_cmd,
2022 "rach access-control-class (0|1|2|3|4|5|6|7|8|9|11|12|13|14|15) (barred|allowed)",
2023 RACH_STR
2024 "Set access control class\n"
2025 "Access control class 0\n"
2026 "Access control class 1\n"
2027 "Access control class 2\n"
2028 "Access control class 3\n"
2029 "Access control class 4\n"
2030 "Access control class 5\n"
2031 "Access control class 6\n"
2032 "Access control class 7\n"
2033 "Access control class 8\n"
2034 "Access control class 9\n"
2035 "Access control class 11 for PLMN use\n"
2036 "Access control class 12 for security services\n"
2037 "Access control class 13 for public utilities (e.g. water/gas suppliers)\n"
2038 "Access control class 14 for emergency services\n"
2039 "Access control class 15 for PLMN staff\n"
2040 "barred to use access control class\n"
2041 "allowed to use access control class\n")
2042{
2043 struct gsm_bts *bts = vty->index;
2044
2045 uint8_t control_class;
2046 uint8_t allowed = 0;
2047
2048 if (strcmp(argv[1], "allowed") == 0)
2049 allowed = 1;
2050
2051 control_class = atoi(argv[0]);
2052 if (control_class < 8)
2053 if (allowed)
2054 bts->si_common.rach_control.t3 &= ~(0x1 << control_class);
2055 else
2056 bts->si_common.rach_control.t3 |= (0x1 << control_class);
2057 else
2058 if (allowed)
2059 bts->si_common.rach_control.t2 &= ~(0x1 << (control_class - 8));
2060 else
2061 bts->si_common.rach_control.t2 |= (0x1 << (control_class - 8));
2062
2063 return CMD_SUCCESS;
2064}
2065
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002066DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
2067 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02002068 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002069 "Maximum transmit power of the MS\n"
2070 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02002071 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02002072{
2073 struct gsm_bts *bts = vty->index;
2074
2075 bts->ms_max_power = atoi(argv[0]);
2076
2077 return CMD_SUCCESS;
2078}
2079
Harald Welte557f3992012-08-16 23:23:50 +02002080#define CELL_STR "Cell Parameters\n"
2081
Harald Welteb761bf82009-12-12 18:17:25 +01002082DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
2083 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02002084 CELL_STR "Cell re-selection parameters\n"
2085 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002086 "Cell Re-Selection Hysteresis in dB")
2087{
2088 struct gsm_bts *bts = vty->index;
2089
2090 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
2091
2092 return CMD_SUCCESS;
2093}
2094
2095DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
2096 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002097 "Minimum RxLev needed for cell access\n"
2098 "Minimum RxLev needed for cell access\n"
2099 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01002100 "Minimum RxLev needed for cell access (better than -110dBm)")
2101{
2102 struct gsm_bts *bts = vty->index;
2103
2104 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
2105
2106 return CMD_SUCCESS;
2107}
2108
Sylvain Munaut00d71462010-11-28 18:17:28 +01002109DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
2110 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002111 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
2112 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002113{
2114 struct gsm_bts *bts = vty->index;
2115
2116 bts->si_common.cell_ro_sel_par.present = 1;
2117 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
2118
2119 return CMD_SUCCESS;
2120}
2121
2122DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
2123 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02002124 CELL_STR "Cell Re-Selection Parameters\n"
2125 "Cell Re-Selection Offset (CRO) in dB\n"
2126 "Cell Re-Selection Offset (CRO) in dB\n"
2127 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01002128{
2129 struct gsm_bts *bts = vty->index;
2130
2131 bts->si_common.cell_ro_sel_par.present = 1;
2132 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2133
2134 return CMD_SUCCESS;
2135}
2136
2137DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2138 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02002139 "Cell selection temporary negative offset\n"
2140 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002141 "Cell selection temporary negative offset in dB")
2142{
2143 struct gsm_bts *bts = vty->index;
2144
2145 bts->si_common.cell_ro_sel_par.present = 1;
2146 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2147
2148 return CMD_SUCCESS;
2149}
2150
2151DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2152 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02002153 "Cell selection temporary negative offset\n"
2154 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002155 "Sets cell selection temporary negative offset to infinity")
2156{
2157 struct gsm_bts *bts = vty->index;
2158
2159 bts->si_common.cell_ro_sel_par.present = 1;
2160 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2161
2162 return CMD_SUCCESS;
2163}
2164
2165DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2166 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02002167 "Cell selection penalty time\n"
2168 "Cell selection penalty time\n"
2169 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002170{
2171 struct gsm_bts *bts = vty->index;
2172
2173 bts->si_common.cell_ro_sel_par.present = 1;
2174 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2175
2176 return CMD_SUCCESS;
2177}
2178
2179DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2180 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002181 "Cell selection penalty time\n"
2182 "Cell selection penalty time\n"
2183 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002184 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2185 "and TEMPORARY_OFFSET is ignored)")
2186{
2187 struct gsm_bts *bts = vty->index;
2188
2189 bts->si_common.cell_ro_sel_par.present = 1;
2190 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2191
2192 return CMD_SUCCESS;
2193}
2194
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002195DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002196 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002197 "Periodic Location Updating Interval\n"
2198 "Periodic Location Updating Interval\n"
2199 "Periodic Location Updating Interval\n"
2200 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002201{
2202 struct gsm_bts *bts = vty->index;
2203
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002204 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002205
2206 return CMD_SUCCESS;
2207}
2208
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02002209DEFUN(cfg_bts_no_per_loc_upd, cfg_bts_no_per_loc_upd_cmd,
2210 "no periodic location update",
2211 NO_STR
2212 "Periodic Location Updating Interval\n"
2213 "Periodic Location Updating Interval\n"
2214 "Periodic Location Updating Interval\n")
2215{
2216 struct gsm_bts *bts = vty->index;
2217
2218 bts->si_common.chan_desc.t3212 = 0;
2219 return CMD_SUCCESS;
2220}
2221
Harald Welte9e002452010-05-11 21:53:49 +02002222#define GPRS_TEXT "GPRS Packet Network\n"
2223
Harald Welte410575a2010-03-14 23:30:30 +08002224DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002225 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002226 GPRS_TEXT
2227 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002228 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002229 "GPRS BSSGP VC Identifier")
2230{
2231 struct gsm_bts *bts = vty->index;
2232
Harald Weltecb20b7a2010-04-18 15:51:20 +02002233 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002234 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2235 return CMD_WARNING;
2236 }
2237
Harald Welte3055e332010-03-14 15:37:43 +08002238 bts->gprs.cell.bvci = atoi(argv[0]);
2239
2240 return CMD_SUCCESS;
2241}
2242
Harald Welte4a048c52010-03-22 11:48:36 +08002243DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2244 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002245 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002246 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002247 "GPRS NS Entity Identifier")
2248{
2249 struct gsm_bts *bts = vty->index;
2250
Harald Weltecb20b7a2010-04-18 15:51:20 +02002251 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002252 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2253 return CMD_WARNING;
2254 }
2255
2256 bts->gprs.nse.nsei = atoi(argv[0]);
2257
2258 return CMD_SUCCESS;
2259}
2260
Harald Welte9e002452010-05-11 21:53:49 +02002261#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2262 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002263
Harald Welte3055e332010-03-14 15:37:43 +08002264DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2265 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002266 GPRS_TEXT NSVC_TEXT
2267 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002268 "GPRS NS VC Identifier")
2269{
2270 struct gsm_bts *bts = vty->index;
2271 int idx = atoi(argv[0]);
2272
Harald Weltecb20b7a2010-04-18 15:51:20 +02002273 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002274 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2275 return CMD_WARNING;
2276 }
2277
Harald Welte3055e332010-03-14 15:37:43 +08002278 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2279
2280 return CMD_SUCCESS;
2281}
2282
Harald Welte410575a2010-03-14 23:30:30 +08002283DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2284 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002285 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002286 "GPRS NS Local UDP Port\n"
2287 "GPRS NS Local UDP Port\n"
2288 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002289 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002290{
2291 struct gsm_bts *bts = vty->index;
2292 int idx = atoi(argv[0]);
2293
Harald Weltecb20b7a2010-04-18 15:51:20 +02002294 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002295 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2296 return CMD_WARNING;
2297 }
2298
Harald Welte410575a2010-03-14 23:30:30 +08002299 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2300
2301 return CMD_SUCCESS;
2302}
2303
2304DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2305 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002306 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002307 "GPRS NS Remote UDP Port\n"
2308 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002309 "GPRS NS Remote UDP Port\n"
2310 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002311{
2312 struct gsm_bts *bts = vty->index;
2313 int idx = atoi(argv[0]);
2314
Harald Weltecb20b7a2010-04-18 15:51:20 +02002315 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002316 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2317 return CMD_WARNING;
2318 }
2319
Harald Welte410575a2010-03-14 23:30:30 +08002320 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2321
2322 return CMD_SUCCESS;
2323}
2324
2325DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2326 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002327 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002328 "GPRS NS Remote IP Address\n"
2329 "GPRS NS Remote IP Address\n"
2330 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002331{
2332 struct gsm_bts *bts = vty->index;
2333 int idx = atoi(argv[0]);
2334 struct in_addr ia;
2335
Harald Weltecb20b7a2010-04-18 15:51:20 +02002336 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002337 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2338 return CMD_WARNING;
2339 }
2340
Harald Welte410575a2010-03-14 23:30:30 +08002341 inet_aton(argv[1], &ia);
2342 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2343
2344 return CMD_SUCCESS;
2345}
2346
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002347DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002348 "paging free <-1-1024>",
2349 "Paging options\n"
2350 "Only page when having a certain amount of free slots\n"
2351 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002352{
2353 struct gsm_bts *bts = vty->index;
2354
2355 bts->paging.free_chans_need = atoi(argv[0]);
2356 return CMD_SUCCESS;
2357}
2358
Harald Weltea9251762010-05-11 23:50:21 +02002359DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2360 "gprs ns timer " NS_TIMERS " <0-255>",
2361 GPRS_TEXT "Network Service\n"
2362 "Network Service Timer\n"
2363 NS_TIMERS_HELP "Timer Value\n")
2364{
2365 struct gsm_bts *bts = vty->index;
2366 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2367 int val = atoi(argv[1]);
2368
2369 if (bts->gprs.mode == BTS_GPRS_NONE) {
2370 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2371 return CMD_WARNING;
2372 }
2373
2374 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2375 return CMD_WARNING;
2376
2377 bts->gprs.nse.timer[idx] = val;
2378
2379 return CMD_SUCCESS;
2380}
2381
2382#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte18ce31c2010-05-14 20:05:17 +02002383#define BSSGP_TIMERS_HELP \
2384 "Tbvc-block timeout\n" \
2385 "Tbvc-block retries\n" \
2386 "Tbvc-unblock retries\n" \
2387 "Tbvcc-reset timeout\n" \
2388 "Tbvc-reset retries\n" \
2389 "Tbvc-suspend timeout\n" \
2390 "Tbvc-suspend retries\n" \
2391 "Tbvc-resume timeout\n" \
2392 "Tbvc-resume retries\n" \
2393 "Tbvc-capa-update timeout\n" \
2394 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002395
2396DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2397 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2398 GPRS_TEXT "Cell / BSSGP\n"
2399 "Cell/BSSGP Timer\n"
2400 BSSGP_TIMERS_HELP "Timer Value\n")
2401{
2402 struct gsm_bts *bts = vty->index;
2403 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2404 int val = atoi(argv[1]);
2405
2406 if (bts->gprs.mode == BTS_GPRS_NONE) {
2407 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2408 return CMD_WARNING;
2409 }
2410
2411 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2412 return CMD_WARNING;
2413
2414 bts->gprs.cell.timer[idx] = val;
2415
2416 return CMD_SUCCESS;
2417}
2418
Harald Welte3055e332010-03-14 15:37:43 +08002419DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2420 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002421 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002422 "GPRS Routing Area Code\n"
2423 "GPRS Routing Area Code\n"
2424 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002425{
2426 struct gsm_bts *bts = vty->index;
2427
Harald Weltecb20b7a2010-04-18 15:51:20 +02002428 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002429 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2430 return CMD_WARNING;
2431 }
2432
Harald Welte3055e332010-03-14 15:37:43 +08002433 bts->gprs.rac = atoi(argv[0]);
2434
2435 return CMD_SUCCESS;
2436}
2437
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002438DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2439 "gprs network-control-order (nc0|nc1|nc2)",
2440 GPRS_TEXT
2441 "GPRS Network Control Order\n"
2442 "MS controlled cell re-selection, no measurement reporting\n"
2443 "MS controlled cell re-selection, MS sends measurement reports\n"
2444 "Network controlled cell re-selection, MS sends measurement reports\n")
2445{
2446 struct gsm_bts *bts = vty->index;
2447
2448 if (bts->gprs.mode == BTS_GPRS_NONE) {
2449 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2450 return CMD_WARNING;
2451 }
2452
2453 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2454
2455 return CMD_SUCCESS;
2456}
2457
Harald Weltecb20b7a2010-04-18 15:51:20 +02002458DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2459 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002460 GPRS_TEXT
2461 "GPRS Mode for this BTS\n"
2462 "GPRS Disabled on this BTS\n"
2463 "GPRS Enabled on this BTS\n"
2464 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002465{
2466 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002467 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002468
Harald Welte20e275a2010-06-14 22:44:42 +02002469 if (mode != BTS_GPRS_NONE &&
2470 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2471 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2472 VTY_NEWLINE);
2473 return CMD_WARNING;
2474 }
2475 if (mode == BTS_GPRS_EGPRS &&
2476 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2477 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2478 VTY_NEWLINE);
2479 return CMD_WARNING;
2480 }
2481
2482 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002483
2484 return CMD_SUCCESS;
2485}
2486
Harald Welted8acf142010-07-30 11:50:09 +02002487#define SI_TEXT "System Information Messages\n"
2488#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)"
2489#define SI_TYPE_HELP "System Information Type 1\n" \
2490 "System Information Type 2\n" \
2491 "System Information Type 3\n" \
2492 "System Information Type 4\n" \
2493 "System Information Type 5\n" \
2494 "System Information Type 6\n" \
2495 "System Information Type 7\n" \
2496 "System Information Type 8\n" \
2497 "System Information Type 9\n" \
2498 "System Information Type 10\n" \
2499 "System Information Type 13\n" \
2500 "System Information Type 16\n" \
2501 "System Information Type 17\n" \
2502 "System Information Type 18\n" \
2503 "System Information Type 19\n" \
2504 "System Information Type 20\n" \
2505 "System Information Type 2bis\n" \
2506 "System Information Type 2ter\n" \
2507 "System Information Type 2quater\n" \
2508 "System Information Type 5bis\n" \
2509 "System Information Type 5ter\n"
2510
2511DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2512 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2513 SI_TEXT SI_TYPE_HELP
2514 "System Information Mode\n"
2515 "Static user-specified\n"
2516 "Dynamic, BSC-computed\n")
2517{
2518 struct gsm_bts *bts = vty->index;
2519 int type;
2520
2521 type = get_string_value(osmo_sitype_strs, argv[0]);
2522 if (type < 0) {
2523 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2524 return CMD_WARNING;
2525 }
2526
2527 if (!strcmp(argv[1], "static"))
2528 bts->si_mode_static |= (1 << type);
2529 else
2530 bts->si_mode_static &= ~(1 << type);
2531
2532 return CMD_SUCCESS;
2533}
2534
2535DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2536 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2537 SI_TEXT SI_TYPE_HELP
2538 "Static System Information filling\n"
2539 "Static user-specified SI content in HEX notation\n")
2540{
2541 struct gsm_bts *bts = vty->index;
2542 int rc, type;
2543
2544 type = get_string_value(osmo_sitype_strs, argv[0]);
2545 if (type < 0) {
2546 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2547 return CMD_WARNING;
2548 }
2549
2550 if (!(bts->si_mode_static & (1 << type))) {
2551 vty_out(vty, "SI Type %s is not configured in static mode%s",
2552 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2553 return CMD_WARNING;
2554 }
2555
Harald Welte9f09ac32010-07-30 11:53:18 +02002556 /* Fill buffer with padding pattern */
2557 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2558
2559 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002560 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002561 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2562 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2563 return CMD_WARNING;
2564 }
2565
2566 /* Mark this SI as present */
2567 bts->si_valid |= (1 << type);
2568
2569 return CMD_SUCCESS;
2570}
2571
Harald Welteca46eff2011-01-11 23:44:56 +01002572DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002573 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002574 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002575 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2576 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002577{
2578 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002579 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002580
Harald Weltef989b782011-02-15 11:43:27 +01002581 switch (mode) {
2582 case NL_MODE_MANUAL_SI5SEP:
2583 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002584 /* make sure we clear the current list when switching to
2585 * manual mode */
2586 if (bts->neigh_list_manual_mode == 0)
2587 memset(&bts->si_common.data.neigh_list, 0,
2588 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002589 break;
2590 default:
2591 break;
2592 }
2593
2594 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002595
2596 return CMD_SUCCESS;
2597}
2598
2599DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002600 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002601 "Neighbor List\n" "Add to manual neighbor list\n"
2602 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2603 "ARFCN of neighbor\n")
2604{
2605 struct gsm_bts *bts = vty->index;
2606 struct bitvec *bv = &bts->si_common.neigh_list;
2607 uint16_t arfcn = atoi(argv[1]);
2608
2609 if (!bts->neigh_list_manual_mode) {
2610 vty_out(vty, "%% Cannot configure neighbor list in "
2611 "automatic mode%s", VTY_NEWLINE);
2612 return CMD_WARNING;
2613 }
2614
2615 if (!strcmp(argv[0], "add"))
2616 bitvec_set_bit_pos(bv, arfcn, 1);
2617 else
2618 bitvec_set_bit_pos(bv, arfcn, 0);
2619
2620 return CMD_SUCCESS;
2621}
2622
Harald Weltef989b782011-02-15 11:43:27 +01002623DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002624 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002625 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002626 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2627 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2628 "ARFCN of neighbor\n")
2629{
2630 struct gsm_bts *bts = vty->index;
2631 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2632 uint16_t arfcn = atoi(argv[1]);
2633
2634 if (!bts->neigh_list_manual_mode) {
2635 vty_out(vty, "%% Cannot configure neighbor list in "
2636 "automatic mode%s", VTY_NEWLINE);
2637 return CMD_WARNING;
2638 }
2639
2640 if (!strcmp(argv[0], "add"))
2641 bitvec_set_bit_pos(bv, arfcn, 1);
2642 else
2643 bitvec_set_bit_pos(bv, arfcn, 0);
2644
2645 return CMD_SUCCESS;
2646}
Harald Welted8acf142010-07-30 11:50:09 +02002647
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002648#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2649
2650DEFUN(cfg_bts_excl_rf_lock,
2651 cfg_bts_excl_rf_lock_cmd,
2652 "rf-lock-exclude",
2653 EXCL_RFLOCK_STR)
2654{
2655 struct gsm_bts *bts = vty->index;
2656 bts->excl_from_rf_lock = 1;
2657 return CMD_SUCCESS;
2658}
2659
2660DEFUN(cfg_bts_no_excl_rf_lock,
2661 cfg_bts_no_excl_rf_lock_cmd,
2662 "no rf-lock-exclude",
2663 NO_STR EXCL_RFLOCK_STR)
2664{
2665 struct gsm_bts *bts = vty->index;
2666 bts->excl_from_rf_lock = 0;
2667 return CMD_SUCCESS;
2668}
2669
Andreas Eversberg976493b2013-12-07 18:32:28 +01002670static void _get_codec_from_arg(struct vty *vty, int argc, const char *argv[])
2671{
2672 struct gsm_bts *bts = vty->index;
2673 struct bts_codec_conf *codec = &bts->codec;
2674 int i;
2675
2676 codec->hr = 0;
2677 codec->efr = 0;
2678 codec->amr = 0;
2679 for (i = 0; i < argc; i++) {
2680 if (!strcmp(argv[i], "hr"))
2681 codec->hr = 1;
2682 if (!strcmp(argv[i], "efr"))
2683 codec->efr = 1;
2684 if (!strcmp(argv[i], "amr"))
2685 codec->amr = 1;
2686 }
2687}
2688
2689#define CODEC_PAR_STR " (hr|efr|amr)"
2690#define CODEC_HELP_STR "Half Rate\n" \
2691 "Enhanced Full Rate\nAdaptive Multirate\n"
2692
2693DEFUN(cfg_bts_codec0, cfg_bts_codec0_cmd,
2694 "codec-support fr",
2695 "Codec Support settings\nFullrate\n")
2696{
2697 _get_codec_from_arg(vty, 0, argv);
2698 return CMD_SUCCESS;
2699}
2700
2701DEFUN(cfg_bts_codec1, cfg_bts_codec1_cmd,
2702 "codec-support fr" CODEC_PAR_STR,
2703 "Codec Support settings\nFullrate\n"
2704 CODEC_HELP_STR)
2705{
2706 _get_codec_from_arg(vty, 1, argv);
2707 return CMD_SUCCESS;
2708}
2709
2710DEFUN(cfg_bts_codec2, cfg_bts_codec2_cmd,
2711 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR,
2712 "Codec Support settings\nFullrate\n"
2713 CODEC_HELP_STR CODEC_HELP_STR)
2714{
2715 _get_codec_from_arg(vty, 2, argv);
2716 return CMD_SUCCESS;
2717}
2718
2719DEFUN(cfg_bts_codec3, cfg_bts_codec3_cmd,
2720 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2721 "Codec Support settings\nFullrate\n"
2722 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2723{
2724 _get_codec_from_arg(vty, 3, argv);
2725 return CMD_SUCCESS;
2726}
2727
2728DEFUN(cfg_bts_codec4, cfg_bts_codec4_cmd,
2729 "codec-support fr" CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR CODEC_PAR_STR,
2730 "Codec Support settings\nFullrate\n"
2731 CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR CODEC_HELP_STR)
2732{
2733 _get_codec_from_arg(vty, 4, argv);
2734 return CMD_SUCCESS;
2735}
2736
Harald Welte9e002452010-05-11 21:53:49 +02002737#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002738
Harald Welte59b04682009-06-10 05:40:52 +08002739/* per TRX configuration */
2740DEFUN(cfg_trx,
2741 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02002742 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002743 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002744 "Select a TRX to configure")
2745{
2746 int trx_nr = atoi(argv[0]);
2747 struct gsm_bts *bts = vty->index;
2748 struct gsm_bts_trx *trx;
2749
Harald Weltee712a5f2009-06-21 16:17:15 +02002750 if (trx_nr > bts->num_trx) {
2751 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2752 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002753 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002754 } else if (trx_nr == bts->num_trx) {
2755 /* we need to allocate a new one */
2756 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002757 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002758 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002759
Harald Weltee712a5f2009-06-21 16:17:15 +02002760 if (!trx)
2761 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002762
2763 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002764 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002765 vty->node = TRX_NODE;
2766
2767 return CMD_SUCCESS;
2768}
2769
2770DEFUN(cfg_trx_arfcn,
2771 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002772 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02002773 "Set the ARFCN for this TRX\n"
2774 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002775{
2776 int arfcn = atoi(argv[0]);
2777 struct gsm_bts_trx *trx = vty->index;
2778
2779 /* FIXME: check if this ARFCN is supported by this TRX */
2780
2781 trx->arfcn = arfcn;
2782
2783 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2784 /* FIXME: use OML layer to update the ARFCN */
2785 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2786
2787 return CMD_SUCCESS;
2788}
2789
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002790DEFUN(cfg_trx_nominal_power,
2791 cfg_trx_nominal_power_cmd,
2792 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002793 "Nominal TRX RF Power in dBm\n"
2794 "Nominal TRX RF Power in dBm\n"
2795 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002796{
2797 struct gsm_bts_trx *trx = vty->index;
2798
2799 trx->nominal_power = atoi(argv[0]);
2800
2801 return CMD_SUCCESS;
2802}
2803
Harald Welte91afe4c2009-06-20 18:15:19 +02002804DEFUN(cfg_trx_max_power_red,
2805 cfg_trx_max_power_red_cmd,
2806 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002807 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02002808 "Reduction of maximum BS RF Power in dB\n")
2809{
2810 int maxpwr_r = atoi(argv[0]);
2811 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002812 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002813
2814 /* FIXME: check if our BTS type supports more than 12 */
2815 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2816 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2817 maxpwr_r, VTY_NEWLINE);
2818 return CMD_WARNING;
2819 }
2820 if (maxpwr_r & 1) {
2821 vty_out(vty, "%% Power %d dB is not an even value%s",
2822 maxpwr_r, VTY_NEWLINE);
2823 return CMD_WARNING;
2824 }
2825
2826 trx->max_power_red = maxpwr_r;
2827
2828 /* FIXME: make sure we update this using OML */
2829
2830 return CMD_SUCCESS;
2831}
2832
Harald Welte62868882009-08-08 16:12:58 +02002833DEFUN(cfg_trx_rsl_e1,
2834 cfg_trx_rsl_e1_cmd,
2835 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002836 "RSL Parameters\n"
2837 "E1/T1 interface to be used for RSL\n"
2838 "E1/T1 interface to be used for RSL\n"
2839 "E1/T1 Line Number to be used for RSL\n"
2840 "E1/T1 Timeslot to be used for RSL\n"
2841 "E1/T1 Timeslot to be used for RSL\n"
2842 "E1/T1 Sub-slot to be used for RSL\n"
2843 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2844 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2845 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2846 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2847 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002848{
2849 struct gsm_bts_trx *trx = vty->index;
2850
2851 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2852
2853 return CMD_SUCCESS;
2854}
2855
2856DEFUN(cfg_trx_rsl_e1_tei,
2857 cfg_trx_rsl_e1_tei_cmd,
2858 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002859 "RSL Parameters\n"
2860 "Set the TEI to be used for RSL\n"
2861 "Set the TEI to be used for RSL\n"
2862 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002863{
2864 struct gsm_bts_trx *trx = vty->index;
2865
2866 trx->rsl_tei = atoi(argv[0]);
2867
2868 return CMD_SUCCESS;
2869}
2870
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002871DEFUN(cfg_trx_rf_locked,
2872 cfg_trx_rf_locked_cmd,
2873 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002874 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2875 "TRX is NOT RF locked (active)\n"
2876 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002877{
2878 int locked = atoi(argv[0]);
2879 struct gsm_bts_trx *trx = vty->index;
2880
2881 gsm_trx_lock_rf(trx, locked);
2882 return CMD_SUCCESS;
2883}
Harald Welte62868882009-08-08 16:12:58 +02002884
Harald Welte59b04682009-06-10 05:40:52 +08002885/* per TS configuration */
2886DEFUN(cfg_ts,
2887 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002888 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002889 "Select a Timeslot to configure\n"
2890 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002891{
2892 int ts_nr = atoi(argv[0]);
2893 struct gsm_bts_trx *trx = vty->index;
2894 struct gsm_bts_trx_ts *ts;
2895
2896 if (ts_nr >= TRX_NR_TS) {
2897 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2898 TRX_NR_TS, VTY_NEWLINE);
2899 return CMD_WARNING;
2900 }
2901
2902 ts = &trx->ts[ts_nr];
2903
2904 vty->index = ts;
2905 vty->node = TS_NODE;
2906
2907 return CMD_SUCCESS;
2908}
2909
Harald Welte3ffe1b32009-08-07 00:25:23 +02002910DEFUN(cfg_ts_pchan,
2911 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02002912 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002913 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02002914{
2915 struct gsm_bts_trx_ts *ts = vty->index;
2916 int pchanc;
2917
2918 pchanc = gsm_pchan_parse(argv[0]);
2919 if (pchanc < 0)
2920 return CMD_WARNING;
2921
2922 ts->pchan = pchanc;
2923
2924 return CMD_SUCCESS;
2925}
2926
2927/* used for backwards compatibility with old config files that still
2928 * have uppercase pchan type names */
2929DEFUN_HIDDEN(cfg_ts_pchan_compat,
2930 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02002931 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002932 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002933{
2934 struct gsm_bts_trx_ts *ts = vty->index;
2935 int pchanc;
2936
2937 pchanc = gsm_pchan_parse(argv[0]);
2938 if (pchanc < 0)
2939 return CMD_WARNING;
2940
2941 ts->pchan = pchanc;
2942
2943 return CMD_SUCCESS;
2944}
2945
Harald Welte2addf852012-08-17 12:42:06 +02002946
2947
Harald Welte85771a42011-05-30 12:09:13 +02002948DEFUN(cfg_ts_tsc,
2949 cfg_ts_tsc_cmd,
2950 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002951 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02002952{
2953 struct gsm_bts_trx_ts *ts = vty->index;
2954
2955 ts->tsc = atoi(argv[0]);
2956
2957 return CMD_SUCCESS;
2958}
2959
Harald Weltea42a93f2010-06-14 22:26:10 +02002960#define HOPPING_STR "Configure frequency hopping\n"
2961
2962DEFUN(cfg_ts_hopping,
2963 cfg_ts_hopping_cmd,
2964 "hopping enabled (0|1)",
2965 HOPPING_STR "Enable or disable frequency hopping\n"
2966 "Disable frequency hopping\n" "Enable frequency hopping\n")
2967{
2968 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002969 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002970
Harald Welte059c1ef2010-06-14 22:47:37 +02002971 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2972 vty_out(vty, "BTS model does not support hopping%s",
2973 VTY_NEWLINE);
2974 return CMD_WARNING;
2975 }
2976
2977 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002978
2979 return CMD_SUCCESS;
2980}
2981
Harald Welte67104d12009-09-12 13:05:33 +02002982DEFUN(cfg_ts_hsn,
2983 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002984 "hopping sequence-number <0-63>",
2985 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002986 "Which hopping sequence to use for this channel\n"
2987 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002988{
2989 struct gsm_bts_trx_ts *ts = vty->index;
2990
2991 ts->hopping.hsn = atoi(argv[0]);
2992
2993 return CMD_SUCCESS;
2994}
2995
2996DEFUN(cfg_ts_maio,
2997 cfg_ts_maio_cmd,
2998 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002999 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02003000 "Which hopping MAIO to use for this channel\n"
3001 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02003002{
3003 struct gsm_bts_trx_ts *ts = vty->index;
3004
3005 ts->hopping.maio = atoi(argv[0]);
3006
3007 return CMD_SUCCESS;
3008}
3009
3010DEFUN(cfg_ts_arfcn_add,
3011 cfg_ts_arfcn_add_cmd,
3012 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003013 HOPPING_STR "Configure hopping ARFCN list\n"
3014 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003015{
3016 struct gsm_bts_trx_ts *ts = vty->index;
3017 int arfcn = atoi(argv[0]);
3018
Harald Weltea42a93f2010-06-14 22:26:10 +02003019 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
3020
Harald Welte67104d12009-09-12 13:05:33 +02003021 return CMD_SUCCESS;
3022}
3023
3024DEFUN(cfg_ts_arfcn_del,
3025 cfg_ts_arfcn_del_cmd,
3026 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02003027 HOPPING_STR "Configure hopping ARFCN list\n"
3028 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02003029{
3030 struct gsm_bts_trx_ts *ts = vty->index;
3031 int arfcn = atoi(argv[0]);
3032
Harald Weltea42a93f2010-06-14 22:26:10 +02003033 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
3034
Harald Welte67104d12009-09-12 13:05:33 +02003035 return CMD_SUCCESS;
3036}
3037
Harald Welte3ffe1b32009-08-07 00:25:23 +02003038DEFUN(cfg_ts_e1_subslot,
3039 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02003040 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02003041 "E1/T1 channel connected to this on-air timeslot\n"
3042 "E1/T1 channel connected to this on-air timeslot\n"
3043 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02003044 "E1/T1 timeslot connected to this on-air timeslot\n"
3045 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02003046 "E1/T1 sub-slot connected to this on-air timeslot\n"
3047 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
3048 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
3049 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
3050 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
3051 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02003052{
3053 struct gsm_bts_trx_ts *ts = vty->index;
3054
Harald Welte62868882009-08-08 16:12:58 +02003055 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003056
3057 return CMD_SUCCESS;
3058}
Harald Welte59b04682009-06-10 05:40:52 +08003059
Harald Weltea5b1dae2010-05-16 21:47:13 +02003060void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
3061{
3062 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003063 osmo_counter_get(net->stats.chreq.total),
3064 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003065 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003066 osmo_counter_get(net->stats.chan.rf_fail),
3067 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003068 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003069 osmo_counter_get(net->stats.paging.attempted),
3070 osmo_counter_get(net->stats.paging.completed),
3071 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003072 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02003073 osmo_counter_get(net->stats.bts.oml_fail),
3074 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02003075}
3076
Harald Welte682ee5f2010-05-16 22:02:16 +02003077DEFUN(logging_fltr_imsi,
3078 logging_fltr_imsi_cmd,
3079 "logging filter imsi IMSI",
3080 LOGGING_STR FILTER_STR
3081 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
3082{
Harald Welte58bef962011-02-18 21:10:05 +01003083 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02003084
Harald Welte58bef962011-02-18 21:10:05 +01003085 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02003086 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02003087
Harald Welte58bef962011-02-18 21:10:05 +01003088 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02003089 return CMD_SUCCESS;
3090}
3091
Harald Welte58bef962011-02-18 21:10:05 +01003092
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003093DEFUN(drop_bts,
3094 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02003095 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02003096 "Debug/Simulation command to drop Abis/IP BTS\n"
3097 "Debug/Simulation command to drop Abis/IP BTS\n"
3098 "Debug/Simulation command to drop Abis/IP BTS\n"
3099 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003100{
3101 struct gsm_network *gsmnet;
3102 struct gsm_bts_trx *trx;
3103 struct gsm_bts *bts;
3104 unsigned int bts_nr;
3105
3106 gsmnet = gsmnet_from_vty(vty);
3107
3108 bts_nr = atoi(argv[0]);
3109 if (bts_nr >= gsmnet->num_bts) {
3110 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
3111 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
3112 return CMD_WARNING;
3113 }
3114
3115 bts = gsm_bts_num(gsmnet, bts_nr);
3116 if (!bts) {
3117 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
3118 return CMD_WARNING;
3119 }
3120
3121 if (!is_ipaccess_bts(bts)) {
3122 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
3123 return CMD_WARNING;
3124 }
3125
3126
3127 /* close all connections */
3128 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003129 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003130 } else if (strcmp(argv[1], "rsl") == 0) {
3131 /* close all rsl connections */
3132 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01003133 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003134 }
3135 } else {
3136 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
3137 return CMD_WARNING;
3138 }
3139
3140 return CMD_SUCCESS;
3141}
3142
Harald Welte5213e992010-12-23 13:18:07 +01003143DEFUN(pdch_act, pdch_act_cmd,
3144 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
3145 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
3146 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
3147 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
3148 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
3149{
3150 struct gsm_bts *bts;
3151 struct gsm_bts_trx *trx;
3152 struct gsm_bts_trx_ts *ts;
3153 int bts_nr = atoi(argv[0]);
3154 int trx_nr = atoi(argv[1]);
3155 int ts_nr = atoi(argv[2]);
3156 int activate;
3157
3158 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
3159 if (!bts) {
3160 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
3161 return CMD_WARNING;
3162 }
3163
3164 if (!is_ipaccess_bts(bts)) {
3165 vty_out(vty, "%% This command only works for ipaccess BTS%s",
3166 VTY_NEWLINE);
3167 return CMD_WARNING;
3168 }
3169
3170 trx = gsm_bts_trx_num(bts, trx_nr);
3171 if (!trx) {
3172 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
3173 return CMD_WARNING;
3174 }
3175
3176 ts = &trx->ts[ts_nr];
3177 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
3178 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
3179 "mode%s", ts_nr, VTY_NEWLINE);
3180 return CMD_WARNING;
3181 }
3182
3183 if (!strcmp(argv[3], "activate"))
3184 activate = 1;
3185 else
3186 activate = 0;
3187
3188 rsl_ipacc_pdch_activate(ts, activate);
3189
3190 return CMD_SUCCESS;
3191
3192}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003193
Harald Welte40152872010-05-16 20:52:23 +02003194extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02003195extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02003196
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003197int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08003198{
Harald Welte2addf852012-08-17 12:42:06 +02003199 cfg_ts_pchan_cmd.string =
3200 vty_cmd_string_from_valstr(tall_bsc_ctx,
3201 gsm_pchant_names,
3202 "phys_chan_config (", "|", ")",
3203 VTY_DO_LOWER);
3204 cfg_ts_pchan_cmd.doc =
3205 vty_cmd_string_from_valstr(tall_bsc_ctx,
3206 gsm_pchant_descs,
3207 "Physical Channel Combination\n",
3208 "\n", "", 0);
3209
Harald Welte85a77b12012-08-17 13:02:12 +02003210 cfg_bts_type_cmd.string =
3211 vty_cmd_string_from_valstr(tall_bsc_ctx,
3212 bts_type_names,
3213 "type (", "|", ")",
3214 VTY_DO_LOWER);
3215 cfg_bts_type_cmd.doc =
3216 vty_cmd_string_from_valstr(tall_bsc_ctx,
3217 bts_type_descs,
3218 "BTS Vendor/Type\n",
3219 "\n", "", 0);
3220
3221
Harald Welte7bc28f62010-05-12 16:10:35 +00003222 install_element_ve(&show_net_cmd);
3223 install_element_ve(&show_bts_cmd);
3224 install_element_ve(&show_trx_cmd);
3225 install_element_ve(&show_ts_cmd);
3226 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08003227 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02003228 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003229
Harald Welte7bc28f62010-05-12 16:10:35 +00003230 install_element_ve(&show_paging_cmd);
Holger Hans Peter Freyther35e6fbb2013-02-05 09:39:09 +01003231 install_element_ve(&show_paging_group_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003232
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003233 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01003234 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01003235
Harald Weltee87eb462009-08-07 13:29:14 +02003236 install_element(CONFIG_NODE, &cfg_net_cmd);
3237 install_node(&net_node, config_write_net);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003238 vty_install_default(GSMNET_NODE);
Harald Welte62868882009-08-08 16:12:58 +02003239 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003240 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3241 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3242 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02003243 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01003244 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09003245 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01003246 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01003247 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01003248 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003249 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003250 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3251 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3252 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3253 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3254 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3255 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003256 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003257 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3258 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3259 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3260 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3261 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3262 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3263 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3264 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3265 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003266 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003267 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003268 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003269 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003270 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003271
3272 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003273 install_node(&bts_node, config_write_bts);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003274 vty_install_default(BTS_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003275 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003276 install_element(BTS_NODE, &cfg_description_cmd);
3277 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003278 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003279 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003280 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3281 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003282 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003283 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003284 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003285 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
Jacob Erlbeckcc0d8842013-09-17 13:59:29 +02003286 install_element(BTS_NODE, &cfg_bts_timezone_dst_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003287 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003288 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Andreas Eversbergac27b952013-12-05 13:25:06 +01003289 install_element(BTS_NODE, &cfg_bts_nokia_site_no_loc_rel_cnf_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003290 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003291 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3292 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003293 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003294 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3295 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003296 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3297 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3298 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003299 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3300 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003301 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003302 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Ivan Kluchnikov80d58432013-09-16 13:13:04 +04003303 install_element(BTS_NODE, &cfg_bts_rach_ac_class_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003304 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003305 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Holger Hans Peter Freyther2fb8ebf2013-07-27 21:07:57 +02003306 install_element(BTS_NODE, &cfg_bts_no_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003307 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3308 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003309 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3310 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3311 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3312 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3313 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3314 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003315 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003316 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003317 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003318 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003319 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003320 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003321 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003322 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003323 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3324 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3325 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003326 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003327 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3328 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003329 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3330 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003331 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003332 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3333 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Andreas Eversberg976493b2013-12-07 18:32:28 +01003334 install_element(BTS_NODE, &cfg_bts_codec0_cmd);
3335 install_element(BTS_NODE, &cfg_bts_codec1_cmd);
3336 install_element(BTS_NODE, &cfg_bts_codec2_cmd);
3337 install_element(BTS_NODE, &cfg_bts_codec3_cmd);
3338 install_element(BTS_NODE, &cfg_bts_codec4_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003339
3340 install_element(BTS_NODE, &cfg_trx_cmd);
3341 install_node(&trx_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003342 vty_install_default(TRX_NODE);
Harald Welte59b04682009-06-10 05:40:52 +08003343 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003344 install_element(TRX_NODE, &cfg_description_cmd);
3345 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003346 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003347 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003348 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3349 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003350 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003351
3352 install_element(TRX_NODE, &cfg_ts_cmd);
3353 install_node(&ts_node, dummy_config_write);
Jacob Erlbeckf414e852013-10-29 09:30:30 +01003354 vty_install_default(TS_NODE);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003355 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003356 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003357 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003358 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003359 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3360 install_element(TS_NODE, &cfg_ts_maio_cmd);
3361 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3362 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003363 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003364
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003365 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003366 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003367
Harald Welte63b964e2010-05-31 16:40:40 +02003368 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003369 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003370 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003371
Harald Welte40152872010-05-16 20:52:23 +02003372 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003373
3374 return 0;
3375}