blob: b2b7977c7337a51e0b693bfdd9ea48ad5a430d5d [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* OpenBSC interface to quagga VTY */
Harald Welte410575a2010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte59b04682009-06-10 05:40:52 +08003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte59b04682009-06-10 05:40:52 +08008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte0e3e88e2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080014 *
Harald Welte0e3e88e2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080022
Harald Weltebd9591f2010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte2addf852012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte59b04682009-06-10 05:40:52 +080029
30#include <arpa/inet.h>
31
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010032#include <osmocom/core/linuxlist.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/gsm_data.h>
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +020034#include <osmocom/abis/e1_input.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/abis_nm.h>
Harald Welte30f93fb2011-02-19 16:48:17 +010036#include <openbsc/abis_om2000.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010037#include <osmocom/core/utils.h>
38#include <osmocom/gsm/gsm_utils.h>
Harald Welte73e69942011-05-23 20:42:26 +020039#include <osmocom/gsm/abis_nm.h>
Harald Weltefe96f382009-12-22 13:09:29 +010040#include <openbsc/chan_alloc.h>
Harald Welte44007742009-12-22 21:43:14 +010041#include <openbsc/meas_rep.h>
Harald Welte59b04682009-06-10 05:40:52 +080042#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010043#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherb70d45b2010-04-06 11:55:37 +020044#include <openbsc/vty.h>
Harald Weltecfb6b282012-06-16 14:59:56 +080045#include <osmocom/gprs/gprs_ns.h>
Harald Welted8acf142010-07-30 11:50:09 +020046#include <openbsc/system_information.h>
Harald Welte682ee5f2010-05-16 22:02:16 +020047#include <openbsc/debug.h>
Holger Hans Peter Freyther25176f12010-11-09 17:00:42 +010048#include <openbsc/paging.h>
Harald Welte64fcd772011-08-20 18:25:02 +020049#include <openbsc/ipaccess.h>
Harald Welte5213e992010-12-23 13:18:07 +010050#include <openbsc/abis_rsl.h>
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +010051#include <openbsc/osmo_msc_data.h>
52#include <openbsc/osmo_bsc_rf.h>
Harald Welte59b04682009-06-10 05:40:52 +080053
Harald Welted9dea592011-03-04 13:53:51 +010054#include "../../bscconfig.h"
Harald Welte10c29f62010-05-16 19:20:24 +020055
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +020056
57#define NETWORK_STR "Configure the GSM network\n"
58#define CODE_CMD_STR "Code commands\n"
59#define NAME_CMD_STR "Name Commands\n"
60#define NAME_STR "Name to use\n"
61#define LCHAN_NR_STR "Logical Channel Number\n"
62
63
Harald Welted6b62e32010-05-12 17:19:53 +000064/* FIXME: this should go to some common file */
65static const struct value_string gprs_ns_timer_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020066 { 0, "tns-block" },
67 { 1, "tns-block-retries" },
68 { 2, "tns-reset" },
69 { 3, "tns-reset-retries" },
70 { 4, "tns-test" },
71 { 5, "tns-alive" },
72 { 6, "tns-alive-retries" },
73 { 0, NULL }
74};
75
Harald Welted6b62e32010-05-12 17:19:53 +000076static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Weltea9251762010-05-11 23:50:21 +020077 { 0, "blocking-timer" },
78 { 1, "blocking-retries" },
79 { 2, "unblocking-retries" },
80 { 3, "reset-timer" },
81 { 4, "reset-retries" },
82 { 5, "suspend-timer" },
83 { 6, "suspend-retries" },
84 { 7, "resume-timer" },
85 { 8, "resume-retries" },
86 { 9, "capability-update-timer" },
87 { 10, "capability-update-retries" },
88 { 0, NULL }
89};
90
Harald Weltef989b782011-02-15 11:43:27 +010091static const struct value_string bts_neigh_mode_strs[] = {
92 { NL_MODE_AUTOMATIC, "automatic" },
93 { NL_MODE_MANUAL, "manual" },
94 { NL_MODE_MANUAL_SI5SEP, "manual-si5" },
95 { 0, NULL }
96};
97
Daniel Willmann2c9540c2012-05-14 18:43:23 +020098const struct value_string bts_loc_fix_names[] = {
99 { BTS_LOC_FIX_INVALID, "invalid" },
100 { BTS_LOC_FIX_2D, "fix2d" },
101 { BTS_LOC_FIX_3D, "fix3d" },
102 { 0, NULL }
103};
104
Harald Weltee87eb462009-08-07 13:29:14 +0200105struct cmd_node net_node = {
106 GSMNET_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200107 "%s(config-net)# ",
Harald Weltee87eb462009-08-07 13:29:14 +0200108 1,
109};
110
Harald Welte59b04682009-06-10 05:40:52 +0800111struct cmd_node bts_node = {
112 BTS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200113 "%s(config-net-bts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800114 1,
115};
116
117struct cmd_node trx_node = {
118 TRX_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200119 "%s(config-net-bts-trx)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800120 1,
121};
122
123struct cmd_node ts_node = {
124 TS_NODE,
Harald Welte45362bb2012-08-17 13:16:10 +0200125 "%s(config-net-bts-trx-ts)# ",
Harald Welte59b04682009-06-10 05:40:52 +0800126 1,
127};
128
Harald Welte61daf6d2010-05-27 13:39:40 +0200129extern struct gsm_network *bsc_gsmnet;
130
Harald Welte40152872010-05-16 20:52:23 +0200131struct gsm_network *gsmnet_from_vty(struct vty *v)
132{
Harald Welte61daf6d2010-05-27 13:39:40 +0200133 /* In case we read from the config file, the vty->priv cannot
134 * point to a struct telnet_connection, and thus conn->priv
135 * will not point to the gsm_network structure */
136#if 0
Harald Welte40152872010-05-16 20:52:23 +0200137 struct telnet_connection *conn = v->priv;
138 return (struct gsm_network *) conn->priv;
Harald Welte61daf6d2010-05-27 13:39:40 +0200139#else
140 return bsc_gsmnet;
141#endif
Harald Welte40152872010-05-16 20:52:23 +0200142}
143
Harald Welte59b04682009-06-10 05:40:52 +0800144static int dummy_config_write(struct vty *v)
145{
146 return CMD_SUCCESS;
147}
148
149static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
150{
Harald Weltee7b751c2013-03-15 16:57:33 +0100151 vty_out(vty,"Oper '%s', Admin '%s', Avail '%s'%s",
152 abis_nm_opstate_name(nms->operational),
153 get_value_string(abis_nm_adm_state_names, nms->administrative),
Harald Welte306a8892011-05-23 20:30:39 +0200154 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800155}
156
Harald Weltefe96f382009-12-22 13:09:29 +0100157static void dump_pchan_load_vty(struct vty *vty, char *prefix,
158 const struct pchan_load *pl)
159{
160 int i;
161
162 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
163 const struct load_counter *lc = &pl->pchan[i];
164 unsigned int percent;
165
166 if (lc->total == 0)
167 continue;
168
169 percent = (lc->used * 100) / lc->total;
170
171 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
172 gsm_pchan_name(i), percent, lc->used, lc->total,
173 VTY_NEWLINE);
174 }
175}
176
Harald Welte59b04682009-06-10 05:40:52 +0800177static void net_dump_vty(struct vty *vty, struct gsm_network *net)
178{
Harald Weltefe96f382009-12-22 13:09:29 +0100179 struct pchan_load pl;
180
Harald Welte59b04682009-06-10 05:40:52 +0800181 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
182 "and has %u BTS%s", net->country_code, net->network_code,
183 net->num_bts, VTY_NEWLINE);
184 vty_out(vty, " Long network name: '%s'%s",
185 net->name_long, VTY_NEWLINE);
186 vty_out(vty, " Short network name: '%s'%s",
187 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200188 vty_out(vty, " Authentication policy: %s%s",
189 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100190 vty_out(vty, " Location updating reject cause: %u%s",
191 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900192 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
193 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100194 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
195 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800196 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
197 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100198 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
199 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100200 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
201 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100202 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
203 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100204 network_chan_load(&pl, net);
205 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
206 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100207
208 /* show rf */
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200209 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100210 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200211 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100212 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800213}
214
215DEFUN(show_net, show_net_cmd, "show network",
216 SHOW_STR "Display information about a GSM NETWORK\n")
217{
Harald Welte40152872010-05-16 20:52:23 +0200218 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800219 net_dump_vty(vty, net);
220
221 return CMD_SUCCESS;
222}
223
224static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
225{
226 struct e1inp_line *line;
227
228 if (!e1l) {
229 vty_out(vty, " None%s", VTY_NEWLINE);
230 return;
231 }
232
233 line = e1l->ts->line;
234
235 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
236 line->num, line->driver->name, e1l->ts->num,
237 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
238 vty_out(vty, " E1 TEI %u, SAPI %u%s",
239 e1l->tei, e1l->sapi, VTY_NEWLINE);
240}
241
242static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
243{
Harald Weltefe96f382009-12-22 13:09:29 +0100244 struct pchan_load pl;
245
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200246 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200247 "BSIC %u, TSC %u and %u TRX%s",
248 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200249 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200250 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200251 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200252 vty_out(vty, "Description: %s%s",
253 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100254 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100255 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100256 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
257 VTY_NEWLINE);
258 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100259 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100260 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
261 VTY_NEWLINE);
262 vty_out(vty, "RACH Max transmissions: %u%s",
263 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
264 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100265 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200266 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200267 vty_out(vty, "Channel Description Attachment: %s%s",
268 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
269 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
270 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
271 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
272 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200273 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
274 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800275 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200276 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800277 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200278 bts->oml_tei, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200279 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
280 vty_out(vty, " Skip Reset: %d%s",
281 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800282 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200283 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800284 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200285 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther03d80af2013-05-29 16:22:09 +0200286 vty_out(vty, " GPRS NSE: ");
287 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
288 vty_out(vty, " GPRS CELL: ");
289 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
290 vty_out(vty, " GPRS NSVC0: ");
291 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
292 vty_out(vty, " GPRS NSVC1: ");
293 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200294 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
295 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800296 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100297 if (is_ipaccess_bts(bts)) {
298 vty_out(vty, " OML Link state: %s.%s",
299 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
300 } else {
Harald Welte25572872009-10-20 00:22:00 +0200301 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
302 e1isl_dump_vty(vty, bts->oml_link);
303 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100304
305 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100306 memset(&pl, 0, sizeof(pl));
307 bts_chan_load(&pl, bts);
308 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
309 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800310}
311
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100312DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800313 SHOW_STR "Display information about a BTS\n"
314 "BTS number")
315{
Harald Welte40152872010-05-16 20:52:23 +0200316 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800317 int bts_nr;
318
319 if (argc != 0) {
320 /* use the BTS number that the user has specified */
321 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100322 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800323 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
324 VTY_NEWLINE);
325 return CMD_WARNING;
326 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200327 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800328 return CMD_SUCCESS;
329 }
330 /* print all BTS's */
331 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200332 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800333
334 return CMD_SUCCESS;
335}
336
Harald Welte62868882009-08-08 16:12:58 +0200337/* utility functions */
338static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
339 const char *ts, const char *ss)
340{
341 e1_link->e1_nr = atoi(line);
342 e1_link->e1_ts = atoi(ts);
343 if (!strcmp(ss, "full"))
344 e1_link->e1_ts_ss = 255;
345 else
346 e1_link->e1_ts_ss = atoi(ss);
347}
348
349static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
350 const char *prefix)
351{
352 if (!e1_link->e1_ts)
353 return;
354
355 if (e1_link->e1_ts_ss == 255)
356 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
357 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
358 else
359 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
360 prefix, e1_link->e1_nr, e1_link->e1_ts,
361 e1_link->e1_ts_ss, VTY_NEWLINE);
362}
363
364
Harald Welte97ceef92009-08-06 19:06:46 +0200365static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
366{
Harald Welte62868882009-08-08 16:12:58 +0200367 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200368 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
369 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200370 if (ts->pchan != GSM_PCHAN_NONE)
371 vty_out(vty, " phys_chan_config %s%s",
372 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200373 vty_out(vty, " hopping enabled %u%s",
374 ts->hopping.enabled, VTY_NEWLINE);
375 if (ts->hopping.enabled) {
376 unsigned int i;
377 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200378 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200379 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200380 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200381 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
382 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
383 continue;
384 vty_out(vty, " hopping arfcn add %u%s",
385 i, VTY_NEWLINE);
386 }
Harald Welteff598092010-12-24 12:07:07 +0100387 }
Harald Welte62868882009-08-08 16:12:58 +0200388 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100389
390 if (ts->trx->bts->model->config_write_ts)
391 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200392}
393
394static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
395{
396 int i;
397
Harald Weltee87eb462009-08-07 13:29:14 +0200398 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200399 if (trx->description)
400 vty_out(vty, " description %s%s", trx->description,
401 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200402 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200403 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200404 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200405 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100406 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200407 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200408 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
409 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200410
Harald Weltec02789e2011-02-14 16:15:21 +0100411 if (trx->bts->model->config_write_trx)
412 trx->bts->model->config_write_trx(vty, trx);
413
Harald Welte97ceef92009-08-06 19:06:46 +0200414 for (i = 0; i < TRX_NR_TS; i++)
415 config_write_ts_single(vty, &trx->ts[i]);
416}
417
Harald Weltea9251762010-05-11 23:50:21 +0200418static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
419{
420 unsigned int i;
421 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
422 VTY_NEWLINE);
423 if (bts->gprs.mode == BTS_GPRS_NONE)
424 return;
425
426 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
427 VTY_NEWLINE);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +0100428 vty_out(vty, " gprs network-control-order nc%u%s",
429 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Weltea9251762010-05-11 23:50:21 +0200430 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
431 VTY_NEWLINE);
432 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
433 vty_out(vty, " gprs cell timer %s %u%s",
434 get_value_string(gprs_bssgp_cfg_strs, i),
435 bts->gprs.cell.timer[i], VTY_NEWLINE);
436 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
437 VTY_NEWLINE);
438 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
439 vty_out(vty, " gprs ns timer %s %u%s",
440 get_value_string(gprs_ns_timer_strs, i),
441 bts->gprs.nse.timer[i], VTY_NEWLINE);
442 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
443 struct gsm_bts_gprs_nsvc *nsvc =
444 &bts->gprs.nsvc[i];
445 struct in_addr ia;
446
447 ia.s_addr = htonl(nsvc->remote_ip);
448 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
449 nsvc->nsvci, VTY_NEWLINE);
450 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
451 nsvc->local_port, VTY_NEWLINE);
452 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
453 nsvc->remote_port, VTY_NEWLINE);
454 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
455 inet_ntoa(ia), VTY_NEWLINE);
456 }
457}
458
Harald Welte97ceef92009-08-06 19:06:46 +0200459static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
460{
461 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200462 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200463
Harald Weltee87eb462009-08-07 13:29:14 +0200464 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
465 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200466 if (bts->description)
467 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200468 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100469 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200470 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200471 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200472 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
473 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte5c3abf92012-07-08 16:48:11 +0200474 if (bts->tz.override != 0)
475 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200476 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100477 vty_out(vty, " cell reselection hysteresis %u%s",
478 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
479 vty_out(vty, " rxlev access min %u%s",
480 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100481
482 if (bts->si_common.cell_ro_sel_par.present) {
483 struct gsm48_si_selection_params *sp;
484 sp = &bts->si_common.cell_ro_sel_par;
485
486 if (sp->cbq)
487 vty_out(vty, " cell bar qualify %u%s",
488 sp->cbq, VTY_NEWLINE);
489
490 if (sp->cell_resel_off)
491 vty_out(vty, " cell reselection offset %u%s",
492 sp->cell_resel_off*2, VTY_NEWLINE);
493
494 if (sp->temp_offs == 7)
495 vty_out(vty, " temporary offset infinite%s",
496 VTY_NEWLINE);
497 else if (sp->temp_offs)
498 vty_out(vty, " temporary offset %u%s",
499 sp->temp_offs*10, VTY_NEWLINE);
500
501 if (sp->penalty_time == 31)
502 vty_out(vty, " penalty time reserved%s",
503 VTY_NEWLINE);
504 else if (sp->penalty_time)
505 vty_out(vty, " penalty time %u%s",
506 (sp->penalty_time*20)+20, VTY_NEWLINE);
507 }
508
Daniel Willmann3e7db9e2012-12-27 00:02:01 +0100509 vty_out(vty, " periodic location update %u%s",
510 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200511 vty_out(vty, " channel allocator %s%s",
512 bts->chan_alloc_reverse ? "descending" : "ascending",
513 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100514 vty_out(vty, " rach tx integer %u%s",
515 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
516 vty_out(vty, " rach max transmission %u%s",
517 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
518 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800519
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200520 vty_out(vty, " channel-descrption attach %u%s",
521 bts->si_common.chan_desc.att, VTY_NEWLINE);
522 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
523 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
524 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
525 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
526
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800527 if (bts->rach_b_thresh != -1)
528 vty_out(vty, " rach nm busy threshold %u%s",
529 bts->rach_b_thresh, VTY_NEWLINE);
530 if (bts->rach_ldavg_slots != -1)
531 vty_out(vty, " rach nm load average %u%s",
532 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100533 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200534 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800535 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
536 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200537 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
538 if (bts->si_mode_static & (1 << i)) {
539 vty_out(vty, " system-information %s mode static%s",
540 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
541 vty_out(vty, " system-information %s static %s%s",
542 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100543 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200544 VTY_NEWLINE);
545 }
546 }
Harald Welte08011e22011-03-04 13:41:31 +0100547 switch (bts->type) {
548 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200549 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200550 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200551 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-03-12 13:57:05 +0100552 if (bts->ip_access.rsl_ip) {
553 struct in_addr ia;
554 ia.s_addr = htonl(bts->ip_access.rsl_ip);
555 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
556 VTY_NEWLINE);
557 }
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200558 vty_out(vty, " oml ip.access stream_id %u line %u%s",
559 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100560 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200561 case GSM_BTS_TYPE_NOKIA_SITE:
562 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
563 break;
Harald Welte08011e22011-03-04 13:41:31 +0100564 default:
Harald Welte62868882009-08-08 16:12:58 +0200565 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
566 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100567 break;
Harald Welte62868882009-08-08 16:12:58 +0200568 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800569
570 /* if we have a limit, write it */
571 if (bts->paging.free_chans_need >= 0)
572 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
573
Harald Welteca46eff2011-01-11 23:44:56 +0100574 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100575 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
576 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100577 for (i = 0; i < 1024; i++) {
578 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
579 vty_out(vty, " neighbor-list add arfcn %u%s",
580 i, VTY_NEWLINE);
581 }
582 }
Harald Weltef989b782011-02-15 11:43:27 +0100583 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
584 for (i = 0; i < 1024; i++) {
585 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
586 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
587 i, VTY_NEWLINE);
588 }
589 }
Harald Welteca46eff2011-01-11 23:44:56 +0100590
Harald Weltea9251762010-05-11 23:50:21 +0200591 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200592
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200593 if (bts->excl_from_rf_lock)
594 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
595
Harald Weltec02789e2011-02-14 16:15:21 +0100596 if (bts->model->config_write_bts)
597 bts->model->config_write_bts(vty, bts);
598
Harald Welte97ceef92009-08-06 19:06:46 +0200599 llist_for_each_entry(trx, &bts->trx_list, list)
600 config_write_trx_single(vty, trx);
601}
602
603static int config_write_bts(struct vty *v)
604{
Harald Welte40152872010-05-16 20:52:23 +0200605 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200606 struct gsm_bts *bts;
607
608 llist_for_each_entry(bts, &gsmnet->bts_list, list)
609 config_write_bts_single(v, bts);
610
611 return CMD_SUCCESS;
612}
613
Harald Weltee87eb462009-08-07 13:29:14 +0200614static int config_write_net(struct vty *vty)
615{
Harald Welte40152872010-05-16 20:52:23 +0200616 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
617
Harald Weltee87eb462009-08-07 13:29:14 +0200618 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200619 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200620 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200621 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
622 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200623 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100624 vty_out(vty, " location updating reject cause %u%s",
625 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900626 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100627 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800628 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100629 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
630 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100631 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100632 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100633 vty_out(vty, " handover window rxlev averaging %u%s",
634 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
635 vty_out(vty, " handover window rxqual averaging %u%s",
636 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
637 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
638 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
639 vty_out(vty, " handover power budget interval %u%s",
640 gsmnet->handover.pwr_interval, VTY_NEWLINE);
641 vty_out(vty, " handover power budget hysteresis %u%s",
642 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
643 vty_out(vty, " handover maximum distance %u%s",
644 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100645 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100646 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
647 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
648 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
649 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
650 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
651 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
652 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
653 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
654 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100655 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100656 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100657 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100658 vty_out(vty, " subscriber-keep-in-ram %d%s",
659 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200660
661 return CMD_SUCCESS;
662}
Harald Welte97ceef92009-08-06 19:06:46 +0200663
Harald Welte59b04682009-06-10 05:40:52 +0800664static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
665{
666 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
667 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200668 vty_out(vty, "Description: %s%s",
669 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200670 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200671 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200672 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200673 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800674 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200675 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800676 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200677 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200678 if (is_ipaccess_bts(trx->bts)) {
679 vty_out(vty, " ip.access stream ID: 0x%02x%s",
680 trx->rsl_tei, VTY_NEWLINE);
681 } else {
682 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
683 e1isl_dump_vty(vty, trx->rsl_link);
684 }
Harald Welte59b04682009-06-10 05:40:52 +0800685}
686
687DEFUN(show_trx,
688 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100689 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200690 SHOW_STR "Display information about a TRX\n"
691 "BTS Number\n"
692 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800693{
Harald Welte40152872010-05-16 20:52:23 +0200694 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800695 struct gsm_bts *bts = NULL;
696 struct gsm_bts_trx *trx;
697 int bts_nr, trx_nr;
698
699 if (argc >= 1) {
700 /* use the BTS number that the user has specified */
701 bts_nr = atoi(argv[0]);
702 if (bts_nr >= net->num_bts) {
703 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
704 VTY_NEWLINE);
705 return CMD_WARNING;
706 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200707 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800708 }
709 if (argc >= 2) {
710 trx_nr = atoi(argv[1]);
711 if (trx_nr >= bts->num_trx) {
712 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
713 VTY_NEWLINE);
714 return CMD_WARNING;
715 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200716 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800717 trx_dump_vty(vty, trx);
718 return CMD_SUCCESS;
719 }
720 if (bts) {
721 /* print all TRX in this BTS */
722 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200723 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800724 trx_dump_vty(vty, trx);
725 }
726 return CMD_SUCCESS;
727 }
728
729 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200730 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800731 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200732 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800733 trx_dump_vty(vty, trx);
734 }
735 }
736
737 return CMD_SUCCESS;
738}
739
Harald Welte97ceef92009-08-06 19:06:46 +0200740
Harald Welte59b04682009-06-10 05:40:52 +0800741static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
742{
Harald Welte85771a42011-05-30 12:09:13 +0200743 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100744 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welted1dcdb82013-03-08 07:44:45 +0000745 gsm_pchan_name(ts->pchan),
746 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100747 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100748 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100749 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
750 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800751 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200752 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530753 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800754 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
755 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
756 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800757}
758
759DEFUN(show_ts,
760 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100761 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200762 SHOW_STR "Display information about a TS\n"
763 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800764{
Harald Welte40152872010-05-16 20:52:23 +0200765 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100766 struct gsm_bts *bts = NULL;
767 struct gsm_bts_trx *trx = NULL;
768 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800769 int bts_nr, trx_nr, ts_nr;
770
771 if (argc >= 1) {
772 /* use the BTS number that the user has specified */
773 bts_nr = atoi(argv[0]);
774 if (bts_nr >= net->num_bts) {
775 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
776 VTY_NEWLINE);
777 return CMD_WARNING;
778 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200779 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800780 }
781 if (argc >= 2) {
782 trx_nr = atoi(argv[1]);
783 if (trx_nr >= bts->num_trx) {
784 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
785 VTY_NEWLINE);
786 return CMD_WARNING;
787 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200788 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800789 }
790 if (argc >= 3) {
791 ts_nr = atoi(argv[2]);
792 if (ts_nr >= TRX_NR_TS) {
793 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
794 VTY_NEWLINE);
795 return CMD_WARNING;
796 }
Harald Welte06868382010-12-24 12:05:03 +0100797 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800798 ts = &trx->ts[ts_nr];
799 ts_dump_vty(vty, ts);
800 return CMD_SUCCESS;
801 }
Harald Welte06868382010-12-24 12:05:03 +0100802
803 if (bts && trx) {
804 /* Iterate over all TS in this TRX */
805 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
806 ts = &trx->ts[ts_nr];
807 ts_dump_vty(vty, ts);
808 }
809 } else if (bts) {
810 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800811 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200812 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800813 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
814 ts = &trx->ts[ts_nr];
815 ts_dump_vty(vty, ts);
816 }
817 }
Harald Welte06868382010-12-24 12:05:03 +0100818 } else {
819 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
820 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
821 bts = gsm_bts_num(net, bts_nr);
822 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
823 trx = gsm_bts_trx_num(bts, trx_nr);
824 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
825 ts = &trx->ts[ts_nr];
826 ts_dump_vty(vty, ts);
827 }
828 }
829 }
Harald Welte59b04682009-06-10 05:40:52 +0800830 }
831
832 return CMD_SUCCESS;
833}
834
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100835static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800836{
Harald Welte91afe4c2009-06-20 18:15:19 +0200837 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800838 subscr->authorized, VTY_NEWLINE);
839 if (subscr->name)
840 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
841 if (subscr->extension)
842 vty_out(vty, " Extension: %s%s", subscr->extension,
843 VTY_NEWLINE);
Holger Hans Peter Freytherb0be39b2013-07-14 08:38:24 +0200844 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200845 if (subscr->tmsi != GSM_RESERVED_TMSI)
846 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200847 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100848
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200849 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800850}
851
Harald Welte44007742009-12-22 21:43:14 +0100852static void meas_rep_dump_uni_vty(struct vty *vty,
853 struct gsm_meas_rep_unidir *mru,
854 const char *prefix,
855 const char *dir)
856{
857 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
858 prefix, dir, rxlev2dbm(mru->full.rx_lev),
859 dir, rxlev2dbm(mru->sub.rx_lev));
860 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
861 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
862 VTY_NEWLINE);
863}
864
865static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
866 const char *prefix)
867{
868 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
869 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
870 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
871 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
872 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
873 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
874 VTY_NEWLINE);
875 if (mr->flags & MEAS_REP_F_MS_TO)
876 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
877 mr->ms_timing_offset, VTY_NEWLINE);
878 if (mr->flags & MEAS_REP_F_MS_L1)
879 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
880 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
881 if (mr->flags & MEAS_REP_F_DL_VALID)
882 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
883 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
884}
885
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800886static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800887{
Harald Welte44007742009-12-22 21:43:14 +0100888 int idx;
889
Harald Weltef62dad62010-12-24 12:22:34 +0100890 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
891 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
892 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800893 vty_out(vty, " Connection: %u, State: %s%s",
894 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100895 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100896 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
897 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
898 - lchan->bs_power*2,
899 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
900 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800901 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800902 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800903 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800904 } else
905 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530906 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
907 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200908 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530909 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
910 inet_ntoa(ia), lchan->abis_ip.bound_port,
911 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
912 VTY_NEWLINE);
913 }
Harald Welte44007742009-12-22 21:43:14 +0100914
915 /* we want to report the last measurement report */
916 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
917 lchan->meas_rep_idx, 1);
918 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800919}
920
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800921static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
922{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800923 struct gsm_meas_rep *mr;
924 int idx;
925
926 /* we want to report the last measurement report */
927 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
928 lchan->meas_rep_idx, 1);
929 mr = &lchan->meas_rep[idx];
930
Harald Weltef62dad62010-12-24 12:22:34 +0100931 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
932 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
933 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100934 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800935 rxlev2dbm(mr->dl.full.rx_lev),
936 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800937 VTY_NEWLINE);
938}
939
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100940
941static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
942 void (*dump_cb)(struct vty *, struct gsm_lchan *))
943{
944 int lchan_nr;
945 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
946 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
947 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
948 continue;
949 dump_cb(vty, lchan);
950 }
951
952 return CMD_SUCCESS;
953}
954
955static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
956 void (*dump_cb)(struct vty *, struct gsm_lchan *))
957{
958 int ts_nr;
959
960 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
961 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
962 dump_lchan_trx_ts(ts, vty, dump_cb);
963 }
964
965 return CMD_SUCCESS;
966}
967
968static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
969 void (*dump_cb)(struct vty *, struct gsm_lchan *))
970{
971 int trx_nr;
972
973 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
974 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
975 dump_lchan_trx(trx, vty, dump_cb);
976 }
977
978 return CMD_SUCCESS;
979}
980
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800981static int lchan_summary(struct vty *vty, int argc, const char **argv,
982 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800983{
Harald Welte40152872010-05-16 20:52:23 +0200984 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800985 struct gsm_bts *bts;
986 struct gsm_bts_trx *trx;
987 struct gsm_bts_trx_ts *ts;
988 struct gsm_lchan *lchan;
989 int bts_nr, trx_nr, ts_nr, lchan_nr;
990
991 if (argc >= 1) {
992 /* use the BTS number that the user has specified */
993 bts_nr = atoi(argv[0]);
994 if (bts_nr >= net->num_bts) {
995 vty_out(vty, "%% can't find BTS %s%s", argv[0],
996 VTY_NEWLINE);
997 return CMD_WARNING;
998 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200999 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001000
1001 if (argc == 1)
1002 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001003 }
1004 if (argc >= 2) {
1005 trx_nr = atoi(argv[1]);
1006 if (trx_nr >= bts->num_trx) {
1007 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1008 VTY_NEWLINE);
1009 return CMD_WARNING;
1010 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001011 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001012
1013 if (argc == 2)
1014 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001015 }
1016 if (argc >= 3) {
1017 ts_nr = atoi(argv[2]);
1018 if (ts_nr >= TRX_NR_TS) {
1019 vty_out(vty, "%% can't find TS %s%s", argv[2],
1020 VTY_NEWLINE);
1021 return CMD_WARNING;
1022 }
1023 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001024
1025 if (argc == 3)
1026 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001027 }
1028 if (argc >= 4) {
1029 lchan_nr = atoi(argv[3]);
1030 if (lchan_nr >= TS_MAX_LCHAN) {
1031 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1032 VTY_NEWLINE);
1033 return CMD_WARNING;
1034 }
1035 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001036 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001037 return CMD_SUCCESS;
1038 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001039
1040
Harald Welte59b04682009-06-10 05:40:52 +08001041 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001042 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001043 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001044 }
1045
1046 return CMD_SUCCESS;
1047}
1048
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001049
1050DEFUN(show_lchan,
1051 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001052 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001053 SHOW_STR "Display information about a logical channel\n"
1054 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001055 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001056
1057{
1058 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1059}
1060
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001061DEFUN(show_lchan_summary,
1062 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001063 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001064 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001065 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001066 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001067 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001068{
1069 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1070}
1071
Harald Welte59b04682009-06-10 05:40:52 +08001072static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1073{
1074 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1075 subscr_dump_vty(vty, pag->subscr);
1076}
1077
1078static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1079{
1080 struct gsm_paging_request *pag;
1081
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001082 if (!bts->paging.bts)
1083 return;
1084
Harald Welte59b04682009-06-10 05:40:52 +08001085 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1086 paging_dump_vty(vty, pag);
1087}
1088
1089DEFUN(show_paging,
1090 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001091 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001092 SHOW_STR "Display information about paging reuqests of a BTS\n"
1093 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001094{
Harald Welte40152872010-05-16 20:52:23 +02001095 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001096 struct gsm_bts *bts;
1097 int bts_nr;
1098
1099 if (argc >= 1) {
1100 /* use the BTS number that the user has specified */
1101 bts_nr = atoi(argv[0]);
1102 if (bts_nr >= net->num_bts) {
1103 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1104 VTY_NEWLINE);
1105 return CMD_WARNING;
1106 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001107 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001108 bts_paging_dump_vty(vty, bts);
1109
1110 return CMD_SUCCESS;
1111 }
1112 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001113 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001114 bts_paging_dump_vty(vty, bts);
1115 }
1116
1117 return CMD_SUCCESS;
1118}
1119
Harald Weltee87eb462009-08-07 13:29:14 +02001120DEFUN(cfg_net,
1121 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001122 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001123{
Harald Welte40152872010-05-16 20:52:23 +02001124 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001125 vty->node = GSMNET_NODE;
1126
1127 return CMD_SUCCESS;
1128}
1129
Harald Weltee87eb462009-08-07 13:29:14 +02001130DEFUN(cfg_net_ncc,
1131 cfg_net_ncc_cmd,
1132 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001133 "Set the GSM network country code\n"
1134 "Country commands\n"
1135 CODE_CMD_STR
1136 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001137{
Harald Welte40152872010-05-16 20:52:23 +02001138 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1139
Harald Weltee87eb462009-08-07 13:29:14 +02001140 gsmnet->country_code = atoi(argv[0]);
1141
1142 return CMD_SUCCESS;
1143}
1144
1145DEFUN(cfg_net_mnc,
1146 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001147 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001148 "Set the GSM mobile network code\n"
1149 "Network Commands\n"
1150 CODE_CMD_STR
1151 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001152{
Harald Welte40152872010-05-16 20:52:23 +02001153 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1154
Harald Weltee87eb462009-08-07 13:29:14 +02001155 gsmnet->network_code = atoi(argv[0]);
1156
1157 return CMD_SUCCESS;
1158}
1159
1160DEFUN(cfg_net_name_short,
1161 cfg_net_name_short_cmd,
1162 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001163 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001164{
Harald Welte40152872010-05-16 20:52:23 +02001165 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1166
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001167 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001168 return CMD_SUCCESS;
1169}
1170
1171DEFUN(cfg_net_name_long,
1172 cfg_net_name_long_cmd,
1173 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001174 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001175{
Harald Welte40152872010-05-16 20:52:23 +02001176 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1177
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001178 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001179 return CMD_SUCCESS;
1180}
Harald Welte59b04682009-06-10 05:40:52 +08001181
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001182DEFUN(cfg_net_auth_policy,
1183 cfg_net_auth_policy_cmd,
1184 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001185 "Authentication (not cryptographic)\n"
1186 "Set the GSM network authentication policy\n"
1187 "Require the MS to be activated in HLR\n"
1188 "Accept all MS, whether in HLR or not\n"
1189 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001190{
1191 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001192 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001193
1194 gsmnet->auth_policy = policy;
1195
1196 return CMD_SUCCESS;
1197}
1198
Harald Welte59936d72009-11-18 20:33:19 +01001199DEFUN(cfg_net_reject_cause,
1200 cfg_net_reject_cause_cmd,
1201 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001202 "Set the reject cause of location updating reject\n"
1203 "Set the reject cause of location updating reject\n"
1204 "Set the reject cause of location updating reject\n"
1205 "Set the reject cause of location updating reject\n"
1206 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001207{
Harald Welte40152872010-05-16 20:52:23 +02001208 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1209
Harald Welte59936d72009-11-18 20:33:19 +01001210 gsmnet->reject_cause = atoi(argv[0]);
1211
1212 return CMD_SUCCESS;
1213}
1214
Harald Weltecca253a2009-08-30 15:47:06 +09001215DEFUN(cfg_net_encryption,
1216 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001217 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001218 "Encryption options\n"
1219 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001220 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1221 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001222{
Harald Welte40152872010-05-16 20:52:23 +02001223 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1224
Andreas.Eversberg53293292009-11-17 09:55:26 +01001225 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001226
1227 return CMD_SUCCESS;
1228}
1229
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001230DEFUN(cfg_net_neci,
1231 cfg_net_neci_cmd,
1232 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001233 "New Establish Cause Indication\n"
1234 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001235{
Harald Welte40152872010-05-16 20:52:23 +02001236 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1237
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001238 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001239 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001240 return CMD_SUCCESS;
1241}
1242
Harald Welte52af1952009-12-13 10:53:12 +01001243DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1244 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001245 "Radio Resource Location Protocol\n"
1246 "Set the Radio Resource Location Protocol Mode\n"
1247 "Don't send RRLP request\n"
1248 "Request MS-based location\n"
1249 "Request any location, prefer MS-based\n"
1250 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001251{
Harald Welte40152872010-05-16 20:52:23 +02001252 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1253
Harald Welte52af1952009-12-13 10:53:12 +01001254 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1255
1256 return CMD_SUCCESS;
1257}
1258
Harald Weltea310f3e2009-12-14 09:00:24 +01001259DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1260 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001261 "Mobility Management\n"
1262 "Send MM INFO after LOC UPD ACCEPT\n"
1263 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001264{
Harald Welte40152872010-05-16 20:52:23 +02001265 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1266
Harald Weltea310f3e2009-12-14 09:00:24 +01001267 gsmnet->send_mm_info = atoi(argv[0]);
1268
1269 return CMD_SUCCESS;
1270}
1271
Harald Welte9e002452010-05-11 21:53:49 +02001272#define HANDOVER_STR "Handover Options\n"
1273
Harald Welte0af9c9f2009-12-19 21:41:52 +01001274DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1275 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001276 HANDOVER_STR
1277 "Don't perform in-call handover\n"
1278 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001279{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001280 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001281 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001282
1283 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001284 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1285 "is enabled by using the -P command line option%s",
1286 VTY_NEWLINE);
1287 return CMD_WARNING;
1288 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001289 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001290
1291 return CMD_SUCCESS;
1292}
1293
Harald Welte9e002452010-05-11 21:53:49 +02001294#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1295#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1296#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1297#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001298#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001299
Harald Weltea8062f12009-12-21 16:51:50 +01001300DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1301 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001302 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001303 "How many RxLev measurements are used for averaging\n"
1304 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001305{
Harald Welte40152872010-05-16 20:52:23 +02001306 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001307 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1308 return CMD_SUCCESS;
1309}
1310
1311DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1312 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001313 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001314 "How many RxQual measurements are used for averaging\n"
1315 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001316{
Harald Welte40152872010-05-16 20:52:23 +02001317 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001318 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1319 return CMD_SUCCESS;
1320}
1321
1322DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1323 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001324 HO_WIN_RXLEV_STR "Neighbor\n"
1325 "How many RxQual measurements are used for averaging\n"
1326 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001327{
Harald Welte40152872010-05-16 20:52:23 +02001328 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001329 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1330 return CMD_SUCCESS;
1331}
1332
1333DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1334 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001335 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001336 "How often to check if we have a better cell (SACCH frames)\n"
1337 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001338{
Harald Welte40152872010-05-16 20:52:23 +02001339 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001340 gsmnet->handover.pwr_interval = atoi(argv[0]);
1341 return CMD_SUCCESS;
1342}
1343
1344DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1345 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001346 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001347 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1348 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001349{
Harald Welte40152872010-05-16 20:52:23 +02001350 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001351 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1352 return CMD_SUCCESS;
1353}
1354
1355DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1356 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001357 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001358 "How big is the maximum timing advance before HO is forced\n"
1359 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001360{
Harald Welte40152872010-05-16 20:52:23 +02001361 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001362 gsmnet->handover.max_distance = atoi(argv[0]);
1363 return CMD_SUCCESS;
1364}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001365
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001366DEFUN(cfg_net_pag_any_tch,
1367 cfg_net_pag_any_tch_cmd,
1368 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001369 "Assign a TCH when receiving a Paging Any request\n"
1370 "Any Channel\n" "Use\n" "TCH\n"
1371 "Do not use TCH for Paging Request Any\n"
1372 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001373{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001374 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001375 gsmnet->pag_any_tch = atoi(argv[0]);
1376 gsm_net_update_ctype(gsmnet);
1377 return CMD_SUCCESS;
1378}
1379
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001380#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001381 DEFUN(cfg_net_T##number, \
1382 cfg_net_T##number##_cmd, \
1383 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001384 "Configure GSM Timers\n" \
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001385 doc "Timer Value\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001386{ \
Harald Welte40152872010-05-16 20:52:23 +02001387 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001388 int value = atoi(argv[0]); \
1389 \
1390 if (value < 0 || value > 65535) { \
1391 vty_out(vty, "Timer value %s out of range.%s", \
1392 argv[0], VTY_NEWLINE); \
1393 return CMD_WARNING; \
1394 } \
1395 \
1396 gsmnet->T##number = value; \
1397 return CMD_SUCCESS; \
1398}
1399
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001400DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1401DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001402DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001403DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001404DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001405DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1406DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1407DECLARE_TIMER(3115, "Currently not used.\n")
1408DECLARE_TIMER(3117, "Currently not used.\n")
1409DECLARE_TIMER(3119, "Currently not used.\n")
1410DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1411DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001412
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001413DEFUN(cfg_net_dtx,
1414 cfg_net_dtx_cmd,
1415 "dtx-used (0|1)",
1416 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001417 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001418{
1419 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1420 gsmnet->dtx_enabled = atoi(argv[0]);
1421 return CMD_SUCCESS;
1422}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001423
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001424DEFUN(cfg_net_subscr_keep,
1425 cfg_net_subscr_keep_cmd,
1426 "subscriber-keep-in-ram (0|1)",
1427 "Keep unused subscribers in RAM.\n"
1428 "Delete unused subscribers\n" "Keep unused subscribers\n")
1429{
1430 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1431 gsmnet->keep_subscr = atoi(argv[0]);
1432 return CMD_SUCCESS;
1433}
1434
Harald Welte59b04682009-06-10 05:40:52 +08001435/* per-BTS configuration */
1436DEFUN(cfg_bts,
1437 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001438 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001439 "Select a BTS to configure\n"
1440 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001441{
Harald Welte40152872010-05-16 20:52:23 +02001442 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001443 int bts_nr = atoi(argv[0]);
1444 struct gsm_bts *bts;
1445
Harald Weltee712a5f2009-06-21 16:17:15 +02001446 if (bts_nr > gsmnet->num_bts) {
1447 vty_out(vty, "%% The next unused BTS number is %u%s",
1448 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001449 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001450 } else if (bts_nr == gsmnet->num_bts) {
1451 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001452 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1453 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001454 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001455 bts = gsm_bts_num(gsmnet, bts_nr);
1456
Daniel Willmann580085f2010-01-11 13:43:07 +01001457 if (!bts) {
1458 vty_out(vty, "%% Unable to allocate BTS %u%s",
1459 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001460 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001461 }
Harald Welte59b04682009-06-10 05:40:52 +08001462
1463 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001464 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001465 vty->node = BTS_NODE;
1466
1467 return CMD_SUCCESS;
1468}
1469
1470DEFUN(cfg_bts_type,
1471 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001472 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001473 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001474{
1475 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001476 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001477
Harald Welte59698fb2010-01-10 18:01:52 +01001478 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1479 if (rc < 0)
1480 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001481
Harald Welte59b04682009-06-10 05:40:52 +08001482 return CMD_SUCCESS;
1483}
1484
Harald Welte91afe4c2009-06-20 18:15:19 +02001485DEFUN(cfg_bts_band,
1486 cfg_bts_band_cmd,
1487 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001488 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001489{
1490 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001491 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001492
1493 if (band < 0) {
1494 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1495 band, VTY_NEWLINE);
1496 return CMD_WARNING;
1497 }
1498
1499 bts->band = band;
1500
1501 return CMD_SUCCESS;
1502}
1503
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001504DEFUN(cfg_bts_ci,
1505 cfg_bts_ci_cmd,
1506 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001507 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001508{
1509 struct gsm_bts *bts = vty->index;
1510 int ci = atoi(argv[0]);
1511
1512 if (ci < 0 || ci > 0xffff) {
1513 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1514 ci, VTY_NEWLINE);
1515 return CMD_WARNING;
1516 }
1517 bts->cell_identity = ci;
1518
1519 return CMD_SUCCESS;
1520}
1521
Harald Welte59b04682009-06-10 05:40:52 +08001522DEFUN(cfg_bts_lac,
1523 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001524 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001525 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001526{
1527 struct gsm_bts *bts = vty->index;
1528 int lac = atoi(argv[0]);
1529
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001530 if (lac < 0 || lac > 0xffff) {
1531 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001532 lac, VTY_NEWLINE);
1533 return CMD_WARNING;
1534 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001535
1536 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1537 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1538 lac, VTY_NEWLINE);
1539 return CMD_WARNING;
1540 }
1541
Harald Welte59b04682009-06-10 05:40:52 +08001542 bts->location_area_code = lac;
1543
1544 return CMD_SUCCESS;
1545}
1546
Harald Weltea54a2bb2009-12-01 18:04:30 +05301547
Harald Welte59b04682009-06-10 05:40:52 +08001548DEFUN(cfg_bts_tsc,
1549 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001550 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001551 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001552{
1553 struct gsm_bts *bts = vty->index;
1554 int tsc = atoi(argv[0]);
1555
Harald Welte59b04682009-06-10 05:40:52 +08001556 bts->tsc = tsc;
1557
1558 return CMD_SUCCESS;
1559}
1560
1561DEFUN(cfg_bts_bsic,
1562 cfg_bts_bsic_cmd,
1563 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001564 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1565 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001566{
1567 struct gsm_bts *bts = vty->index;
1568 int bsic = atoi(argv[0]);
1569
1570 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001571 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001572 bsic, VTY_NEWLINE);
1573 return CMD_WARNING;
1574 }
1575 bts->bsic = bsic;
1576
1577 return CMD_SUCCESS;
1578}
1579
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001580DEFUN(cfg_bts_timezone,
1581 cfg_bts_timezone_cmd,
1582 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001583 "Set the Timezone Offset of this BTS\n"
1584 "Timezone offset (hours)\n"
1585 "Timezone offset (00 minutes)\n"
1586 "Timezone offset (15 minutes)\n"
1587 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001588 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001589 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001590{
1591 struct gsm_bts *bts = vty->index;
1592 int tzhr = atoi(argv[0]);
1593 int tzmn = atoi(argv[1]);
1594
Harald Welte5c3abf92012-07-08 16:48:11 +02001595 bts->tz.hr = tzhr;
1596 bts->tz.mn = tzmn;
1597 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001598
1599 return CMD_SUCCESS;
1600}
1601
1602DEFUN(cfg_bts_no_timezone,
1603 cfg_bts_no_timezone_cmd,
1604 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001605 NO_STR
1606 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001607{
1608 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001609
1610 bts->tz.override = 0;
1611
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001612 return CMD_SUCCESS;
1613}
Harald Welte59b04682009-06-10 05:40:52 +08001614
1615DEFUN(cfg_bts_unit_id,
1616 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001617 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001618 "Abis/IP specific options\n"
1619 "Set the IPA BTS Unit ID\n"
1620 "Unit ID (Site)\n"
1621 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001622{
1623 struct gsm_bts *bts = vty->index;
1624 int site_id = atoi(argv[0]);
1625 int bts_id = atoi(argv[1]);
1626
Harald Weltef515aa02009-08-07 13:27:09 +02001627 if (!is_ipaccess_bts(bts)) {
1628 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1629 return CMD_WARNING;
1630 }
1631
Harald Welte59b04682009-06-10 05:40:52 +08001632 bts->ip_access.site_id = site_id;
1633 bts->ip_access.bts_id = bts_id;
1634
1635 return CMD_SUCCESS;
1636}
1637
Harald Welte8b3c5952013-03-12 13:57:05 +01001638DEFUN(cfg_bts_rsl_ip,
1639 cfg_bts_rsl_ip_cmd,
1640 "ip.access rsl-ip A.B.C.D",
1641 "Abis/IP specific options\n"
1642 "Set the IPA RSL IP Address of the BSC\n"
1643 "Destination IP address for RSL connection\n")
1644{
1645 struct gsm_bts *bts = vty->index;
1646 struct in_addr ia;
1647
1648 if (!is_ipaccess_bts(bts)) {
1649 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1650 return CMD_WARNING;
1651 }
1652
1653 inet_aton(argv[0], &ia);
1654 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1655
1656 return CMD_SUCCESS;
1657}
1658
1659
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001660DEFUN(cfg_bts_nokia_site_skip_reset,
1661 cfg_bts_nokia_site_skip_reset_cmd,
1662 "nokia_site skip-reset (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001663 "Nokia *Site related commands\n"
1664 "Skip the reset step during bootstrap process of this BTS\n"
1665 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001666{
1667 struct gsm_bts *bts = vty->index;
1668
1669 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1670 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1671 return CMD_WARNING;
1672 }
1673
1674 bts->nokia.skip_reset = atoi(argv[0]);
1675
1676 return CMD_SUCCESS;
1677}
1678
Harald Welte9e002452010-05-11 21:53:49 +02001679#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001680#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001681
Harald Welte25572872009-10-20 00:22:00 +02001682DEFUN(cfg_bts_stream_id,
1683 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001684 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001685 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001686 "Set the ip.access Stream ID of the OML link of this BTS\n"
1687 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001688{
1689 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001690 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001691
1692 if (!is_ipaccess_bts(bts)) {
1693 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1694 return CMD_WARNING;
1695 }
1696
1697 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001698 /* This is used by e1inp_bind_ops callback for each BTS model. */
1699 bts->oml_e1_link.e1_nr = linenr;
1700
1701 return CMD_SUCCESS;
1702}
1703
Harald Weltefa2015f2012-08-17 09:52:03 +02001704#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001705
Harald Welte62868882009-08-08 16:12:58 +02001706DEFUN(cfg_bts_oml_e1,
1707 cfg_bts_oml_e1_cmd,
1708 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001709 OML_E1_STR
1710 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001711 "E1/T1 line number to be used for OML\n"
1712 "E1/T1 timeslot to be used for OML\n"
1713 "E1/T1 timeslot to be used for OML\n"
1714 "E1/T1 sub-slot to be used for OML\n"
1715 "Use E1/T1 sub-slot 0\n"
1716 "Use E1/T1 sub-slot 1\n"
1717 "Use E1/T1 sub-slot 2\n"
1718 "Use E1/T1 sub-slot 3\n"
1719 "Use full E1 slot 3\n"
1720 )
Harald Welte62868882009-08-08 16:12:58 +02001721{
1722 struct gsm_bts *bts = vty->index;
1723
1724 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1725
1726 return CMD_SUCCESS;
1727}
1728
1729
1730DEFUN(cfg_bts_oml_e1_tei,
1731 cfg_bts_oml_e1_tei_cmd,
1732 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001733 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001734 "Set the TEI to be used for OML\n"
1735 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001736{
1737 struct gsm_bts *bts = vty->index;
1738
1739 bts->oml_tei = atoi(argv[0]);
1740
1741 return CMD_SUCCESS;
1742}
1743
Harald Welte3e774612009-08-10 13:48:16 +02001744DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1745 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001746 "Channnel Allocator\n" "Channel Allocator\n"
1747 "Allocate Timeslots and Transceivers in ascending order\n"
1748 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001749{
1750 struct gsm_bts *bts = vty->index;
1751
1752 if (!strcmp(argv[0], "ascending"))
1753 bts->chan_alloc_reverse = 0;
1754 else
1755 bts->chan_alloc_reverse = 1;
1756
1757 return CMD_SUCCESS;
1758}
1759
Harald Welte9e002452010-05-11 21:53:49 +02001760#define RACH_STR "Random Access Control Channel\n"
1761
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001762DEFUN(cfg_bts_rach_tx_integer,
1763 cfg_bts_rach_tx_integer_cmd,
1764 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001765 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001766 "Set the raw tx integer value in RACH Control parameters IE\n"
1767 "Set the raw tx integer value in RACH Control parameters IE\n"
1768 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001769{
1770 struct gsm_bts *bts = vty->index;
1771 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1772 return CMD_SUCCESS;
1773}
1774
1775DEFUN(cfg_bts_rach_max_trans,
1776 cfg_bts_rach_max_trans_cmd,
1777 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001778 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001779 "Set the maximum number of RACH burst transmissions\n"
1780 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001781 "Maximum number of 1 RACH burst transmissions\n"
1782 "Maximum number of 2 RACH burst transmissions\n"
1783 "Maximum number of 4 RACH burst transmissions\n"
1784 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001785{
1786 struct gsm_bts *bts = vty->index;
1787 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1788 return CMD_SUCCESS;
1789}
1790
Andreas Eversberg14e12f22012-10-13 07:27:47 +02001791#define CD_STR "Channel Description\n"
1792
1793DEFUN(cfg_bts_chan_desc_att,
1794 cfg_bts_chan_desc_att_cmd,
1795 "channel-descrption attach (0|1)",
1796 CD_STR
1797 "Set if attachment is required\n"
1798 "Attachment is NOT required\n"
1799 "Attachment is required (standard)\n")
1800{
1801 struct gsm_bts *bts = vty->index;
1802 bts->si_common.chan_desc.att = atoi(argv[0]);
1803 return CMD_SUCCESS;
1804}
1805
1806DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1807 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1808 "channel-descrption bs-pa-mfrms <2-9>",
1809 CD_STR
1810 "Set number of multiframe periods for paging groups\n"
1811 "Number of multiframe periods for paging groups\n")
1812{
1813 struct gsm_bts *bts = vty->index;
1814 int bs_pa_mfrms = atoi(argv[0]);
1815
1816 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1817 return CMD_SUCCESS;
1818}
1819
1820DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1821 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1822 "channel-descrption bs-ag-blks-res <0-7>",
1823 CD_STR
1824 "Set number of blocks reserved for access grant\n"
1825 "Number of blocks reserved for access grant\n")
1826{
1827 struct gsm_bts *bts = vty->index;
1828 int bs_ag_blks_res = atoi(argv[0]);
1829
1830 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1831 return CMD_SUCCESS;
1832}
1833
Harald Welte9e002452010-05-11 21:53:49 +02001834#define NM_STR "Network Management\n"
1835
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001836DEFUN(cfg_bts_rach_nm_b_thresh,
1837 cfg_bts_rach_nm_b_thresh_cmd,
1838 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001839 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001840 "Set the NM Busy Threshold\n"
1841 "Set the NM Busy Threshold\n"
1842 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001843{
1844 struct gsm_bts *bts = vty->index;
1845 bts->rach_b_thresh = atoi(argv[0]);
1846 return CMD_SUCCESS;
1847}
1848
1849DEFUN(cfg_bts_rach_nm_ldavg,
1850 cfg_bts_rach_nm_ldavg_cmd,
1851 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001852 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001853 "Set the NM Loadaverage Slots value\n"
1854 "Set the NM Loadaverage Slots value\n"
1855 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001856{
1857 struct gsm_bts *bts = vty->index;
1858 bts->rach_ldavg_slots = atoi(argv[0]);
1859 return CMD_SUCCESS;
1860}
1861
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001862DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1863 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001864 "Should this cell be barred from access?\n"
1865 "Should this cell be barred from access?\n"
1866 "Cell should NOT be barred\n"
1867 "Cell should be barred\n")
1868
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001869{
1870 struct gsm_bts *bts = vty->index;
1871
Harald Welte8c973ba2009-12-21 23:08:18 +01001872 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001873
1874 return CMD_SUCCESS;
1875}
1876
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001877DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1878 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001879 RACH_STR
1880 "Should this cell allow emergency calls?\n"
1881 "Should this cell allow emergency calls?\n"
1882 "Should this cell allow emergency calls?\n"
1883 "Do NOT allow emergency calls\n"
1884 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001885{
1886 struct gsm_bts *bts = vty->index;
1887
1888 if (atoi(argv[0]) == 0)
1889 bts->si_common.rach_control.t2 |= 0x4;
1890 else
1891 bts->si_common.rach_control.t2 &= ~0x4;
1892
1893 return CMD_SUCCESS;
1894}
1895
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001896DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1897 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02001898 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001899 "Maximum transmit power of the MS\n"
1900 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02001901 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001902{
1903 struct gsm_bts *bts = vty->index;
1904
1905 bts->ms_max_power = atoi(argv[0]);
1906
1907 return CMD_SUCCESS;
1908}
1909
Harald Welte557f3992012-08-16 23:23:50 +02001910#define CELL_STR "Cell Parameters\n"
1911
Harald Welteb761bf82009-12-12 18:17:25 +01001912DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1913 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02001914 CELL_STR "Cell re-selection parameters\n"
1915 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001916 "Cell Re-Selection Hysteresis in dB")
1917{
1918 struct gsm_bts *bts = vty->index;
1919
1920 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1921
1922 return CMD_SUCCESS;
1923}
1924
1925DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1926 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001927 "Minimum RxLev needed for cell access\n"
1928 "Minimum RxLev needed for cell access\n"
1929 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001930 "Minimum RxLev needed for cell access (better than -110dBm)")
1931{
1932 struct gsm_bts *bts = vty->index;
1933
1934 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1935
1936 return CMD_SUCCESS;
1937}
1938
Sylvain Munaut00d71462010-11-28 18:17:28 +01001939DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1940 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001941 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1942 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01001943{
1944 struct gsm_bts *bts = vty->index;
1945
1946 bts->si_common.cell_ro_sel_par.present = 1;
1947 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1948
1949 return CMD_SUCCESS;
1950}
1951
1952DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1953 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02001954 CELL_STR "Cell Re-Selection Parameters\n"
1955 "Cell Re-Selection Offset (CRO) in dB\n"
1956 "Cell Re-Selection Offset (CRO) in dB\n"
1957 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01001958{
1959 struct gsm_bts *bts = vty->index;
1960
1961 bts->si_common.cell_ro_sel_par.present = 1;
1962 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1963
1964 return CMD_SUCCESS;
1965}
1966
1967DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1968 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02001969 "Cell selection temporary negative offset\n"
1970 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01001971 "Cell selection temporary negative offset in dB")
1972{
1973 struct gsm_bts *bts = vty->index;
1974
1975 bts->si_common.cell_ro_sel_par.present = 1;
1976 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1977
1978 return CMD_SUCCESS;
1979}
1980
1981DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1982 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02001983 "Cell selection temporary negative offset\n"
1984 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01001985 "Sets cell selection temporary negative offset to infinity")
1986{
1987 struct gsm_bts *bts = vty->index;
1988
1989 bts->si_common.cell_ro_sel_par.present = 1;
1990 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1991
1992 return CMD_SUCCESS;
1993}
1994
1995DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
1996 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02001997 "Cell selection penalty time\n"
1998 "Cell selection penalty time\n"
1999 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002000{
2001 struct gsm_bts *bts = vty->index;
2002
2003 bts->si_common.cell_ro_sel_par.present = 1;
2004 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2005
2006 return CMD_SUCCESS;
2007}
2008
2009DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2010 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002011 "Cell selection penalty time\n"
2012 "Cell selection penalty time\n"
2013 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002014 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2015 "and TEMPORARY_OFFSET is ignored)")
2016{
2017 struct gsm_bts *bts = vty->index;
2018
2019 bts->si_common.cell_ro_sel_par.present = 1;
2020 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2021
2022 return CMD_SUCCESS;
2023}
2024
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002025DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002026 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002027 "Periodic Location Updating Interval\n"
2028 "Periodic Location Updating Interval\n"
2029 "Periodic Location Updating Interval\n"
2030 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002031{
2032 struct gsm_bts *bts = vty->index;
2033
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002034 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002035
2036 return CMD_SUCCESS;
2037}
2038
Harald Welte9e002452010-05-11 21:53:49 +02002039#define GPRS_TEXT "GPRS Packet Network\n"
2040
Harald Welte410575a2010-03-14 23:30:30 +08002041DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002042 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002043 GPRS_TEXT
2044 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002045 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002046 "GPRS BSSGP VC Identifier")
2047{
2048 struct gsm_bts *bts = vty->index;
2049
Harald Weltecb20b7a2010-04-18 15:51:20 +02002050 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002051 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2052 return CMD_WARNING;
2053 }
2054
Harald Welte3055e332010-03-14 15:37:43 +08002055 bts->gprs.cell.bvci = atoi(argv[0]);
2056
2057 return CMD_SUCCESS;
2058}
2059
Harald Welte4a048c52010-03-22 11:48:36 +08002060DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2061 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002062 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002063 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002064 "GPRS NS Entity Identifier")
2065{
2066 struct gsm_bts *bts = vty->index;
2067
Harald Weltecb20b7a2010-04-18 15:51:20 +02002068 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002069 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2070 return CMD_WARNING;
2071 }
2072
2073 bts->gprs.nse.nsei = atoi(argv[0]);
2074
2075 return CMD_SUCCESS;
2076}
2077
Harald Welte9e002452010-05-11 21:53:49 +02002078#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2079 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002080
Harald Welte3055e332010-03-14 15:37:43 +08002081DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2082 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002083 GPRS_TEXT NSVC_TEXT
2084 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002085 "GPRS NS VC Identifier")
2086{
2087 struct gsm_bts *bts = vty->index;
2088 int idx = atoi(argv[0]);
2089
Harald Weltecb20b7a2010-04-18 15:51:20 +02002090 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002091 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2092 return CMD_WARNING;
2093 }
2094
Harald Welte3055e332010-03-14 15:37:43 +08002095 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2096
2097 return CMD_SUCCESS;
2098}
2099
Harald Welte410575a2010-03-14 23:30:30 +08002100DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2101 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002102 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002103 "GPRS NS Local UDP Port\n"
2104 "GPRS NS Local UDP Port\n"
2105 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002106 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002107{
2108 struct gsm_bts *bts = vty->index;
2109 int idx = atoi(argv[0]);
2110
Harald Weltecb20b7a2010-04-18 15:51:20 +02002111 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002112 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2113 return CMD_WARNING;
2114 }
2115
Harald Welte410575a2010-03-14 23:30:30 +08002116 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2117
2118 return CMD_SUCCESS;
2119}
2120
2121DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2122 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002123 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002124 "GPRS NS Remote UDP Port\n"
2125 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002126 "GPRS NS Remote UDP Port\n"
2127 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002128{
2129 struct gsm_bts *bts = vty->index;
2130 int idx = atoi(argv[0]);
2131
Harald Weltecb20b7a2010-04-18 15:51:20 +02002132 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002133 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2134 return CMD_WARNING;
2135 }
2136
Harald Welte410575a2010-03-14 23:30:30 +08002137 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2138
2139 return CMD_SUCCESS;
2140}
2141
2142DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2143 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002144 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002145 "GPRS NS Remote IP Address\n"
2146 "GPRS NS Remote IP Address\n"
2147 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002148{
2149 struct gsm_bts *bts = vty->index;
2150 int idx = atoi(argv[0]);
2151 struct in_addr ia;
2152
Harald Weltecb20b7a2010-04-18 15:51:20 +02002153 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002154 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2155 return CMD_WARNING;
2156 }
2157
Harald Welte410575a2010-03-14 23:30:30 +08002158 inet_aton(argv[1], &ia);
2159 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2160
2161 return CMD_SUCCESS;
2162}
2163
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002164DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002165 "paging free <-1-1024>",
2166 "Paging options\n"
2167 "Only page when having a certain amount of free slots\n"
2168 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002169{
2170 struct gsm_bts *bts = vty->index;
2171
2172 bts->paging.free_chans_need = atoi(argv[0]);
2173 return CMD_SUCCESS;
2174}
2175
Harald Weltea9251762010-05-11 23:50:21 +02002176DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2177 "gprs ns timer " NS_TIMERS " <0-255>",
2178 GPRS_TEXT "Network Service\n"
2179 "Network Service Timer\n"
2180 NS_TIMERS_HELP "Timer Value\n")
2181{
2182 struct gsm_bts *bts = vty->index;
2183 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2184 int val = atoi(argv[1]);
2185
2186 if (bts->gprs.mode == BTS_GPRS_NONE) {
2187 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2188 return CMD_WARNING;
2189 }
2190
2191 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2192 return CMD_WARNING;
2193
2194 bts->gprs.nse.timer[idx] = val;
2195
2196 return CMD_SUCCESS;
2197}
2198
2199#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 +02002200#define BSSGP_TIMERS_HELP \
2201 "Tbvc-block timeout\n" \
2202 "Tbvc-block retries\n" \
2203 "Tbvc-unblock retries\n" \
2204 "Tbvcc-reset timeout\n" \
2205 "Tbvc-reset retries\n" \
2206 "Tbvc-suspend timeout\n" \
2207 "Tbvc-suspend retries\n" \
2208 "Tbvc-resume timeout\n" \
2209 "Tbvc-resume retries\n" \
2210 "Tbvc-capa-update timeout\n" \
2211 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002212
2213DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2214 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2215 GPRS_TEXT "Cell / BSSGP\n"
2216 "Cell/BSSGP Timer\n"
2217 BSSGP_TIMERS_HELP "Timer Value\n")
2218{
2219 struct gsm_bts *bts = vty->index;
2220 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2221 int val = atoi(argv[1]);
2222
2223 if (bts->gprs.mode == BTS_GPRS_NONE) {
2224 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2225 return CMD_WARNING;
2226 }
2227
2228 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2229 return CMD_WARNING;
2230
2231 bts->gprs.cell.timer[idx] = val;
2232
2233 return CMD_SUCCESS;
2234}
2235
Harald Welte3055e332010-03-14 15:37:43 +08002236DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2237 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002238 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002239 "GPRS Routing Area Code\n"
2240 "GPRS Routing Area Code\n"
2241 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002242{
2243 struct gsm_bts *bts = vty->index;
2244
Harald Weltecb20b7a2010-04-18 15:51:20 +02002245 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002246 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2247 return CMD_WARNING;
2248 }
2249
Harald Welte3055e332010-03-14 15:37:43 +08002250 bts->gprs.rac = atoi(argv[0]);
2251
2252 return CMD_SUCCESS;
2253}
2254
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002255DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2256 "gprs network-control-order (nc0|nc1|nc2)",
2257 GPRS_TEXT
2258 "GPRS Network Control Order\n"
2259 "MS controlled cell re-selection, no measurement reporting\n"
2260 "MS controlled cell re-selection, MS sends measurement reports\n"
2261 "Network controlled cell re-selection, MS sends measurement reports\n")
2262{
2263 struct gsm_bts *bts = vty->index;
2264
2265 if (bts->gprs.mode == BTS_GPRS_NONE) {
2266 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2267 return CMD_WARNING;
2268 }
2269
2270 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2271
2272 return CMD_SUCCESS;
2273}
2274
Harald Weltecb20b7a2010-04-18 15:51:20 +02002275DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2276 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002277 GPRS_TEXT
2278 "GPRS Mode for this BTS\n"
2279 "GPRS Disabled on this BTS\n"
2280 "GPRS Enabled on this BTS\n"
2281 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002282{
2283 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002284 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002285
Harald Welte20e275a2010-06-14 22:44:42 +02002286 if (mode != BTS_GPRS_NONE &&
2287 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2288 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2289 VTY_NEWLINE);
2290 return CMD_WARNING;
2291 }
2292 if (mode == BTS_GPRS_EGPRS &&
2293 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2294 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2295 VTY_NEWLINE);
2296 return CMD_WARNING;
2297 }
2298
2299 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002300
2301 return CMD_SUCCESS;
2302}
2303
Harald Welted8acf142010-07-30 11:50:09 +02002304#define SI_TEXT "System Information Messages\n"
2305#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)"
2306#define SI_TYPE_HELP "System Information Type 1\n" \
2307 "System Information Type 2\n" \
2308 "System Information Type 3\n" \
2309 "System Information Type 4\n" \
2310 "System Information Type 5\n" \
2311 "System Information Type 6\n" \
2312 "System Information Type 7\n" \
2313 "System Information Type 8\n" \
2314 "System Information Type 9\n" \
2315 "System Information Type 10\n" \
2316 "System Information Type 13\n" \
2317 "System Information Type 16\n" \
2318 "System Information Type 17\n" \
2319 "System Information Type 18\n" \
2320 "System Information Type 19\n" \
2321 "System Information Type 20\n" \
2322 "System Information Type 2bis\n" \
2323 "System Information Type 2ter\n" \
2324 "System Information Type 2quater\n" \
2325 "System Information Type 5bis\n" \
2326 "System Information Type 5ter\n"
2327
2328DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2329 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2330 SI_TEXT SI_TYPE_HELP
2331 "System Information Mode\n"
2332 "Static user-specified\n"
2333 "Dynamic, BSC-computed\n")
2334{
2335 struct gsm_bts *bts = vty->index;
2336 int type;
2337
2338 type = get_string_value(osmo_sitype_strs, argv[0]);
2339 if (type < 0) {
2340 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2341 return CMD_WARNING;
2342 }
2343
2344 if (!strcmp(argv[1], "static"))
2345 bts->si_mode_static |= (1 << type);
2346 else
2347 bts->si_mode_static &= ~(1 << type);
2348
2349 return CMD_SUCCESS;
2350}
2351
2352DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2353 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2354 SI_TEXT SI_TYPE_HELP
2355 "Static System Information filling\n"
2356 "Static user-specified SI content in HEX notation\n")
2357{
2358 struct gsm_bts *bts = vty->index;
2359 int rc, type;
2360
2361 type = get_string_value(osmo_sitype_strs, argv[0]);
2362 if (type < 0) {
2363 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2364 return CMD_WARNING;
2365 }
2366
2367 if (!(bts->si_mode_static & (1 << type))) {
2368 vty_out(vty, "SI Type %s is not configured in static mode%s",
2369 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2370 return CMD_WARNING;
2371 }
2372
Harald Welte9f09ac32010-07-30 11:53:18 +02002373 /* Fill buffer with padding pattern */
2374 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2375
2376 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002377 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002378 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2379 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2380 return CMD_WARNING;
2381 }
2382
2383 /* Mark this SI as present */
2384 bts->si_valid |= (1 << type);
2385
2386 return CMD_SUCCESS;
2387}
2388
Harald Welteca46eff2011-01-11 23:44:56 +01002389DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002390 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002391 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002392 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2393 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002394{
2395 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002396 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002397
Harald Weltef989b782011-02-15 11:43:27 +01002398 switch (mode) {
2399 case NL_MODE_MANUAL_SI5SEP:
2400 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002401 /* make sure we clear the current list when switching to
2402 * manual mode */
2403 if (bts->neigh_list_manual_mode == 0)
2404 memset(&bts->si_common.data.neigh_list, 0,
2405 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002406 break;
2407 default:
2408 break;
2409 }
2410
2411 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002412
2413 return CMD_SUCCESS;
2414}
2415
2416DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002417 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002418 "Neighbor List\n" "Add to manual neighbor list\n"
2419 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2420 "ARFCN of neighbor\n")
2421{
2422 struct gsm_bts *bts = vty->index;
2423 struct bitvec *bv = &bts->si_common.neigh_list;
2424 uint16_t arfcn = atoi(argv[1]);
2425
2426 if (!bts->neigh_list_manual_mode) {
2427 vty_out(vty, "%% Cannot configure neighbor list in "
2428 "automatic mode%s", VTY_NEWLINE);
2429 return CMD_WARNING;
2430 }
2431
2432 if (!strcmp(argv[0], "add"))
2433 bitvec_set_bit_pos(bv, arfcn, 1);
2434 else
2435 bitvec_set_bit_pos(bv, arfcn, 0);
2436
2437 return CMD_SUCCESS;
2438}
2439
Harald Weltef989b782011-02-15 11:43:27 +01002440DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002441 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002442 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002443 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2444 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2445 "ARFCN of neighbor\n")
2446{
2447 struct gsm_bts *bts = vty->index;
2448 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2449 uint16_t arfcn = atoi(argv[1]);
2450
2451 if (!bts->neigh_list_manual_mode) {
2452 vty_out(vty, "%% Cannot configure neighbor list in "
2453 "automatic mode%s", VTY_NEWLINE);
2454 return CMD_WARNING;
2455 }
2456
2457 if (!strcmp(argv[0], "add"))
2458 bitvec_set_bit_pos(bv, arfcn, 1);
2459 else
2460 bitvec_set_bit_pos(bv, arfcn, 0);
2461
2462 return CMD_SUCCESS;
2463}
Harald Welted8acf142010-07-30 11:50:09 +02002464
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002465#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2466
2467DEFUN(cfg_bts_excl_rf_lock,
2468 cfg_bts_excl_rf_lock_cmd,
2469 "rf-lock-exclude",
2470 EXCL_RFLOCK_STR)
2471{
2472 struct gsm_bts *bts = vty->index;
2473 bts->excl_from_rf_lock = 1;
2474 return CMD_SUCCESS;
2475}
2476
2477DEFUN(cfg_bts_no_excl_rf_lock,
2478 cfg_bts_no_excl_rf_lock_cmd,
2479 "no rf-lock-exclude",
2480 NO_STR EXCL_RFLOCK_STR)
2481{
2482 struct gsm_bts *bts = vty->index;
2483 bts->excl_from_rf_lock = 0;
2484 return CMD_SUCCESS;
2485}
2486
Harald Welte9e002452010-05-11 21:53:49 +02002487#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002488
Harald Welte59b04682009-06-10 05:40:52 +08002489/* per TRX configuration */
2490DEFUN(cfg_trx,
2491 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02002492 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002493 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002494 "Select a TRX to configure")
2495{
2496 int trx_nr = atoi(argv[0]);
2497 struct gsm_bts *bts = vty->index;
2498 struct gsm_bts_trx *trx;
2499
Harald Weltee712a5f2009-06-21 16:17:15 +02002500 if (trx_nr > bts->num_trx) {
2501 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2502 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002503 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002504 } else if (trx_nr == bts->num_trx) {
2505 /* we need to allocate a new one */
2506 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002507 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002508 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002509
Harald Weltee712a5f2009-06-21 16:17:15 +02002510 if (!trx)
2511 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002512
2513 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002514 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002515 vty->node = TRX_NODE;
2516
2517 return CMD_SUCCESS;
2518}
2519
2520DEFUN(cfg_trx_arfcn,
2521 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002522 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02002523 "Set the ARFCN for this TRX\n"
2524 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002525{
2526 int arfcn = atoi(argv[0]);
2527 struct gsm_bts_trx *trx = vty->index;
2528
2529 /* FIXME: check if this ARFCN is supported by this TRX */
2530
2531 trx->arfcn = arfcn;
2532
2533 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2534 /* FIXME: use OML layer to update the ARFCN */
2535 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2536
2537 return CMD_SUCCESS;
2538}
2539
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002540DEFUN(cfg_trx_nominal_power,
2541 cfg_trx_nominal_power_cmd,
2542 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002543 "Nominal TRX RF Power in dBm\n"
2544 "Nominal TRX RF Power in dBm\n"
2545 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002546{
2547 struct gsm_bts_trx *trx = vty->index;
2548
2549 trx->nominal_power = atoi(argv[0]);
2550
2551 return CMD_SUCCESS;
2552}
2553
Harald Welte91afe4c2009-06-20 18:15:19 +02002554DEFUN(cfg_trx_max_power_red,
2555 cfg_trx_max_power_red_cmd,
2556 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002557 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02002558 "Reduction of maximum BS RF Power in dB\n")
2559{
2560 int maxpwr_r = atoi(argv[0]);
2561 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002562 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002563
2564 /* FIXME: check if our BTS type supports more than 12 */
2565 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2566 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2567 maxpwr_r, VTY_NEWLINE);
2568 return CMD_WARNING;
2569 }
2570 if (maxpwr_r & 1) {
2571 vty_out(vty, "%% Power %d dB is not an even value%s",
2572 maxpwr_r, VTY_NEWLINE);
2573 return CMD_WARNING;
2574 }
2575
2576 trx->max_power_red = maxpwr_r;
2577
2578 /* FIXME: make sure we update this using OML */
2579
2580 return CMD_SUCCESS;
2581}
2582
Harald Welte62868882009-08-08 16:12:58 +02002583DEFUN(cfg_trx_rsl_e1,
2584 cfg_trx_rsl_e1_cmd,
2585 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002586 "RSL Parameters\n"
2587 "E1/T1 interface to be used for RSL\n"
2588 "E1/T1 interface to be used for RSL\n"
2589 "E1/T1 Line Number to be used for RSL\n"
2590 "E1/T1 Timeslot to be used for RSL\n"
2591 "E1/T1 Timeslot to be used for RSL\n"
2592 "E1/T1 Sub-slot to be used for RSL\n"
2593 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2594 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2595 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2596 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2597 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002598{
2599 struct gsm_bts_trx *trx = vty->index;
2600
2601 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2602
2603 return CMD_SUCCESS;
2604}
2605
2606DEFUN(cfg_trx_rsl_e1_tei,
2607 cfg_trx_rsl_e1_tei_cmd,
2608 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002609 "RSL Parameters\n"
2610 "Set the TEI to be used for RSL\n"
2611 "Set the TEI to be used for RSL\n"
2612 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002613{
2614 struct gsm_bts_trx *trx = vty->index;
2615
2616 trx->rsl_tei = atoi(argv[0]);
2617
2618 return CMD_SUCCESS;
2619}
2620
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002621DEFUN(cfg_trx_rf_locked,
2622 cfg_trx_rf_locked_cmd,
2623 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002624 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2625 "TRX is NOT RF locked (active)\n"
2626 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002627{
2628 int locked = atoi(argv[0]);
2629 struct gsm_bts_trx *trx = vty->index;
2630
2631 gsm_trx_lock_rf(trx, locked);
2632 return CMD_SUCCESS;
2633}
Harald Welte62868882009-08-08 16:12:58 +02002634
Harald Welte59b04682009-06-10 05:40:52 +08002635/* per TS configuration */
2636DEFUN(cfg_ts,
2637 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002638 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002639 "Select a Timeslot to configure\n"
2640 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002641{
2642 int ts_nr = atoi(argv[0]);
2643 struct gsm_bts_trx *trx = vty->index;
2644 struct gsm_bts_trx_ts *ts;
2645
2646 if (ts_nr >= TRX_NR_TS) {
2647 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2648 TRX_NR_TS, VTY_NEWLINE);
2649 return CMD_WARNING;
2650 }
2651
2652 ts = &trx->ts[ts_nr];
2653
2654 vty->index = ts;
2655 vty->node = TS_NODE;
2656
2657 return CMD_SUCCESS;
2658}
2659
Harald Welte3ffe1b32009-08-07 00:25:23 +02002660DEFUN(cfg_ts_pchan,
2661 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02002662 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002663 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02002664{
2665 struct gsm_bts_trx_ts *ts = vty->index;
2666 int pchanc;
2667
2668 pchanc = gsm_pchan_parse(argv[0]);
2669 if (pchanc < 0)
2670 return CMD_WARNING;
2671
2672 ts->pchan = pchanc;
2673
2674 return CMD_SUCCESS;
2675}
2676
2677/* used for backwards compatibility with old config files that still
2678 * have uppercase pchan type names */
2679DEFUN_HIDDEN(cfg_ts_pchan_compat,
2680 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02002681 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002682 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002683{
2684 struct gsm_bts_trx_ts *ts = vty->index;
2685 int pchanc;
2686
2687 pchanc = gsm_pchan_parse(argv[0]);
2688 if (pchanc < 0)
2689 return CMD_WARNING;
2690
2691 ts->pchan = pchanc;
2692
2693 return CMD_SUCCESS;
2694}
2695
Harald Welte2addf852012-08-17 12:42:06 +02002696
2697
Harald Welte85771a42011-05-30 12:09:13 +02002698DEFUN(cfg_ts_tsc,
2699 cfg_ts_tsc_cmd,
2700 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002701 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02002702{
2703 struct gsm_bts_trx_ts *ts = vty->index;
2704
2705 ts->tsc = atoi(argv[0]);
2706
2707 return CMD_SUCCESS;
2708}
2709
Harald Weltea42a93f2010-06-14 22:26:10 +02002710#define HOPPING_STR "Configure frequency hopping\n"
2711
2712DEFUN(cfg_ts_hopping,
2713 cfg_ts_hopping_cmd,
2714 "hopping enabled (0|1)",
2715 HOPPING_STR "Enable or disable frequency hopping\n"
2716 "Disable frequency hopping\n" "Enable frequency hopping\n")
2717{
2718 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002719 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002720
Harald Welte059c1ef2010-06-14 22:47:37 +02002721 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2722 vty_out(vty, "BTS model does not support hopping%s",
2723 VTY_NEWLINE);
2724 return CMD_WARNING;
2725 }
2726
2727 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002728
2729 return CMD_SUCCESS;
2730}
2731
Harald Welte67104d12009-09-12 13:05:33 +02002732DEFUN(cfg_ts_hsn,
2733 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002734 "hopping sequence-number <0-63>",
2735 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002736 "Which hopping sequence to use for this channel\n"
2737 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002738{
2739 struct gsm_bts_trx_ts *ts = vty->index;
2740
2741 ts->hopping.hsn = atoi(argv[0]);
2742
2743 return CMD_SUCCESS;
2744}
2745
2746DEFUN(cfg_ts_maio,
2747 cfg_ts_maio_cmd,
2748 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002749 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002750 "Which hopping MAIO to use for this channel\n"
2751 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002752{
2753 struct gsm_bts_trx_ts *ts = vty->index;
2754
2755 ts->hopping.maio = atoi(argv[0]);
2756
2757 return CMD_SUCCESS;
2758}
2759
2760DEFUN(cfg_ts_arfcn_add,
2761 cfg_ts_arfcn_add_cmd,
2762 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002763 HOPPING_STR "Configure hopping ARFCN list\n"
2764 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002765{
2766 struct gsm_bts_trx_ts *ts = vty->index;
2767 int arfcn = atoi(argv[0]);
2768
Harald Weltea42a93f2010-06-14 22:26:10 +02002769 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2770
Harald Welte67104d12009-09-12 13:05:33 +02002771 return CMD_SUCCESS;
2772}
2773
2774DEFUN(cfg_ts_arfcn_del,
2775 cfg_ts_arfcn_del_cmd,
2776 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002777 HOPPING_STR "Configure hopping ARFCN list\n"
2778 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002779{
2780 struct gsm_bts_trx_ts *ts = vty->index;
2781 int arfcn = atoi(argv[0]);
2782
Harald Weltea42a93f2010-06-14 22:26:10 +02002783 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2784
Harald Welte67104d12009-09-12 13:05:33 +02002785 return CMD_SUCCESS;
2786}
2787
Harald Welte3ffe1b32009-08-07 00:25:23 +02002788DEFUN(cfg_ts_e1_subslot,
2789 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002790 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002791 "E1/T1 channel connected to this on-air timeslot\n"
2792 "E1/T1 channel connected to this on-air timeslot\n"
2793 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002794 "E1/T1 timeslot connected to this on-air timeslot\n"
2795 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02002796 "E1/T1 sub-slot connected to this on-air timeslot\n"
2797 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2798 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2799 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2800 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2801 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002802{
2803 struct gsm_bts_trx_ts *ts = vty->index;
2804
Harald Welte62868882009-08-08 16:12:58 +02002805 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002806
2807 return CMD_SUCCESS;
2808}
Harald Welte59b04682009-06-10 05:40:52 +08002809
Harald Weltea5b1dae2010-05-16 21:47:13 +02002810void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2811{
2812 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002813 osmo_counter_get(net->stats.chreq.total),
2814 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002815 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002816 osmo_counter_get(net->stats.chan.rf_fail),
2817 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002818 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002819 osmo_counter_get(net->stats.paging.attempted),
2820 osmo_counter_get(net->stats.paging.completed),
2821 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002822 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002823 osmo_counter_get(net->stats.bts.oml_fail),
2824 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002825}
2826
Harald Welte682ee5f2010-05-16 22:02:16 +02002827DEFUN(logging_fltr_imsi,
2828 logging_fltr_imsi_cmd,
2829 "logging filter imsi IMSI",
2830 LOGGING_STR FILTER_STR
2831 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2832{
Harald Welte58bef962011-02-18 21:10:05 +01002833 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002834
Harald Welte58bef962011-02-18 21:10:05 +01002835 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002836 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002837
Harald Welte58bef962011-02-18 21:10:05 +01002838 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002839 return CMD_SUCCESS;
2840}
2841
Harald Welte58bef962011-02-18 21:10:05 +01002842
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002843DEFUN(drop_bts,
2844 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002845 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02002846 "Debug/Simulation command to drop Abis/IP BTS\n"
2847 "Debug/Simulation command to drop Abis/IP BTS\n"
2848 "Debug/Simulation command to drop Abis/IP BTS\n"
2849 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002850{
2851 struct gsm_network *gsmnet;
2852 struct gsm_bts_trx *trx;
2853 struct gsm_bts *bts;
2854 unsigned int bts_nr;
2855
2856 gsmnet = gsmnet_from_vty(vty);
2857
2858 bts_nr = atoi(argv[0]);
2859 if (bts_nr >= gsmnet->num_bts) {
2860 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2861 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2862 return CMD_WARNING;
2863 }
2864
2865 bts = gsm_bts_num(gsmnet, bts_nr);
2866 if (!bts) {
2867 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2868 return CMD_WARNING;
2869 }
2870
2871 if (!is_ipaccess_bts(bts)) {
2872 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2873 return CMD_WARNING;
2874 }
2875
2876
2877 /* close all connections */
2878 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002879 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002880 } else if (strcmp(argv[1], "rsl") == 0) {
2881 /* close all rsl connections */
2882 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002883 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002884 }
2885 } else {
2886 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2887 return CMD_WARNING;
2888 }
2889
2890 return CMD_SUCCESS;
2891}
2892
Harald Welte5213e992010-12-23 13:18:07 +01002893DEFUN(pdch_act, pdch_act_cmd,
2894 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2895 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2896 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2897 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2898 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2899{
2900 struct gsm_bts *bts;
2901 struct gsm_bts_trx *trx;
2902 struct gsm_bts_trx_ts *ts;
2903 int bts_nr = atoi(argv[0]);
2904 int trx_nr = atoi(argv[1]);
2905 int ts_nr = atoi(argv[2]);
2906 int activate;
2907
2908 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2909 if (!bts) {
2910 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2911 return CMD_WARNING;
2912 }
2913
2914 if (!is_ipaccess_bts(bts)) {
2915 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2916 VTY_NEWLINE);
2917 return CMD_WARNING;
2918 }
2919
2920 trx = gsm_bts_trx_num(bts, trx_nr);
2921 if (!trx) {
2922 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2923 return CMD_WARNING;
2924 }
2925
2926 ts = &trx->ts[ts_nr];
2927 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2928 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2929 "mode%s", ts_nr, VTY_NEWLINE);
2930 return CMD_WARNING;
2931 }
2932
2933 if (!strcmp(argv[3], "activate"))
2934 activate = 1;
2935 else
2936 activate = 0;
2937
2938 rsl_ipacc_pdch_activate(ts, activate);
2939
2940 return CMD_SUCCESS;
2941
2942}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002943
Harald Welte40152872010-05-16 20:52:23 +02002944extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002945extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002946
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002947int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002948{
Harald Welte2addf852012-08-17 12:42:06 +02002949 cfg_ts_pchan_cmd.string =
2950 vty_cmd_string_from_valstr(tall_bsc_ctx,
2951 gsm_pchant_names,
2952 "phys_chan_config (", "|", ")",
2953 VTY_DO_LOWER);
2954 cfg_ts_pchan_cmd.doc =
2955 vty_cmd_string_from_valstr(tall_bsc_ctx,
2956 gsm_pchant_descs,
2957 "Physical Channel Combination\n",
2958 "\n", "", 0);
2959
Harald Welte85a77b12012-08-17 13:02:12 +02002960 cfg_bts_type_cmd.string =
2961 vty_cmd_string_from_valstr(tall_bsc_ctx,
2962 bts_type_names,
2963 "type (", "|", ")",
2964 VTY_DO_LOWER);
2965 cfg_bts_type_cmd.doc =
2966 vty_cmd_string_from_valstr(tall_bsc_ctx,
2967 bts_type_descs,
2968 "BTS Vendor/Type\n",
2969 "\n", "", 0);
2970
2971
Harald Welte7bc28f62010-05-12 16:10:35 +00002972 install_element_ve(&show_net_cmd);
2973 install_element_ve(&show_bts_cmd);
2974 install_element_ve(&show_trx_cmd);
2975 install_element_ve(&show_ts_cmd);
2976 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08002977 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02002978 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002979
Harald Welte7bc28f62010-05-12 16:10:35 +00002980 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08002981
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002982 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01002983 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01002984
Harald Weltee87eb462009-08-07 13:29:14 +02002985 install_element(CONFIG_NODE, &cfg_net_cmd);
2986 install_node(&net_node, config_write_net);
2987 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02002988 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02002989 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02002990 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02002991 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2992 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2993 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02002994 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01002995 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09002996 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01002997 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01002998 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01002999 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003000 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003001 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3002 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3003 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3004 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3005 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3006 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003007 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003008 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3009 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3010 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3011 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3012 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3013 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3014 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3015 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3016 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003017 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003018 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003019 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003020 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003021 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003022
3023 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003024 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08003025 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003026 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003027 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003028 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003029 install_element(BTS_NODE, &cfg_description_cmd);
3030 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003031 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003032 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003033 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3034 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003035 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003036 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003037 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003038 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
3039 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003040 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003041 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003042 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3043 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003044 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003045 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3046 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003047 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3048 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3049 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003050 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3051 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003052 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003053 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003054 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003055 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003056 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3057 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003058 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3059 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3060 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3061 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3062 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3063 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003064 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003065 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003066 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003067 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003068 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003069 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003070 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003071 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003072 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3073 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3074 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003075 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003076 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3077 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003078 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3079 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003080 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003081 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3082 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003083
3084 install_element(BTS_NODE, &cfg_trx_cmd);
3085 install_node(&trx_node, dummy_config_write);
3086 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003087 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003088 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003089 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003090 install_element(TRX_NODE, &cfg_description_cmd);
3091 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003092 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003093 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003094 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3095 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003096 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003097
3098 install_element(TRX_NODE, &cfg_ts_cmd);
3099 install_node(&ts_node, dummy_config_write);
3100 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003101 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003102 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003103 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003104 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003105 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003106 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003107 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3108 install_element(TS_NODE, &cfg_ts_maio_cmd);
3109 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3110 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003111 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003112
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003113 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003114 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003115
Harald Welte63b964e2010-05-31 16:40:40 +02003116 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003117 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003118 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003119
Harald Welte40152872010-05-16 20:52:23 +02003120 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003121
3122 return 0;
3123}