blob: 9e2c721a9be4ab1d0a357d130c8ea352f837c940 [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{
151 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte306a8892011-05-23 20:30:39 +0200152 abis_nm_opstate_name(nms->operational), nms->administrative,
153 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800154}
155
Harald Weltefe96f382009-12-22 13:09:29 +0100156static void dump_pchan_load_vty(struct vty *vty, char *prefix,
157 const struct pchan_load *pl)
158{
159 int i;
160
161 for (i = 0; i < ARRAY_SIZE(pl->pchan); i++) {
162 const struct load_counter *lc = &pl->pchan[i];
163 unsigned int percent;
164
165 if (lc->total == 0)
166 continue;
167
168 percent = (lc->used * 100) / lc->total;
169
170 vty_out(vty, "%s%20s: %3u%% (%u/%u)%s", prefix,
171 gsm_pchan_name(i), percent, lc->used, lc->total,
172 VTY_NEWLINE);
173 }
174}
175
Harald Welte59b04682009-06-10 05:40:52 +0800176static void net_dump_vty(struct vty *vty, struct gsm_network *net)
177{
Harald Weltefe96f382009-12-22 13:09:29 +0100178 struct pchan_load pl;
179
Harald Welte59b04682009-06-10 05:40:52 +0800180 vty_out(vty, "BSC is on Country Code %u, Network Code %u "
181 "and has %u BTS%s", net->country_code, net->network_code,
182 net->num_bts, VTY_NEWLINE);
183 vty_out(vty, " Long network name: '%s'%s",
184 net->name_long, VTY_NEWLINE);
185 vty_out(vty, " Short network name: '%s'%s",
186 net->name_short, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200187 vty_out(vty, " Authentication policy: %s%s",
188 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100189 vty_out(vty, " Location updating reject cause: %u%s",
190 net->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900191 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
192 VTY_NEWLINE);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +0100193 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
194 VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800195 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
196 VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100197 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
198 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100199 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
200 VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100201 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
202 VTY_NEWLINE);
Harald Weltefe96f382009-12-22 13:09:29 +0100203 network_chan_load(&pl, net);
204 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
205 dump_pchan_load_vty(vty, " ", &pl);
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100206
207 /* show rf */
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200208 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100209 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther4d614172011-08-15 15:53:00 +0200210 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freytherd0146922011-02-24 14:19:14 +0100211 VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800212}
213
214DEFUN(show_net, show_net_cmd, "show network",
215 SHOW_STR "Display information about a GSM NETWORK\n")
216{
Harald Welte40152872010-05-16 20:52:23 +0200217 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800218 net_dump_vty(vty, net);
219
220 return CMD_SUCCESS;
221}
222
223static void e1isl_dump_vty(struct vty *vty, struct e1inp_sign_link *e1l)
224{
225 struct e1inp_line *line;
226
227 if (!e1l) {
228 vty_out(vty, " None%s", VTY_NEWLINE);
229 return;
230 }
231
232 line = e1l->ts->line;
233
234 vty_out(vty, " E1 Line %u, Type %s: Timeslot %u, Mode %s%s",
235 line->num, line->driver->name, e1l->ts->num,
236 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
237 vty_out(vty, " E1 TEI %u, SAPI %u%s",
238 e1l->tei, e1l->sapi, VTY_NEWLINE);
239}
240
241static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
242{
Harald Weltefe96f382009-12-22 13:09:29 +0100243 struct pchan_load pl;
244
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200245 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Welte91afe4c2009-06-20 18:15:19 +0200246 "BSIC %u, TSC %u and %u TRX%s",
247 bts->nr, btstype2str(bts->type), gsm_band_name(bts->band),
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +0200248 bts->cell_identity,
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +0200249 bts->location_area_code, bts->bsic, bts->tsc,
Harald Welte91afe4c2009-06-20 18:15:19 +0200250 bts->num_trx, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200251 vty_out(vty, "Description: %s%s",
252 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte8e9d1792009-12-12 15:38:16 +0100253 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100254 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte8e9d1792009-12-12 15:38:16 +0100255 rxlev2dbm(bts->si_common.cell_sel_par.rxlev_acc_min),
256 VTY_NEWLINE);
257 vty_out(vty, "Cell Reselection Hysteresis: %u dBm%s",
Harald Welteb761bf82009-12-12 18:17:25 +0100258 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100259 vty_out(vty, "RACH TX-Integer: %u%s", bts->si_common.rach_control.tx_integer,
260 VTY_NEWLINE);
261 vty_out(vty, "RACH Max transmissions: %u%s",
262 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
263 VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100264 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200265 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200266 vty_out(vty, "Channel Description Attachment: %s%s",
267 (bts->si_common.chan_desc.att) ? "yes" : "no", VTY_NEWLINE);
268 vty_out(vty, "Channel Description BS-PA-MFRMS: %u%s",
269 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
270 vty_out(vty, "Channel Description BS-AG_BLKS-RES: %u%s",
271 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200272 vty_out(vty, "System Information present: 0x%08x, static: 0x%08x%s",
273 bts->si_valid, bts->si_mode_static, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800274 if (is_ipaccess_bts(bts))
Harald Welte25572872009-10-20 00:22:00 +0200275 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte59b04682009-06-10 05:40:52 +0800276 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte25572872009-10-20 00:22:00 +0200277 bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100278 else if (bts->type == GSM_BTS_TYPE_HSL_FEMTO)
279 vty_out(vty, " Serial Number: %lu%s", bts->hsl.serno, VTY_NEWLINE);
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200280 else if (bts->type == GSM_BTS_TYPE_NOKIA_SITE)
281 vty_out(vty, " Skip Reset: %d%s",
282 bts->nokia.skip_reset, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800283 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200284 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800285 vty_out(vty, " Site Mgr NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200286 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther03d80af2013-05-29 16:22:09 +0200287 vty_out(vty, " GPRS NSE: ");
288 net_dump_nmstate(vty, &bts->gprs.nse.mo.nm_state);
289 vty_out(vty, " GPRS CELL: ");
290 net_dump_nmstate(vty, &bts->gprs.cell.mo.nm_state);
291 vty_out(vty, " GPRS NSVC0: ");
292 net_dump_nmstate(vty, &bts->gprs.nsvc[0].mo.nm_state);
293 vty_out(vty, " GPRS NSVC1: ");
294 net_dump_nmstate(vty, &bts->gprs.nsvc[1].mo.nm_state);
Holger Hans Peter Freyther914ff192011-04-26 15:52:34 +0200295 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
296 paging_pending_requests_nr(bts),
Harald Welte59b04682009-06-10 05:40:52 +0800297 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100298 if (is_ipaccess_bts(bts)) {
299 vty_out(vty, " OML Link state: %s.%s",
300 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
301 } else {
Harald Welte25572872009-10-20 00:22:00 +0200302 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
303 e1isl_dump_vty(vty, bts->oml_link);
304 }
Holger Hans Peter Freytherb5c79c92010-11-25 16:28:45 +0100305
306 /* FIXME: chan_desc */
Harald Weltefe96f382009-12-22 13:09:29 +0100307 memset(&pl, 0, sizeof(pl));
308 bts_chan_load(&pl, bts);
309 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
310 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte59b04682009-06-10 05:40:52 +0800311}
312
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100313DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte59b04682009-06-10 05:40:52 +0800314 SHOW_STR "Display information about a BTS\n"
315 "BTS number")
316{
Harald Welte40152872010-05-16 20:52:23 +0200317 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800318 int bts_nr;
319
320 if (argc != 0) {
321 /* use the BTS number that the user has specified */
322 bts_nr = atoi(argv[0]);
Harald Welteda5db862010-12-24 12:24:03 +0100323 if (bts_nr >= net->num_bts) {
Harald Welte59b04682009-06-10 05:40:52 +0800324 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
325 VTY_NEWLINE);
326 return CMD_WARNING;
327 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200328 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800329 return CMD_SUCCESS;
330 }
331 /* print all BTS's */
332 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee712a5f2009-06-21 16:17:15 +0200333 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte59b04682009-06-10 05:40:52 +0800334
335 return CMD_SUCCESS;
336}
337
Harald Welte62868882009-08-08 16:12:58 +0200338/* utility functions */
339static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
340 const char *ts, const char *ss)
341{
342 e1_link->e1_nr = atoi(line);
343 e1_link->e1_ts = atoi(ts);
344 if (!strcmp(ss, "full"))
345 e1_link->e1_ts_ss = 255;
346 else
347 e1_link->e1_ts_ss = atoi(ss);
348}
349
350static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
351 const char *prefix)
352{
353 if (!e1_link->e1_ts)
354 return;
355
356 if (e1_link->e1_ts_ss == 255)
357 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
358 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
359 else
360 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
361 prefix, e1_link->e1_nr, e1_link->e1_ts,
362 e1_link->e1_ts_ss, VTY_NEWLINE);
363}
364
365
Harald Welte97ceef92009-08-06 19:06:46 +0200366static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
367{
Harald Welte62868882009-08-08 16:12:58 +0200368 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte85771a42011-05-30 12:09:13 +0200369 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
370 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200371 if (ts->pchan != GSM_PCHAN_NONE)
372 vty_out(vty, " phys_chan_config %s%s",
373 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200374 vty_out(vty, " hopping enabled %u%s",
375 ts->hopping.enabled, VTY_NEWLINE);
376 if (ts->hopping.enabled) {
377 unsigned int i;
378 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200379 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200380 vty_out(vty, " hopping maio %u%s",
Harald Welte67104d12009-09-12 13:05:33 +0200381 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea42a93f2010-06-14 22:26:10 +0200382 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
383 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
384 continue;
385 vty_out(vty, " hopping arfcn add %u%s",
386 i, VTY_NEWLINE);
387 }
Harald Welteff598092010-12-24 12:07:07 +0100388 }
Harald Welte62868882009-08-08 16:12:58 +0200389 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Weltec02789e2011-02-14 16:15:21 +0100390
391 if (ts->trx->bts->model->config_write_ts)
392 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte97ceef92009-08-06 19:06:46 +0200393}
394
395static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
396{
397 int i;
398
Harald Weltee87eb462009-08-07 13:29:14 +0200399 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200400 if (trx->description)
401 vty_out(vty, " description %s%s", trx->description,
402 VTY_NEWLINE);
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200403 vty_out(vty, " rf_locked %u%s",
Harald Welte69f6f812011-05-30 12:07:53 +0200404 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther32be2aa2010-04-17 06:42:07 +0200405 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200406 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +0100407 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200408 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200409 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
410 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte97ceef92009-08-06 19:06:46 +0200411
Harald Weltec02789e2011-02-14 16:15:21 +0100412 if (trx->bts->model->config_write_trx)
413 trx->bts->model->config_write_trx(vty, trx);
414
Harald Welte97ceef92009-08-06 19:06:46 +0200415 for (i = 0; i < TRX_NR_TS; i++)
416 config_write_ts_single(vty, &trx->ts[i]);
417}
418
Harald Weltea9251762010-05-11 23:50:21 +0200419static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
420{
421 unsigned int i;
422 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
423 VTY_NEWLINE);
424 if (bts->gprs.mode == BTS_GPRS_NONE)
425 return;
426
427 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
428 VTY_NEWLINE);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +0100429 vty_out(vty, " gprs network-control-order nc%u%s",
430 bts->gprs.net_ctrl_ord, VTY_NEWLINE);
Harald Weltea9251762010-05-11 23:50:21 +0200431 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
432 VTY_NEWLINE);
433 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
434 vty_out(vty, " gprs cell timer %s %u%s",
435 get_value_string(gprs_bssgp_cfg_strs, i),
436 bts->gprs.cell.timer[i], VTY_NEWLINE);
437 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
438 VTY_NEWLINE);
439 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
440 vty_out(vty, " gprs ns timer %s %u%s",
441 get_value_string(gprs_ns_timer_strs, i),
442 bts->gprs.nse.timer[i], VTY_NEWLINE);
443 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
444 struct gsm_bts_gprs_nsvc *nsvc =
445 &bts->gprs.nsvc[i];
446 struct in_addr ia;
447
448 ia.s_addr = htonl(nsvc->remote_ip);
449 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
450 nsvc->nsvci, VTY_NEWLINE);
451 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
452 nsvc->local_port, VTY_NEWLINE);
453 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
454 nsvc->remote_port, VTY_NEWLINE);
455 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
456 inet_ntoa(ia), VTY_NEWLINE);
457 }
458}
459
Harald Welte97ceef92009-08-06 19:06:46 +0200460static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
461{
462 struct gsm_bts_trx *trx;
Harald Welted8acf142010-07-30 11:50:09 +0200463 int i;
Harald Welte97ceef92009-08-06 19:06:46 +0200464
Harald Weltee87eb462009-08-07 13:29:14 +0200465 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
466 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200467 if (bts->description)
468 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200469 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freyther6d82b7c2009-11-19 16:38:49 +0100470 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200471 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte97ceef92009-08-06 19:06:46 +0200472 VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200473 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
474 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte5c3abf92012-07-08 16:48:11 +0200475 if (bts->tz.override != 0)
476 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)cbd46102009-08-13 10:14:26 +0200477 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100478 vty_out(vty, " cell reselection hysteresis %u%s",
479 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
480 vty_out(vty, " rxlev access min %u%s",
481 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaut00d71462010-11-28 18:17:28 +0100482
483 if (bts->si_common.cell_ro_sel_par.present) {
484 struct gsm48_si_selection_params *sp;
485 sp = &bts->si_common.cell_ro_sel_par;
486
487 if (sp->cbq)
488 vty_out(vty, " cell bar qualify %u%s",
489 sp->cbq, VTY_NEWLINE);
490
491 if (sp->cell_resel_off)
492 vty_out(vty, " cell reselection offset %u%s",
493 sp->cell_resel_off*2, VTY_NEWLINE);
494
495 if (sp->temp_offs == 7)
496 vty_out(vty, " temporary offset infinite%s",
497 VTY_NEWLINE);
498 else if (sp->temp_offs)
499 vty_out(vty, " temporary offset %u%s",
500 sp->temp_offs*10, VTY_NEWLINE);
501
502 if (sp->penalty_time == 31)
503 vty_out(vty, " penalty time reserved%s",
504 VTY_NEWLINE);
505 else if (sp->penalty_time)
506 vty_out(vty, " penalty time %u%s",
507 (sp->penalty_time*20)+20, VTY_NEWLINE);
508 }
509
Daniel Willmann3e7db9e2012-12-27 00:02:01 +0100510 vty_out(vty, " periodic location update %u%s",
511 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte3e774612009-08-10 13:48:16 +0200512 vty_out(vty, " channel allocator %s%s",
513 bts->chan_alloc_reverse ? "descending" : "ascending",
514 VTY_NEWLINE);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +0100515 vty_out(vty, " rach tx integer %u%s",
516 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
517 vty_out(vty, " rach max transmission %u%s",
518 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
519 VTY_NEWLINE);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800520
Andreas Eversberg14e12f22012-10-13 07:27:47 +0200521 vty_out(vty, " channel-descrption attach %u%s",
522 bts->si_common.chan_desc.att, VTY_NEWLINE);
523 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
524 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
525 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
526 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
527
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +0800528 if (bts->rach_b_thresh != -1)
529 vty_out(vty, " rach nm busy threshold %u%s",
530 bts->rach_b_thresh, VTY_NEWLINE);
531 if (bts->rach_ldavg_slots != -1)
532 vty_out(vty, " rach nm load average %u%s",
533 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte8c973ba2009-12-21 23:08:18 +0100534 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)e19be3f2009-08-12 13:28:23 +0200535 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +0800536 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
537 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welted8acf142010-07-30 11:50:09 +0200538 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
539 if (bts->si_mode_static & (1 << i)) {
540 vty_out(vty, " system-information %s mode static%s",
541 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
542 vty_out(vty, " system-information %s static %s%s",
543 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut79eae142011-11-13 23:05:23 +0100544 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welted8acf142010-07-30 11:50:09 +0200545 VTY_NEWLINE);
546 }
547 }
Harald Welte08011e22011-03-04 13:41:31 +0100548 switch (bts->type) {
549 case GSM_BTS_TYPE_NANOBTS:
Harald Welte35ac0e42012-07-02 19:51:55 +0200550 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Weltee87eb462009-08-07 13:29:14 +0200551 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Welte3ffe1b32009-08-07 00:25:23 +0200552 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Harald Welte8b3c5952013-03-12 13:57:05 +0100553 if (bts->ip_access.rsl_ip) {
554 struct in_addr ia;
555 ia.s_addr = htonl(bts->ip_access.rsl_ip);
556 vty_out(vty, " ip.access rsl-ip %s%s", inet_ntoa(ia),
557 VTY_NEWLINE);
558 }
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200559 vty_out(vty, " oml ip.access stream_id %u line %u%s",
560 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100561 break;
562 case GSM_BTS_TYPE_HSL_FEMTO:
563 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +0200564 vty_out(vty, " oml hsl line %u%s",
565 bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100566 break;
Sylvain Munautcb8e8432011-10-17 14:04:55 +0200567 case GSM_BTS_TYPE_NOKIA_SITE:
568 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
569 break;
Harald Welte08011e22011-03-04 13:41:31 +0100570 default:
Harald Welte62868882009-08-08 16:12:58 +0200571 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
572 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Welte08011e22011-03-04 13:41:31 +0100573 break;
Harald Welte62868882009-08-08 16:12:58 +0200574 }
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +0800575
576 /* if we have a limit, write it */
577 if (bts->paging.free_chans_need >= 0)
578 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
579
Harald Welteca46eff2011-01-11 23:44:56 +0100580 vty_out(vty, " neighbor-list mode %s%s",
Harald Weltef989b782011-02-15 11:43:27 +0100581 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
582 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welteca46eff2011-01-11 23:44:56 +0100583 for (i = 0; i < 1024; i++) {
584 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
585 vty_out(vty, " neighbor-list add arfcn %u%s",
586 i, VTY_NEWLINE);
587 }
588 }
Harald Weltef989b782011-02-15 11:43:27 +0100589 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
590 for (i = 0; i < 1024; i++) {
591 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
592 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
593 i, VTY_NEWLINE);
594 }
595 }
Harald Welteca46eff2011-01-11 23:44:56 +0100596
Harald Weltea9251762010-05-11 23:50:21 +0200597 config_write_bts_gprs(vty, bts);
Harald Welte97ceef92009-08-06 19:06:46 +0200598
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +0200599 if (bts->excl_from_rf_lock)
600 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
601
Harald Weltec02789e2011-02-14 16:15:21 +0100602 if (bts->model->config_write_bts)
603 bts->model->config_write_bts(vty, bts);
604
Harald Welte97ceef92009-08-06 19:06:46 +0200605 llist_for_each_entry(trx, &bts->trx_list, list)
606 config_write_trx_single(vty, trx);
607}
608
609static int config_write_bts(struct vty *v)
610{
Harald Welte40152872010-05-16 20:52:23 +0200611 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte97ceef92009-08-06 19:06:46 +0200612 struct gsm_bts *bts;
613
614 llist_for_each_entry(bts, &gsmnet->bts_list, list)
615 config_write_bts_single(v, bts);
616
617 return CMD_SUCCESS;
618}
619
Harald Weltee87eb462009-08-07 13:29:14 +0200620static int config_write_net(struct vty *vty)
621{
Harald Welte40152872010-05-16 20:52:23 +0200622 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
623
Harald Weltee87eb462009-08-07 13:29:14 +0200624 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200625 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200626 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte62868882009-08-08 16:12:58 +0200627 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
628 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +0200629 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte59936d72009-11-18 20:33:19 +0100630 vty_out(vty, " location updating reject cause %u%s",
631 gsmnet->reject_cause, VTY_NEWLINE);
Harald Weltecca253a2009-08-30 15:47:06 +0900632 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freyther6b4f5462009-11-19 16:37:48 +0100633 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +0800634 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welte52af1952009-12-13 10:53:12 +0100635 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
636 VTY_NEWLINE);
Harald Weltea310f3e2009-12-14 09:00:24 +0100637 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Welte0af9c9f2009-12-19 21:41:52 +0100638 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Weltea8062f12009-12-21 16:51:50 +0100639 vty_out(vty, " handover window rxlev averaging %u%s",
640 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
641 vty_out(vty, " handover window rxqual averaging %u%s",
642 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
643 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
644 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
645 vty_out(vty, " handover power budget interval %u%s",
646 gsmnet->handover.pwr_interval, VTY_NEWLINE);
647 vty_out(vty, " handover power budget hysteresis %u%s",
648 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
649 vty_out(vty, " handover maximum distance %u%s",
650 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +0100651 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100652 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
653 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
654 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
655 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
656 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
657 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
658 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
659 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
660 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Weltea00fdd72010-12-23 14:39:29 +0100661 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +0100662 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Weltef41bfd52010-12-15 15:34:23 +0100663 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +0100664 vty_out(vty, " subscriber-keep-in-ram %d%s",
665 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Weltee87eb462009-08-07 13:29:14 +0200666
667 return CMD_SUCCESS;
668}
Harald Welte97ceef92009-08-06 19:06:46 +0200669
Harald Welte59b04682009-06-10 05:40:52 +0800670static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
671{
672 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
673 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte8791dac2010-05-14 17:59:53 +0200674 vty_out(vty, "Description: %s%s",
675 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Welte91afe4c2009-06-20 18:15:19 +0200676 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte62868882009-08-08 16:12:58 +0200677 "resulting BS power: %d dBm%s",
Harald Welte91afe4c2009-06-20 18:15:19 +0200678 trx->nominal_power, trx->max_power_red,
Harald Welte62868882009-08-08 16:12:58 +0200679 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800680 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200681 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte59b04682009-06-10 05:40:52 +0800682 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200683 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte25572872009-10-20 00:22:00 +0200684 if (is_ipaccess_bts(trx->bts)) {
685 vty_out(vty, " ip.access stream ID: 0x%02x%s",
686 trx->rsl_tei, VTY_NEWLINE);
687 } else {
688 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
689 e1isl_dump_vty(vty, trx->rsl_link);
690 }
Harald Welte59b04682009-06-10 05:40:52 +0800691}
692
693DEFUN(show_trx,
694 show_trx_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100695 "show trx [<0-255>] [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +0200696 SHOW_STR "Display information about a TRX\n"
697 "BTS Number\n"
698 "TRX Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800699{
Harald Welte40152872010-05-16 20:52:23 +0200700 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800701 struct gsm_bts *bts = NULL;
702 struct gsm_bts_trx *trx;
703 int bts_nr, trx_nr;
704
705 if (argc >= 1) {
706 /* use the BTS number that the user has specified */
707 bts_nr = atoi(argv[0]);
708 if (bts_nr >= net->num_bts) {
709 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
710 VTY_NEWLINE);
711 return CMD_WARNING;
712 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200713 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800714 }
715 if (argc >= 2) {
716 trx_nr = atoi(argv[1]);
717 if (trx_nr >= bts->num_trx) {
718 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
719 VTY_NEWLINE);
720 return CMD_WARNING;
721 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200722 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800723 trx_dump_vty(vty, trx);
724 return CMD_SUCCESS;
725 }
726 if (bts) {
727 /* print all TRX in this BTS */
728 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200729 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800730 trx_dump_vty(vty, trx);
731 }
732 return CMD_SUCCESS;
733 }
734
735 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200736 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800737 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200738 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800739 trx_dump_vty(vty, trx);
740 }
741 }
742
743 return CMD_SUCCESS;
744}
745
Harald Welte97ceef92009-08-06 19:06:46 +0200746
Harald Welte59b04682009-06-10 05:40:52 +0800747static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
748{
Harald Welte85771a42011-05-30 12:09:13 +0200749 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Weltee3bd0c02010-12-24 12:12:10 +0100750 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Welted1dcdb82013-03-08 07:44:45 +0000751 gsm_pchan_name(ts->pchan),
752 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Welte98d2bb82010-12-24 12:14:52 +0100753 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welte81c2ed32010-12-24 12:26:13 +0100754 vty_out(vty, " (%s mode)",
Harald Welte98d2bb82010-12-24 12:14:52 +0100755 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
756 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800757 vty_out(vty, " NM State: ");
Harald Welte69f6f812011-05-30 12:07:53 +0200758 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte87504212009-12-02 01:56:49 +0530759 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welte59b04682009-06-10 05:40:52 +0800760 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
761 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
762 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800763}
764
765DEFUN(show_ts,
766 show_ts_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +0100767 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte9e002452010-05-11 21:53:49 +0200768 SHOW_STR "Display information about a TS\n"
769 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte59b04682009-06-10 05:40:52 +0800770{
Harald Welte40152872010-05-16 20:52:23 +0200771 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte06868382010-12-24 12:05:03 +0100772 struct gsm_bts *bts = NULL;
773 struct gsm_bts_trx *trx = NULL;
774 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte59b04682009-06-10 05:40:52 +0800775 int bts_nr, trx_nr, ts_nr;
776
777 if (argc >= 1) {
778 /* use the BTS number that the user has specified */
779 bts_nr = atoi(argv[0]);
780 if (bts_nr >= net->num_bts) {
781 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
782 VTY_NEWLINE);
783 return CMD_WARNING;
784 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200785 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800786 }
787 if (argc >= 2) {
788 trx_nr = atoi(argv[1]);
789 if (trx_nr >= bts->num_trx) {
790 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
791 VTY_NEWLINE);
792 return CMD_WARNING;
793 }
Harald Weltee712a5f2009-06-21 16:17:15 +0200794 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800795 }
796 if (argc >= 3) {
797 ts_nr = atoi(argv[2]);
798 if (ts_nr >= TRX_NR_TS) {
799 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
800 VTY_NEWLINE);
801 return CMD_WARNING;
802 }
Harald Welte06868382010-12-24 12:05:03 +0100803 /* Fully Specified: print and exit */
Harald Welte59b04682009-06-10 05:40:52 +0800804 ts = &trx->ts[ts_nr];
805 ts_dump_vty(vty, ts);
806 return CMD_SUCCESS;
807 }
Harald Welte06868382010-12-24 12:05:03 +0100808
809 if (bts && trx) {
810 /* Iterate over all TS in this TRX */
811 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
812 ts = &trx->ts[ts_nr];
813 ts_dump_vty(vty, ts);
814 }
815 } else if (bts) {
816 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte59b04682009-06-10 05:40:52 +0800817 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +0200818 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte59b04682009-06-10 05:40:52 +0800819 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
820 ts = &trx->ts[ts_nr];
821 ts_dump_vty(vty, ts);
822 }
823 }
Harald Welte06868382010-12-24 12:05:03 +0100824 } else {
825 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
826 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
827 bts = gsm_bts_num(net, bts_nr);
828 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
829 trx = gsm_bts_trx_num(bts, trx_nr);
830 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
831 ts = &trx->ts[ts_nr];
832 ts_dump_vty(vty, ts);
833 }
834 }
835 }
Harald Welte59b04682009-06-10 05:40:52 +0800836 }
837
838 return CMD_SUCCESS;
839}
840
Holger Hans Peter Freyther1dd0a1b2010-01-06 06:00:40 +0100841static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte59b04682009-06-10 05:40:52 +0800842{
Harald Welte91afe4c2009-06-20 18:15:19 +0200843 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte59b04682009-06-10 05:40:52 +0800844 subscr->authorized, VTY_NEWLINE);
845 if (subscr->name)
846 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
847 if (subscr->extension)
848 vty_out(vty, " Extension: %s%s", subscr->extension,
849 VTY_NEWLINE);
850 if (subscr->imsi)
851 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200852 if (subscr->tmsi != GSM_RESERVED_TMSI)
853 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte270c06c2009-08-15 03:24:51 +0200854 VTY_NEWLINE);
Sylvain Munaute5863a22009-12-27 19:29:28 +0100855
Harald Welte (local)02d5efa2009-08-14 20:27:16 +0200856 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +0800857}
858
Harald Welte44007742009-12-22 21:43:14 +0100859static void meas_rep_dump_uni_vty(struct vty *vty,
860 struct gsm_meas_rep_unidir *mru,
861 const char *prefix,
862 const char *dir)
863{
864 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
865 prefix, dir, rxlev2dbm(mru->full.rx_lev),
866 dir, rxlev2dbm(mru->sub.rx_lev));
867 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
868 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
869 VTY_NEWLINE);
870}
871
872static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
873 const char *prefix)
874{
875 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
876 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
877 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
878 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
879 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
880 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
881 VTY_NEWLINE);
882 if (mr->flags & MEAS_REP_F_MS_TO)
883 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
884 mr->ms_timing_offset, VTY_NEWLINE);
885 if (mr->flags & MEAS_REP_F_MS_L1)
886 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
887 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
888 if (mr->flags & MEAS_REP_F_DL_VALID)
889 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
890 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
891}
892
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800893static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte59b04682009-06-10 05:40:52 +0800894{
Harald Welte44007742009-12-22 21:43:14 +0100895 int idx;
896
Harald Weltef62dad62010-12-24 12:22:34 +0100897 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
898 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
899 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther6e5c50f2010-06-28 17:09:29 +0800900 vty_out(vty, " Connection: %u, State: %s%s",
901 lchan->conn ? 1: 0,
Harald Welteab2534c2009-12-29 10:52:38 +0100902 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welteb761bf82009-12-12 18:17:25 +0100903 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
904 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
905 - lchan->bs_power*2,
906 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
907 VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800908 if (lchan->conn && lchan->conn->subscr) {
Harald Welte59b04682009-06-10 05:40:52 +0800909 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther1a95fa82010-06-28 15:47:12 +0800910 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte59b04682009-06-10 05:40:52 +0800911 } else
912 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte87504212009-12-02 01:56:49 +0530913 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
914 struct in_addr ia;
Holger Hans Peter Freythercec1ec52010-04-07 15:39:16 +0200915 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte87504212009-12-02 01:56:49 +0530916 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
917 inet_ntoa(ia), lchan->abis_ip.bound_port,
918 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
919 VTY_NEWLINE);
920 }
Harald Welte44007742009-12-22 21:43:14 +0100921
922 /* we want to report the last measurement report */
923 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
924 lchan->meas_rep_idx, 1);
925 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte59b04682009-06-10 05:40:52 +0800926}
927
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800928static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
929{
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800930 struct gsm_meas_rep *mr;
931 int idx;
932
933 /* we want to report the last measurement report */
934 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
935 lchan->meas_rep_idx, 1);
936 mr = &lchan->meas_rep[idx];
937
Harald Weltef62dad62010-12-24 12:22:34 +0100938 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
939 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
940 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welte81c2ed32010-12-24 12:26:13 +0100941 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf13a922010-05-14 01:57:02 +0800942 rxlev2dbm(mr->dl.full.rx_lev),
943 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +0800944 VTY_NEWLINE);
945}
946
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +0100947
948static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
949 void (*dump_cb)(struct vty *, struct gsm_lchan *))
950{
951 int lchan_nr;
952 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
953 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
954 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
955 continue;
956 dump_cb(vty, lchan);
957 }
958
959 return CMD_SUCCESS;
960}
961
962static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
963 void (*dump_cb)(struct vty *, struct gsm_lchan *))
964{
965 int ts_nr;
966
967 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
968 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
969 dump_lchan_trx_ts(ts, vty, dump_cb);
970 }
971
972 return CMD_SUCCESS;
973}
974
975static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
976 void (*dump_cb)(struct vty *, struct gsm_lchan *))
977{
978 int trx_nr;
979
980 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
981 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
982 dump_lchan_trx(trx, vty, dump_cb);
983 }
984
985 return CMD_SUCCESS;
986}
987
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +0800988static int lchan_summary(struct vty *vty, int argc, const char **argv,
989 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte59b04682009-06-10 05:40:52 +0800990{
Harald Welte40152872010-05-16 20:52:23 +0200991 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +0800992 struct gsm_bts *bts;
993 struct gsm_bts_trx *trx;
994 struct gsm_bts_trx_ts *ts;
995 struct gsm_lchan *lchan;
996 int bts_nr, trx_nr, ts_nr, lchan_nr;
997
998 if (argc >= 1) {
999 /* use the BTS number that the user has specified */
1000 bts_nr = atoi(argv[0]);
1001 if (bts_nr >= net->num_bts) {
1002 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1003 VTY_NEWLINE);
1004 return CMD_WARNING;
1005 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001006 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001007
1008 if (argc == 1)
1009 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001010 }
1011 if (argc >= 2) {
1012 trx_nr = atoi(argv[1]);
1013 if (trx_nr >= bts->num_trx) {
1014 vty_out(vty, "%% can't find TRX %s%s", argv[1],
1015 VTY_NEWLINE);
1016 return CMD_WARNING;
1017 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001018 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001019
1020 if (argc == 2)
1021 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001022 }
1023 if (argc >= 3) {
1024 ts_nr = atoi(argv[2]);
1025 if (ts_nr >= TRX_NR_TS) {
1026 vty_out(vty, "%% can't find TS %s%s", argv[2],
1027 VTY_NEWLINE);
1028 return CMD_WARNING;
1029 }
1030 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001031
1032 if (argc == 3)
1033 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001034 }
1035 if (argc >= 4) {
1036 lchan_nr = atoi(argv[3]);
1037 if (lchan_nr >= TS_MAX_LCHAN) {
1038 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1039 VTY_NEWLINE);
1040 return CMD_WARNING;
1041 }
1042 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001043 dump_cb(vty, lchan);
Harald Welte59b04682009-06-10 05:40:52 +08001044 return CMD_SUCCESS;
1045 }
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001046
1047
Harald Welte59b04682009-06-10 05:40:52 +08001048 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001049 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther86bbcbd2011-12-27 16:34:12 +01001050 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte59b04682009-06-10 05:40:52 +08001051 }
1052
1053 return CMD_SUCCESS;
1054}
1055
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001056
1057DEFUN(show_lchan,
1058 show_lchan_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001059 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001060 SHOW_STR "Display information about a logical channel\n"
1061 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001062 LCHAN_NR_STR)
Holger Hans Peter Freyther5424e022010-05-14 02:03:16 +08001063
1064{
1065 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1066}
1067
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001068DEFUN(show_lchan_summary,
1069 show_lchan_summary_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001070 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001071 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001072 "Short summary\n"
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001073 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001074 LCHAN_NR_STR)
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08001075{
1076 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1077}
1078
Harald Welte59b04682009-06-10 05:40:52 +08001079static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
1080{
1081 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1082 subscr_dump_vty(vty, pag->subscr);
1083}
1084
1085static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
1086{
1087 struct gsm_paging_request *pag;
1088
Holger Hans Peter Freyther9372d9c2013-03-03 11:03:17 +01001089 if (!bts->paging.bts)
1090 return;
1091
Harald Welte59b04682009-06-10 05:40:52 +08001092 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1093 paging_dump_vty(vty, pag);
1094}
1095
1096DEFUN(show_paging,
1097 show_paging_cmd,
Sylvain Munaut1ad96282012-12-28 12:15:11 +01001098 "show paging [<0-255>]",
Harald Welte9e002452010-05-11 21:53:49 +02001099 SHOW_STR "Display information about paging reuqests of a BTS\n"
1100 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001101{
Harald Welte40152872010-05-16 20:52:23 +02001102 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001103 struct gsm_bts *bts;
1104 int bts_nr;
1105
1106 if (argc >= 1) {
1107 /* use the BTS number that the user has specified */
1108 bts_nr = atoi(argv[0]);
1109 if (bts_nr >= net->num_bts) {
1110 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1111 VTY_NEWLINE);
1112 return CMD_WARNING;
1113 }
Harald Weltee712a5f2009-06-21 16:17:15 +02001114 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001115 bts_paging_dump_vty(vty, bts);
1116
1117 return CMD_SUCCESS;
1118 }
1119 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee712a5f2009-06-21 16:17:15 +02001120 bts = gsm_bts_num(net, bts_nr);
Harald Welte59b04682009-06-10 05:40:52 +08001121 bts_paging_dump_vty(vty, bts);
1122 }
1123
1124 return CMD_SUCCESS;
1125}
1126
Harald Weltee87eb462009-08-07 13:29:14 +02001127DEFUN(cfg_net,
1128 cfg_net_cmd,
Harald Welte9e002452010-05-11 21:53:49 +02001129 "network", NETWORK_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001130{
Harald Welte40152872010-05-16 20:52:23 +02001131 vty->index = gsmnet_from_vty(vty);
Harald Weltee87eb462009-08-07 13:29:14 +02001132 vty->node = GSMNET_NODE;
1133
1134 return CMD_SUCCESS;
1135}
1136
Harald Weltee87eb462009-08-07 13:29:14 +02001137DEFUN(cfg_net_ncc,
1138 cfg_net_ncc_cmd,
1139 "network country code <1-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001140 "Set the GSM network country code\n"
1141 "Country commands\n"
1142 CODE_CMD_STR
1143 "Network Country Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001144{
Harald Welte40152872010-05-16 20:52:23 +02001145 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1146
Harald Weltee87eb462009-08-07 13:29:14 +02001147 gsmnet->country_code = atoi(argv[0]);
1148
1149 return CMD_SUCCESS;
1150}
1151
1152DEFUN(cfg_net_mnc,
1153 cfg_net_mnc_cmd,
Dieter Spaarf1295252011-07-27 23:43:56 +02001154 "mobile network code <0-999>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001155 "Set the GSM mobile network code\n"
1156 "Network Commands\n"
1157 CODE_CMD_STR
1158 "Mobile Network Code to use\n")
Harald Weltee87eb462009-08-07 13:29:14 +02001159{
Harald Welte40152872010-05-16 20:52:23 +02001160 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1161
Harald Weltee87eb462009-08-07 13:29:14 +02001162 gsmnet->network_code = atoi(argv[0]);
1163
1164 return CMD_SUCCESS;
1165}
1166
1167DEFUN(cfg_net_name_short,
1168 cfg_net_name_short_cmd,
1169 "short name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001170 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001171{
Harald Welte40152872010-05-16 20:52:23 +02001172 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1173
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001174 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001175 return CMD_SUCCESS;
1176}
1177
1178DEFUN(cfg_net_name_long,
1179 cfg_net_name_long_cmd,
1180 "long name NAME",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001181 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Weltee87eb462009-08-07 13:29:14 +02001182{
Harald Welte40152872010-05-16 20:52:23 +02001183 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1184
Holger Hans Peter Freyther7c831f62010-10-12 23:21:54 +02001185 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Weltee87eb462009-08-07 13:29:14 +02001186 return CMD_SUCCESS;
1187}
Harald Welte59b04682009-06-10 05:40:52 +08001188
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001189DEFUN(cfg_net_auth_policy,
1190 cfg_net_auth_policy_cmd,
1191 "auth policy (closed|accept-all|token)",
Harald Welte9e002452010-05-11 21:53:49 +02001192 "Authentication (not cryptographic)\n"
1193 "Set the GSM network authentication policy\n"
1194 "Require the MS to be activated in HLR\n"
1195 "Accept all MS, whether in HLR or not\n"
1196 "Use SMS-token based authentication\n")
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001197{
1198 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001199 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02001200
1201 gsmnet->auth_policy = policy;
1202
1203 return CMD_SUCCESS;
1204}
1205
Harald Welte59936d72009-11-18 20:33:19 +01001206DEFUN(cfg_net_reject_cause,
1207 cfg_net_reject_cause_cmd,
1208 "location updating reject cause <2-111>",
Harald Welte557f3992012-08-16 23:23:50 +02001209 "Set the reject cause of location updating reject\n"
1210 "Set the reject cause of location updating reject\n"
1211 "Set the reject cause of location updating reject\n"
1212 "Set the reject cause of location updating reject\n"
1213 "Cause Value as Per GSM TS 04.08\n")
Harald Welte59936d72009-11-18 20:33:19 +01001214{
Harald Welte40152872010-05-16 20:52:23 +02001215 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1216
Harald Welte59936d72009-11-18 20:33:19 +01001217 gsmnet->reject_cause = atoi(argv[0]);
1218
1219 return CMD_SUCCESS;
1220}
1221
Harald Weltecca253a2009-08-30 15:47:06 +09001222DEFUN(cfg_net_encryption,
1223 cfg_net_encryption_cmd,
Harald Welte55ff9362012-07-04 21:37:56 +02001224 "encryption a5 (0|1|2|3)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001225 "Encryption options\n"
1226 "A5 encryption\n" "A5/0: No encryption\n"
Harald Welte55ff9362012-07-04 21:37:56 +02001227 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1228 "A5/3: 'New' Secure Encryption\n")
Harald Weltecca253a2009-08-30 15:47:06 +09001229{
Harald Welte40152872010-05-16 20:52:23 +02001230 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1231
Andreas.Eversberg53293292009-11-17 09:55:26 +01001232 gsmnet->a5_encryption= atoi(argv[0]);
Harald Weltecca253a2009-08-30 15:47:06 +09001233
1234 return CMD_SUCCESS;
1235}
1236
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001237DEFUN(cfg_net_neci,
1238 cfg_net_neci_cmd,
1239 "neci (0|1)",
Harald Welte18ce31c2010-05-14 20:05:17 +02001240 "New Establish Cause Indication\n"
1241 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001242{
Harald Welte40152872010-05-16 20:52:23 +02001243 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1244
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001245 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freytherf0f37f12010-09-06 09:36:02 +08001246 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01001247 return CMD_SUCCESS;
1248}
1249
Harald Welte52af1952009-12-13 10:53:12 +01001250DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1251 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte9e002452010-05-11 21:53:49 +02001252 "Radio Resource Location Protocol\n"
1253 "Set the Radio Resource Location Protocol Mode\n"
1254 "Don't send RRLP request\n"
1255 "Request MS-based location\n"
1256 "Request any location, prefer MS-based\n"
1257 "Request any location, prefer MS-assisted\n")
Harald Welte52af1952009-12-13 10:53:12 +01001258{
Harald Welte40152872010-05-16 20:52:23 +02001259 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1260
Harald Welte52af1952009-12-13 10:53:12 +01001261 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1262
1263 return CMD_SUCCESS;
1264}
1265
Harald Weltea310f3e2009-12-14 09:00:24 +01001266DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1267 "mm info (0|1)",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001268 "Mobility Management\n"
1269 "Send MM INFO after LOC UPD ACCEPT\n"
1270 "Disable\n" "Enable\n")
Harald Weltea310f3e2009-12-14 09:00:24 +01001271{
Harald Welte40152872010-05-16 20:52:23 +02001272 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1273
Harald Weltea310f3e2009-12-14 09:00:24 +01001274 gsmnet->send_mm_info = atoi(argv[0]);
1275
1276 return CMD_SUCCESS;
1277}
1278
Harald Welte9e002452010-05-11 21:53:49 +02001279#define HANDOVER_STR "Handover Options\n"
1280
Harald Welte0af9c9f2009-12-19 21:41:52 +01001281DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1282 "handover (0|1)",
Harald Welte9e002452010-05-11 21:53:49 +02001283 HANDOVER_STR
1284 "Don't perform in-call handover\n"
1285 "Perform in-call handover\n")
Harald Welte0af9c9f2009-12-19 21:41:52 +01001286{
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001287 int enable = atoi(argv[0]);
Harald Welte40152872010-05-16 20:52:23 +02001288 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001289
1290 if (enable && ipacc_rtp_direct) {
Harald Welteaa2c3032009-12-20 13:51:01 +01001291 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1292 "is enabled by using the -P command line option%s",
1293 VTY_NEWLINE);
1294 return CMD_WARNING;
1295 }
Holger Hans Peter Freyther3524d4b2010-01-07 16:14:38 +01001296 gsmnet->handover.active = enable;
Harald Welte0af9c9f2009-12-19 21:41:52 +01001297
1298 return CMD_SUCCESS;
1299}
1300
Harald Welte9e002452010-05-11 21:53:49 +02001301#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1302#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1303#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1304#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001305#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte9e002452010-05-11 21:53:49 +02001306
Harald Weltea8062f12009-12-21 16:51:50 +01001307DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1308 "handover window rxlev averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001309 HO_WIN_RXLEV_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001310 "How many RxLev measurements are used for averaging\n"
1311 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001312{
Harald Welte40152872010-05-16 20:52:23 +02001313 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001314 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1315 return CMD_SUCCESS;
1316}
1317
1318DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1319 "handover window rxqual averaging <1-10>",
Harald Welte9e002452010-05-11 21:53:49 +02001320 HO_WIN_RXQUAL_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001321 "How many RxQual measurements are used for averaging\n"
1322 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001323{
Harald Welte40152872010-05-16 20:52:23 +02001324 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001325 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1326 return CMD_SUCCESS;
1327}
1328
1329DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1330 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001331 HO_WIN_RXLEV_STR "Neighbor\n"
1332 "How many RxQual measurements are used for averaging\n"
1333 HO_AVG_COUNT_STR)
Harald Weltea8062f12009-12-21 16:51:50 +01001334{
Harald Welte40152872010-05-16 20:52:23 +02001335 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001336 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1337 return CMD_SUCCESS;
1338}
1339
1340DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1341 "handover power budget interval <1-99>",
Harald Welte9e002452010-05-11 21:53:49 +02001342 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001343 "How often to check if we have a better cell (SACCH frames)\n"
1344 "Interval\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001345{
Harald Welte40152872010-05-16 20:52:23 +02001346 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001347 gsmnet->handover.pwr_interval = atoi(argv[0]);
1348 return CMD_SUCCESS;
1349}
1350
1351DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1352 "handover power budget hysteresis <0-999>",
Harald Welte9e002452010-05-11 21:53:49 +02001353 HO_PBUDGET_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001354 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1355 "Hysteresis\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001356{
Harald Welte40152872010-05-16 20:52:23 +02001357 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001358 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1359 return CMD_SUCCESS;
1360}
1361
1362DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1363 "handover maximum distance <0-9999>",
Harald Welte9e002452010-05-11 21:53:49 +02001364 HANDOVER_STR
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001365 "How big is the maximum timing advance before HO is forced\n"
1366 "Distance\n" "Number\n")
Harald Weltea8062f12009-12-21 16:51:50 +01001367{
Harald Welte40152872010-05-16 20:52:23 +02001368 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Weltea8062f12009-12-21 16:51:50 +01001369 gsmnet->handover.max_distance = atoi(argv[0]);
1370 return CMD_SUCCESS;
1371}
Harald Welte0af9c9f2009-12-19 21:41:52 +01001372
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001373DEFUN(cfg_net_pag_any_tch,
1374 cfg_net_pag_any_tch_cmd,
1375 "paging any use tch (0|1)",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001376 "Assign a TCH when receiving a Paging Any request\n"
1377 "Any Channel\n" "Use\n" "TCH\n"
1378 "Do not use TCH for Paging Request Any\n"
1379 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001380{
Holger Hans Peter Freytherc5628882010-09-06 10:09:19 +08001381 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08001382 gsmnet->pag_any_tch = atoi(argv[0]);
1383 gsm_net_update_ctype(gsmnet);
1384 return CMD_SUCCESS;
1385}
1386
Holger Hans Peter Freyther13ae9802009-12-22 08:27:21 +01001387#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001388 DEFUN(cfg_net_T##number, \
1389 cfg_net_T##number##_cmd, \
1390 "timer t" #number " <0-65535>", \
Harald Welte9e002452010-05-11 21:53:49 +02001391 "Configure GSM Timers\n" \
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001392 doc "Timer Value\n") \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001393{ \
Harald Welte40152872010-05-16 20:52:23 +02001394 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001395 int value = atoi(argv[0]); \
1396 \
1397 if (value < 0 || value > 65535) { \
1398 vty_out(vty, "Timer value %s out of range.%s", \
1399 argv[0], VTY_NEWLINE); \
1400 return CMD_WARNING; \
1401 } \
1402 \
1403 gsmnet->T##number = value; \
1404 return CMD_SUCCESS; \
1405}
1406
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001407DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1408DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte9b77f612012-06-03 13:01:47 +02001409DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001410DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freyther969a4052011-12-28 16:21:05 +01001411DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001412DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1413DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1414DECLARE_TIMER(3115, "Currently not used.\n")
1415DECLARE_TIMER(3117, "Currently not used.\n")
1416DECLARE_TIMER(3119, "Currently not used.\n")
1417DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1418DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001419
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001420DEFUN(cfg_net_dtx,
1421 cfg_net_dtx_cmd,
1422 "dtx-used (0|1)",
1423 "Enable the usage of DTX.\n"
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001424 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08001425{
1426 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1427 gsmnet->dtx_enabled = atoi(argv[0]);
1428 return CMD_SUCCESS;
1429}
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01001430
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01001431DEFUN(cfg_net_subscr_keep,
1432 cfg_net_subscr_keep_cmd,
1433 "subscriber-keep-in-ram (0|1)",
1434 "Keep unused subscribers in RAM.\n"
1435 "Delete unused subscribers\n" "Keep unused subscribers\n")
1436{
1437 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1438 gsmnet->keep_subscr = atoi(argv[0]);
1439 return CMD_SUCCESS;
1440}
1441
Harald Welte59b04682009-06-10 05:40:52 +08001442/* per-BTS configuration */
1443DEFUN(cfg_bts,
1444 cfg_bts_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02001445 "bts <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001446 "Select a BTS to configure\n"
1447 "BTS Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08001448{
Harald Welte40152872010-05-16 20:52:23 +02001449 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte59b04682009-06-10 05:40:52 +08001450 int bts_nr = atoi(argv[0]);
1451 struct gsm_bts *bts;
1452
Harald Weltee712a5f2009-06-21 16:17:15 +02001453 if (bts_nr > gsmnet->num_bts) {
1454 vty_out(vty, "%% The next unused BTS number is %u%s",
1455 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08001456 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02001457 } else if (bts_nr == gsmnet->num_bts) {
1458 /* allocate a new one */
Harald Weltec7881282011-06-05 13:31:33 +02001459 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1460 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02001461 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02001462 bts = gsm_bts_num(gsmnet, bts_nr);
1463
Daniel Willmann580085f2010-01-11 13:43:07 +01001464 if (!bts) {
1465 vty_out(vty, "%% Unable to allocate BTS %u%s",
1466 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee712a5f2009-06-21 16:17:15 +02001467 return CMD_WARNING;
Daniel Willmann580085f2010-01-11 13:43:07 +01001468 }
Harald Welte59b04682009-06-10 05:40:52 +08001469
1470 vty->index = bts;
Harald Welte8791dac2010-05-14 17:59:53 +02001471 vty->index_sub = &bts->description;
Harald Welte59b04682009-06-10 05:40:52 +08001472 vty->node = BTS_NODE;
1473
1474 return CMD_SUCCESS;
1475}
1476
1477DEFUN(cfg_bts_type,
1478 cfg_bts_type_cmd,
Harald Welte85a77b12012-08-17 13:02:12 +02001479 "type TYPE", /* dynamically created */
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001480 "Set the BTS type\n" "Type\n")
Harald Welte59b04682009-06-10 05:40:52 +08001481{
1482 struct gsm_bts *bts = vty->index;
Harald Welte59698fb2010-01-10 18:01:52 +01001483 int rc;
Harald Welte59b04682009-06-10 05:40:52 +08001484
Harald Welte59698fb2010-01-10 18:01:52 +01001485 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1486 if (rc < 0)
1487 return CMD_WARNING;
Harald Welte25572872009-10-20 00:22:00 +02001488
Harald Welte59b04682009-06-10 05:40:52 +08001489 return CMD_SUCCESS;
1490}
1491
Harald Welte91afe4c2009-06-20 18:15:19 +02001492DEFUN(cfg_bts_band,
1493 cfg_bts_band_cmd,
1494 "band BAND",
Holger Hans Peter Freythere8127042011-10-03 23:42:06 +02001495 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Welte91afe4c2009-06-20 18:15:19 +02001496{
1497 struct gsm_bts *bts = vty->index;
Harald Welte62868882009-08-08 16:12:58 +02001498 int band = gsm_band_parse(argv[0]);
Harald Welte91afe4c2009-06-20 18:15:19 +02001499
1500 if (band < 0) {
1501 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1502 band, VTY_NEWLINE);
1503 return CMD_WARNING;
1504 }
1505
1506 bts->band = band;
1507
1508 return CMD_SUCCESS;
1509}
1510
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001511DEFUN(cfg_bts_ci,
1512 cfg_bts_ci_cmd,
1513 "cell_identity <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001514 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02001515{
1516 struct gsm_bts *bts = vty->index;
1517 int ci = atoi(argv[0]);
1518
1519 if (ci < 0 || ci > 0xffff) {
1520 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1521 ci, VTY_NEWLINE);
1522 return CMD_WARNING;
1523 }
1524 bts->cell_identity = ci;
1525
1526 return CMD_SUCCESS;
1527}
1528
Harald Welte59b04682009-06-10 05:40:52 +08001529DEFUN(cfg_bts_lac,
1530 cfg_bts_lac_cmd,
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001531 "location_area_code <0-65535>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001532 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001533{
1534 struct gsm_bts *bts = vty->index;
1535 int lac = atoi(argv[0]);
1536
Holger Hans Peter Freyther54a22832009-09-29 14:02:33 +02001537 if (lac < 0 || lac > 0xffff) {
1538 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001539 lac, VTY_NEWLINE);
1540 return CMD_WARNING;
1541 }
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +02001542
1543 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1544 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1545 lac, VTY_NEWLINE);
1546 return CMD_WARNING;
1547 }
1548
Harald Welte59b04682009-06-10 05:40:52 +08001549 bts->location_area_code = lac;
1550
1551 return CMD_SUCCESS;
1552}
1553
Harald Weltea54a2bb2009-12-01 18:04:30 +05301554
Harald Welte59b04682009-06-10 05:40:52 +08001555DEFUN(cfg_bts_tsc,
1556 cfg_bts_tsc_cmd,
Harald Weltede896da2012-05-31 10:57:08 +02001557 "training_sequence_code <0-7>",
Holger Hans Peter Freyther29844222012-07-21 00:27:10 +02001558 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte59b04682009-06-10 05:40:52 +08001559{
1560 struct gsm_bts *bts = vty->index;
1561 int tsc = atoi(argv[0]);
1562
Harald Welte59b04682009-06-10 05:40:52 +08001563 bts->tsc = tsc;
1564
1565 return CMD_SUCCESS;
1566}
1567
1568DEFUN(cfg_bts_bsic,
1569 cfg_bts_bsic_cmd,
1570 "base_station_id_code <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001571 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1572 "BSIC of this BTS\n")
Harald Welte59b04682009-06-10 05:40:52 +08001573{
1574 struct gsm_bts *bts = vty->index;
1575 int bsic = atoi(argv[0]);
1576
1577 if (bsic < 0 || bsic > 0x3f) {
Harald Welte62868882009-08-08 16:12:58 +02001578 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte59b04682009-06-10 05:40:52 +08001579 bsic, VTY_NEWLINE);
1580 return CMD_WARNING;
1581 }
1582 bts->bsic = bsic;
1583
1584 return CMD_SUCCESS;
1585}
1586
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001587DEFUN(cfg_bts_timezone,
1588 cfg_bts_timezone_cmd,
1589 "timezone <-19-19> (0|15|30|45)",
Harald Welte557f3992012-08-16 23:23:50 +02001590 "Set the Timezone Offset of this BTS\n"
1591 "Timezone offset (hours)\n"
1592 "Timezone offset (00 minutes)\n"
1593 "Timezone offset (15 minutes)\n"
1594 "Timezone offset (30 minutes)\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001595 "Timezone offset (45 minutes)\n"
Harald Welte557f3992012-08-16 23:23:50 +02001596 )
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001597{
1598 struct gsm_bts *bts = vty->index;
1599 int tzhr = atoi(argv[0]);
1600 int tzmn = atoi(argv[1]);
1601
Harald Welte5c3abf92012-07-08 16:48:11 +02001602 bts->tz.hr = tzhr;
1603 bts->tz.mn = tzmn;
1604 bts->tz.override = 1;
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001605
1606 return CMD_SUCCESS;
1607}
1608
1609DEFUN(cfg_bts_no_timezone,
1610 cfg_bts_no_timezone_cmd,
1611 "no timezone",
Harald Welte557f3992012-08-16 23:23:50 +02001612 NO_STR
1613 "Disable BTS specific timezone\n")
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001614{
1615 struct gsm_bts *bts = vty->index;
Harald Welte5c3abf92012-07-08 16:48:11 +02001616
1617 bts->tz.override = 0;
1618
Gus Bourgf9dc16b2011-12-02 10:18:17 +01001619 return CMD_SUCCESS;
1620}
Harald Welte59b04682009-06-10 05:40:52 +08001621
1622DEFUN(cfg_bts_unit_id,
1623 cfg_bts_unit_id_cmd,
Harald Weltef515aa02009-08-07 13:27:09 +02001624 "ip.access unit_id <0-65534> <0-255>",
Harald Welte557f3992012-08-16 23:23:50 +02001625 "Abis/IP specific options\n"
1626 "Set the IPA BTS Unit ID\n"
1627 "Unit ID (Site)\n"
1628 "Unit ID (BTS)\n")
Harald Welte59b04682009-06-10 05:40:52 +08001629{
1630 struct gsm_bts *bts = vty->index;
1631 int site_id = atoi(argv[0]);
1632 int bts_id = atoi(argv[1]);
1633
Harald Weltef515aa02009-08-07 13:27:09 +02001634 if (!is_ipaccess_bts(bts)) {
1635 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1636 return CMD_WARNING;
1637 }
1638
Harald Welte59b04682009-06-10 05:40:52 +08001639 bts->ip_access.site_id = site_id;
1640 bts->ip_access.bts_id = bts_id;
1641
1642 return CMD_SUCCESS;
1643}
1644
Harald Welte8b3c5952013-03-12 13:57:05 +01001645DEFUN(cfg_bts_rsl_ip,
1646 cfg_bts_rsl_ip_cmd,
1647 "ip.access rsl-ip A.B.C.D",
1648 "Abis/IP specific options\n"
1649 "Set the IPA RSL IP Address of the BSC\n"
1650 "Destination IP address for RSL connection\n")
1651{
1652 struct gsm_bts *bts = vty->index;
1653 struct in_addr ia;
1654
1655 if (!is_ipaccess_bts(bts)) {
1656 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1657 return CMD_WARNING;
1658 }
1659
1660 inet_aton(argv[0], &ia);
1661 bts->ip_access.rsl_ip = ntohl(ia.s_addr);
1662
1663 return CMD_SUCCESS;
1664}
1665
1666
Harald Welte08011e22011-03-04 13:41:31 +01001667DEFUN(cfg_bts_serno,
1668 cfg_bts_serno_cmd,
1669 "hsl serial-number STRING",
Harald Welte557f3992012-08-16 23:23:50 +02001670 "HSL BTS specific options\n"
1671 "Set the HSL Serial Number of this BTS\n"
1672 "Serial Number of this HSL BTS\n")
Harald Welte08011e22011-03-04 13:41:31 +01001673{
1674 struct gsm_bts *bts = vty->index;
1675
1676 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1677 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1678 return CMD_WARNING;
1679 }
1680
1681 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1682
1683 return CMD_SUCCESS;
1684}
1685
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001686DEFUN(cfg_bts_nokia_site_skip_reset,
1687 cfg_bts_nokia_site_skip_reset_cmd,
1688 "nokia_site skip-reset (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001689 "Nokia *Site related commands\n"
1690 "Skip the reset step during bootstrap process of this BTS\n"
1691 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautcb8e8432011-10-17 14:04:55 +02001692{
1693 struct gsm_bts *bts = vty->index;
1694
1695 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1696 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1697 return CMD_WARNING;
1698 }
1699
1700 bts->nokia.skip_reset = atoi(argv[0]);
1701
1702 return CMD_SUCCESS;
1703}
1704
Harald Welte9e002452010-05-11 21:53:49 +02001705#define OML_STR "Organization & Maintenance Link\n"
Harald Welte557f3992012-08-16 23:23:50 +02001706#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte9e002452010-05-11 21:53:49 +02001707
Harald Welte25572872009-10-20 00:22:00 +02001708DEFUN(cfg_bts_stream_id,
1709 cfg_bts_stream_id_cmd,
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001710 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte9e002452010-05-11 21:53:49 +02001711 OML_STR IPA_STR
Harald Welte557f3992012-08-16 23:23:50 +02001712 "Set the ip.access Stream ID of the OML link of this BTS\n"
1713 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte25572872009-10-20 00:22:00 +02001714{
1715 struct gsm_bts *bts = vty->index;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001716 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte25572872009-10-20 00:22:00 +02001717
1718 if (!is_ipaccess_bts(bts)) {
1719 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1720 return CMD_WARNING;
1721 }
1722
1723 bts->oml_tei = stream_id;
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001724 /* This is used by e1inp_bind_ops callback for each BTS model. */
1725 bts->oml_e1_link.e1_nr = linenr;
1726
1727 return CMD_SUCCESS;
1728}
1729
1730DEFUN(cfg_bts_hsl_oml,
1731 cfg_bts_hsl_oml_cmd,
1732 "oml hsl line E1_LINE",
Harald Welte557f3992012-08-16 23:23:50 +02001733 OML_STR "HSL femto Specific Options\n"
Harald Welte764c8e12012-08-17 09:57:25 +02001734 "Set OML link of this HSL femto BTS\n"
1735 "Virtual E1/T1 line number\n")
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02001736{
1737 struct gsm_bts *bts = vty->index;
1738 int linenr = atoi(argv[0]);
1739
1740 if (!(bts->type == GSM_BTS_TYPE_HSL_FEMTO)) {
1741 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1742 return CMD_WARNING;
1743 }
1744
1745 bts->oml_e1_link.e1_nr = linenr;
Harald Welte25572872009-10-20 00:22:00 +02001746
1747 return CMD_SUCCESS;
1748}
1749
Harald Weltefa2015f2012-08-17 09:52:03 +02001750#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte25572872009-10-20 00:22:00 +02001751
Harald Welte62868882009-08-08 16:12:58 +02001752DEFUN(cfg_bts_oml_e1,
1753 cfg_bts_oml_e1_cmd,
1754 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltefa2015f2012-08-17 09:52:03 +02001755 OML_E1_STR
1756 "E1/T1 line number to be used for OML\n"
Harald Welte557f3992012-08-16 23:23:50 +02001757 "E1/T1 line number to be used for OML\n"
1758 "E1/T1 timeslot to be used for OML\n"
1759 "E1/T1 timeslot to be used for OML\n"
1760 "E1/T1 sub-slot to be used for OML\n"
1761 "Use E1/T1 sub-slot 0\n"
1762 "Use E1/T1 sub-slot 1\n"
1763 "Use E1/T1 sub-slot 2\n"
1764 "Use E1/T1 sub-slot 3\n"
1765 "Use full E1 slot 3\n"
1766 )
Harald Welte62868882009-08-08 16:12:58 +02001767{
1768 struct gsm_bts *bts = vty->index;
1769
1770 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1771
1772 return CMD_SUCCESS;
1773}
1774
1775
1776DEFUN(cfg_bts_oml_e1_tei,
1777 cfg_bts_oml_e1_tei_cmd,
1778 "oml e1 tei <0-63>",
Harald Welte9e002452010-05-11 21:53:49 +02001779 OML_E1_STR
Harald Welte557f3992012-08-16 23:23:50 +02001780 "Set the TEI to be used for OML\n"
1781 "TEI Number\n")
Harald Welte62868882009-08-08 16:12:58 +02001782{
1783 struct gsm_bts *bts = vty->index;
1784
1785 bts->oml_tei = atoi(argv[0]);
1786
1787 return CMD_SUCCESS;
1788}
1789
Harald Welte3e774612009-08-10 13:48:16 +02001790DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1791 "channel allocator (ascending|descending)",
Harald Welte9e002452010-05-11 21:53:49 +02001792 "Channnel Allocator\n" "Channel Allocator\n"
1793 "Allocate Timeslots and Transceivers in ascending order\n"
1794 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte3e774612009-08-10 13:48:16 +02001795{
1796 struct gsm_bts *bts = vty->index;
1797
1798 if (!strcmp(argv[0], "ascending"))
1799 bts->chan_alloc_reverse = 0;
1800 else
1801 bts->chan_alloc_reverse = 1;
1802
1803 return CMD_SUCCESS;
1804}
1805
Harald Welte9e002452010-05-11 21:53:49 +02001806#define RACH_STR "Random Access Control Channel\n"
1807
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001808DEFUN(cfg_bts_rach_tx_integer,
1809 cfg_bts_rach_tx_integer_cmd,
1810 "rach tx integer <0-15>",
Harald Welte9e002452010-05-11 21:53:49 +02001811 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001812 "Set the raw tx integer value in RACH Control parameters IE\n"
1813 "Set the raw tx integer value in RACH Control parameters IE\n"
1814 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001815{
1816 struct gsm_bts *bts = vty->index;
1817 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1818 return CMD_SUCCESS;
1819}
1820
1821DEFUN(cfg_bts_rach_max_trans,
1822 cfg_bts_rach_max_trans_cmd,
1823 "rach max transmission (1|2|4|7)",
Harald Welte9e002452010-05-11 21:53:49 +02001824 RACH_STR
Harald Welte557f3992012-08-16 23:23:50 +02001825 "Set the maximum number of RACH burst transmissions\n"
1826 "Set the maximum number of RACH burst transmissions\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001827 "Maximum number of 1 RACH burst transmissions\n"
1828 "Maximum number of 2 RACH burst transmissions\n"
1829 "Maximum number of 4 RACH burst transmissions\n"
1830 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01001831{
1832 struct gsm_bts *bts = vty->index;
1833 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1834 return CMD_SUCCESS;
1835}
1836
Andreas Eversberg14e12f22012-10-13 07:27:47 +02001837#define CD_STR "Channel Description\n"
1838
1839DEFUN(cfg_bts_chan_desc_att,
1840 cfg_bts_chan_desc_att_cmd,
1841 "channel-descrption attach (0|1)",
1842 CD_STR
1843 "Set if attachment is required\n"
1844 "Attachment is NOT required\n"
1845 "Attachment is required (standard)\n")
1846{
1847 struct gsm_bts *bts = vty->index;
1848 bts->si_common.chan_desc.att = atoi(argv[0]);
1849 return CMD_SUCCESS;
1850}
1851
1852DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1853 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1854 "channel-descrption bs-pa-mfrms <2-9>",
1855 CD_STR
1856 "Set number of multiframe periods for paging groups\n"
1857 "Number of multiframe periods for paging groups\n")
1858{
1859 struct gsm_bts *bts = vty->index;
1860 int bs_pa_mfrms = atoi(argv[0]);
1861
1862 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1863 return CMD_SUCCESS;
1864}
1865
1866DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1867 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1868 "channel-descrption bs-ag-blks-res <0-7>",
1869 CD_STR
1870 "Set number of blocks reserved for access grant\n"
1871 "Number of blocks reserved for access grant\n")
1872{
1873 struct gsm_bts *bts = vty->index;
1874 int bs_ag_blks_res = atoi(argv[0]);
1875
1876 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1877 return CMD_SUCCESS;
1878}
1879
Harald Welte9e002452010-05-11 21:53:49 +02001880#define NM_STR "Network Management\n"
1881
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001882DEFUN(cfg_bts_rach_nm_b_thresh,
1883 cfg_bts_rach_nm_b_thresh_cmd,
1884 "rach nm busy threshold <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02001885 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001886 "Set the NM Busy Threshold\n"
1887 "Set the NM Busy Threshold\n"
1888 "NM Busy Threshold in dB")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001889{
1890 struct gsm_bts *bts = vty->index;
1891 bts->rach_b_thresh = atoi(argv[0]);
1892 return CMD_SUCCESS;
1893}
1894
1895DEFUN(cfg_bts_rach_nm_ldavg,
1896 cfg_bts_rach_nm_ldavg_cmd,
1897 "rach nm load average <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02001898 RACH_STR NM_STR
Harald Welte557f3992012-08-16 23:23:50 +02001899 "Set the NM Loadaverage Slots value\n"
1900 "Set the NM Loadaverage Slots value\n"
1901 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08001902{
1903 struct gsm_bts *bts = vty->index;
1904 bts->rach_ldavg_slots = atoi(argv[0]);
1905 return CMD_SUCCESS;
1906}
1907
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001908DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1909 "cell barred (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001910 "Should this cell be barred from access?\n"
1911 "Should this cell be barred from access?\n"
1912 "Cell should NOT be barred\n"
1913 "Cell should be barred\n")
1914
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001915{
1916 struct gsm_bts *bts = vty->index;
1917
Harald Welte8c973ba2009-12-21 23:08:18 +01001918 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02001919
1920 return CMD_SUCCESS;
1921}
1922
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001923DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1924 "rach emergency call allowed (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001925 RACH_STR
1926 "Should this cell allow emergency calls?\n"
1927 "Should this cell allow emergency calls?\n"
1928 "Should this cell allow emergency calls?\n"
1929 "Do NOT allow emergency calls\n"
1930 "Allow emergency calls\n")
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08001931{
1932 struct gsm_bts *bts = vty->index;
1933
1934 if (atoi(argv[0]) == 0)
1935 bts->si_common.rach_control.t2 |= 0x4;
1936 else
1937 bts->si_common.rach_control.t2 &= ~0x4;
1938
1939 return CMD_SUCCESS;
1940}
1941
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001942DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1943 "ms max power <0-40>",
Harald Welte557f3992012-08-16 23:23:50 +02001944 "MS Options\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02001945 "Maximum transmit power of the MS\n"
1946 "Maximum transmit power of the MS\n"
Harald Welte557f3992012-08-16 23:23:50 +02001947 "Maximum transmit power of the MS in dBm")
Harald Welte (local)cbd46102009-08-13 10:14:26 +02001948{
1949 struct gsm_bts *bts = vty->index;
1950
1951 bts->ms_max_power = atoi(argv[0]);
1952
1953 return CMD_SUCCESS;
1954}
1955
Harald Welte557f3992012-08-16 23:23:50 +02001956#define CELL_STR "Cell Parameters\n"
1957
Harald Welteb761bf82009-12-12 18:17:25 +01001958DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1959 "cell reselection hysteresis <0-14>",
Harald Welte557f3992012-08-16 23:23:50 +02001960 CELL_STR "Cell re-selection parameters\n"
1961 "Cell Re-Selection Hysteresis in dB\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001962 "Cell Re-Selection Hysteresis in dB")
1963{
1964 struct gsm_bts *bts = vty->index;
1965
1966 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1967
1968 return CMD_SUCCESS;
1969}
1970
1971DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1972 "rxlev access min <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02001973 "Minimum RxLev needed for cell access\n"
1974 "Minimum RxLev needed for cell access\n"
1975 "Minimum RxLev needed for cell access\n"
Harald Welteb761bf82009-12-12 18:17:25 +01001976 "Minimum RxLev needed for cell access (better than -110dBm)")
1977{
1978 struct gsm_bts *bts = vty->index;
1979
1980 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1981
1982 return CMD_SUCCESS;
1983}
1984
Sylvain Munaut00d71462010-11-28 18:17:28 +01001985DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1986 "cell bar qualify (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02001987 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1988 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01001989{
1990 struct gsm_bts *bts = vty->index;
1991
1992 bts->si_common.cell_ro_sel_par.present = 1;
1993 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1994
1995 return CMD_SUCCESS;
1996}
1997
1998DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1999 "cell reselection offset <0-126>",
Harald Welte557f3992012-08-16 23:23:50 +02002000 CELL_STR "Cell Re-Selection Parameters\n"
2001 "Cell Re-Selection Offset (CRO) in dB\n"
2002 "Cell Re-Selection Offset (CRO) in dB\n"
2003 )
Sylvain Munaut00d71462010-11-28 18:17:28 +01002004{
2005 struct gsm_bts *bts = vty->index;
2006
2007 bts->si_common.cell_ro_sel_par.present = 1;
2008 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
2009
2010 return CMD_SUCCESS;
2011}
2012
2013DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
2014 "temporary offset <0-60>",
Harald Welte557f3992012-08-16 23:23:50 +02002015 "Cell selection temporary negative offset\n"
2016 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002017 "Cell selection temporary negative offset in dB")
2018{
2019 struct gsm_bts *bts = vty->index;
2020
2021 bts->si_common.cell_ro_sel_par.present = 1;
2022 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
2023
2024 return CMD_SUCCESS;
2025}
2026
2027DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
2028 "temporary offset infinite",
Harald Welte557f3992012-08-16 23:23:50 +02002029 "Cell selection temporary negative offset\n"
2030 "Cell selection temporary negative offset\n"
Sylvain Munaut00d71462010-11-28 18:17:28 +01002031 "Sets cell selection temporary negative offset to infinity")
2032{
2033 struct gsm_bts *bts = vty->index;
2034
2035 bts->si_common.cell_ro_sel_par.present = 1;
2036 bts->si_common.cell_ro_sel_par.temp_offs = 7;
2037
2038 return CMD_SUCCESS;
2039}
2040
2041DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2042 "penalty time <20-620>",
Harald Welte557f3992012-08-16 23:23:50 +02002043 "Cell selection penalty time\n"
2044 "Cell selection penalty time\n"
2045 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaut00d71462010-11-28 18:17:28 +01002046{
2047 struct gsm_bts *bts = vty->index;
2048
2049 bts->si_common.cell_ro_sel_par.present = 1;
2050 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2051
2052 return CMD_SUCCESS;
2053}
2054
2055DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2056 "penalty time reserved",
Harald Welte557f3992012-08-16 23:23:50 +02002057 "Cell selection penalty time\n"
2058 "Cell selection penalty time\n"
2059 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaut00d71462010-11-28 18:17:28 +01002060 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2061 "and TEMPORARY_OFFSET is ignored)")
2062{
2063 struct gsm_bts *bts = vty->index;
2064
2065 bts->si_common.cell_ro_sel_par.present = 1;
2066 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2067
2068 return CMD_SUCCESS;
2069}
2070
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002071DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann3e7db9e2012-12-27 00:02:01 +01002072 "periodic location update <6-1530>",
Harald Welte557f3992012-08-16 23:23:50 +02002073 "Periodic Location Updating Interval\n"
2074 "Periodic Location Updating Interval\n"
2075 "Periodic Location Updating Interval\n"
2076 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002077{
2078 struct gsm_bts *bts = vty->index;
2079
Dieter Spaarb0f746d2010-10-05 21:10:55 +02002080 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02002081
2082 return CMD_SUCCESS;
2083}
2084
Harald Welte9e002452010-05-11 21:53:49 +02002085#define GPRS_TEXT "GPRS Packet Network\n"
2086
Harald Welte410575a2010-03-14 23:30:30 +08002087DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welteb42fe342010-04-18 14:00:26 +02002088 "gprs cell bvci <2-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002089 GPRS_TEXT
2090 "GPRS Cell Settings\n"
Harald Welte557f3992012-08-16 23:23:50 +02002091 "GPRS BSSGP VC Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002092 "GPRS BSSGP VC Identifier")
2093{
2094 struct gsm_bts *bts = vty->index;
2095
Harald Weltecb20b7a2010-04-18 15:51:20 +02002096 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002097 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2098 return CMD_WARNING;
2099 }
2100
Harald Welte3055e332010-03-14 15:37:43 +08002101 bts->gprs.cell.bvci = atoi(argv[0]);
2102
2103 return CMD_SUCCESS;
2104}
2105
Harald Welte4a048c52010-03-22 11:48:36 +08002106DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2107 "gprs nsei <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002108 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002109 "GPRS NS Entity Identifier\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002110 "GPRS NS Entity Identifier")
2111{
2112 struct gsm_bts *bts = vty->index;
2113
Harald Weltecb20b7a2010-04-18 15:51:20 +02002114 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte4a048c52010-03-22 11:48:36 +08002115 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2116 return CMD_WARNING;
2117 }
2118
2119 bts->gprs.nse.nsei = atoi(argv[0]);
2120
2121 return CMD_SUCCESS;
2122}
2123
Harald Welte9e002452010-05-11 21:53:49 +02002124#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2125 "NSVC Logical Number\n"
Harald Welte4a048c52010-03-22 11:48:36 +08002126
Harald Welte3055e332010-03-14 15:37:43 +08002127DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2128 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002129 GPRS_TEXT NSVC_TEXT
2130 "NS Virtual Connection Identifier\n"
Harald Welte3055e332010-03-14 15:37:43 +08002131 "GPRS NS VC Identifier")
2132{
2133 struct gsm_bts *bts = vty->index;
2134 int idx = atoi(argv[0]);
2135
Harald Weltecb20b7a2010-04-18 15:51:20 +02002136 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002137 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2138 return CMD_WARNING;
2139 }
2140
Harald Welte3055e332010-03-14 15:37:43 +08002141 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2142
2143 return CMD_SUCCESS;
2144}
2145
Harald Welte410575a2010-03-14 23:30:30 +08002146DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2147 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002148 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002149 "GPRS NS Local UDP Port\n"
2150 "GPRS NS Local UDP Port\n"
2151 "GPRS NS Local UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002152 "GPRS NS Local UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002153{
2154 struct gsm_bts *bts = vty->index;
2155 int idx = atoi(argv[0]);
2156
Harald Weltecb20b7a2010-04-18 15:51:20 +02002157 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002158 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2159 return CMD_WARNING;
2160 }
2161
Harald Welte410575a2010-03-14 23:30:30 +08002162 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2163
2164 return CMD_SUCCESS;
2165}
2166
2167DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2168 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte9e002452010-05-11 21:53:49 +02002169 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002170 "GPRS NS Remote UDP Port\n"
2171 "GPRS NS Remote UDP Port\n"
Harald Welte764c8e12012-08-17 09:57:25 +02002172 "GPRS NS Remote UDP Port\n"
2173 "GPRS NS Remote UDP Port Number\n")
Harald Welte410575a2010-03-14 23:30:30 +08002174{
2175 struct gsm_bts *bts = vty->index;
2176 int idx = atoi(argv[0]);
2177
Harald Weltecb20b7a2010-04-18 15:51:20 +02002178 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002179 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2180 return CMD_WARNING;
2181 }
2182
Harald Welte410575a2010-03-14 23:30:30 +08002183 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2184
2185 return CMD_SUCCESS;
2186}
2187
2188DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2189 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte9e002452010-05-11 21:53:49 +02002190 GPRS_TEXT NSVC_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002191 "GPRS NS Remote IP Address\n"
2192 "GPRS NS Remote IP Address\n"
2193 "GPRS NS Remote IP Address\n")
Harald Welte410575a2010-03-14 23:30:30 +08002194{
2195 struct gsm_bts *bts = vty->index;
2196 int idx = atoi(argv[0]);
2197 struct in_addr ia;
2198
Harald Weltecb20b7a2010-04-18 15:51:20 +02002199 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002200 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2201 return CMD_WARNING;
2202 }
2203
Harald Welte410575a2010-03-14 23:30:30 +08002204 inet_aton(argv[1], &ia);
2205 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2206
2207 return CMD_SUCCESS;
2208}
2209
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002210DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Welte557f3992012-08-16 23:23:50 +02002211 "paging free <-1-1024>",
2212 "Paging options\n"
2213 "Only page when having a certain amount of free slots\n"
2214 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08002215{
2216 struct gsm_bts *bts = vty->index;
2217
2218 bts->paging.free_chans_need = atoi(argv[0]);
2219 return CMD_SUCCESS;
2220}
2221
Harald Weltea9251762010-05-11 23:50:21 +02002222DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2223 "gprs ns timer " NS_TIMERS " <0-255>",
2224 GPRS_TEXT "Network Service\n"
2225 "Network Service Timer\n"
2226 NS_TIMERS_HELP "Timer Value\n")
2227{
2228 struct gsm_bts *bts = vty->index;
2229 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2230 int val = atoi(argv[1]);
2231
2232 if (bts->gprs.mode == BTS_GPRS_NONE) {
2233 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2234 return CMD_WARNING;
2235 }
2236
2237 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2238 return CMD_WARNING;
2239
2240 bts->gprs.nse.timer[idx] = val;
2241
2242 return CMD_SUCCESS;
2243}
2244
2245#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 +02002246#define BSSGP_TIMERS_HELP \
2247 "Tbvc-block timeout\n" \
2248 "Tbvc-block retries\n" \
2249 "Tbvc-unblock retries\n" \
2250 "Tbvcc-reset timeout\n" \
2251 "Tbvc-reset retries\n" \
2252 "Tbvc-suspend timeout\n" \
2253 "Tbvc-suspend retries\n" \
2254 "Tbvc-resume timeout\n" \
2255 "Tbvc-resume retries\n" \
2256 "Tbvc-capa-update timeout\n" \
2257 "Tbvc-capa-update retries\n"
Harald Weltea9251762010-05-11 23:50:21 +02002258
2259DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2260 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2261 GPRS_TEXT "Cell / BSSGP\n"
2262 "Cell/BSSGP Timer\n"
2263 BSSGP_TIMERS_HELP "Timer Value\n")
2264{
2265 struct gsm_bts *bts = vty->index;
2266 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2267 int val = atoi(argv[1]);
2268
2269 if (bts->gprs.mode == BTS_GPRS_NONE) {
2270 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2271 return CMD_WARNING;
2272 }
2273
2274 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2275 return CMD_WARNING;
2276
2277 bts->gprs.cell.timer[idx] = val;
2278
2279 return CMD_SUCCESS;
2280}
2281
Harald Welte3055e332010-03-14 15:37:43 +08002282DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2283 "gprs routing area <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002284 GPRS_TEXT
Harald Welte557f3992012-08-16 23:23:50 +02002285 "GPRS Routing Area Code\n"
2286 "GPRS Routing Area Code\n"
2287 "GPRS Routing Area Code\n")
Harald Welte3055e332010-03-14 15:37:43 +08002288{
2289 struct gsm_bts *bts = vty->index;
2290
Harald Weltecb20b7a2010-04-18 15:51:20 +02002291 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltec05a4b12010-03-14 23:56:56 +08002292 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2293 return CMD_WARNING;
2294 }
2295
Harald Welte3055e332010-03-14 15:37:43 +08002296 bts->gprs.rac = atoi(argv[0]);
2297
2298 return CMD_SUCCESS;
2299}
2300
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01002301DEFUN(cfg_bts_gprs_net_ctrl_ord, cfg_bts_gprs_net_ctrl_ord_cmd,
2302 "gprs network-control-order (nc0|nc1|nc2)",
2303 GPRS_TEXT
2304 "GPRS Network Control Order\n"
2305 "MS controlled cell re-selection, no measurement reporting\n"
2306 "MS controlled cell re-selection, MS sends measurement reports\n"
2307 "Network controlled cell re-selection, MS sends measurement reports\n")
2308{
2309 struct gsm_bts *bts = vty->index;
2310
2311 if (bts->gprs.mode == BTS_GPRS_NONE) {
2312 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2313 return CMD_WARNING;
2314 }
2315
2316 bts->gprs.net_ctrl_ord = atoi(argv[0] + 2);
2317
2318 return CMD_SUCCESS;
2319}
2320
Harald Weltecb20b7a2010-04-18 15:51:20 +02002321DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2322 "gprs mode (none|gprs|egprs)",
Harald Welte9e002452010-05-11 21:53:49 +02002323 GPRS_TEXT
2324 "GPRS Mode for this BTS\n"
2325 "GPRS Disabled on this BTS\n"
2326 "GPRS Enabled on this BTS\n"
2327 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welte410575a2010-03-14 23:30:30 +08002328{
2329 struct gsm_bts *bts = vty->index;
Harald Welte20e275a2010-06-14 22:44:42 +02002330 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welte410575a2010-03-14 23:30:30 +08002331
Harald Welte20e275a2010-06-14 22:44:42 +02002332 if (mode != BTS_GPRS_NONE &&
2333 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2334 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2335 VTY_NEWLINE);
2336 return CMD_WARNING;
2337 }
2338 if (mode == BTS_GPRS_EGPRS &&
2339 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2340 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2341 VTY_NEWLINE);
2342 return CMD_WARNING;
2343 }
2344
2345 bts->gprs.mode = mode;
Harald Welte410575a2010-03-14 23:30:30 +08002346
2347 return CMD_SUCCESS;
2348}
2349
Harald Welted8acf142010-07-30 11:50:09 +02002350#define SI_TEXT "System Information Messages\n"
2351#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)"
2352#define SI_TYPE_HELP "System Information Type 1\n" \
2353 "System Information Type 2\n" \
2354 "System Information Type 3\n" \
2355 "System Information Type 4\n" \
2356 "System Information Type 5\n" \
2357 "System Information Type 6\n" \
2358 "System Information Type 7\n" \
2359 "System Information Type 8\n" \
2360 "System Information Type 9\n" \
2361 "System Information Type 10\n" \
2362 "System Information Type 13\n" \
2363 "System Information Type 16\n" \
2364 "System Information Type 17\n" \
2365 "System Information Type 18\n" \
2366 "System Information Type 19\n" \
2367 "System Information Type 20\n" \
2368 "System Information Type 2bis\n" \
2369 "System Information Type 2ter\n" \
2370 "System Information Type 2quater\n" \
2371 "System Information Type 5bis\n" \
2372 "System Information Type 5ter\n"
2373
2374DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2375 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2376 SI_TEXT SI_TYPE_HELP
2377 "System Information Mode\n"
2378 "Static user-specified\n"
2379 "Dynamic, BSC-computed\n")
2380{
2381 struct gsm_bts *bts = vty->index;
2382 int type;
2383
2384 type = get_string_value(osmo_sitype_strs, argv[0]);
2385 if (type < 0) {
2386 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2387 return CMD_WARNING;
2388 }
2389
2390 if (!strcmp(argv[1], "static"))
2391 bts->si_mode_static |= (1 << type);
2392 else
2393 bts->si_mode_static &= ~(1 << type);
2394
2395 return CMD_SUCCESS;
2396}
2397
2398DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2399 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2400 SI_TEXT SI_TYPE_HELP
2401 "Static System Information filling\n"
2402 "Static user-specified SI content in HEX notation\n")
2403{
2404 struct gsm_bts *bts = vty->index;
2405 int rc, type;
2406
2407 type = get_string_value(osmo_sitype_strs, argv[0]);
2408 if (type < 0) {
2409 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2410 return CMD_WARNING;
2411 }
2412
2413 if (!(bts->si_mode_static & (1 << type))) {
2414 vty_out(vty, "SI Type %s is not configured in static mode%s",
2415 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2416 return CMD_WARNING;
2417 }
2418
Harald Welte9f09ac32010-07-30 11:53:18 +02002419 /* Fill buffer with padding pattern */
2420 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2421
2422 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02002423 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welted8acf142010-07-30 11:50:09 +02002424 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2425 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2426 return CMD_WARNING;
2427 }
2428
2429 /* Mark this SI as present */
2430 bts->si_valid |= (1 << type);
2431
2432 return CMD_SUCCESS;
2433}
2434
Harald Welteca46eff2011-01-11 23:44:56 +01002435DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Weltef989b782011-02-15 11:43:27 +01002436 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welteca46eff2011-01-11 23:44:56 +01002437 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Weltef989b782011-02-15 11:43:27 +01002438 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2439 "Manual with different lists for SI2 and SI5\n")
Harald Welteca46eff2011-01-11 23:44:56 +01002440{
2441 struct gsm_bts *bts = vty->index;
Harald Weltef989b782011-02-15 11:43:27 +01002442 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welteca46eff2011-01-11 23:44:56 +01002443
Harald Weltef989b782011-02-15 11:43:27 +01002444 switch (mode) {
2445 case NL_MODE_MANUAL_SI5SEP:
2446 case NL_MODE_MANUAL:
Harald Welteca46eff2011-01-11 23:44:56 +01002447 /* make sure we clear the current list when switching to
2448 * manual mode */
2449 if (bts->neigh_list_manual_mode == 0)
2450 memset(&bts->si_common.data.neigh_list, 0,
2451 sizeof(bts->si_common.data.neigh_list));
Harald Weltef989b782011-02-15 11:43:27 +01002452 break;
2453 default:
2454 break;
2455 }
2456
2457 bts->neigh_list_manual_mode = mode;
Harald Welteca46eff2011-01-11 23:44:56 +01002458
2459 return CMD_SUCCESS;
2460}
2461
2462DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002463 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welteca46eff2011-01-11 23:44:56 +01002464 "Neighbor List\n" "Add to manual neighbor list\n"
2465 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2466 "ARFCN of neighbor\n")
2467{
2468 struct gsm_bts *bts = vty->index;
2469 struct bitvec *bv = &bts->si_common.neigh_list;
2470 uint16_t arfcn = atoi(argv[1]);
2471
2472 if (!bts->neigh_list_manual_mode) {
2473 vty_out(vty, "%% Cannot configure neighbor list in "
2474 "automatic mode%s", VTY_NEWLINE);
2475 return CMD_WARNING;
2476 }
2477
2478 if (!strcmp(argv[0], "add"))
2479 bitvec_set_bit_pos(bv, arfcn, 1);
2480 else
2481 bitvec_set_bit_pos(bv, arfcn, 0);
2482
2483 return CMD_SUCCESS;
2484}
2485
Harald Weltef989b782011-02-15 11:43:27 +01002486DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002487 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Welte557f3992012-08-16 23:23:50 +02002488 "SI5 Neighbor List\n"
Harald Weltef989b782011-02-15 11:43:27 +01002489 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2490 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2491 "ARFCN of neighbor\n")
2492{
2493 struct gsm_bts *bts = vty->index;
2494 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2495 uint16_t arfcn = atoi(argv[1]);
2496
2497 if (!bts->neigh_list_manual_mode) {
2498 vty_out(vty, "%% Cannot configure neighbor list in "
2499 "automatic mode%s", VTY_NEWLINE);
2500 return CMD_WARNING;
2501 }
2502
2503 if (!strcmp(argv[0], "add"))
2504 bitvec_set_bit_pos(bv, arfcn, 1);
2505 else
2506 bitvec_set_bit_pos(bv, arfcn, 0);
2507
2508 return CMD_SUCCESS;
2509}
Harald Welted8acf142010-07-30 11:50:09 +02002510
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02002511#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2512
2513DEFUN(cfg_bts_excl_rf_lock,
2514 cfg_bts_excl_rf_lock_cmd,
2515 "rf-lock-exclude",
2516 EXCL_RFLOCK_STR)
2517{
2518 struct gsm_bts *bts = vty->index;
2519 bts->excl_from_rf_lock = 1;
2520 return CMD_SUCCESS;
2521}
2522
2523DEFUN(cfg_bts_no_excl_rf_lock,
2524 cfg_bts_no_excl_rf_lock_cmd,
2525 "no rf-lock-exclude",
2526 NO_STR EXCL_RFLOCK_STR)
2527{
2528 struct gsm_bts *bts = vty->index;
2529 bts->excl_from_rf_lock = 0;
2530 return CMD_SUCCESS;
2531}
2532
Harald Welte9e002452010-05-11 21:53:49 +02002533#define TRX_TEXT "Radio Transceiver\n"
Harald Welte3e774612009-08-10 13:48:16 +02002534
Harald Welte59b04682009-06-10 05:40:52 +08002535/* per TRX configuration */
2536DEFUN(cfg_trx,
2537 cfg_trx_cmd,
Harald Welte2af06cb2012-08-17 12:50:14 +02002538 "trx <0-255>",
Harald Welte9e002452010-05-11 21:53:49 +02002539 TRX_TEXT
Harald Welte59b04682009-06-10 05:40:52 +08002540 "Select a TRX to configure")
2541{
2542 int trx_nr = atoi(argv[0]);
2543 struct gsm_bts *bts = vty->index;
2544 struct gsm_bts_trx *trx;
2545
Harald Weltee712a5f2009-06-21 16:17:15 +02002546 if (trx_nr > bts->num_trx) {
2547 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2548 bts->num_trx, VTY_NEWLINE);
Harald Welte59b04682009-06-10 05:40:52 +08002549 return CMD_WARNING;
Harald Weltee712a5f2009-06-21 16:17:15 +02002550 } else if (trx_nr == bts->num_trx) {
2551 /* we need to allocate a new one */
2552 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002553 } else
Harald Weltee712a5f2009-06-21 16:17:15 +02002554 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther71135142010-03-29 08:47:44 +02002555
Harald Weltee712a5f2009-06-21 16:17:15 +02002556 if (!trx)
2557 return CMD_WARNING;
Harald Welte59b04682009-06-10 05:40:52 +08002558
2559 vty->index = trx;
Harald Welte8791dac2010-05-14 17:59:53 +02002560 vty->index_sub = &trx->description;
Harald Welte59b04682009-06-10 05:40:52 +08002561 vty->node = TRX_NODE;
2562
2563 return CMD_SUCCESS;
2564}
2565
2566DEFUN(cfg_trx_arfcn,
2567 cfg_trx_arfcn_cmd,
Harald Welte09e4fad2012-01-29 13:24:12 +01002568 "arfcn <0-1023>",
Harald Welte764c8e12012-08-17 09:57:25 +02002569 "Set the ARFCN for this TRX\n"
2570 "Absolute Radio Frequency Channel Number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002571{
2572 int arfcn = atoi(argv[0]);
2573 struct gsm_bts_trx *trx = vty->index;
2574
2575 /* FIXME: check if this ARFCN is supported by this TRX */
2576
2577 trx->arfcn = arfcn;
2578
2579 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2580 /* FIXME: use OML layer to update the ARFCN */
2581 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2582
2583 return CMD_SUCCESS;
2584}
2585
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002586DEFUN(cfg_trx_nominal_power,
2587 cfg_trx_nominal_power_cmd,
2588 "nominal power <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002589 "Nominal TRX RF Power in dBm\n"
2590 "Nominal TRX RF Power in dBm\n"
2591 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01002592{
2593 struct gsm_bts_trx *trx = vty->index;
2594
2595 trx->nominal_power = atoi(argv[0]);
2596
2597 return CMD_SUCCESS;
2598}
2599
Harald Welte91afe4c2009-06-20 18:15:19 +02002600DEFUN(cfg_trx_max_power_red,
2601 cfg_trx_max_power_red_cmd,
2602 "max_power_red <0-100>",
Harald Welte557f3992012-08-16 23:23:50 +02002603 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Welte91afe4c2009-06-20 18:15:19 +02002604 "Reduction of maximum BS RF Power in dB\n")
2605{
2606 int maxpwr_r = atoi(argv[0]);
2607 struct gsm_bts_trx *trx = vty->index;
Harald Welte01acd742009-11-18 09:20:22 +01002608 int upper_limit = 24; /* default 12.21 max power red. */
Harald Welte91afe4c2009-06-20 18:15:19 +02002609
2610 /* FIXME: check if our BTS type supports more than 12 */
2611 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2612 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2613 maxpwr_r, VTY_NEWLINE);
2614 return CMD_WARNING;
2615 }
2616 if (maxpwr_r & 1) {
2617 vty_out(vty, "%% Power %d dB is not an even value%s",
2618 maxpwr_r, VTY_NEWLINE);
2619 return CMD_WARNING;
2620 }
2621
2622 trx->max_power_red = maxpwr_r;
2623
2624 /* FIXME: make sure we update this using OML */
2625
2626 return CMD_SUCCESS;
2627}
2628
Harald Welte62868882009-08-08 16:12:58 +02002629DEFUN(cfg_trx_rsl_e1,
2630 cfg_trx_rsl_e1_cmd,
2631 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002632 "RSL Parameters\n"
2633 "E1/T1 interface to be used for RSL\n"
2634 "E1/T1 interface to be used for RSL\n"
2635 "E1/T1 Line Number to be used for RSL\n"
2636 "E1/T1 Timeslot to be used for RSL\n"
2637 "E1/T1 Timeslot to be used for RSL\n"
2638 "E1/T1 Sub-slot to be used for RSL\n"
2639 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2640 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2641 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2642 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2643 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002644{
2645 struct gsm_bts_trx *trx = vty->index;
2646
2647 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2648
2649 return CMD_SUCCESS;
2650}
2651
2652DEFUN(cfg_trx_rsl_e1_tei,
2653 cfg_trx_rsl_e1_tei_cmd,
2654 "rsl e1 tei <0-63>",
Harald Welte557f3992012-08-16 23:23:50 +02002655 "RSL Parameters\n"
2656 "Set the TEI to be used for RSL\n"
2657 "Set the TEI to be used for RSL\n"
2658 "TEI to be used for RSL\n")
Harald Welte62868882009-08-08 16:12:58 +02002659{
2660 struct gsm_bts_trx *trx = vty->index;
2661
2662 trx->rsl_tei = atoi(argv[0]);
2663
2664 return CMD_SUCCESS;
2665}
2666
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002667DEFUN(cfg_trx_rf_locked,
2668 cfg_trx_rf_locked_cmd,
2669 "rf_locked (0|1)",
Harald Welte557f3992012-08-16 23:23:50 +02002670 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2671 "TRX is NOT RF locked (active)\n"
2672 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01002673{
2674 int locked = atoi(argv[0]);
2675 struct gsm_bts_trx *trx = vty->index;
2676
2677 gsm_trx_lock_rf(trx, locked);
2678 return CMD_SUCCESS;
2679}
Harald Welte62868882009-08-08 16:12:58 +02002680
Harald Welte59b04682009-06-10 05:40:52 +08002681/* per TS configuration */
2682DEFUN(cfg_ts,
2683 cfg_ts_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002684 "timeslot <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002685 "Select a Timeslot to configure\n"
2686 "Timeslot number\n")
Harald Welte59b04682009-06-10 05:40:52 +08002687{
2688 int ts_nr = atoi(argv[0]);
2689 struct gsm_bts_trx *trx = vty->index;
2690 struct gsm_bts_trx_ts *ts;
2691
2692 if (ts_nr >= TRX_NR_TS) {
2693 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2694 TRX_NR_TS, VTY_NEWLINE);
2695 return CMD_WARNING;
2696 }
2697
2698 ts = &trx->ts[ts_nr];
2699
2700 vty->index = ts;
2701 vty->node = TS_NODE;
2702
2703 return CMD_SUCCESS;
2704}
2705
Harald Welte3ffe1b32009-08-07 00:25:23 +02002706DEFUN(cfg_ts_pchan,
2707 cfg_ts_pchan_cmd,
Harald Welte2addf852012-08-17 12:42:06 +02002708 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002709 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte2addf852012-08-17 12:42:06 +02002710{
2711 struct gsm_bts_trx_ts *ts = vty->index;
2712 int pchanc;
2713
2714 pchanc = gsm_pchan_parse(argv[0]);
2715 if (pchanc < 0)
2716 return CMD_WARNING;
2717
2718 ts->pchan = pchanc;
2719
2720 return CMD_SUCCESS;
2721}
2722
2723/* used for backwards compatibility with old config files that still
2724 * have uppercase pchan type names */
2725DEFUN_HIDDEN(cfg_ts_pchan_compat,
2726 cfg_ts_pchan_compat_cmd,
Harald Welte3ffe1b32009-08-07 00:25:23 +02002727 "phys_chan_config PCHAN",
Holger Hans Peter Freytherebe37252013-03-03 09:32:08 +01002728 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002729{
2730 struct gsm_bts_trx_ts *ts = vty->index;
2731 int pchanc;
2732
2733 pchanc = gsm_pchan_parse(argv[0]);
2734 if (pchanc < 0)
2735 return CMD_WARNING;
2736
2737 ts->pchan = pchanc;
2738
2739 return CMD_SUCCESS;
2740}
2741
Harald Welte2addf852012-08-17 12:42:06 +02002742
2743
Harald Welte85771a42011-05-30 12:09:13 +02002744DEFUN(cfg_ts_tsc,
2745 cfg_ts_tsc_cmd,
2746 "training_sequence_code <0-7>",
Harald Welte557f3992012-08-16 23:23:50 +02002747 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte85771a42011-05-30 12:09:13 +02002748{
2749 struct gsm_bts_trx_ts *ts = vty->index;
2750
2751 ts->tsc = atoi(argv[0]);
2752
2753 return CMD_SUCCESS;
2754}
2755
Harald Weltea42a93f2010-06-14 22:26:10 +02002756#define HOPPING_STR "Configure frequency hopping\n"
2757
2758DEFUN(cfg_ts_hopping,
2759 cfg_ts_hopping_cmd,
2760 "hopping enabled (0|1)",
2761 HOPPING_STR "Enable or disable frequency hopping\n"
2762 "Disable frequency hopping\n" "Enable frequency hopping\n")
2763{
2764 struct gsm_bts_trx_ts *ts = vty->index;
Harald Welte059c1ef2010-06-14 22:47:37 +02002765 int enabled = atoi(argv[0]);
Harald Weltea42a93f2010-06-14 22:26:10 +02002766
Harald Welte059c1ef2010-06-14 22:47:37 +02002767 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2768 vty_out(vty, "BTS model does not support hopping%s",
2769 VTY_NEWLINE);
2770 return CMD_WARNING;
2771 }
2772
2773 ts->hopping.enabled = enabled;
Harald Weltea42a93f2010-06-14 22:26:10 +02002774
2775 return CMD_SUCCESS;
2776}
2777
Harald Welte67104d12009-09-12 13:05:33 +02002778DEFUN(cfg_ts_hsn,
2779 cfg_ts_hsn_cmd,
Harald Weltea42a93f2010-06-14 22:26:10 +02002780 "hopping sequence-number <0-63>",
2781 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002782 "Which hopping sequence to use for this channel\n"
2783 "Hopping Sequence Number (HSN)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002784{
2785 struct gsm_bts_trx_ts *ts = vty->index;
2786
2787 ts->hopping.hsn = atoi(argv[0]);
2788
2789 return CMD_SUCCESS;
2790}
2791
2792DEFUN(cfg_ts_maio,
2793 cfg_ts_maio_cmd,
2794 "hopping maio <0-63>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002795 HOPPING_STR
Harald Welte557f3992012-08-16 23:23:50 +02002796 "Which hopping MAIO to use for this channel\n"
2797 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte67104d12009-09-12 13:05:33 +02002798{
2799 struct gsm_bts_trx_ts *ts = vty->index;
2800
2801 ts->hopping.maio = atoi(argv[0]);
2802
2803 return CMD_SUCCESS;
2804}
2805
2806DEFUN(cfg_ts_arfcn_add,
2807 cfg_ts_arfcn_add_cmd,
2808 "hopping arfcn add <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002809 HOPPING_STR "Configure hopping ARFCN list\n"
2810 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002811{
2812 struct gsm_bts_trx_ts *ts = vty->index;
2813 int arfcn = atoi(argv[0]);
2814
Harald Weltea42a93f2010-06-14 22:26:10 +02002815 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2816
Harald Welte67104d12009-09-12 13:05:33 +02002817 return CMD_SUCCESS;
2818}
2819
2820DEFUN(cfg_ts_arfcn_del,
2821 cfg_ts_arfcn_del_cmd,
2822 "hopping arfcn del <0-1023>",
Harald Weltea42a93f2010-06-14 22:26:10 +02002823 HOPPING_STR "Configure hopping ARFCN list\n"
2824 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte67104d12009-09-12 13:05:33 +02002825{
2826 struct gsm_bts_trx_ts *ts = vty->index;
2827 int arfcn = atoi(argv[0]);
2828
Harald Weltea42a93f2010-06-14 22:26:10 +02002829 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2830
Harald Welte67104d12009-09-12 13:05:33 +02002831 return CMD_SUCCESS;
2832}
2833
Harald Welte3ffe1b32009-08-07 00:25:23 +02002834DEFUN(cfg_ts_e1_subslot,
2835 cfg_ts_e1_subslot_cmd,
Harald Welte62868882009-08-08 16:12:58 +02002836 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welte557f3992012-08-16 23:23:50 +02002837 "E1/T1 channel connected to this on-air timeslot\n"
2838 "E1/T1 channel connected to this on-air timeslot\n"
2839 "E1/T1 line connected to this on-air timeslot\n"
Harald Weltefa2015f2012-08-17 09:52:03 +02002840 "E1/T1 timeslot connected to this on-air timeslot\n"
2841 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Welte557f3992012-08-16 23:23:50 +02002842 "E1/T1 sub-slot connected to this on-air timeslot\n"
2843 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2844 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2845 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2846 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2847 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Welte3ffe1b32009-08-07 00:25:23 +02002848{
2849 struct gsm_bts_trx_ts *ts = vty->index;
2850
Harald Welte62868882009-08-08 16:12:58 +02002851 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Welte3ffe1b32009-08-07 00:25:23 +02002852
2853 return CMD_SUCCESS;
2854}
Harald Welte59b04682009-06-10 05:40:52 +08002855
Harald Weltea5b1dae2010-05-16 21:47:13 +02002856void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2857{
2858 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002859 osmo_counter_get(net->stats.chreq.total),
2860 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002861 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002862 osmo_counter_get(net->stats.chan.rf_fail),
2863 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002864 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002865 osmo_counter_get(net->stats.paging.attempted),
2866 osmo_counter_get(net->stats.paging.completed),
2867 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002868 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayuso1c450742011-05-06 12:13:10 +02002869 osmo_counter_get(net->stats.bts.oml_fail),
2870 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Weltea5b1dae2010-05-16 21:47:13 +02002871}
2872
Harald Welte682ee5f2010-05-16 22:02:16 +02002873DEFUN(logging_fltr_imsi,
2874 logging_fltr_imsi_cmd,
2875 "logging filter imsi IMSI",
2876 LOGGING_STR FILTER_STR
2877 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2878{
Harald Welte58bef962011-02-18 21:10:05 +01002879 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte682ee5f2010-05-16 22:02:16 +02002880
Harald Welte58bef962011-02-18 21:10:05 +01002881 if (!tgt)
Harald Welte682ee5f2010-05-16 22:02:16 +02002882 return CMD_WARNING;
Harald Welte682ee5f2010-05-16 22:02:16 +02002883
Harald Welte58bef962011-02-18 21:10:05 +01002884 log_set_imsi_filter(tgt, argv[0]);
Harald Welte682ee5f2010-05-16 22:02:16 +02002885 return CMD_SUCCESS;
2886}
2887
Harald Welte58bef962011-02-18 21:10:05 +01002888
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002889DEFUN(drop_bts,
2890 drop_bts_cmd,
Holger Hans Peter Freythere4ac0e42010-04-11 12:46:45 +02002891 "drop bts connection <0-65535> (oml|rsl)",
Harald Welte557f3992012-08-16 23:23:50 +02002892 "Debug/Simulation command to drop Abis/IP BTS\n"
2893 "Debug/Simulation command to drop Abis/IP BTS\n"
2894 "Debug/Simulation command to drop Abis/IP BTS\n"
2895 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002896{
2897 struct gsm_network *gsmnet;
2898 struct gsm_bts_trx *trx;
2899 struct gsm_bts *bts;
2900 unsigned int bts_nr;
2901
2902 gsmnet = gsmnet_from_vty(vty);
2903
2904 bts_nr = atoi(argv[0]);
2905 if (bts_nr >= gsmnet->num_bts) {
2906 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2907 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2908 return CMD_WARNING;
2909 }
2910
2911 bts = gsm_bts_num(gsmnet, bts_nr);
2912 if (!bts) {
2913 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2914 return CMD_WARNING;
2915 }
2916
2917 if (!is_ipaccess_bts(bts)) {
2918 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2919 return CMD_WARNING;
2920 }
2921
2922
2923 /* close all connections */
2924 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002925 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002926 } else if (strcmp(argv[1], "rsl") == 0) {
2927 /* close all rsl connections */
2928 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freyther03f17d02010-11-15 20:29:46 +01002929 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002930 }
2931 } else {
2932 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2933 return CMD_WARNING;
2934 }
2935
2936 return CMD_SUCCESS;
2937}
2938
Harald Welte5213e992010-12-23 13:18:07 +01002939DEFUN(pdch_act, pdch_act_cmd,
2940 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2941 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2942 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2943 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2944 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2945{
2946 struct gsm_bts *bts;
2947 struct gsm_bts_trx *trx;
2948 struct gsm_bts_trx_ts *ts;
2949 int bts_nr = atoi(argv[0]);
2950 int trx_nr = atoi(argv[1]);
2951 int ts_nr = atoi(argv[2]);
2952 int activate;
2953
2954 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2955 if (!bts) {
2956 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2957 return CMD_WARNING;
2958 }
2959
2960 if (!is_ipaccess_bts(bts)) {
2961 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2962 VTY_NEWLINE);
2963 return CMD_WARNING;
2964 }
2965
2966 trx = gsm_bts_trx_num(bts, trx_nr);
2967 if (!trx) {
2968 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2969 return CMD_WARNING;
2970 }
2971
2972 ts = &trx->ts[ts_nr];
2973 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2974 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2975 "mode%s", ts_nr, VTY_NEWLINE);
2976 return CMD_WARNING;
2977 }
2978
2979 if (!strcmp(argv[3], "activate"))
2980 activate = 1;
2981 else
2982 activate = 0;
2983
2984 rsl_ipacc_pdch_activate(ts, activate);
2985
2986 return CMD_SUCCESS;
2987
2988}
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02002989
Harald Welte40152872010-05-16 20:52:23 +02002990extern int bsc_vty_init_extra(void);
Harald Welte10c29f62010-05-16 19:20:24 +02002991extern const char *openbsc_copyright;
Holger Hans Peter Freytherc48a2a12010-04-10 00:08:28 +02002992
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01002993int bsc_vty_init(const struct log_info *cat)
Harald Welte59b04682009-06-10 05:40:52 +08002994{
Harald Welte2addf852012-08-17 12:42:06 +02002995 cfg_ts_pchan_cmd.string =
2996 vty_cmd_string_from_valstr(tall_bsc_ctx,
2997 gsm_pchant_names,
2998 "phys_chan_config (", "|", ")",
2999 VTY_DO_LOWER);
3000 cfg_ts_pchan_cmd.doc =
3001 vty_cmd_string_from_valstr(tall_bsc_ctx,
3002 gsm_pchant_descs,
3003 "Physical Channel Combination\n",
3004 "\n", "", 0);
3005
Harald Welte85a77b12012-08-17 13:02:12 +02003006 cfg_bts_type_cmd.string =
3007 vty_cmd_string_from_valstr(tall_bsc_ctx,
3008 bts_type_names,
3009 "type (", "|", ")",
3010 VTY_DO_LOWER);
3011 cfg_bts_type_cmd.doc =
3012 vty_cmd_string_from_valstr(tall_bsc_ctx,
3013 bts_type_descs,
3014 "BTS Vendor/Type\n",
3015 "\n", "", 0);
3016
3017
Harald Welte7bc28f62010-05-12 16:10:35 +00003018 install_element_ve(&show_net_cmd);
3019 install_element_ve(&show_bts_cmd);
3020 install_element_ve(&show_trx_cmd);
3021 install_element_ve(&show_ts_cmd);
3022 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freythere959b4e2010-05-14 02:08:49 +08003023 install_element_ve(&show_lchan_summary_cmd);
Harald Welte682ee5f2010-05-16 22:02:16 +02003024 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003025
Harald Welte7bc28f62010-05-12 16:10:35 +00003026 install_element_ve(&show_paging_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003027
Pablo Neira Ayuso36ad9a42011-03-09 13:36:32 +01003028 logging_vty_add_cmds(cat);
Harald Welte58bef962011-02-18 21:10:05 +01003029 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherc8d862e2009-12-22 22:32:51 +01003030
Harald Weltee87eb462009-08-07 13:29:14 +02003031 install_element(CONFIG_NODE, &cfg_net_cmd);
3032 install_node(&net_node, config_write_net);
3033 install_default(GSMNET_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003034 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003035 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003036 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003037 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
3038 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
3039 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)a59a27e2009-08-12 14:42:23 +02003040 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte59936d72009-11-18 20:33:19 +01003041 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Weltecca253a2009-08-30 15:47:06 +09003042 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freyther96c89822009-11-16 17:12:38 +01003043 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welte52af1952009-12-13 10:53:12 +01003044 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte284ddba2009-12-14 17:49:15 +01003045 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Welte0af9c9f2009-12-19 21:41:52 +01003046 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Weltea8062f12009-12-21 16:51:50 +01003047 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
3048 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
3049 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
3050 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
3051 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
3052 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freyther26ba2e72009-11-21 21:18:38 +01003053 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003054 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
3055 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
3056 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
3057 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3058 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3059 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3060 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3061 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3062 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltee2aaf442010-12-23 22:53:50 +01003063 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther89733862009-11-21 21:42:26 +01003064 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther21d63ff2010-09-06 09:25:48 +08003065 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freyther68b21e12010-12-22 16:26:04 +01003066 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freytherb6b9d702010-09-06 09:41:50 +08003067 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Weltee87eb462009-08-07 13:29:14 +02003068
3069 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte97ceef92009-08-06 19:06:46 +02003070 install_node(&bts_node, config_write_bts);
Harald Welte59b04682009-06-10 05:40:52 +08003071 install_default(BTS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003072 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003073 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003074 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003075 install_element(BTS_NODE, &cfg_description_cmd);
3076 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Welte91afe4c2009-06-20 18:15:19 +02003077 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freythera098dfb2009-08-21 14:44:12 +02003078 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003079 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3080 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003081 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003082 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Harald Welte8b3c5952013-03-12 13:57:05 +01003083 install_element(BTS_NODE, &cfg_bts_rsl_ip_cmd);
Gus Bourgf9dc16b2011-12-02 10:18:17 +01003084 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
3085 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Harald Welte08011e22011-03-04 13:41:31 +01003086 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Sylvain Munautcb8e8432011-10-17 14:04:55 +02003087 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte25572872009-10-20 00:22:00 +02003088 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Pablo Neira Ayuso42e41df2011-08-17 22:44:07 +02003089 install_element(BTS_NODE, &cfg_bts_hsl_oml_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003090 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3091 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte3e774612009-08-10 13:48:16 +02003092 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut8e2d8de2009-12-22 13:43:26 +01003093 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3094 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg14e12f22012-10-13 07:27:47 +02003095 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3096 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3097 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther697ed2b2010-04-25 23:08:39 +08003098 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3099 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)e19be3f2009-08-12 13:28:23 +02003100 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther440984b2010-05-14 00:39:19 +08003101 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)cbd46102009-08-13 10:14:26 +02003102 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)b6ea7f72009-08-14 23:09:25 +02003103 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welteb761bf82009-12-12 18:17:25 +01003104 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3105 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaut00d71462010-11-28 18:17:28 +01003106 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3107 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3108 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3109 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3110 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3111 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Weltecb20b7a2010-04-18 15:51:20 +02003112 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003113 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003114 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
Andreas Eversberga4fa21c2013-03-16 16:31:26 +01003115 install_element(BTS_NODE, &cfg_bts_gprs_net_ctrl_ord_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003116 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Weltea9251762010-05-11 23:50:21 +02003117 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Welte4a048c52010-03-22 11:48:36 +08003118 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte3055e332010-03-14 15:37:43 +08003119 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welte410575a2010-03-14 23:30:30 +08003120 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3121 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3122 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freyther3112f672010-09-06 10:11:25 +08003123 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welted8acf142010-07-30 11:50:09 +02003124 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3125 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welteca46eff2011-01-11 23:44:56 +01003126 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3127 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Weltef989b782011-02-15 11:43:27 +01003128 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freyther10799162012-07-20 10:27:31 +02003129 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3130 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003131
3132 install_element(BTS_NODE, &cfg_trx_cmd);
3133 install_node(&trx_node, dummy_config_write);
3134 install_default(TRX_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003135 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003136 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003137 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte8791dac2010-05-14 17:59:53 +02003138 install_element(TRX_NODE, &cfg_description_cmd);
3139 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)b709bfe2009-12-27 20:56:38 +01003140 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte7f597bc2009-06-20 22:36:12 +02003141 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte62868882009-08-08 16:12:58 +02003142 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3143 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther1c8b4802009-11-11 11:54:24 +01003144 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003145
3146 install_element(TRX_NODE, &cfg_ts_cmd);
3147 install_node(&ts_node, dummy_config_write);
3148 install_default(TS_NODE);
Harald Welte58ed1cb2010-05-14 18:59:17 +02003149 install_element(TS_NODE, &ournode_exit_cmd);
Harald Weltedc82b9b2010-05-14 19:11:04 +02003150 install_element(TS_NODE, &ournode_end_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003151 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte2addf852012-08-17 12:42:06 +02003152 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte85771a42011-05-30 12:09:13 +02003153 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea42a93f2010-06-14 22:26:10 +02003154 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte67104d12009-09-12 13:05:33 +02003155 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3156 install_element(TS_NODE, &cfg_ts_maio_cmd);
3157 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3158 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Welte3ffe1b32009-08-07 00:25:23 +02003159 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte59b04682009-06-10 05:40:52 +08003160
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003161 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welte5213e992010-12-23 13:18:07 +01003162 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther07ff1c32010-10-26 09:40:13 +02003163
Harald Welte63b964e2010-05-31 16:40:40 +02003164 abis_nm_vty_init();
Harald Welte1d5a2062011-02-12 14:42:59 +01003165 abis_om2k_vty_init();
Harald Weltee76bea02011-02-05 13:54:41 +01003166 e1inp_vty_init();
Harald Welte63b964e2010-05-31 16:40:40 +02003167
Harald Welte40152872010-05-16 20:52:23 +02003168 bsc_vty_init_extra();
Harald Welte59b04682009-06-10 05:40:52 +08003169
3170 return 0;
3171}