blob: d985e034952af4caca6c990d2eaf077fe05f6275 [file] [log] [blame]
Harald Welte68628e82009-03-10 12:17:57 +00001/* OpenBSC interface to quagga VTY */
Harald Welteaf387632010-03-14 23:30:30 +08002/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte68628e82009-03-10 12:17:57 +00003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Harald Welte68628e82009-03-10 12:17:57 +00008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welte68628e82009-03-10 12:17:57 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte68628e82009-03-10 12:17:57 +000017 *
18 */
19
20#include <stdlib.h>
21#include <unistd.h>
Harald Welte68628e82009-03-10 12:17:57 +000022
Harald Welte4b037e42010-05-19 19:45:32 +020023#include <osmocom/vty/command.h>
24#include <osmocom/vty/buffer.h>
25#include <osmocom/vty/vty.h>
26#include <osmocom/vty/logging.h>
27#include <osmocom/vty/telnet_interface.h>
Harald Welte4ab9d7c2012-08-17 12:42:06 +020028#include <osmocom/vty/misc.h>
Harald Welte68628e82009-03-10 12:17:57 +000029
30#include <arpa/inet.h>
31
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010032#include <osmocom/core/linuxlist.h>
Harald Welte68628e82009-03-10 12:17:57 +000033#include <openbsc/gsm_data.h>
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020034#include <osmocom/abis/e1_input.h>
Harald Welte1bc77352009-03-10 19:47:51 +000035#include <openbsc/abis_nm.h>
Harald Welte4d54d0b2011-02-19 16:48:17 +010036#include <openbsc/abis_om2000.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/utils.h>
38#include <osmocom/gsm/gsm_utils.h>
Harald Weltecdc59ff2011-05-23 20:42:26 +020039#include <osmocom/gsm/abis_nm.h>
Harald Welteb908cb72009-12-22 13:09:29 +010040#include <openbsc/chan_alloc.h>
Harald Welte8387a492009-12-22 21:43:14 +010041#include <openbsc/meas_rep.h>
Harald Welte40f82892009-05-23 17:31:39 +000042#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010043#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther3c712322010-04-06 11:55:37 +020044#include <openbsc/vty.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080045#include <osmocom/gprs/gprs_ns.h>
Harald Welte9fbff4a2010-07-30 11:50:09 +020046#include <openbsc/system_information.h>
Harald Welte5bc61dc2010-05-16 22:02:16 +020047#include <openbsc/debug.h>
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010048#include <openbsc/paging.h>
Harald Weltef7a2b192011-08-20 18:25:02 +020049#include <openbsc/ipaccess.h>
Harald Welted0d2b0b2010-12-23 13:18:07 +010050#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +010051#include <openbsc/osmo_msc_data.h>
52#include <openbsc/osmo_bsc_rf.h>
Harald Welte68628e82009-03-10 12:17:57 +000053
Harald Weltec08e8be2011-03-04 13:53:51 +010054#include "../../bscconfig.h"
Harald Welte1353f962010-05-16 19:20:24 +020055
Holger Hans Peter Freyther08542562011-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 Welteea4647d2010-05-12 17:19:53 +000064/* FIXME: this should go to some common file */
65static const struct value_string gprs_ns_timer_strs[] = {
Harald Welte615e9562010-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 Welteea4647d2010-05-12 17:19:53 +000076static const struct value_string gprs_bssgp_cfg_strs[] = {
Harald Welte615e9562010-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 Welte64c07d22011-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 Willmann7d109832012-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 Welte5013b2a2009-08-07 13:29:14 +0200105struct cmd_node net_node = {
106 GSMNET_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200107 "%s(config-net)# ",
Harald Welte5013b2a2009-08-07 13:29:14 +0200108 1,
109};
110
Harald Welte68628e82009-03-10 12:17:57 +0000111struct cmd_node bts_node = {
112 BTS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200113 "%s(config-net-bts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000114 1,
115};
116
117struct cmd_node trx_node = {
118 TRX_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200119 "%s(config-net-bts-trx)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000120 1,
121};
122
123struct cmd_node ts_node = {
124 TS_NODE,
Harald Welte570ce242012-08-17 13:16:10 +0200125 "%s(config-net-bts-trx-ts)# ",
Harald Welte68628e82009-03-10 12:17:57 +0000126 1,
127};
128
Harald Welte39231152010-05-27 13:39:40 +0200129extern struct gsm_network *bsc_gsmnet;
130
Harald Weltedcccb182010-05-16 20:52:23 +0200131struct gsm_network *gsmnet_from_vty(struct vty *v)
132{
Harald Welte39231152010-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 Weltedcccb182010-05-16 20:52:23 +0200137 struct telnet_connection *conn = v->priv;
138 return (struct gsm_network *) conn->priv;
Harald Welte39231152010-05-27 13:39:40 +0200139#else
140 return bsc_gsmnet;
141#endif
Harald Weltedcccb182010-05-16 20:52:23 +0200142}
143
Harald Welte68628e82009-03-10 12:17:57 +0000144static int dummy_config_write(struct vty *v)
145{
146 return CMD_SUCCESS;
147}
148
149static void net_dump_nmstate(struct vty *vty, struct gsm_nm_state *nms)
150{
Harald Welte1bc77352009-03-10 19:47:51 +0000151 vty_out(vty,"Oper '%s', Admin %u, Avail '%s'%s",
Harald Welte867d9f32011-05-23 20:30:39 +0200152 abis_nm_opstate_name(nms->operational), nms->administrative,
153 abis_nm_avail_name(nms->availability), VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000154}
155
Harald Welteb908cb72009-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 Welte68628e82009-03-10 12:17:57 +0000176static void net_dump_vty(struct vty *vty, struct gsm_network *net)
177{
Harald Welteb908cb72009-12-22 13:09:29 +0100178 struct pchan_load pl;
179
Harald Welteef235b52009-03-10 12:34:02 +0000180 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);
Harald Welte1bc77352009-03-10 19:47:51 +0000183 vty_out(vty, " Long network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000184 net->name_long, VTY_NEWLINE);
Harald Welte1bc77352009-03-10 19:47:51 +0000185 vty_out(vty, " Short network name: '%s'%s",
Harald Welte68628e82009-03-10 12:17:57 +0000186 net->name_short, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200187 vty_out(vty, " Authentication policy: %s%s",
188 gsm_auth_policy_name(net->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100189 vty_out(vty, " Location updating reject cause: %u%s",
190 net->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900191 vty_out(vty, " Encryption: A5/%u%s", net->a5_encryption,
192 VTY_NEWLINE);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +0100193 vty_out(vty, " NECI (TCH/H): %u%s", net->neci,
194 VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800195 vty_out(vty, " Use TCH for Paging any: %d%s", net->pag_any_tch,
196 VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100197 vty_out(vty, " RRLP Mode: %s%s", rrlp_mode_name(net->rrlp.mode),
198 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100199 vty_out(vty, " MM Info: %s%s", net->send_mm_info ? "On" : "Off",
200 VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100201 vty_out(vty, " Handover: %s%s", net->handover.active ? "On" : "Off",
202 VTY_NEWLINE);
Harald Welteb908cb72009-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 Freyther37ac4202011-02-24 14:19:14 +0100206
207 /* show rf */
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200208 if (net->bsc_data && net->bsc_data->rf_ctrl)
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100209 vty_out(vty, " Last RF Command: %s%s",
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200210 net->bsc_data->rf_ctrl->last_state_command,
Holger Hans Peter Freyther37ac4202011-02-24 14:19:14 +0100211 VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000212}
213
214DEFUN(show_net, show_net_cmd, "show network",
215 SHOW_STR "Display information about a GSM NETWORK\n")
216{
Harald Weltedcccb182010-05-16 20:52:23 +0200217 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000218 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{
Harald Welteedb37782009-05-01 14:59:07 +0000225 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,
Harald Welte1bc77352009-03-10 19:47:51 +0000236 e1inp_signtype_name(e1l->type), VTY_NEWLINE);
Harald Welteedb37782009-05-01 14:59:07 +0000237 vty_out(vty, " E1 TEI %u, SAPI %u%s",
Harald Welte68628e82009-03-10 12:17:57 +0000238 e1l->tei, e1l->sapi, VTY_NEWLINE);
239}
240
241static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts)
242{
Harald Welteb908cb72009-12-22 13:09:29 +0100243 struct pchan_load pl;
244
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +0200245 vty_out(vty, "BTS %u is of %s type in band %s, has CI %u LAC %u, "
Harald Weltefcd24452009-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 Freytherc4a49e32009-08-21 14:44:12 +0200248 bts->cell_identity,
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +0200249 bts->location_area_code, bts->bsic, bts->tsc,
Harald Weltefcd24452009-06-20 18:15:19 +0200250 bts->num_trx, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200251 vty_out(vty, "Description: %s%s",
252 bts->description ? bts->description : "(null)", VTY_NEWLINE);
Harald Welte1d8dbc42009-12-12 15:38:16 +0100253 vty_out(vty, "MS Max power: %u dBm%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100254 vty_out(vty, "Minimum Rx Level for Access: %i dBm%s",
Harald Welte1d8dbc42009-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 Welte73225282009-12-12 18:17:25 +0100258 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
Sylvain Munaut4010f1e2009-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 Welte71355012009-12-21 23:08:18 +0100264 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200265 vty_out(vty, " CELL IS BARRED%s", VTY_NEWLINE);
Andreas Eversberg2ee7ecd2012-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 Welte9fbff4a2010-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 Welte4cc34222009-05-01 15:12:31 +0000274 if (is_ipaccess_bts(bts))
Harald Welte8175e952009-10-20 00:22:00 +0200275 vty_out(vty, " Unit ID: %u/%u/0, OML Stream ID 0x%02x%s",
Harald Welte4cc34222009-05-01 15:12:31 +0000276 bts->ip_access.site_id, bts->ip_access.bts_id,
Harald Welte8175e952009-10-20 00:22:00 +0200277 bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-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 Munautc9519462011-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 Welte68628e82009-03-10 12:17:57 +0000283 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200284 net_dump_nmstate(vty, &bts->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000285 vty_out(vty, " Site Mgr NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200286 net_dump_nmstate(vty, &bts->site_mgr.mo.nm_state);
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +0200287 vty_out(vty, " Paging: %u pending requests, %u free slots%s",
288 paging_pending_requests_nr(bts),
Harald Welte68628e82009-03-10 12:17:57 +0000289 bts->paging.available_slots, VTY_NEWLINE);
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100290 if (is_ipaccess_bts(bts)) {
291 vty_out(vty, " OML Link state: %s.%s",
292 bts->oml_link ? "connected" : "disconnected", VTY_NEWLINE);
293 } else {
Harald Welte8175e952009-10-20 00:22:00 +0200294 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
295 e1isl_dump_vty(vty, bts->oml_link);
296 }
Holger Hans Peter Freytherd283db42010-11-25 16:28:45 +0100297
298 /* FIXME: chan_desc */
Harald Welteb908cb72009-12-22 13:09:29 +0100299 memset(&pl, 0, sizeof(pl));
300 bts_chan_load(&pl, bts);
301 vty_out(vty, " Current Channel Load:%s", VTY_NEWLINE);
302 dump_pchan_load_vty(vty, " ", &pl);
Harald Welte68628e82009-03-10 12:17:57 +0000303}
304
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100305DEFUN(show_bts, show_bts_cmd, "show bts [<0-255>]",
Harald Welte68628e82009-03-10 12:17:57 +0000306 SHOW_STR "Display information about a BTS\n"
307 "BTS number")
308{
Harald Weltedcccb182010-05-16 20:52:23 +0200309 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000310 int bts_nr;
311
312 if (argc != 0) {
313 /* use the BTS number that the user has specified */
314 bts_nr = atoi(argv[0]);
Harald Welte712ddbc2010-12-24 12:24:03 +0100315 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000316 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000317 VTY_NEWLINE);
318 return CMD_WARNING;
319 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200320 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000321 return CMD_SUCCESS;
322 }
323 /* print all BTS's */
324 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++)
Harald Weltee441d9c2009-06-21 16:17:15 +0200325 bts_dump_vty(vty, gsm_bts_num(net, bts_nr));
Harald Welte68628e82009-03-10 12:17:57 +0000326
327 return CMD_SUCCESS;
328}
329
Harald Welte42581822009-08-08 16:12:58 +0200330/* utility functions */
331static void parse_e1_link(struct gsm_e1_subslot *e1_link, const char *line,
332 const char *ts, const char *ss)
333{
334 e1_link->e1_nr = atoi(line);
335 e1_link->e1_ts = atoi(ts);
336 if (!strcmp(ss, "full"))
337 e1_link->e1_ts_ss = 255;
338 else
339 e1_link->e1_ts_ss = atoi(ss);
340}
341
342static void config_write_e1_link(struct vty *vty, struct gsm_e1_subslot *e1_link,
343 const char *prefix)
344{
345 if (!e1_link->e1_ts)
346 return;
347
348 if (e1_link->e1_ts_ss == 255)
349 vty_out(vty, "%se1 line %u timeslot %u sub-slot full%s",
350 prefix, e1_link->e1_nr, e1_link->e1_ts, VTY_NEWLINE);
351 else
352 vty_out(vty, "%se1 line %u timeslot %u sub-slot %u%s",
353 prefix, e1_link->e1_nr, e1_link->e1_ts,
354 e1_link->e1_ts_ss, VTY_NEWLINE);
355}
356
357
Harald Welte67ce0732009-08-06 19:06:46 +0200358static void config_write_ts_single(struct vty *vty, struct gsm_bts_trx_ts *ts)
359{
Harald Welte42581822009-08-08 16:12:58 +0200360 vty_out(vty, " timeslot %u%s", ts->nr, VTY_NEWLINE);
Harald Welte135a6482011-05-30 12:09:13 +0200361 if (ts->tsc != -1 && ts->tsc != ts->trx->bts->tsc)
362 vty_out(vty, " training_sequence_code %u%s", ts->tsc, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200363 if (ts->pchan != GSM_PCHAN_NONE)
364 vty_out(vty, " phys_chan_config %s%s",
365 gsm_pchan_name(ts->pchan), VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200366 vty_out(vty, " hopping enabled %u%s",
367 ts->hopping.enabled, VTY_NEWLINE);
368 if (ts->hopping.enabled) {
369 unsigned int i;
370 vty_out(vty, " hopping sequence-number %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200371 ts->hopping.hsn, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200372 vty_out(vty, " hopping maio %u%s",
Harald Welte6e0cd042009-09-12 13:05:33 +0200373 ts->hopping.maio, VTY_NEWLINE);
Harald Weltea39b0f22010-06-14 22:26:10 +0200374 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
375 if (!bitvec_get_bit_pos(&ts->hopping.arfcns, i))
376 continue;
377 vty_out(vty, " hopping arfcn add %u%s",
378 i, VTY_NEWLINE);
379 }
Harald Welte127af342010-12-24 12:07:07 +0100380 }
Harald Welte42581822009-08-08 16:12:58 +0200381 config_write_e1_link(vty, &ts->e1_link, " ");
Harald Welteface7ed2011-02-14 16:15:21 +0100382
383 if (ts->trx->bts->model->config_write_ts)
384 ts->trx->bts->model->config_write_ts(vty, ts);
Harald Welte67ce0732009-08-06 19:06:46 +0200385}
386
387static void config_write_trx_single(struct vty *vty, struct gsm_bts_trx *trx)
388{
389 int i;
390
Harald Welte5013b2a2009-08-07 13:29:14 +0200391 vty_out(vty, " trx %u%s", trx->nr, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200392 if (trx->description)
393 vty_out(vty, " description %s%s", trx->description,
394 VTY_NEWLINE);
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200395 vty_out(vty, " rf_locked %u%s",
Harald Welted64c0bc2011-05-30 12:07:53 +0200396 trx->mo.nm_state.administrative == NM_STATE_LOCKED ? 1 : 0,
Holger Hans Peter Freyther2ba40af2010-04-17 06:42:07 +0200397 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200398 vty_out(vty, " arfcn %u%s", trx->arfcn, VTY_NEWLINE);
Harald Welte (local)7b37d972009-12-27 20:56:38 +0100399 vty_out(vty, " nominal power %u%s", trx->nominal_power, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200400 vty_out(vty, " max_power_red %u%s", trx->max_power_red, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200401 config_write_e1_link(vty, &trx->rsl_e1_link, " rsl ");
402 vty_out(vty, " rsl e1 tei %u%s", trx->rsl_tei, VTY_NEWLINE);
Harald Welte67ce0732009-08-06 19:06:46 +0200403
Harald Welteface7ed2011-02-14 16:15:21 +0100404 if (trx->bts->model->config_write_trx)
405 trx->bts->model->config_write_trx(vty, trx);
406
Harald Welte67ce0732009-08-06 19:06:46 +0200407 for (i = 0; i < TRX_NR_TS; i++)
408 config_write_ts_single(vty, &trx->ts[i]);
409}
410
Harald Welte615e9562010-05-11 23:50:21 +0200411static void config_write_bts_gprs(struct vty *vty, struct gsm_bts *bts)
412{
413 unsigned int i;
414 vty_out(vty, " gprs mode %s%s", bts_gprs_mode_name(bts->gprs.mode),
415 VTY_NEWLINE);
416 if (bts->gprs.mode == BTS_GPRS_NONE)
417 return;
418
419 vty_out(vty, " gprs routing area %u%s", bts->gprs.rac,
420 VTY_NEWLINE);
421 vty_out(vty, " gprs cell bvci %u%s", bts->gprs.cell.bvci,
422 VTY_NEWLINE);
423 for (i = 0; i < ARRAY_SIZE(bts->gprs.cell.timer); i++)
424 vty_out(vty, " gprs cell timer %s %u%s",
425 get_value_string(gprs_bssgp_cfg_strs, i),
426 bts->gprs.cell.timer[i], VTY_NEWLINE);
427 vty_out(vty, " gprs nsei %u%s", bts->gprs.nse.nsei,
428 VTY_NEWLINE);
429 for (i = 0; i < ARRAY_SIZE(bts->gprs.nse.timer); i++)
430 vty_out(vty, " gprs ns timer %s %u%s",
431 get_value_string(gprs_ns_timer_strs, i),
432 bts->gprs.nse.timer[i], VTY_NEWLINE);
433 for (i = 0; i < ARRAY_SIZE(bts->gprs.nsvc); i++) {
434 struct gsm_bts_gprs_nsvc *nsvc =
435 &bts->gprs.nsvc[i];
436 struct in_addr ia;
437
438 ia.s_addr = htonl(nsvc->remote_ip);
439 vty_out(vty, " gprs nsvc %u nsvci %u%s", i,
440 nsvc->nsvci, VTY_NEWLINE);
441 vty_out(vty, " gprs nsvc %u local udp port %u%s", i,
442 nsvc->local_port, VTY_NEWLINE);
443 vty_out(vty, " gprs nsvc %u remote udp port %u%s", i,
444 nsvc->remote_port, VTY_NEWLINE);
445 vty_out(vty, " gprs nsvc %u remote ip %s%s", i,
446 inet_ntoa(ia), VTY_NEWLINE);
447 }
448}
449
Harald Welte67ce0732009-08-06 19:06:46 +0200450static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
451{
452 struct gsm_bts_trx *trx;
Harald Welte9fbff4a2010-07-30 11:50:09 +0200453 int i;
Harald Welte67ce0732009-08-06 19:06:46 +0200454
Harald Welte5013b2a2009-08-07 13:29:14 +0200455 vty_out(vty, " bts %u%s", bts->nr, VTY_NEWLINE);
456 vty_out(vty, " type %s%s", btstype2str(bts->type), VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200457 if (bts->description)
458 vty_out(vty, " description %s%s", bts->description, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200459 vty_out(vty, " band %s%s", gsm_band_name(bts->band), VTY_NEWLINE);
Holger Hans Peter Freytherf926ed62009-11-19 16:38:49 +0100460 vty_out(vty, " cell_identity %u%s", bts->cell_identity, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200461 vty_out(vty, " location_area_code %u%s", bts->location_area_code,
Harald Welte67ce0732009-08-06 19:06:46 +0200462 VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200463 vty_out(vty, " training_sequence_code %u%s", bts->tsc, VTY_NEWLINE);
464 vty_out(vty, " base_station_id_code %u%s", bts->bsic, VTY_NEWLINE);
Harald Welte45f91712012-07-08 16:48:11 +0200465 if (bts->tz.override != 0)
466 vty_out(vty, " timezone %d %d%s", bts->tz.hr, bts->tz.mn, VTY_NEWLINE);
Harald Welte (local)0e451d02009-08-13 10:14:26 +0200467 vty_out(vty, " ms max power %u%s", bts->ms_max_power, VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100468 vty_out(vty, " cell reselection hysteresis %u%s",
469 bts->si_common.cell_sel_par.cell_resel_hyst*2, VTY_NEWLINE);
470 vty_out(vty, " rxlev access min %u%s",
471 bts->si_common.cell_sel_par.rxlev_acc_min, VTY_NEWLINE);
Sylvain Munaute0b06b02010-11-28 18:17:28 +0100472
473 if (bts->si_common.cell_ro_sel_par.present) {
474 struct gsm48_si_selection_params *sp;
475 sp = &bts->si_common.cell_ro_sel_par;
476
477 if (sp->cbq)
478 vty_out(vty, " cell bar qualify %u%s",
479 sp->cbq, VTY_NEWLINE);
480
481 if (sp->cell_resel_off)
482 vty_out(vty, " cell reselection offset %u%s",
483 sp->cell_resel_off*2, VTY_NEWLINE);
484
485 if (sp->temp_offs == 7)
486 vty_out(vty, " temporary offset infinite%s",
487 VTY_NEWLINE);
488 else if (sp->temp_offs)
489 vty_out(vty, " temporary offset %u%s",
490 sp->temp_offs*10, VTY_NEWLINE);
491
492 if (sp->penalty_time == 31)
493 vty_out(vty, " penalty time reserved%s",
494 VTY_NEWLINE);
495 else if (sp->penalty_time)
496 vty_out(vty, " penalty time %u%s",
497 (sp->penalty_time*20)+20, VTY_NEWLINE);
498 }
499
Daniel Willmann4d62d632012-12-27 00:02:01 +0100500 vty_out(vty, " periodic location update %u%s",
501 bts->si_common.chan_desc.t3212 * 6, VTY_NEWLINE);
Harald Welte7a8fa412009-08-10 13:48:16 +0200502 vty_out(vty, " channel allocator %s%s",
503 bts->chan_alloc_reverse ? "descending" : "ascending",
504 VTY_NEWLINE);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +0100505 vty_out(vty, " rach tx integer %u%s",
506 bts->si_common.rach_control.tx_integer, VTY_NEWLINE);
507 vty_out(vty, " rach max transmission %u%s",
508 rach_max_trans_raw2val(bts->si_common.rach_control.max_trans),
509 VTY_NEWLINE);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800510
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +0200511 vty_out(vty, " channel-descrption attach %u%s",
512 bts->si_common.chan_desc.att, VTY_NEWLINE);
513 vty_out(vty, " channel-descrption bs-pa-mfrms %u%s",
514 bts->si_common.chan_desc.bs_pa_mfrms + 2, VTY_NEWLINE);
515 vty_out(vty, " channel-descrption bs-ag-blks-res %u%s",
516 bts->si_common.chan_desc.bs_ag_blks_res, VTY_NEWLINE);
517
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +0800518 if (bts->rach_b_thresh != -1)
519 vty_out(vty, " rach nm busy threshold %u%s",
520 bts->rach_b_thresh, VTY_NEWLINE);
521 if (bts->rach_ldavg_slots != -1)
522 vty_out(vty, " rach nm load average %u%s",
523 bts->rach_ldavg_slots, VTY_NEWLINE);
Harald Welte71355012009-12-21 23:08:18 +0100524 if (bts->si_common.rach_control.cell_bar)
Harald Welte (local)5dececf2009-08-12 13:28:23 +0200525 vty_out(vty, " cell barred 1%s", VTY_NEWLINE);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +0800526 if ((bts->si_common.rach_control.t2 & 0x4) == 0)
527 vty_out(vty, " rach emergency call allowed 1%s", VTY_NEWLINE);
Harald Welte9fbff4a2010-07-30 11:50:09 +0200528 for (i = SYSINFO_TYPE_1; i < _MAX_SYSINFO_TYPE; i++) {
529 if (bts->si_mode_static & (1 << i)) {
530 vty_out(vty, " system-information %s mode static%s",
531 get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
532 vty_out(vty, " system-information %s static %s%s",
533 get_value_string(osmo_sitype_strs, i),
Sylvain Munaut63ef2152011-11-13 23:05:23 +0100534 osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
Harald Welte9fbff4a2010-07-30 11:50:09 +0200535 VTY_NEWLINE);
536 }
537 }
Harald Weltefd355a32011-03-04 13:41:31 +0100538 switch (bts->type) {
539 case GSM_BTS_TYPE_NANOBTS:
Harald Weltef383aa12012-07-02 19:51:55 +0200540 case GSM_BTS_TYPE_OSMO_SYSMO:
Harald Welte5013b2a2009-08-07 13:29:14 +0200541 vty_out(vty, " ip.access unit_id %u %u%s",
Harald Weltea6fd58e2009-08-07 00:25:23 +0200542 bts->ip_access.site_id, bts->ip_access.bts_id, VTY_NEWLINE);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200543 vty_out(vty, " oml ip.access stream_id %u line %u%s",
544 bts->oml_tei, bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100545 break;
546 case GSM_BTS_TYPE_HSL_FEMTO:
547 vty_out(vty, " hsl serial-number %lu%s", bts->hsl.serno, VTY_NEWLINE);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200548 vty_out(vty, " oml hsl line %u%s",
549 bts->oml_e1_link.e1_nr, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100550 break;
Sylvain Munautc9519462011-10-17 14:04:55 +0200551 case GSM_BTS_TYPE_NOKIA_SITE:
552 vty_out(vty, " nokia_site skip-reset %d%s", bts->nokia.skip_reset, VTY_NEWLINE);
553 break;
Harald Weltefd355a32011-03-04 13:41:31 +0100554 default:
Harald Welte42581822009-08-08 16:12:58 +0200555 config_write_e1_link(vty, &bts->oml_e1_link, " oml ");
556 vty_out(vty, " oml e1 tei %u%s", bts->oml_tei, VTY_NEWLINE);
Harald Weltefd355a32011-03-04 13:41:31 +0100557 break;
Harald Welte42581822009-08-08 16:12:58 +0200558 }
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +0800559
560 /* if we have a limit, write it */
561 if (bts->paging.free_chans_need >= 0)
562 vty_out(vty, " paging free %d%s", bts->paging.free_chans_need, VTY_NEWLINE);
563
Harald Welte32c09622011-01-11 23:44:56 +0100564 vty_out(vty, " neighbor-list mode %s%s",
Harald Welte64c07d22011-02-15 11:43:27 +0100565 get_value_string(bts_neigh_mode_strs, bts->neigh_list_manual_mode), VTY_NEWLINE);
566 if (bts->neigh_list_manual_mode != NL_MODE_AUTOMATIC) {
Harald Welte32c09622011-01-11 23:44:56 +0100567 for (i = 0; i < 1024; i++) {
568 if (bitvec_get_bit_pos(&bts->si_common.neigh_list, i))
569 vty_out(vty, " neighbor-list add arfcn %u%s",
570 i, VTY_NEWLINE);
571 }
572 }
Harald Welte64c07d22011-02-15 11:43:27 +0100573 if (bts->neigh_list_manual_mode == NL_MODE_MANUAL_SI5SEP) {
574 for (i = 0; i < 1024; i++) {
575 if (bitvec_get_bit_pos(&bts->si_common.si5_neigh_list, i))
576 vty_out(vty, " si5 neighbor-list add arfcn %u%s",
577 i, VTY_NEWLINE);
578 }
579 }
Harald Welte32c09622011-01-11 23:44:56 +0100580
Harald Welte615e9562010-05-11 23:50:21 +0200581 config_write_bts_gprs(vty, bts);
Harald Welte67ce0732009-08-06 19:06:46 +0200582
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +0200583 if (bts->excl_from_rf_lock)
584 vty_out(vty, " rf-lock-exclude%s", VTY_NEWLINE);
585
Harald Welteface7ed2011-02-14 16:15:21 +0100586 if (bts->model->config_write_bts)
587 bts->model->config_write_bts(vty, bts);
588
Harald Welte67ce0732009-08-06 19:06:46 +0200589 llist_for_each_entry(trx, &bts->trx_list, list)
590 config_write_trx_single(vty, trx);
591}
592
593static int config_write_bts(struct vty *v)
594{
Harald Weltedcccb182010-05-16 20:52:23 +0200595 struct gsm_network *gsmnet = gsmnet_from_vty(v);
Harald Welte67ce0732009-08-06 19:06:46 +0200596 struct gsm_bts *bts;
597
598 llist_for_each_entry(bts, &gsmnet->bts_list, list)
599 config_write_bts_single(v, bts);
600
601 return CMD_SUCCESS;
602}
603
Harald Welte5013b2a2009-08-07 13:29:14 +0200604static int config_write_net(struct vty *vty)
605{
Harald Weltedcccb182010-05-16 20:52:23 +0200606 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
607
Harald Welte5013b2a2009-08-07 13:29:14 +0200608 vty_out(vty, "network%s", VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200609 vty_out(vty, " network country code %u%s", gsmnet->country_code, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200610 vty_out(vty, " mobile network code %u%s", gsmnet->network_code, VTY_NEWLINE);
Harald Welte42581822009-08-08 16:12:58 +0200611 vty_out(vty, " short name %s%s", gsmnet->name_short, VTY_NEWLINE);
612 vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE);
Harald Welte (local)69de3972009-08-12 14:42:23 +0200613 vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE);
Harald Welte1085c092009-11-18 20:33:19 +0100614 vty_out(vty, " location updating reject cause %u%s",
615 gsmnet->reject_cause, VTY_NEWLINE);
Harald Welte4381cfe2009-08-30 15:47:06 +0900616 vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE);
Holger Hans Peter Freytherd54c3372009-11-19 16:37:48 +0100617 vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +0800618 vty_out(vty, " paging any use tch %d%s", gsmnet->pag_any_tch, VTY_NEWLINE);
Harald Welteeab84a12009-12-13 10:53:12 +0100619 vty_out(vty, " rrlp mode %s%s", rrlp_mode_name(gsmnet->rrlp.mode),
620 VTY_NEWLINE);
Harald Welte648b6ce2009-12-14 09:00:24 +0100621 vty_out(vty, " mm info %u%s", gsmnet->send_mm_info, VTY_NEWLINE);
Harald Weltebc814502009-12-19 21:41:52 +0100622 vty_out(vty, " handover %u%s", gsmnet->handover.active, VTY_NEWLINE);
Harald Welteb720bd32009-12-21 16:51:50 +0100623 vty_out(vty, " handover window rxlev averaging %u%s",
624 gsmnet->handover.win_rxlev_avg, VTY_NEWLINE);
625 vty_out(vty, " handover window rxqual averaging %u%s",
626 gsmnet->handover.win_rxqual_avg, VTY_NEWLINE);
627 vty_out(vty, " handover window rxlev neighbor averaging %u%s",
628 gsmnet->handover.win_rxlev_avg_neigh, VTY_NEWLINE);
629 vty_out(vty, " handover power budget interval %u%s",
630 gsmnet->handover.pwr_interval, VTY_NEWLINE);
631 vty_out(vty, " handover power budget hysteresis %u%s",
632 gsmnet->handover.pwr_hysteresis, VTY_NEWLINE);
633 vty_out(vty, " handover maximum distance %u%s",
634 gsmnet->handover.max_distance, VTY_NEWLINE);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +0100635 vty_out(vty, " timer t3101 %u%s", gsmnet->T3101, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100636 vty_out(vty, " timer t3103 %u%s", gsmnet->T3103, VTY_NEWLINE);
637 vty_out(vty, " timer t3105 %u%s", gsmnet->T3105, VTY_NEWLINE);
638 vty_out(vty, " timer t3107 %u%s", gsmnet->T3107, VTY_NEWLINE);
639 vty_out(vty, " timer t3109 %u%s", gsmnet->T3109, VTY_NEWLINE);
640 vty_out(vty, " timer t3111 %u%s", gsmnet->T3111, VTY_NEWLINE);
641 vty_out(vty, " timer t3113 %u%s", gsmnet->T3113, VTY_NEWLINE);
642 vty_out(vty, " timer t3115 %u%s", gsmnet->T3115, VTY_NEWLINE);
643 vty_out(vty, " timer t3117 %u%s", gsmnet->T3117, VTY_NEWLINE);
644 vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
Harald Welte2862dca2010-12-23 14:39:29 +0100645 vty_out(vty, " timer t3122 %u%s", gsmnet->T3122, VTY_NEWLINE);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +0100646 vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
Harald Welte63dbfc62010-12-15 15:34:23 +0100647 vty_out(vty, " dtx-used %u%s", gsmnet->dtx_enabled, VTY_NEWLINE);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +0100648 vty_out(vty, " subscriber-keep-in-ram %d%s",
649 gsmnet->keep_subscr, VTY_NEWLINE);
Harald Welte5013b2a2009-08-07 13:29:14 +0200650
651 return CMD_SUCCESS;
652}
Harald Welte67ce0732009-08-06 19:06:46 +0200653
Harald Welte68628e82009-03-10 12:17:57 +0000654static void trx_dump_vty(struct vty *vty, struct gsm_bts_trx *trx)
655{
656 vty_out(vty, "TRX %u of BTS %u is on ARFCN %u%s",
657 trx->nr, trx->bts->nr, trx->arfcn, VTY_NEWLINE);
Harald Welte197dea92010-05-14 17:59:53 +0200658 vty_out(vty, "Description: %s%s",
659 trx->description ? trx->description : "(null)", VTY_NEWLINE);
Harald Weltefcd24452009-06-20 18:15:19 +0200660 vty_out(vty, " RF Nominal Power: %d dBm, reduced by %u dB, "
Harald Welte42581822009-08-08 16:12:58 +0200661 "resulting BS power: %d dBm%s",
Harald Weltefcd24452009-06-20 18:15:19 +0200662 trx->nominal_power, trx->max_power_red,
Harald Welte42581822009-08-08 16:12:58 +0200663 trx->nominal_power - trx->max_power_red, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000664 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200665 net_dump_nmstate(vty, &trx->mo.nm_state);
Harald Welte68628e82009-03-10 12:17:57 +0000666 vty_out(vty, " Baseband Transceiver NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200667 net_dump_nmstate(vty, &trx->bb_transc.mo.nm_state);
Harald Welte8175e952009-10-20 00:22:00 +0200668 if (is_ipaccess_bts(trx->bts)) {
669 vty_out(vty, " ip.access stream ID: 0x%02x%s",
670 trx->rsl_tei, VTY_NEWLINE);
671 } else {
672 vty_out(vty, " E1 Signalling Link:%s", VTY_NEWLINE);
673 e1isl_dump_vty(vty, trx->rsl_link);
674 }
Harald Welte68628e82009-03-10 12:17:57 +0000675}
676
677DEFUN(show_trx,
678 show_trx_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100679 "show trx [<0-255>] [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200680 SHOW_STR "Display information about a TRX\n"
681 "BTS Number\n"
682 "TRX Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000683{
Harald Weltedcccb182010-05-16 20:52:23 +0200684 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000685 struct gsm_bts *bts = NULL;
686 struct gsm_bts_trx *trx;
687 int bts_nr, trx_nr;
688
689 if (argc >= 1) {
690 /* use the BTS number that the user has specified */
691 bts_nr = atoi(argv[0]);
692 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000693 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000694 VTY_NEWLINE);
695 return CMD_WARNING;
696 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200697 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000698 }
699 if (argc >= 2) {
700 trx_nr = atoi(argv[1]);
701 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000702 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000703 VTY_NEWLINE);
704 return CMD_WARNING;
705 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200706 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000707 trx_dump_vty(vty, trx);
708 return CMD_SUCCESS;
709 }
710 if (bts) {
711 /* print all TRX in this BTS */
712 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200713 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000714 trx_dump_vty(vty, trx);
715 }
716 return CMD_SUCCESS;
717 }
718
719 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200720 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000721 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200722 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000723 trx_dump_vty(vty, trx);
724 }
725 }
726
727 return CMD_SUCCESS;
728}
729
Harald Welte67ce0732009-08-06 19:06:46 +0200730
Harald Welte68628e82009-03-10 12:17:57 +0000731static void ts_dump_vty(struct vty *vty, struct gsm_bts_trx_ts *ts)
732{
Harald Welte135a6482011-05-30 12:09:13 +0200733 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, phys cfg %s, TSC %u",
Harald Welte026b4ca2010-12-24 12:12:10 +0100734 ts->trx->bts->nr, ts->trx->nr, ts->nr,
Harald Weltee972dba2013-03-08 07:44:45 +0000735 gsm_pchan_name(ts->pchan),
736 ts->tsc == -1 ? ts->trx->bts->tsc : ts->tsc);
Harald Weltecd103a92010-12-24 12:14:52 +0100737 if (ts->pchan == GSM_PCHAN_TCH_F_PDCH)
Harald Welteb29cea12010-12-24 12:26:13 +0100738 vty_out(vty, " (%s mode)",
Harald Weltecd103a92010-12-24 12:14:52 +0100739 ts->flags & TS_F_PDCH_MODE ? "PDCH" : "TCH/F");
740 vty_out(vty, "%s", VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000741 vty_out(vty, " NM State: ");
Harald Welted64c0bc2011-05-30 12:07:53 +0200742 net_dump_nmstate(vty, &ts->mo.nm_state);
Harald Welte2c828992009-12-02 01:56:49 +0530743 if (!is_ipaccess_bts(ts->trx->bts))
Harald Welteef235b52009-03-10 12:34:02 +0000744 vty_out(vty, " E1 Line %u, Timeslot %u, Subslot %u%s",
745 ts->e1_link.e1_nr, ts->e1_link.e1_ts,
746 ts->e1_link.e1_ts_ss, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000747}
748
749DEFUN(show_ts,
750 show_ts_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +0100751 "show timeslot [<0-255>] [<0-255>] [<0-7>]",
Harald Welte8f0ed552010-05-11 21:53:49 +0200752 SHOW_STR "Display information about a TS\n"
753 "BTS Number\n" "TRX Number\n" "Timeslot Number\n")
Harald Welte68628e82009-03-10 12:17:57 +0000754{
Harald Weltedcccb182010-05-16 20:52:23 +0200755 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte274d0152010-12-24 12:05:03 +0100756 struct gsm_bts *bts = NULL;
757 struct gsm_bts_trx *trx = NULL;
758 struct gsm_bts_trx_ts *ts = NULL;
Harald Welte68628e82009-03-10 12:17:57 +0000759 int bts_nr, trx_nr, ts_nr;
760
761 if (argc >= 1) {
762 /* use the BTS number that the user has specified */
763 bts_nr = atoi(argv[0]);
764 if (bts_nr >= net->num_bts) {
Harald Welte1bc77352009-03-10 19:47:51 +0000765 vty_out(vty, "%% can't find BTS '%s'%s", argv[0],
Harald Welte68628e82009-03-10 12:17:57 +0000766 VTY_NEWLINE);
767 return CMD_WARNING;
768 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200769 bts = gsm_bts_num(net, bts_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000770 }
771 if (argc >= 2) {
772 trx_nr = atoi(argv[1]);
773 if (trx_nr >= bts->num_trx) {
Harald Welte1bc77352009-03-10 19:47:51 +0000774 vty_out(vty, "%% can't find TRX '%s'%s", argv[1],
Harald Welte68628e82009-03-10 12:17:57 +0000775 VTY_NEWLINE);
776 return CMD_WARNING;
777 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200778 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000779 }
780 if (argc >= 3) {
781 ts_nr = atoi(argv[2]);
782 if (ts_nr >= TRX_NR_TS) {
Harald Welte1bc77352009-03-10 19:47:51 +0000783 vty_out(vty, "%% can't find TS '%s'%s", argv[2],
Harald Welte68628e82009-03-10 12:17:57 +0000784 VTY_NEWLINE);
785 return CMD_WARNING;
786 }
Harald Welte274d0152010-12-24 12:05:03 +0100787 /* Fully Specified: print and exit */
Harald Welte68628e82009-03-10 12:17:57 +0000788 ts = &trx->ts[ts_nr];
789 ts_dump_vty(vty, ts);
790 return CMD_SUCCESS;
791 }
Harald Welte274d0152010-12-24 12:05:03 +0100792
793 if (bts && trx) {
794 /* Iterate over all TS in this TRX */
795 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
796 ts = &trx->ts[ts_nr];
797 ts_dump_vty(vty, ts);
798 }
799 } else if (bts) {
800 /* Iterate over all TRX in this BTS, TS in each TRX */
Harald Welte68628e82009-03-10 12:17:57 +0000801 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +0200802 trx = gsm_bts_trx_num(bts, trx_nr);
Harald Welte68628e82009-03-10 12:17:57 +0000803 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
804 ts = &trx->ts[ts_nr];
805 ts_dump_vty(vty, ts);
806 }
807 }
Harald Welte274d0152010-12-24 12:05:03 +0100808 } else {
809 /* Iterate over all BTS, TRX in each BTS, TS in each TRX */
810 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
811 bts = gsm_bts_num(net, bts_nr);
812 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
813 trx = gsm_bts_trx_num(bts, trx_nr);
814 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
815 ts = &trx->ts[ts_nr];
816 ts_dump_vty(vty, ts);
817 }
818 }
819 }
Harald Welte68628e82009-03-10 12:17:57 +0000820 }
821
822 return CMD_SUCCESS;
823}
824
Holger Hans Peter Freyther424c4f02010-01-06 06:00:40 +0100825static void subscr_dump_vty(struct vty *vty, struct gsm_subscriber *subscr)
Harald Welte68628e82009-03-10 12:17:57 +0000826{
Harald Weltefcd24452009-06-20 18:15:19 +0200827 vty_out(vty, " ID: %llu, Authorized: %d%s", subscr->id,
Harald Welte40f82892009-05-23 17:31:39 +0000828 subscr->authorized, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000829 if (subscr->name)
Harald Welte1bc77352009-03-10 19:47:51 +0000830 vty_out(vty, " Name: '%s'%s", subscr->name, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000831 if (subscr->extension)
832 vty_out(vty, " Extension: %s%s", subscr->extension,
833 VTY_NEWLINE);
834 if (subscr->imsi)
835 vty_out(vty, " IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200836 if (subscr->tmsi != GSM_RESERVED_TMSI)
837 vty_out(vty, " TMSI: %08X%s", subscr->tmsi,
Harald Welte731fd912009-08-15 03:24:51 +0200838 VTY_NEWLINE);
Sylvain Munautaf292642009-12-27 19:29:28 +0100839
Harald Welte (local)15920de2009-08-14 20:27:16 +0200840 vty_out(vty, " Use count: %u%s", subscr->use_count, VTY_NEWLINE);
Harald Welte68628e82009-03-10 12:17:57 +0000841}
842
Harald Welte8387a492009-12-22 21:43:14 +0100843static void meas_rep_dump_uni_vty(struct vty *vty,
844 struct gsm_meas_rep_unidir *mru,
845 const char *prefix,
846 const char *dir)
847{
848 vty_out(vty, "%s RXL-FULL-%s: %4d dBm, RXL-SUB-%s: %4d dBm ",
849 prefix, dir, rxlev2dbm(mru->full.rx_lev),
850 dir, rxlev2dbm(mru->sub.rx_lev));
851 vty_out(vty, "RXQ-FULL-%s: %d, RXQ-SUB-%s: %d%s",
852 dir, mru->full.rx_qual, dir, mru->sub.rx_qual,
853 VTY_NEWLINE);
854}
855
856static void meas_rep_dump_vty(struct vty *vty, struct gsm_meas_rep *mr,
857 const char *prefix)
858{
859 vty_out(vty, "%sMeasurement Report:%s", prefix, VTY_NEWLINE);
860 vty_out(vty, "%s Flags: %s%s%s%s%s", prefix,
861 mr->flags & MEAS_REP_F_UL_DTX ? "DTXu " : "",
862 mr->flags & MEAS_REP_F_DL_DTX ? "DTXd " : "",
863 mr->flags & MEAS_REP_F_FPC ? "FPC " : "",
864 mr->flags & MEAS_REP_F_DL_VALID ? " " : "DLinval ",
865 VTY_NEWLINE);
866 if (mr->flags & MEAS_REP_F_MS_TO)
867 vty_out(vty, "%s MS Timing Offset: %u%s", prefix,
868 mr->ms_timing_offset, VTY_NEWLINE);
869 if (mr->flags & MEAS_REP_F_MS_L1)
870 vty_out(vty, "%s L1 MS Power: %u dBm, Timing Advance: %u%s",
871 prefix, mr->ms_l1.pwr, mr->ms_l1.ta, VTY_NEWLINE);
872 if (mr->flags & MEAS_REP_F_DL_VALID)
873 meas_rep_dump_uni_vty(vty, &mr->dl, prefix, "dl");
874 meas_rep_dump_uni_vty(vty, &mr->ul, prefix, "ul");
875}
876
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800877static void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
Harald Welte68628e82009-03-10 12:17:57 +0000878{
Harald Welte8387a492009-12-22 21:43:14 +0100879 int idx;
880
Harald Welte85bded82010-12-24 12:22:34 +0100881 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u: Type %s%s",
882 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
883 lchan->nr, gsm_lchant_name(lchan->type), VTY_NEWLINE);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800884 vty_out(vty, " Connection: %u, State: %s%s",
885 lchan->conn ? 1: 0,
Harald Welte1887f9d2009-12-29 10:52:38 +0100886 gsm_lchans_name(lchan->state), VTY_NEWLINE);
Harald Welte73225282009-12-12 18:17:25 +0100887 vty_out(vty, " BS Power: %u dBm, MS Power: %u dBm%s",
888 lchan->ts->trx->nominal_power - lchan->ts->trx->max_power_red
889 - lchan->bs_power*2,
890 ms_pwr_dbm(lchan->ts->trx->bts->band, lchan->ms_power),
891 VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800892 if (lchan->conn && lchan->conn->subscr) {
Harald Welte68628e82009-03-10 12:17:57 +0000893 vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
Holger Hans Peter Freyther2412a072010-06-28 15:47:12 +0800894 subscr_dump_vty(vty, lchan->conn->subscr);
Harald Welte68628e82009-03-10 12:17:57 +0000895 } else
896 vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
Harald Welte2c828992009-12-02 01:56:49 +0530897 if (is_ipaccess_bts(lchan->ts->trx->bts)) {
898 struct in_addr ia;
Holger Hans Peter Freyther54fa7992010-04-07 15:39:16 +0200899 ia.s_addr = htonl(lchan->abis_ip.bound_ip);
Harald Welte2c828992009-12-02 01:56:49 +0530900 vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
901 inet_ntoa(ia), lchan->abis_ip.bound_port,
902 lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,
903 VTY_NEWLINE);
904 }
Harald Welte8387a492009-12-22 21:43:14 +0100905
906 /* we want to report the last measurement report */
907 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
908 lchan->meas_rep_idx, 1);
909 meas_rep_dump_vty(vty, &lchan->meas_rep[idx], " ");
Harald Welte68628e82009-03-10 12:17:57 +0000910}
911
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800912static void lchan_dump_short_vty(struct vty *vty, struct gsm_lchan *lchan)
913{
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800914 struct gsm_meas_rep *mr;
915 int idx;
916
917 /* we want to report the last measurement report */
918 idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
919 lchan->meas_rep_idx, 1);
920 mr = &lchan->meas_rep[idx];
921
Harald Welte85bded82010-12-24 12:22:34 +0100922 vty_out(vty, "BTS %u, TRX %u, Timeslot %u, Lchan %u, Type %s - "
923 "L1 MS Power: %u dBm RXL-FULL-dl: %4d dBm RXL-FULL-ul: %4d dBm%s",
924 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
Harald Welteb29cea12010-12-24 12:26:13 +0100925 lchan->nr, gsm_lchant_name(lchan->type), mr->ms_l1.pwr,
Holger Hans Peter Freythercf5cc5b2010-05-14 01:57:02 +0800926 rxlev2dbm(mr->dl.full.rx_lev),
927 rxlev2dbm(mr->ul.full.rx_lev),
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +0800928 VTY_NEWLINE);
929}
930
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100931
932static int dump_lchan_trx_ts(struct gsm_bts_trx_ts *ts, struct vty *vty,
933 void (*dump_cb)(struct vty *, struct gsm_lchan *))
934{
935 int lchan_nr;
936 for (lchan_nr = 0; lchan_nr < TS_MAX_LCHAN; lchan_nr++) {
937 struct gsm_lchan *lchan = &ts->lchan[lchan_nr];
938 if ((lchan->type == GSM_LCHAN_NONE) && (lchan->state == LCHAN_S_NONE))
939 continue;
940 dump_cb(vty, lchan);
941 }
942
943 return CMD_SUCCESS;
944}
945
946static int dump_lchan_trx(struct gsm_bts_trx *trx, struct vty *vty,
947 void (*dump_cb)(struct vty *, struct gsm_lchan *))
948{
949 int ts_nr;
950
951 for (ts_nr = 0; ts_nr < TRX_NR_TS; ts_nr++) {
952 struct gsm_bts_trx_ts *ts = &trx->ts[ts_nr];
953 dump_lchan_trx_ts(ts, vty, dump_cb);
954 }
955
956 return CMD_SUCCESS;
957}
958
959static int dump_lchan_bts(struct gsm_bts *bts, struct vty *vty,
960 void (*dump_cb)(struct vty *, struct gsm_lchan *))
961{
962 int trx_nr;
963
964 for (trx_nr = 0; trx_nr < bts->num_trx; trx_nr++) {
965 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_nr);
966 dump_lchan_trx(trx, vty, dump_cb);
967 }
968
969 return CMD_SUCCESS;
970}
971
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +0800972static int lchan_summary(struct vty *vty, int argc, const char **argv,
973 void (*dump_cb)(struct vty *, struct gsm_lchan *))
Harald Welte68628e82009-03-10 12:17:57 +0000974{
Harald Weltedcccb182010-05-16 20:52:23 +0200975 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Welte68628e82009-03-10 12:17:57 +0000976 struct gsm_bts *bts;
977 struct gsm_bts_trx *trx;
978 struct gsm_bts_trx_ts *ts;
979 struct gsm_lchan *lchan;
980 int bts_nr, trx_nr, ts_nr, lchan_nr;
981
982 if (argc >= 1) {
983 /* use the BTS number that the user has specified */
984 bts_nr = atoi(argv[0]);
985 if (bts_nr >= net->num_bts) {
986 vty_out(vty, "%% can't find BTS %s%s", argv[0],
987 VTY_NEWLINE);
988 return CMD_WARNING;
989 }
Harald Weltee441d9c2009-06-21 16:17:15 +0200990 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +0100991
992 if (argc == 1)
993 return dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +0000994 }
995 if (argc >= 2) {
996 trx_nr = atoi(argv[1]);
997 if (trx_nr >= bts->num_trx) {
998 vty_out(vty, "%% can't find TRX %s%s", argv[1],
999 VTY_NEWLINE);
1000 return CMD_WARNING;
1001 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001002 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001003
1004 if (argc == 2)
1005 return dump_lchan_trx(trx, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001006 }
1007 if (argc >= 3) {
1008 ts_nr = atoi(argv[2]);
1009 if (ts_nr >= TRX_NR_TS) {
1010 vty_out(vty, "%% can't find TS %s%s", argv[2],
1011 VTY_NEWLINE);
1012 return CMD_WARNING;
1013 }
1014 ts = &trx->ts[ts_nr];
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001015
1016 if (argc == 3)
1017 return dump_lchan_trx_ts(ts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001018 }
1019 if (argc >= 4) {
1020 lchan_nr = atoi(argv[3]);
1021 if (lchan_nr >= TS_MAX_LCHAN) {
1022 vty_out(vty, "%% can't find LCHAN %s%s", argv[3],
1023 VTY_NEWLINE);
1024 return CMD_WARNING;
1025 }
1026 lchan = &ts->lchan[lchan_nr];
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001027 dump_cb(vty, lchan);
Harald Welte68628e82009-03-10 12:17:57 +00001028 return CMD_SUCCESS;
1029 }
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001030
1031
Harald Welte68628e82009-03-10 12:17:57 +00001032 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001033 bts = gsm_bts_num(net, bts_nr);
Holger Hans Peter Freyther7173f632011-12-27 16:34:12 +01001034 dump_lchan_bts(bts, vty, dump_cb);
Harald Welte68628e82009-03-10 12:17:57 +00001035 }
1036
1037 return CMD_SUCCESS;
1038}
1039
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001040
1041DEFUN(show_lchan,
1042 show_lchan_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001043 "show lchan [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001044 SHOW_STR "Display information about a logical channel\n"
1045 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001046 LCHAN_NR_STR)
Holger Hans Peter Freyther029235e2010-05-14 02:03:16 +08001047
1048{
1049 return lchan_summary(vty, argc, argv, lchan_dump_full_vty);
1050}
1051
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001052DEFUN(show_lchan_summary,
1053 show_lchan_summary_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001054 "show lchan summary [<0-255>] [<0-255>] [<0-7>] [lchan_nr]",
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001055 SHOW_STR "Display information about a logical channel\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001056 "Short summary\n"
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001057 "BTS Number\n" "TRX Number\n" "Timeslot Number\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001058 LCHAN_NR_STR)
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08001059{
1060 return lchan_summary(vty, argc, argv, lchan_dump_short_vty);
1061}
1062
Harald Weltebe4b7302009-05-23 16:59:33 +00001063static void paging_dump_vty(struct vty *vty, struct gsm_paging_request *pag)
Harald Weltef5025b62009-03-28 16:55:11 +00001064{
1065 vty_out(vty, "Paging on BTS %u%s", pag->bts->nr, VTY_NEWLINE);
1066 subscr_dump_vty(vty, pag->subscr);
1067}
1068
Harald Weltebe4b7302009-05-23 16:59:33 +00001069static void bts_paging_dump_vty(struct vty *vty, struct gsm_bts *bts)
Harald Weltef5025b62009-03-28 16:55:11 +00001070{
1071 struct gsm_paging_request *pag;
1072
Holger Hans Peter Freyther9b5192b2013-03-03 11:03:17 +01001073 if (!bts->paging.bts)
1074 return;
1075
Harald Weltef5025b62009-03-28 16:55:11 +00001076 llist_for_each_entry(pag, &bts->paging.pending_requests, entry)
1077 paging_dump_vty(vty, pag);
1078}
1079
1080DEFUN(show_paging,
1081 show_paging_cmd,
Sylvain Munaut39c31de2012-12-28 12:15:11 +01001082 "show paging [<0-255>]",
Harald Welte8f0ed552010-05-11 21:53:49 +02001083 SHOW_STR "Display information about paging reuqests of a BTS\n"
1084 "BTS Number\n")
Harald Weltef5025b62009-03-28 16:55:11 +00001085{
Harald Weltedcccb182010-05-16 20:52:23 +02001086 struct gsm_network *net = gsmnet_from_vty(vty);
Harald Weltef5025b62009-03-28 16:55:11 +00001087 struct gsm_bts *bts;
1088 int bts_nr;
1089
1090 if (argc >= 1) {
1091 /* use the BTS number that the user has specified */
1092 bts_nr = atoi(argv[0]);
1093 if (bts_nr >= net->num_bts) {
1094 vty_out(vty, "%% can't find BTS %s%s", argv[0],
1095 VTY_NEWLINE);
1096 return CMD_WARNING;
1097 }
Harald Weltee441d9c2009-06-21 16:17:15 +02001098 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001099 bts_paging_dump_vty(vty, bts);
1100
1101 return CMD_SUCCESS;
1102 }
1103 for (bts_nr = 0; bts_nr < net->num_bts; bts_nr++) {
Harald Weltee441d9c2009-06-21 16:17:15 +02001104 bts = gsm_bts_num(net, bts_nr);
Harald Weltef5025b62009-03-28 16:55:11 +00001105 bts_paging_dump_vty(vty, bts);
1106 }
1107
1108 return CMD_SUCCESS;
1109}
1110
Harald Welte5013b2a2009-08-07 13:29:14 +02001111DEFUN(cfg_net,
1112 cfg_net_cmd,
Harald Welte8f0ed552010-05-11 21:53:49 +02001113 "network", NETWORK_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001114{
Harald Weltedcccb182010-05-16 20:52:23 +02001115 vty->index = gsmnet_from_vty(vty);
Harald Welte5013b2a2009-08-07 13:29:14 +02001116 vty->node = GSMNET_NODE;
1117
1118 return CMD_SUCCESS;
1119}
1120
Harald Welte5013b2a2009-08-07 13:29:14 +02001121DEFUN(cfg_net_ncc,
1122 cfg_net_ncc_cmd,
1123 "network country code <1-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001124 "Set the GSM network country code\n"
1125 "Country commands\n"
1126 CODE_CMD_STR
1127 "Network Country Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001128{
Harald Weltedcccb182010-05-16 20:52:23 +02001129 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1130
Harald Welte5013b2a2009-08-07 13:29:14 +02001131 gsmnet->country_code = atoi(argv[0]);
1132
1133 return CMD_SUCCESS;
1134}
1135
1136DEFUN(cfg_net_mnc,
1137 cfg_net_mnc_cmd,
Dieter Spaar402cced2011-07-27 23:43:56 +02001138 "mobile network code <0-999>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001139 "Set the GSM mobile network code\n"
1140 "Network Commands\n"
1141 CODE_CMD_STR
1142 "Mobile Network Code to use\n")
Harald Welte5013b2a2009-08-07 13:29:14 +02001143{
Harald Weltedcccb182010-05-16 20:52:23 +02001144 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1145
Harald Welte5013b2a2009-08-07 13:29:14 +02001146 gsmnet->network_code = atoi(argv[0]);
1147
1148 return CMD_SUCCESS;
1149}
1150
1151DEFUN(cfg_net_name_short,
1152 cfg_net_name_short_cmd,
1153 "short name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001154 "Set the short GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001155{
Harald Weltedcccb182010-05-16 20:52:23 +02001156 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1157
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001158 bsc_replace_string(gsmnet, &gsmnet->name_short, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001159 return CMD_SUCCESS;
1160}
1161
1162DEFUN(cfg_net_name_long,
1163 cfg_net_name_long_cmd,
1164 "long name NAME",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001165 "Set the long GSM network name\n" NAME_CMD_STR NAME_STR)
Harald Welte5013b2a2009-08-07 13:29:14 +02001166{
Harald Weltedcccb182010-05-16 20:52:23 +02001167 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1168
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +02001169 bsc_replace_string(gsmnet, &gsmnet->name_long, argv[0]);
Harald Welte5013b2a2009-08-07 13:29:14 +02001170 return CMD_SUCCESS;
1171}
Harald Welte40f82892009-05-23 17:31:39 +00001172
Harald Welte (local)69de3972009-08-12 14:42:23 +02001173DEFUN(cfg_net_auth_policy,
1174 cfg_net_auth_policy_cmd,
1175 "auth policy (closed|accept-all|token)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001176 "Authentication (not cryptographic)\n"
1177 "Set the GSM network authentication policy\n"
1178 "Require the MS to be activated in HLR\n"
1179 "Accept all MS, whether in HLR or not\n"
1180 "Use SMS-token based authentication\n")
Harald Welte (local)69de3972009-08-12 14:42:23 +02001181{
1182 enum gsm_auth_policy policy = gsm_auth_policy_parse(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001183 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte (local)69de3972009-08-12 14:42:23 +02001184
1185 gsmnet->auth_policy = policy;
1186
1187 return CMD_SUCCESS;
1188}
1189
Harald Welte1085c092009-11-18 20:33:19 +01001190DEFUN(cfg_net_reject_cause,
1191 cfg_net_reject_cause_cmd,
1192 "location updating reject cause <2-111>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001193 "Set the reject cause of location updating reject\n"
1194 "Set the reject cause of location updating reject\n"
1195 "Set the reject cause of location updating reject\n"
1196 "Set the reject cause of location updating reject\n"
1197 "Cause Value as Per GSM TS 04.08\n")
Harald Welte1085c092009-11-18 20:33:19 +01001198{
Harald Weltedcccb182010-05-16 20:52:23 +02001199 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1200
Harald Welte1085c092009-11-18 20:33:19 +01001201 gsmnet->reject_cause = atoi(argv[0]);
1202
1203 return CMD_SUCCESS;
1204}
1205
Harald Welte4381cfe2009-08-30 15:47:06 +09001206DEFUN(cfg_net_encryption,
1207 cfg_net_encryption_cmd,
Harald Weltead66a2d2012-07-04 21:37:56 +02001208 "encryption a5 (0|1|2|3)",
Harald Welte28326062010-05-14 20:05:17 +02001209 "Encryption options\n"
1210 "A5 encryption\n" "A5/0: No encryption\n"
Harald Weltead66a2d2012-07-04 21:37:56 +02001211 "A5/1: Encryption\n" "A5/2: Export-grade Encryption\n"
1212 "A5/3: 'New' Secure Encryption\n")
Harald Welte4381cfe2009-08-30 15:47:06 +09001213{
Harald Weltedcccb182010-05-16 20:52:23 +02001214 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1215
Andreas.Eversberg1059deb2009-11-17 09:55:26 +01001216 gsmnet->a5_encryption= atoi(argv[0]);
Harald Welte4381cfe2009-08-30 15:47:06 +09001217
1218 return CMD_SUCCESS;
1219}
1220
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001221DEFUN(cfg_net_neci,
1222 cfg_net_neci_cmd,
1223 "neci (0|1)",
Harald Welte28326062010-05-14 20:05:17 +02001224 "New Establish Cause Indication\n"
1225 "Don't set the NECI bit\n" "Set the NECI bit\n")
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001226{
Harald Weltedcccb182010-05-16 20:52:23 +02001227 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1228
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001229 gsmnet->neci = atoi(argv[0]);
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +08001230 gsm_net_update_ctype(gsmnet);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01001231 return CMD_SUCCESS;
1232}
1233
Harald Welteeab84a12009-12-13 10:53:12 +01001234DEFUN(cfg_net_rrlp_mode, cfg_net_rrlp_mode_cmd,
1235 "rrlp mode (none|ms-based|ms-preferred|ass-preferred)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001236 "Radio Resource Location Protocol\n"
1237 "Set the Radio Resource Location Protocol Mode\n"
1238 "Don't send RRLP request\n"
1239 "Request MS-based location\n"
1240 "Request any location, prefer MS-based\n"
1241 "Request any location, prefer MS-assisted\n")
Harald Welteeab84a12009-12-13 10:53:12 +01001242{
Harald Weltedcccb182010-05-16 20:52:23 +02001243 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1244
Harald Welteeab84a12009-12-13 10:53:12 +01001245 gsmnet->rrlp.mode = rrlp_mode_parse(argv[0]);
1246
1247 return CMD_SUCCESS;
1248}
1249
Harald Welte648b6ce2009-12-14 09:00:24 +01001250DEFUN(cfg_net_mm_info, cfg_net_mm_info_cmd,
1251 "mm info (0|1)",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001252 "Mobility Management\n"
1253 "Send MM INFO after LOC UPD ACCEPT\n"
1254 "Disable\n" "Enable\n")
Harald Welte648b6ce2009-12-14 09:00:24 +01001255{
Harald Weltedcccb182010-05-16 20:52:23 +02001256 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1257
Harald Welte648b6ce2009-12-14 09:00:24 +01001258 gsmnet->send_mm_info = atoi(argv[0]);
1259
1260 return CMD_SUCCESS;
1261}
1262
Harald Welte8f0ed552010-05-11 21:53:49 +02001263#define HANDOVER_STR "Handover Options\n"
1264
Harald Weltebc814502009-12-19 21:41:52 +01001265DEFUN(cfg_net_handover, cfg_net_handover_cmd,
1266 "handover (0|1)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001267 HANDOVER_STR
1268 "Don't perform in-call handover\n"
1269 "Perform in-call handover\n")
Harald Weltebc814502009-12-19 21:41:52 +01001270{
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001271 int enable = atoi(argv[0]);
Harald Weltedcccb182010-05-16 20:52:23 +02001272 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001273
1274 if (enable && ipacc_rtp_direct) {
Harald Weltefe03f0d2009-12-20 13:51:01 +01001275 vty_out(vty, "%% Cannot enable handover unless RTP Proxy mode "
1276 "is enabled by using the -P command line option%s",
1277 VTY_NEWLINE);
1278 return CMD_WARNING;
1279 }
Holger Hans Peter Freythercbcfe242010-01-07 16:14:38 +01001280 gsmnet->handover.active = enable;
Harald Weltebc814502009-12-19 21:41:52 +01001281
1282 return CMD_SUCCESS;
1283}
1284
Harald Welte8f0ed552010-05-11 21:53:49 +02001285#define HO_WIN_STR HANDOVER_STR "Measurement Window\n"
1286#define HO_WIN_RXLEV_STR HO_WIN_STR "Received Level Averaging\n"
1287#define HO_WIN_RXQUAL_STR HO_WIN_STR "Received Quality Averaging\n"
1288#define HO_PBUDGET_STR HANDOVER_STR "Power Budget\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001289#define HO_AVG_COUNT_STR "Amount to use for Averaging\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001290
Harald Welteb720bd32009-12-21 16:51:50 +01001291DEFUN(cfg_net_ho_win_rxlev_avg, cfg_net_ho_win_rxlev_avg_cmd,
1292 "handover window rxlev averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001293 HO_WIN_RXLEV_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001294 "How many RxLev measurements are used for averaging\n"
1295 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001296{
Harald Weltedcccb182010-05-16 20:52:23 +02001297 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001298 gsmnet->handover.win_rxlev_avg = atoi(argv[0]);
1299 return CMD_SUCCESS;
1300}
1301
1302DEFUN(cfg_net_ho_win_rxqual_avg, cfg_net_ho_win_rxqual_avg_cmd,
1303 "handover window rxqual averaging <1-10>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001304 HO_WIN_RXQUAL_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001305 "How many RxQual measurements are used for averaging\n"
1306 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001307{
Harald Weltedcccb182010-05-16 20:52:23 +02001308 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001309 gsmnet->handover.win_rxqual_avg = atoi(argv[0]);
1310 return CMD_SUCCESS;
1311}
1312
1313DEFUN(cfg_net_ho_win_rxlev_neigh_avg, cfg_net_ho_win_rxlev_avg_neigh_cmd,
1314 "handover window rxlev neighbor averaging <1-10>",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001315 HO_WIN_RXLEV_STR "Neighbor\n"
1316 "How many RxQual measurements are used for averaging\n"
1317 HO_AVG_COUNT_STR)
Harald Welteb720bd32009-12-21 16:51:50 +01001318{
Harald Weltedcccb182010-05-16 20:52:23 +02001319 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001320 gsmnet->handover.win_rxlev_avg_neigh = atoi(argv[0]);
1321 return CMD_SUCCESS;
1322}
1323
1324DEFUN(cfg_net_ho_pwr_interval, cfg_net_ho_pwr_interval_cmd,
1325 "handover power budget interval <1-99>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001326 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001327 "How often to check if we have a better cell (SACCH frames)\n"
1328 "Interval\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001329{
Harald Weltedcccb182010-05-16 20:52:23 +02001330 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001331 gsmnet->handover.pwr_interval = atoi(argv[0]);
1332 return CMD_SUCCESS;
1333}
1334
1335DEFUN(cfg_net_ho_pwr_hysteresis, cfg_net_ho_pwr_hysteresis_cmd,
1336 "handover power budget hysteresis <0-999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001337 HO_PBUDGET_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001338 "How many dB does a neighbor to be stronger to become a HO candidate\n"
1339 "Hysteresis\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001340{
Harald Weltedcccb182010-05-16 20:52:23 +02001341 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001342 gsmnet->handover.pwr_hysteresis = atoi(argv[0]);
1343 return CMD_SUCCESS;
1344}
1345
1346DEFUN(cfg_net_ho_max_distance, cfg_net_ho_max_distance_cmd,
1347 "handover maximum distance <0-9999>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001348 HANDOVER_STR
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001349 "How big is the maximum timing advance before HO is forced\n"
1350 "Distance\n" "Number\n")
Harald Welteb720bd32009-12-21 16:51:50 +01001351{
Harald Weltedcccb182010-05-16 20:52:23 +02001352 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welteb720bd32009-12-21 16:51:50 +01001353 gsmnet->handover.max_distance = atoi(argv[0]);
1354 return CMD_SUCCESS;
1355}
Harald Weltebc814502009-12-19 21:41:52 +01001356
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001357DEFUN(cfg_net_pag_any_tch,
1358 cfg_net_pag_any_tch_cmd,
1359 "paging any use tch (0|1)",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001360 "Assign a TCH when receiving a Paging Any request\n"
1361 "Any Channel\n" "Use\n" "TCH\n"
1362 "Do not use TCH for Paging Request Any\n"
1363 "Do use TCH for Paging Request Any\n")
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001364{
Holger Hans Peter Freytherb0e88b82010-09-06 10:09:19 +08001365 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08001366 gsmnet->pag_any_tch = atoi(argv[0]);
1367 gsm_net_update_ctype(gsmnet);
1368 return CMD_SUCCESS;
1369}
1370
Holger Hans Peter Freytherc8021062009-12-22 08:27:21 +01001371#define DECLARE_TIMER(number, doc) \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001372 DEFUN(cfg_net_T##number, \
1373 cfg_net_T##number##_cmd, \
1374 "timer t" #number " <0-65535>", \
Harald Welte8f0ed552010-05-11 21:53:49 +02001375 "Configure GSM Timers\n" \
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001376 doc "Timer Value\n") \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001377{ \
Harald Weltedcccb182010-05-16 20:52:23 +02001378 struct gsm_network *gsmnet = gsmnet_from_vty(vty); \
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001379 int value = atoi(argv[0]); \
1380 \
1381 if (value < 0 || value > 65535) { \
1382 vty_out(vty, "Timer value %s out of range.%s", \
1383 argv[0], VTY_NEWLINE); \
1384 return CMD_WARNING; \
1385 } \
1386 \
1387 gsmnet->T##number = value; \
1388 return CMD_SUCCESS; \
1389}
1390
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001391DECLARE_TIMER(3101, "Set the timeout value for IMMEDIATE ASSIGNMENT.\n")
1392DECLARE_TIMER(3103, "Set the timeout value for HANDOVER.\n")
Harald Welte67161f22012-06-03 13:01:47 +02001393DECLARE_TIMER(3105, "Set the timer for repetition of PHYSICAL INFORMATION.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001394DECLARE_TIMER(3107, "Currently not used.\n")
Holger Hans Peter Freytherb3489392011-12-28 16:21:05 +01001395DECLARE_TIMER(3109, "Set the RSL SACCH deactivation timeout.\n")
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001396DECLARE_TIMER(3111, "Set the RSL timeout to wait before releasing the RF Channel.\n")
1397DECLARE_TIMER(3113, "Set the time to try paging a subscriber.\n")
1398DECLARE_TIMER(3115, "Currently not used.\n")
1399DECLARE_TIMER(3117, "Currently not used.\n")
1400DECLARE_TIMER(3119, "Currently not used.\n")
1401DECLARE_TIMER(3122, "Waiting time (seconds) after IMM ASS REJECT\n")
1402DECLARE_TIMER(3141, "Currently not used.\n")
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001403
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001404DEFUN(cfg_net_dtx,
1405 cfg_net_dtx_cmd,
1406 "dtx-used (0|1)",
1407 "Enable the usage of DTX.\n"
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001408 "DTX is disabled\n" "DTX is enabled\n")
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08001409{
1410 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1411 gsmnet->dtx_enabled = atoi(argv[0]);
1412 return CMD_SUCCESS;
1413}
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01001414
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01001415DEFUN(cfg_net_subscr_keep,
1416 cfg_net_subscr_keep_cmd,
1417 "subscriber-keep-in-ram (0|1)",
1418 "Keep unused subscribers in RAM.\n"
1419 "Delete unused subscribers\n" "Keep unused subscribers\n")
1420{
1421 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
1422 gsmnet->keep_subscr = atoi(argv[0]);
1423 return CMD_SUCCESS;
1424}
1425
Harald Welte5258fc42009-03-28 19:07:53 +00001426/* per-BTS configuration */
1427DEFUN(cfg_bts,
1428 cfg_bts_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02001429 "bts <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001430 "Select a BTS to configure\n"
1431 "BTS Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001432{
Harald Weltedcccb182010-05-16 20:52:23 +02001433 struct gsm_network *gsmnet = gsmnet_from_vty(vty);
Harald Welte5258fc42009-03-28 19:07:53 +00001434 int bts_nr = atoi(argv[0]);
1435 struct gsm_bts *bts;
1436
Harald Weltee441d9c2009-06-21 16:17:15 +02001437 if (bts_nr > gsmnet->num_bts) {
1438 vty_out(vty, "%% The next unused BTS number is %u%s",
1439 gsmnet->num_bts, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00001440 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02001441 } else if (bts_nr == gsmnet->num_bts) {
1442 /* allocate a new one */
Harald Welte3300c012011-06-05 13:31:33 +02001443 bts = gsm_bts_alloc_register(gsmnet, GSM_BTS_TYPE_UNKNOWN,
1444 HARDCODED_TSC, HARDCODED_BSIC);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02001445 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02001446 bts = gsm_bts_num(gsmnet, bts_nr);
1447
Daniel Willmannf15c2762010-01-11 13:43:07 +01001448 if (!bts) {
1449 vty_out(vty, "%% Unable to allocate BTS %u%s",
1450 gsmnet->num_bts, VTY_NEWLINE);
Harald Weltee441d9c2009-06-21 16:17:15 +02001451 return CMD_WARNING;
Daniel Willmannf15c2762010-01-11 13:43:07 +01001452 }
Harald Welte5258fc42009-03-28 19:07:53 +00001453
1454 vty->index = bts;
Harald Welte197dea92010-05-14 17:59:53 +02001455 vty->index_sub = &bts->description;
Harald Welte5258fc42009-03-28 19:07:53 +00001456 vty->node = BTS_NODE;
1457
1458 return CMD_SUCCESS;
1459}
1460
1461DEFUN(cfg_bts_type,
1462 cfg_bts_type_cmd,
Harald Weltee555c2b2012-08-17 13:02:12 +02001463 "type TYPE", /* dynamically created */
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001464 "Set the BTS type\n" "Type\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001465{
1466 struct gsm_bts *bts = vty->index;
Harald Welte39315c42010-01-10 18:01:52 +01001467 int rc;
Harald Welte5258fc42009-03-28 19:07:53 +00001468
Harald Welte39315c42010-01-10 18:01:52 +01001469 rc = gsm_set_bts_type(bts, parse_btstype(argv[0]));
1470 if (rc < 0)
1471 return CMD_WARNING;
Harald Welte8175e952009-10-20 00:22:00 +02001472
Harald Welte5258fc42009-03-28 19:07:53 +00001473 return CMD_SUCCESS;
1474}
1475
Harald Weltefcd24452009-06-20 18:15:19 +02001476DEFUN(cfg_bts_band,
1477 cfg_bts_band_cmd,
1478 "band BAND",
Holger Hans Peter Freyther08542562011-10-03 23:42:06 +02001479 "Set the frequency band of this BTS\n" "Frequency band\n")
Harald Weltefcd24452009-06-20 18:15:19 +02001480{
1481 struct gsm_bts *bts = vty->index;
Harald Welte42581822009-08-08 16:12:58 +02001482 int band = gsm_band_parse(argv[0]);
Harald Weltefcd24452009-06-20 18:15:19 +02001483
1484 if (band < 0) {
1485 vty_out(vty, "%% BAND %d is not a valid GSM band%s",
1486 band, VTY_NEWLINE);
1487 return CMD_WARNING;
1488 }
1489
1490 bts->band = band;
1491
1492 return CMD_SUCCESS;
1493}
1494
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001495DEFUN(cfg_bts_ci,
1496 cfg_bts_ci_cmd,
1497 "cell_identity <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001498 "Set the Cell identity of this BTS\n" "Cell Identity\n")
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02001499{
1500 struct gsm_bts *bts = vty->index;
1501 int ci = atoi(argv[0]);
1502
1503 if (ci < 0 || ci > 0xffff) {
1504 vty_out(vty, "%% CI %d is not in the valid range (0-65535)%s",
1505 ci, VTY_NEWLINE);
1506 return CMD_WARNING;
1507 }
1508 bts->cell_identity = ci;
1509
1510 return CMD_SUCCESS;
1511}
1512
Harald Welte5258fc42009-03-28 19:07:53 +00001513DEFUN(cfg_bts_lac,
1514 cfg_bts_lac_cmd,
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001515 "location_area_code <0-65535>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001516 "Set the Location Area Code (LAC) of this BTS\n" "LAC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001517{
1518 struct gsm_bts *bts = vty->index;
1519 int lac = atoi(argv[0]);
1520
Holger Hans Peter Freyther0b7f4b32009-09-29 14:02:33 +02001521 if (lac < 0 || lac > 0xffff) {
1522 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
Harald Welte5258fc42009-03-28 19:07:53 +00001523 lac, VTY_NEWLINE);
1524 return CMD_WARNING;
1525 }
Holger Hans Peter Freythere48b9562009-10-01 04:07:15 +02001526
1527 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
1528 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
1529 lac, VTY_NEWLINE);
1530 return CMD_WARNING;
1531 }
1532
Harald Welte5258fc42009-03-28 19:07:53 +00001533 bts->location_area_code = lac;
1534
1535 return CMD_SUCCESS;
1536}
1537
Harald Weltea43f7892009-12-01 18:04:30 +05301538
Harald Welte5258fc42009-03-28 19:07:53 +00001539DEFUN(cfg_bts_tsc,
1540 cfg_bts_tsc_cmd,
Harald Weltec513ded2012-05-31 10:57:08 +02001541 "training_sequence_code <0-7>",
Holger Hans Peter Freyther64c17fa2012-07-21 00:27:10 +02001542 "Set the Training Sequence Code (TSC) of this BTS\n" "TSC\n")
Harald Welte5258fc42009-03-28 19:07:53 +00001543{
1544 struct gsm_bts *bts = vty->index;
1545 int tsc = atoi(argv[0]);
1546
Harald Welte5258fc42009-03-28 19:07:53 +00001547 bts->tsc = tsc;
1548
1549 return CMD_SUCCESS;
1550}
1551
Harald Welte78f2f502009-05-23 16:56:52 +00001552DEFUN(cfg_bts_bsic,
1553 cfg_bts_bsic_cmd,
1554 "base_station_id_code <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001555 "Set the Base Station Identity Code (BSIC) of this BTS\n"
1556 "BSIC of this BTS\n")
Harald Welte78f2f502009-05-23 16:56:52 +00001557{
1558 struct gsm_bts *bts = vty->index;
1559 int bsic = atoi(argv[0]);
1560
1561 if (bsic < 0 || bsic > 0x3f) {
Harald Welte42581822009-08-08 16:12:58 +02001562 vty_out(vty, "%% BSIC %d is not in the valid range (0-255)%s",
Harald Welte78f2f502009-05-23 16:56:52 +00001563 bsic, VTY_NEWLINE);
1564 return CMD_WARNING;
1565 }
1566 bts->bsic = bsic;
1567
1568 return CMD_SUCCESS;
1569}
1570
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001571DEFUN(cfg_bts_timezone,
1572 cfg_bts_timezone_cmd,
1573 "timezone <-19-19> (0|15|30|45)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001574 "Set the Timezone Offset of this BTS\n"
1575 "Timezone offset (hours)\n"
1576 "Timezone offset (00 minutes)\n"
1577 "Timezone offset (15 minutes)\n"
1578 "Timezone offset (30 minutes)\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001579 "Timezone offset (45 minutes)\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001580 )
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001581{
1582 struct gsm_bts *bts = vty->index;
1583 int tzhr = atoi(argv[0]);
1584 int tzmn = atoi(argv[1]);
1585
Harald Welte45f91712012-07-08 16:48:11 +02001586 bts->tz.hr = tzhr;
1587 bts->tz.mn = tzmn;
1588 bts->tz.override = 1;
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001589
1590 return CMD_SUCCESS;
1591}
1592
1593DEFUN(cfg_bts_no_timezone,
1594 cfg_bts_no_timezone_cmd,
1595 "no timezone",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001596 NO_STR
1597 "Disable BTS specific timezone\n")
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001598{
1599 struct gsm_bts *bts = vty->index;
Harald Welte45f91712012-07-08 16:48:11 +02001600
1601 bts->tz.override = 0;
1602
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01001603 return CMD_SUCCESS;
1604}
Harald Welte78f2f502009-05-23 16:56:52 +00001605
Harald Welte4cc34222009-05-01 15:12:31 +00001606DEFUN(cfg_bts_unit_id,
1607 cfg_bts_unit_id_cmd,
Harald Welte07dc73d2009-08-07 13:27:09 +02001608 "ip.access unit_id <0-65534> <0-255>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001609 "Abis/IP specific options\n"
1610 "Set the IPA BTS Unit ID\n"
1611 "Unit ID (Site)\n"
1612 "Unit ID (BTS)\n")
Harald Welte4cc34222009-05-01 15:12:31 +00001613{
1614 struct gsm_bts *bts = vty->index;
1615 int site_id = atoi(argv[0]);
1616 int bts_id = atoi(argv[1]);
1617
Harald Welte07dc73d2009-08-07 13:27:09 +02001618 if (!is_ipaccess_bts(bts)) {
1619 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1620 return CMD_WARNING;
1621 }
1622
Harald Welte4cc34222009-05-01 15:12:31 +00001623 bts->ip_access.site_id = site_id;
1624 bts->ip_access.bts_id = bts_id;
1625
1626 return CMD_SUCCESS;
1627}
1628
Harald Weltefd355a32011-03-04 13:41:31 +01001629DEFUN(cfg_bts_serno,
1630 cfg_bts_serno_cmd,
1631 "hsl serial-number STRING",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001632 "HSL BTS specific options\n"
1633 "Set the HSL Serial Number of this BTS\n"
1634 "Serial Number of this HSL BTS\n")
Harald Weltefd355a32011-03-04 13:41:31 +01001635{
1636 struct gsm_bts *bts = vty->index;
1637
1638 if (bts->type != GSM_BTS_TYPE_HSL_FEMTO) {
1639 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1640 return CMD_WARNING;
1641 }
1642
1643 bts->hsl.serno = strtoul(argv[0], NULL, 10);
1644
1645 return CMD_SUCCESS;
1646}
1647
Sylvain Munautc9519462011-10-17 14:04:55 +02001648DEFUN(cfg_bts_nokia_site_skip_reset,
1649 cfg_bts_nokia_site_skip_reset_cmd,
1650 "nokia_site skip-reset (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001651 "Nokia *Site related commands\n"
1652 "Skip the reset step during bootstrap process of this BTS\n"
1653 "Do NOT skip the reset\n" "Skip the reset\n")
Sylvain Munautc9519462011-10-17 14:04:55 +02001654{
1655 struct gsm_bts *bts = vty->index;
1656
1657 if (bts->type != GSM_BTS_TYPE_NOKIA_SITE) {
1658 vty_out(vty, "%% BTS is not of Nokia *Site type%s", VTY_NEWLINE);
1659 return CMD_WARNING;
1660 }
1661
1662 bts->nokia.skip_reset = atoi(argv[0]);
1663
1664 return CMD_SUCCESS;
1665}
1666
Harald Welte8f0ed552010-05-11 21:53:49 +02001667#define OML_STR "Organization & Maintenance Link\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001668#define IPA_STR "A-bis/IP Specific Options\n"
Harald Welte8f0ed552010-05-11 21:53:49 +02001669
Harald Welte8175e952009-10-20 00:22:00 +02001670DEFUN(cfg_bts_stream_id,
1671 cfg_bts_stream_id_cmd,
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001672 "oml ip.access stream_id <0-255> line E1_LINE",
Harald Welte8f0ed552010-05-11 21:53:49 +02001673 OML_STR IPA_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001674 "Set the ip.access Stream ID of the OML link of this BTS\n"
1675 "Stream Identifier\n" "Virtual E1 Line Number\n" "Virtual E1 Line Number\n")
Harald Welte8175e952009-10-20 00:22:00 +02001676{
1677 struct gsm_bts *bts = vty->index;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001678 int stream_id = atoi(argv[0]), linenr = atoi(argv[1]);
Harald Welte8175e952009-10-20 00:22:00 +02001679
1680 if (!is_ipaccess_bts(bts)) {
1681 vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
1682 return CMD_WARNING;
1683 }
1684
1685 bts->oml_tei = stream_id;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001686 /* This is used by e1inp_bind_ops callback for each BTS model. */
1687 bts->oml_e1_link.e1_nr = linenr;
1688
1689 return CMD_SUCCESS;
1690}
1691
1692DEFUN(cfg_bts_hsl_oml,
1693 cfg_bts_hsl_oml_cmd,
1694 "oml hsl line E1_LINE",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001695 OML_STR "HSL femto Specific Options\n"
Harald Welte13fe2192012-08-17 09:57:25 +02001696 "Set OML link of this HSL femto BTS\n"
1697 "Virtual E1/T1 line number\n")
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001698{
1699 struct gsm_bts *bts = vty->index;
1700 int linenr = atoi(argv[0]);
1701
1702 if (!(bts->type == GSM_BTS_TYPE_HSL_FEMTO)) {
1703 vty_out(vty, "%% BTS is not of HSL type%s", VTY_NEWLINE);
1704 return CMD_WARNING;
1705 }
1706
1707 bts->oml_e1_link.e1_nr = linenr;
Harald Welte8175e952009-10-20 00:22:00 +02001708
1709 return CMD_SUCCESS;
1710}
1711
Harald Welted13e0cd2012-08-17 09:52:03 +02001712#define OML_E1_STR OML_STR "OML E1/T1 Configuration\n"
Harald Welte8175e952009-10-20 00:22:00 +02001713
Harald Welte42581822009-08-08 16:12:58 +02001714DEFUN(cfg_bts_oml_e1,
1715 cfg_bts_oml_e1_cmd,
1716 "oml e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Welted13e0cd2012-08-17 09:52:03 +02001717 OML_E1_STR
1718 "E1/T1 line number to be used for OML\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001719 "E1/T1 line number to be used for OML\n"
1720 "E1/T1 timeslot to be used for OML\n"
1721 "E1/T1 timeslot to be used for OML\n"
1722 "E1/T1 sub-slot to be used for OML\n"
1723 "Use E1/T1 sub-slot 0\n"
1724 "Use E1/T1 sub-slot 1\n"
1725 "Use E1/T1 sub-slot 2\n"
1726 "Use E1/T1 sub-slot 3\n"
1727 "Use full E1 slot 3\n"
1728 )
Harald Welte42581822009-08-08 16:12:58 +02001729{
1730 struct gsm_bts *bts = vty->index;
1731
1732 parse_e1_link(&bts->oml_e1_link, argv[0], argv[1], argv[2]);
1733
1734 return CMD_SUCCESS;
1735}
1736
1737
1738DEFUN(cfg_bts_oml_e1_tei,
1739 cfg_bts_oml_e1_tei_cmd,
1740 "oml e1 tei <0-63>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001741 OML_E1_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001742 "Set the TEI to be used for OML\n"
1743 "TEI Number\n")
Harald Welte42581822009-08-08 16:12:58 +02001744{
1745 struct gsm_bts *bts = vty->index;
1746
1747 bts->oml_tei = atoi(argv[0]);
1748
1749 return CMD_SUCCESS;
1750}
1751
Harald Welte7a8fa412009-08-10 13:48:16 +02001752DEFUN(cfg_bts_challoc, cfg_bts_challoc_cmd,
1753 "channel allocator (ascending|descending)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001754 "Channnel Allocator\n" "Channel Allocator\n"
1755 "Allocate Timeslots and Transceivers in ascending order\n"
1756 "Allocate Timeslots and Transceivers in descending order\n")
Harald Welte7a8fa412009-08-10 13:48:16 +02001757{
1758 struct gsm_bts *bts = vty->index;
1759
1760 if (!strcmp(argv[0], "ascending"))
1761 bts->chan_alloc_reverse = 0;
1762 else
1763 bts->chan_alloc_reverse = 1;
1764
1765 return CMD_SUCCESS;
1766}
1767
Harald Welte8f0ed552010-05-11 21:53:49 +02001768#define RACH_STR "Random Access Control Channel\n"
1769
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001770DEFUN(cfg_bts_rach_tx_integer,
1771 cfg_bts_rach_tx_integer_cmd,
1772 "rach tx integer <0-15>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001773 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001774 "Set the raw tx integer value in RACH Control parameters IE\n"
1775 "Set the raw tx integer value in RACH Control parameters IE\n"
1776 "Raw tx integer value in RACH Control parameters IE\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001777{
1778 struct gsm_bts *bts = vty->index;
1779 bts->si_common.rach_control.tx_integer = atoi(argv[0]) & 0xf;
1780 return CMD_SUCCESS;
1781}
1782
1783DEFUN(cfg_bts_rach_max_trans,
1784 cfg_bts_rach_max_trans_cmd,
1785 "rach max transmission (1|2|4|7)",
Harald Welte8f0ed552010-05-11 21:53:49 +02001786 RACH_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001787 "Set the maximum number of RACH burst transmissions\n"
1788 "Set the maximum number of RACH burst transmissions\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001789 "Maximum number of 1 RACH burst transmissions\n"
1790 "Maximum number of 2 RACH burst transmissions\n"
1791 "Maximum number of 4 RACH burst transmissions\n"
1792 "Maximum number of 7 RACH burst transmissions\n")
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01001793{
1794 struct gsm_bts *bts = vty->index;
1795 bts->si_common.rach_control.max_trans = rach_max_trans_val2raw(atoi(argv[0]));
1796 return CMD_SUCCESS;
1797}
1798
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02001799#define CD_STR "Channel Description\n"
1800
1801DEFUN(cfg_bts_chan_desc_att,
1802 cfg_bts_chan_desc_att_cmd,
1803 "channel-descrption attach (0|1)",
1804 CD_STR
1805 "Set if attachment is required\n"
1806 "Attachment is NOT required\n"
1807 "Attachment is required (standard)\n")
1808{
1809 struct gsm_bts *bts = vty->index;
1810 bts->si_common.chan_desc.att = atoi(argv[0]);
1811 return CMD_SUCCESS;
1812}
1813
1814DEFUN(cfg_bts_chan_desc_bs_pa_mfrms,
1815 cfg_bts_chan_desc_bs_pa_mfrms_cmd,
1816 "channel-descrption bs-pa-mfrms <2-9>",
1817 CD_STR
1818 "Set number of multiframe periods for paging groups\n"
1819 "Number of multiframe periods for paging groups\n")
1820{
1821 struct gsm_bts *bts = vty->index;
1822 int bs_pa_mfrms = atoi(argv[0]);
1823
1824 bts->si_common.chan_desc.bs_pa_mfrms = bs_pa_mfrms - 2;
1825 return CMD_SUCCESS;
1826}
1827
1828DEFUN(cfg_bts_chan_desc_bs_ag_blks_res,
1829 cfg_bts_chan_desc_bs_ag_blks_res_cmd,
1830 "channel-descrption bs-ag-blks-res <0-7>",
1831 CD_STR
1832 "Set number of blocks reserved for access grant\n"
1833 "Number of blocks reserved for access grant\n")
1834{
1835 struct gsm_bts *bts = vty->index;
1836 int bs_ag_blks_res = atoi(argv[0]);
1837
1838 bts->si_common.chan_desc.bs_ag_blks_res = bs_ag_blks_res;
1839 return CMD_SUCCESS;
1840}
1841
Harald Welte8f0ed552010-05-11 21:53:49 +02001842#define NM_STR "Network Management\n"
1843
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001844DEFUN(cfg_bts_rach_nm_b_thresh,
1845 cfg_bts_rach_nm_b_thresh_cmd,
1846 "rach nm busy threshold <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001847 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001848 "Set the NM Busy Threshold\n"
1849 "Set the NM Busy Threshold\n"
1850 "NM Busy Threshold in dB")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001851{
1852 struct gsm_bts *bts = vty->index;
1853 bts->rach_b_thresh = atoi(argv[0]);
1854 return CMD_SUCCESS;
1855}
1856
1857DEFUN(cfg_bts_rach_nm_ldavg,
1858 cfg_bts_rach_nm_ldavg_cmd,
1859 "rach nm load average <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02001860 RACH_STR NM_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02001861 "Set the NM Loadaverage Slots value\n"
1862 "Set the NM Loadaverage Slots value\n"
1863 "NM Loadaverage Slots value\n")
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08001864{
1865 struct gsm_bts *bts = vty->index;
1866 bts->rach_ldavg_slots = atoi(argv[0]);
1867 return CMD_SUCCESS;
1868}
1869
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001870DEFUN(cfg_bts_cell_barred, cfg_bts_cell_barred_cmd,
1871 "cell barred (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001872 "Should this cell be barred from access?\n"
1873 "Should this cell be barred from access?\n"
1874 "Cell should NOT be barred\n"
1875 "Cell should be barred\n")
1876
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001877{
1878 struct gsm_bts *bts = vty->index;
1879
Harald Welte71355012009-12-21 23:08:18 +01001880 bts->si_common.rach_control.cell_bar = atoi(argv[0]);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02001881
1882 return CMD_SUCCESS;
1883}
1884
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001885DEFUN(cfg_bts_rach_ec_allowed, cfg_bts_rach_ec_allowed_cmd,
1886 "rach emergency call allowed (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001887 RACH_STR
1888 "Should this cell allow emergency calls?\n"
1889 "Should this cell allow emergency calls?\n"
1890 "Should this cell allow emergency calls?\n"
1891 "Do NOT allow emergency calls\n"
1892 "Allow emergency calls\n")
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08001893{
1894 struct gsm_bts *bts = vty->index;
1895
1896 if (atoi(argv[0]) == 0)
1897 bts->si_common.rach_control.t2 |= 0x4;
1898 else
1899 bts->si_common.rach_control.t2 &= ~0x4;
1900
1901 return CMD_SUCCESS;
1902}
1903
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001904DEFUN(cfg_bts_ms_max_power, cfg_bts_ms_max_power_cmd,
1905 "ms max power <0-40>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001906 "MS Options\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02001907 "Maximum transmit power of the MS\n"
1908 "Maximum transmit power of the MS\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02001909 "Maximum transmit power of the MS in dBm")
Harald Welte (local)0e451d02009-08-13 10:14:26 +02001910{
1911 struct gsm_bts *bts = vty->index;
1912
1913 bts->ms_max_power = atoi(argv[0]);
1914
1915 return CMD_SUCCESS;
1916}
1917
Harald Weltecfaabbb2012-08-16 23:23:50 +02001918#define CELL_STR "Cell Parameters\n"
1919
Harald Welte73225282009-12-12 18:17:25 +01001920DEFUN(cfg_bts_cell_resel_hyst, cfg_bts_cell_resel_hyst_cmd,
1921 "cell reselection hysteresis <0-14>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001922 CELL_STR "Cell re-selection parameters\n"
1923 "Cell Re-Selection Hysteresis in dB\n"
Harald Welte73225282009-12-12 18:17:25 +01001924 "Cell Re-Selection Hysteresis in dB")
1925{
1926 struct gsm_bts *bts = vty->index;
1927
1928 bts->si_common.cell_sel_par.cell_resel_hyst = atoi(argv[0])/2;
1929
1930 return CMD_SUCCESS;
1931}
1932
1933DEFUN(cfg_bts_rxlev_acc_min, cfg_bts_rxlev_acc_min_cmd,
1934 "rxlev access min <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001935 "Minimum RxLev needed for cell access\n"
1936 "Minimum RxLev needed for cell access\n"
1937 "Minimum RxLev needed for cell access\n"
Harald Welte73225282009-12-12 18:17:25 +01001938 "Minimum RxLev needed for cell access (better than -110dBm)")
1939{
1940 struct gsm_bts *bts = vty->index;
1941
1942 bts->si_common.cell_sel_par.rxlev_acc_min = atoi(argv[0]);
1943
1944 return CMD_SUCCESS;
1945}
1946
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001947DEFUN(cfg_bts_cell_bar_qualify, cfg_bts_cell_bar_qualify_cmd,
1948 "cell bar qualify (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001949 CELL_STR "Cell Bar Qualify\n" "Cell Bar Qualify\n"
1950 "Set CBQ to 0\n" "Set CBQ to 1\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001951{
1952 struct gsm_bts *bts = vty->index;
1953
1954 bts->si_common.cell_ro_sel_par.present = 1;
1955 bts->si_common.cell_ro_sel_par.cbq = atoi(argv[0]);
1956
1957 return CMD_SUCCESS;
1958}
1959
1960DEFUN(cfg_bts_cell_resel_ofs, cfg_bts_cell_resel_ofs_cmd,
1961 "cell reselection offset <0-126>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001962 CELL_STR "Cell Re-Selection Parameters\n"
1963 "Cell Re-Selection Offset (CRO) in dB\n"
1964 "Cell Re-Selection Offset (CRO) in dB\n"
1965 )
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001966{
1967 struct gsm_bts *bts = vty->index;
1968
1969 bts->si_common.cell_ro_sel_par.present = 1;
1970 bts->si_common.cell_ro_sel_par.cell_resel_off = atoi(argv[0])/2;
1971
1972 return CMD_SUCCESS;
1973}
1974
1975DEFUN(cfg_bts_temp_ofs, cfg_bts_temp_ofs_cmd,
1976 "temporary offset <0-60>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001977 "Cell selection temporary negative offset\n"
1978 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001979 "Cell selection temporary negative offset in dB")
1980{
1981 struct gsm_bts *bts = vty->index;
1982
1983 bts->si_common.cell_ro_sel_par.present = 1;
1984 bts->si_common.cell_ro_sel_par.temp_offs = atoi(argv[0])/10;
1985
1986 return CMD_SUCCESS;
1987}
1988
1989DEFUN(cfg_bts_temp_ofs_inf, cfg_bts_temp_ofs_inf_cmd,
1990 "temporary offset infinite",
Harald Weltecfaabbb2012-08-16 23:23:50 +02001991 "Cell selection temporary negative offset\n"
1992 "Cell selection temporary negative offset\n"
Sylvain Munaute0b06b02010-11-28 18:17:28 +01001993 "Sets cell selection temporary negative offset to infinity")
1994{
1995 struct gsm_bts *bts = vty->index;
1996
1997 bts->si_common.cell_ro_sel_par.present = 1;
1998 bts->si_common.cell_ro_sel_par.temp_offs = 7;
1999
2000 return CMD_SUCCESS;
2001}
2002
2003DEFUN(cfg_bts_penalty_time, cfg_bts_penalty_time_cmd,
2004 "penalty time <20-620>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002005 "Cell selection penalty time\n"
2006 "Cell selection penalty time\n"
2007 "Cell selection penalty time in seconds (by 20s increments)\n")
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002008{
2009 struct gsm_bts *bts = vty->index;
2010
2011 bts->si_common.cell_ro_sel_par.present = 1;
2012 bts->si_common.cell_ro_sel_par.penalty_time = (atoi(argv[0])-20)/20;
2013
2014 return CMD_SUCCESS;
2015}
2016
2017DEFUN(cfg_bts_penalty_time_rsvd, cfg_bts_penalty_time_rsvd_cmd,
2018 "penalty time reserved",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002019 "Cell selection penalty time\n"
2020 "Cell selection penalty time\n"
2021 "Set cell selection penalty time to reserved value 31, "
Sylvain Munaute0b06b02010-11-28 18:17:28 +01002022 "(indicate that CELL_RESELECT_OFFSET is subtracted from C2 "
2023 "and TEMPORARY_OFFSET is ignored)")
2024{
2025 struct gsm_bts *bts = vty->index;
2026
2027 bts->si_common.cell_ro_sel_par.present = 1;
2028 bts->si_common.cell_ro_sel_par.penalty_time = 31;
2029
2030 return CMD_SUCCESS;
2031}
2032
Harald Welte (local)efc92312009-08-14 23:09:25 +02002033DEFUN(cfg_bts_per_loc_upd, cfg_bts_per_loc_upd_cmd,
Daniel Willmann4d62d632012-12-27 00:02:01 +01002034 "periodic location update <6-1530>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002035 "Periodic Location Updating Interval\n"
2036 "Periodic Location Updating Interval\n"
2037 "Periodic Location Updating Interval\n"
2038 "Periodic Location Updating Interval in Minutes\n")
Harald Welte (local)efc92312009-08-14 23:09:25 +02002039{
2040 struct gsm_bts *bts = vty->index;
2041
Dieter Spaard6613e02010-10-05 21:10:55 +02002042 bts->si_common.chan_desc.t3212 = atoi(argv[0]) / 6;
Harald Welte (local)efc92312009-08-14 23:09:25 +02002043
2044 return CMD_SUCCESS;
2045}
2046
Harald Welte8f0ed552010-05-11 21:53:49 +02002047#define GPRS_TEXT "GPRS Packet Network\n"
2048
Harald Welteaf387632010-03-14 23:30:30 +08002049DEFUN(cfg_bts_prs_bvci, cfg_bts_gprs_bvci_cmd,
Harald Welte57ba7e32010-04-18 14:00:26 +02002050 "gprs cell bvci <2-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002051 GPRS_TEXT
2052 "GPRS Cell Settings\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002053 "GPRS BSSGP VC Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002054 "GPRS BSSGP VC Identifier")
2055{
2056 struct gsm_bts *bts = vty->index;
2057
Harald Welte4511d892010-04-18 15:51:20 +02002058 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002059 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2060 return CMD_WARNING;
2061 }
2062
Harald Welte97a282b2010-03-14 15:37:43 +08002063 bts->gprs.cell.bvci = atoi(argv[0]);
2064
2065 return CMD_SUCCESS;
2066}
2067
Harald Weltea5731cf2010-03-22 11:48:36 +08002068DEFUN(cfg_bts_gprs_nsei, cfg_bts_gprs_nsei_cmd,
2069 "gprs nsei <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002070 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002071 "GPRS NS Entity Identifier\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002072 "GPRS NS Entity Identifier")
2073{
2074 struct gsm_bts *bts = vty->index;
2075
Harald Welte4511d892010-04-18 15:51:20 +02002076 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Weltea5731cf2010-03-22 11:48:36 +08002077 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2078 return CMD_WARNING;
2079 }
2080
2081 bts->gprs.nse.nsei = atoi(argv[0]);
2082
2083 return CMD_SUCCESS;
2084}
2085
Harald Welte8f0ed552010-05-11 21:53:49 +02002086#define NSVC_TEXT "Network Service Virtual Connection (NS-VC)\n" \
2087 "NSVC Logical Number\n"
Harald Weltea5731cf2010-03-22 11:48:36 +08002088
Harald Welte97a282b2010-03-14 15:37:43 +08002089DEFUN(cfg_bts_gprs_nsvci, cfg_bts_gprs_nsvci_cmd,
2090 "gprs nsvc <0-1> nsvci <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002091 GPRS_TEXT NSVC_TEXT
2092 "NS Virtual Connection Identifier\n"
Harald Welte97a282b2010-03-14 15:37:43 +08002093 "GPRS NS VC Identifier")
2094{
2095 struct gsm_bts *bts = vty->index;
2096 int idx = atoi(argv[0]);
2097
Harald Welte4511d892010-04-18 15:51:20 +02002098 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002099 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2100 return CMD_WARNING;
2101 }
2102
Harald Welte97a282b2010-03-14 15:37:43 +08002103 bts->gprs.nsvc[idx].nsvci = atoi(argv[1]);
2104
2105 return CMD_SUCCESS;
2106}
2107
Harald Welteaf387632010-03-14 23:30:30 +08002108DEFUN(cfg_bts_gprs_nsvc_lport, cfg_bts_gprs_nsvc_lport_cmd,
2109 "gprs nsvc <0-1> local udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002110 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002111 "GPRS NS Local UDP Port\n"
2112 "GPRS NS Local UDP Port\n"
2113 "GPRS NS Local UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002114 "GPRS NS Local UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002115{
2116 struct gsm_bts *bts = vty->index;
2117 int idx = atoi(argv[0]);
2118
Harald Welte4511d892010-04-18 15:51:20 +02002119 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002120 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2121 return CMD_WARNING;
2122 }
2123
Harald Welteaf387632010-03-14 23:30:30 +08002124 bts->gprs.nsvc[idx].local_port = atoi(argv[1]);
2125
2126 return CMD_SUCCESS;
2127}
2128
2129DEFUN(cfg_bts_gprs_nsvc_rport, cfg_bts_gprs_nsvc_rport_cmd,
2130 "gprs nsvc <0-1> remote udp port <0-65535>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002131 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002132 "GPRS NS Remote UDP Port\n"
2133 "GPRS NS Remote UDP Port\n"
Harald Welte13fe2192012-08-17 09:57:25 +02002134 "GPRS NS Remote UDP Port\n"
2135 "GPRS NS Remote UDP Port Number\n")
Harald Welteaf387632010-03-14 23:30:30 +08002136{
2137 struct gsm_bts *bts = vty->index;
2138 int idx = atoi(argv[0]);
2139
Harald Welte4511d892010-04-18 15:51:20 +02002140 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002141 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2142 return CMD_WARNING;
2143 }
2144
Harald Welteaf387632010-03-14 23:30:30 +08002145 bts->gprs.nsvc[idx].remote_port = atoi(argv[1]);
2146
2147 return CMD_SUCCESS;
2148}
2149
2150DEFUN(cfg_bts_gprs_nsvc_rip, cfg_bts_gprs_nsvc_rip_cmd,
2151 "gprs nsvc <0-1> remote ip A.B.C.D",
Harald Welte8f0ed552010-05-11 21:53:49 +02002152 GPRS_TEXT NSVC_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002153 "GPRS NS Remote IP Address\n"
2154 "GPRS NS Remote IP Address\n"
2155 "GPRS NS Remote IP Address\n")
Harald Welteaf387632010-03-14 23:30:30 +08002156{
2157 struct gsm_bts *bts = vty->index;
2158 int idx = atoi(argv[0]);
2159 struct in_addr ia;
2160
Harald Welte4511d892010-04-18 15:51:20 +02002161 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002162 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2163 return CMD_WARNING;
2164 }
2165
Harald Welteaf387632010-03-14 23:30:30 +08002166 inet_aton(argv[1], &ia);
2167 bts->gprs.nsvc[idx].remote_ip = ntohl(ia.s_addr);
2168
2169 return CMD_SUCCESS;
2170}
2171
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002172DEFUN(cfg_bts_pag_free, cfg_bts_pag_free_cmd,
Harald Weltecfaabbb2012-08-16 23:23:50 +02002173 "paging free <-1-1024>",
2174 "Paging options\n"
2175 "Only page when having a certain amount of free slots\n"
2176 "amount of required free paging slots. -1 to disable\n")
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08002177{
2178 struct gsm_bts *bts = vty->index;
2179
2180 bts->paging.free_chans_need = atoi(argv[0]);
2181 return CMD_SUCCESS;
2182}
2183
Harald Welte615e9562010-05-11 23:50:21 +02002184DEFUN(cfg_bts_gprs_ns_timer, cfg_bts_gprs_ns_timer_cmd,
2185 "gprs ns timer " NS_TIMERS " <0-255>",
2186 GPRS_TEXT "Network Service\n"
2187 "Network Service Timer\n"
2188 NS_TIMERS_HELP "Timer Value\n")
2189{
2190 struct gsm_bts *bts = vty->index;
2191 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
2192 int val = atoi(argv[1]);
2193
2194 if (bts->gprs.mode == BTS_GPRS_NONE) {
2195 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2196 return CMD_WARNING;
2197 }
2198
2199 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.nse.timer))
2200 return CMD_WARNING;
2201
2202 bts->gprs.nse.timer[idx] = val;
2203
2204 return CMD_SUCCESS;
2205}
2206
2207#define BSSGP_TIMERS "(blocking-timer|blocking-retries|unblocking-retries|reset-timer|reset-retries|suspend-timer|suspend-retries|resume-timer|resume-retries|capability-update-timer|capability-update-retries)"
Harald Welte28326062010-05-14 20:05:17 +02002208#define BSSGP_TIMERS_HELP \
2209 "Tbvc-block timeout\n" \
2210 "Tbvc-block retries\n" \
2211 "Tbvc-unblock retries\n" \
2212 "Tbvcc-reset timeout\n" \
2213 "Tbvc-reset retries\n" \
2214 "Tbvc-suspend timeout\n" \
2215 "Tbvc-suspend retries\n" \
2216 "Tbvc-resume timeout\n" \
2217 "Tbvc-resume retries\n" \
2218 "Tbvc-capa-update timeout\n" \
2219 "Tbvc-capa-update retries\n"
Harald Welte615e9562010-05-11 23:50:21 +02002220
2221DEFUN(cfg_bts_gprs_cell_timer, cfg_bts_gprs_cell_timer_cmd,
2222 "gprs cell timer " BSSGP_TIMERS " <0-255>",
2223 GPRS_TEXT "Cell / BSSGP\n"
2224 "Cell/BSSGP Timer\n"
2225 BSSGP_TIMERS_HELP "Timer Value\n")
2226{
2227 struct gsm_bts *bts = vty->index;
2228 int idx = get_string_value(gprs_bssgp_cfg_strs, argv[0]);
2229 int val = atoi(argv[1]);
2230
2231 if (bts->gprs.mode == BTS_GPRS_NONE) {
2232 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2233 return CMD_WARNING;
2234 }
2235
2236 if (idx < 0 || idx >= ARRAY_SIZE(bts->gprs.cell.timer))
2237 return CMD_WARNING;
2238
2239 bts->gprs.cell.timer[idx] = val;
2240
2241 return CMD_SUCCESS;
2242}
2243
Harald Welte97a282b2010-03-14 15:37:43 +08002244DEFUN(cfg_bts_gprs_rac, cfg_bts_gprs_rac_cmd,
2245 "gprs routing area <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002246 GPRS_TEXT
Harald Weltecfaabbb2012-08-16 23:23:50 +02002247 "GPRS Routing Area Code\n"
2248 "GPRS Routing Area Code\n"
2249 "GPRS Routing Area Code\n")
Harald Welte97a282b2010-03-14 15:37:43 +08002250{
2251 struct gsm_bts *bts = vty->index;
2252
Harald Welte4511d892010-04-18 15:51:20 +02002253 if (bts->gprs.mode == BTS_GPRS_NONE) {
Harald Welte94036702010-03-14 23:56:56 +08002254 vty_out(vty, "%% GPRS not enabled on this BTS%s", VTY_NEWLINE);
2255 return CMD_WARNING;
2256 }
2257
Harald Welte97a282b2010-03-14 15:37:43 +08002258 bts->gprs.rac = atoi(argv[0]);
2259
2260 return CMD_SUCCESS;
2261}
2262
Harald Welte4511d892010-04-18 15:51:20 +02002263DEFUN(cfg_bts_gprs_mode, cfg_bts_gprs_mode_cmd,
2264 "gprs mode (none|gprs|egprs)",
Harald Welte8f0ed552010-05-11 21:53:49 +02002265 GPRS_TEXT
2266 "GPRS Mode for this BTS\n"
2267 "GPRS Disabled on this BTS\n"
2268 "GPRS Enabled on this BTS\n"
2269 "EGPRS (EDGE) Enabled on this BTS\n")
Harald Welteaf387632010-03-14 23:30:30 +08002270{
2271 struct gsm_bts *bts = vty->index;
Harald Weltef3d8e922010-06-14 22:44:42 +02002272 enum bts_gprs_mode mode = bts_gprs_mode_parse(argv[0]);
Harald Welteaf387632010-03-14 23:30:30 +08002273
Harald Weltef3d8e922010-06-14 22:44:42 +02002274 if (mode != BTS_GPRS_NONE &&
2275 !gsm_bts_has_feature(bts, BTS_FEAT_GPRS)) {
2276 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2277 VTY_NEWLINE);
2278 return CMD_WARNING;
2279 }
2280 if (mode == BTS_GPRS_EGPRS &&
2281 !gsm_bts_has_feature(bts, BTS_FEAT_EGPRS)) {
2282 vty_out(vty, "This BTS type does not support %s%s", argv[0],
2283 VTY_NEWLINE);
2284 return CMD_WARNING;
2285 }
2286
2287 bts->gprs.mode = mode;
Harald Welteaf387632010-03-14 23:30:30 +08002288
2289 return CMD_SUCCESS;
2290}
2291
Harald Welte9fbff4a2010-07-30 11:50:09 +02002292#define SI_TEXT "System Information Messages\n"
2293#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)"
2294#define SI_TYPE_HELP "System Information Type 1\n" \
2295 "System Information Type 2\n" \
2296 "System Information Type 3\n" \
2297 "System Information Type 4\n" \
2298 "System Information Type 5\n" \
2299 "System Information Type 6\n" \
2300 "System Information Type 7\n" \
2301 "System Information Type 8\n" \
2302 "System Information Type 9\n" \
2303 "System Information Type 10\n" \
2304 "System Information Type 13\n" \
2305 "System Information Type 16\n" \
2306 "System Information Type 17\n" \
2307 "System Information Type 18\n" \
2308 "System Information Type 19\n" \
2309 "System Information Type 20\n" \
2310 "System Information Type 2bis\n" \
2311 "System Information Type 2ter\n" \
2312 "System Information Type 2quater\n" \
2313 "System Information Type 5bis\n" \
2314 "System Information Type 5ter\n"
2315
2316DEFUN(cfg_bts_si_mode, cfg_bts_si_mode_cmd,
2317 "system-information " SI_TYPE_TEXT " mode (static|computed)",
2318 SI_TEXT SI_TYPE_HELP
2319 "System Information Mode\n"
2320 "Static user-specified\n"
2321 "Dynamic, BSC-computed\n")
2322{
2323 struct gsm_bts *bts = vty->index;
2324 int type;
2325
2326 type = get_string_value(osmo_sitype_strs, argv[0]);
2327 if (type < 0) {
2328 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2329 return CMD_WARNING;
2330 }
2331
2332 if (!strcmp(argv[1], "static"))
2333 bts->si_mode_static |= (1 << type);
2334 else
2335 bts->si_mode_static &= ~(1 << type);
2336
2337 return CMD_SUCCESS;
2338}
2339
2340DEFUN(cfg_bts_si_static, cfg_bts_si_static_cmd,
2341 "system-information " SI_TYPE_TEXT " static HEXSTRING",
2342 SI_TEXT SI_TYPE_HELP
2343 "Static System Information filling\n"
2344 "Static user-specified SI content in HEX notation\n")
2345{
2346 struct gsm_bts *bts = vty->index;
2347 int rc, type;
2348
2349 type = get_string_value(osmo_sitype_strs, argv[0]);
2350 if (type < 0) {
2351 vty_out(vty, "Error SI Type%s", VTY_NEWLINE);
2352 return CMD_WARNING;
2353 }
2354
2355 if (!(bts->si_mode_static & (1 << type))) {
2356 vty_out(vty, "SI Type %s is not configured in static mode%s",
2357 get_value_string(osmo_sitype_strs, type), VTY_NEWLINE);
2358 return CMD_WARNING;
2359 }
2360
Harald Welte290aaed2010-07-30 11:53:18 +02002361 /* Fill buffer with padding pattern */
2362 memset(bts->si_buf[type], 0x2b, sizeof(bts->si_buf[type]));
2363
2364 /* Parse the user-specified SI in hex format, [partially] overwriting padding */
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +02002365 rc = osmo_hexparse(argv[1], bts->si_buf[type], sizeof(bts->si_buf[0]));
Harald Welte9fbff4a2010-07-30 11:50:09 +02002366 if (rc < 0 || rc > sizeof(bts->si_buf[0])) {
2367 vty_out(vty, "Error parsing HEXSTRING%s", VTY_NEWLINE);
2368 return CMD_WARNING;
2369 }
2370
2371 /* Mark this SI as present */
2372 bts->si_valid |= (1 << type);
2373
2374 return CMD_SUCCESS;
2375}
2376
Harald Welte32c09622011-01-11 23:44:56 +01002377DEFUN(cfg_bts_neigh_mode, cfg_bts_neigh_mode_cmd,
Harald Welte64c07d22011-02-15 11:43:27 +01002378 "neighbor-list mode (automatic|manual|manual-si5)",
Harald Welte32c09622011-01-11 23:44:56 +01002379 "Neighbor List\n" "Mode of Neighbor List generation\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002380 "Automatically from all BTS in this OpenBSC\n" "Manual\n"
2381 "Manual with different lists for SI2 and SI5\n")
Harald Welte32c09622011-01-11 23:44:56 +01002382{
2383 struct gsm_bts *bts = vty->index;
Harald Welte64c07d22011-02-15 11:43:27 +01002384 int mode = get_string_value(bts_neigh_mode_strs, argv[0]);
Harald Welte32c09622011-01-11 23:44:56 +01002385
Harald Welte64c07d22011-02-15 11:43:27 +01002386 switch (mode) {
2387 case NL_MODE_MANUAL_SI5SEP:
2388 case NL_MODE_MANUAL:
Harald Welte32c09622011-01-11 23:44:56 +01002389 /* make sure we clear the current list when switching to
2390 * manual mode */
2391 if (bts->neigh_list_manual_mode == 0)
2392 memset(&bts->si_common.data.neigh_list, 0,
2393 sizeof(bts->si_common.data.neigh_list));
Harald Welte64c07d22011-02-15 11:43:27 +01002394 break;
2395 default:
2396 break;
2397 }
2398
2399 bts->neigh_list_manual_mode = mode;
Harald Welte32c09622011-01-11 23:44:56 +01002400
2401 return CMD_SUCCESS;
2402}
2403
2404DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002405 "neighbor-list (add|del) arfcn <0-1023>",
Harald Welte32c09622011-01-11 23:44:56 +01002406 "Neighbor List\n" "Add to manual neighbor list\n"
2407 "Delete from manual neighbor list\n" "ARFCN of neighbor\n"
2408 "ARFCN of neighbor\n")
2409{
2410 struct gsm_bts *bts = vty->index;
2411 struct bitvec *bv = &bts->si_common.neigh_list;
2412 uint16_t arfcn = atoi(argv[1]);
2413
2414 if (!bts->neigh_list_manual_mode) {
2415 vty_out(vty, "%% Cannot configure neighbor list in "
2416 "automatic mode%s", VTY_NEWLINE);
2417 return CMD_WARNING;
2418 }
2419
2420 if (!strcmp(argv[0], "add"))
2421 bitvec_set_bit_pos(bv, arfcn, 1);
2422 else
2423 bitvec_set_bit_pos(bv, arfcn, 0);
2424
2425 return CMD_SUCCESS;
2426}
2427
Harald Welte64c07d22011-02-15 11:43:27 +01002428DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002429 "si5 neighbor-list (add|del) arfcn <0-1023>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002430 "SI5 Neighbor List\n"
Harald Welte64c07d22011-02-15 11:43:27 +01002431 "SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
2432 "Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
2433 "ARFCN of neighbor\n")
2434{
2435 struct gsm_bts *bts = vty->index;
2436 struct bitvec *bv = &bts->si_common.si5_neigh_list;
2437 uint16_t arfcn = atoi(argv[1]);
2438
2439 if (!bts->neigh_list_manual_mode) {
2440 vty_out(vty, "%% Cannot configure neighbor list in "
2441 "automatic mode%s", VTY_NEWLINE);
2442 return CMD_WARNING;
2443 }
2444
2445 if (!strcmp(argv[0], "add"))
2446 bitvec_set_bit_pos(bv, arfcn, 1);
2447 else
2448 bitvec_set_bit_pos(bv, arfcn, 0);
2449
2450 return CMD_SUCCESS;
2451}
Harald Welte9fbff4a2010-07-30 11:50:09 +02002452
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02002453#define EXCL_RFLOCK_STR "Exclude this BTS from the global RF Lock\n"
2454
2455DEFUN(cfg_bts_excl_rf_lock,
2456 cfg_bts_excl_rf_lock_cmd,
2457 "rf-lock-exclude",
2458 EXCL_RFLOCK_STR)
2459{
2460 struct gsm_bts *bts = vty->index;
2461 bts->excl_from_rf_lock = 1;
2462 return CMD_SUCCESS;
2463}
2464
2465DEFUN(cfg_bts_no_excl_rf_lock,
2466 cfg_bts_no_excl_rf_lock_cmd,
2467 "no rf-lock-exclude",
2468 NO_STR EXCL_RFLOCK_STR)
2469{
2470 struct gsm_bts *bts = vty->index;
2471 bts->excl_from_rf_lock = 0;
2472 return CMD_SUCCESS;
2473}
2474
Harald Welte8f0ed552010-05-11 21:53:49 +02002475#define TRX_TEXT "Radio Transceiver\n"
Harald Welte7a8fa412009-08-10 13:48:16 +02002476
Harald Welte5258fc42009-03-28 19:07:53 +00002477/* per TRX configuration */
2478DEFUN(cfg_trx,
2479 cfg_trx_cmd,
Harald Welte57e07242012-08-17 12:50:14 +02002480 "trx <0-255>",
Harald Welte8f0ed552010-05-11 21:53:49 +02002481 TRX_TEXT
Harald Welte5258fc42009-03-28 19:07:53 +00002482 "Select a TRX to configure")
2483{
2484 int trx_nr = atoi(argv[0]);
2485 struct gsm_bts *bts = vty->index;
2486 struct gsm_bts_trx *trx;
2487
Harald Weltee441d9c2009-06-21 16:17:15 +02002488 if (trx_nr > bts->num_trx) {
2489 vty_out(vty, "%% The next unused TRX number in this BTS is %u%s",
2490 bts->num_trx, VTY_NEWLINE);
Harald Welte5258fc42009-03-28 19:07:53 +00002491 return CMD_WARNING;
Harald Weltee441d9c2009-06-21 16:17:15 +02002492 } else if (trx_nr == bts->num_trx) {
2493 /* we need to allocate a new one */
2494 trx = gsm_bts_trx_alloc(bts);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002495 } else
Harald Weltee441d9c2009-06-21 16:17:15 +02002496 trx = gsm_bts_trx_num(bts, trx_nr);
Holger Hans Peter Freytheracf8a0c2010-03-29 08:47:44 +02002497
Harald Weltee441d9c2009-06-21 16:17:15 +02002498 if (!trx)
2499 return CMD_WARNING;
Harald Welte5258fc42009-03-28 19:07:53 +00002500
2501 vty->index = trx;
Harald Welte197dea92010-05-14 17:59:53 +02002502 vty->index_sub = &trx->description;
Harald Welte5258fc42009-03-28 19:07:53 +00002503 vty->node = TRX_NODE;
2504
2505 return CMD_SUCCESS;
2506}
2507
2508DEFUN(cfg_trx_arfcn,
2509 cfg_trx_arfcn_cmd,
Harald Welte1fe73a12012-01-29 13:24:12 +01002510 "arfcn <0-1023>",
Harald Welte13fe2192012-08-17 09:57:25 +02002511 "Set the ARFCN for this TRX\n"
2512 "Absolute Radio Frequency Channel Number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002513{
2514 int arfcn = atoi(argv[0]);
2515 struct gsm_bts_trx *trx = vty->index;
2516
2517 /* FIXME: check if this ARFCN is supported by this TRX */
2518
2519 trx->arfcn = arfcn;
2520
2521 /* FIXME: patch ARFCN into SYSTEM INFORMATION */
2522 /* FIXME: use OML layer to update the ARFCN */
2523 /* FIXME: use RSL layer to update SYSTEM INFORMATION */
2524
2525 return CMD_SUCCESS;
2526}
2527
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002528DEFUN(cfg_trx_nominal_power,
2529 cfg_trx_nominal_power_cmd,
2530 "nominal power <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002531 "Nominal TRX RF Power in dBm\n"
2532 "Nominal TRX RF Power in dBm\n"
2533 "Nominal TRX RF Power in dBm\n")
Harald Welte (local)7b37d972009-12-27 20:56:38 +01002534{
2535 struct gsm_bts_trx *trx = vty->index;
2536
2537 trx->nominal_power = atoi(argv[0]);
2538
2539 return CMD_SUCCESS;
2540}
2541
Harald Weltefcd24452009-06-20 18:15:19 +02002542DEFUN(cfg_trx_max_power_red,
2543 cfg_trx_max_power_red_cmd,
2544 "max_power_red <0-100>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002545 "Reduction of maximum BS RF Power (relative to nominal power)\n"
Harald Weltefcd24452009-06-20 18:15:19 +02002546 "Reduction of maximum BS RF Power in dB\n")
2547{
2548 int maxpwr_r = atoi(argv[0]);
2549 struct gsm_bts_trx *trx = vty->index;
Harald Welte61a83b22009-11-18 09:20:22 +01002550 int upper_limit = 24; /* default 12.21 max power red. */
Harald Weltefcd24452009-06-20 18:15:19 +02002551
2552 /* FIXME: check if our BTS type supports more than 12 */
2553 if (maxpwr_r < 0 || maxpwr_r > upper_limit) {
2554 vty_out(vty, "%% Power %d dB is not in the valid range%s",
2555 maxpwr_r, VTY_NEWLINE);
2556 return CMD_WARNING;
2557 }
2558 if (maxpwr_r & 1) {
2559 vty_out(vty, "%% Power %d dB is not an even value%s",
2560 maxpwr_r, VTY_NEWLINE);
2561 return CMD_WARNING;
2562 }
2563
2564 trx->max_power_red = maxpwr_r;
2565
2566 /* FIXME: make sure we update this using OML */
2567
2568 return CMD_SUCCESS;
2569}
2570
Harald Welte42581822009-08-08 16:12:58 +02002571DEFUN(cfg_trx_rsl_e1,
2572 cfg_trx_rsl_e1_cmd,
2573 "rsl e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002574 "RSL Parameters\n"
2575 "E1/T1 interface to be used for RSL\n"
2576 "E1/T1 interface to be used for RSL\n"
2577 "E1/T1 Line Number to be used for RSL\n"
2578 "E1/T1 Timeslot to be used for RSL\n"
2579 "E1/T1 Timeslot to be used for RSL\n"
2580 "E1/T1 Sub-slot to be used for RSL\n"
2581 "E1/T1 Sub-slot 0 is to be used for RSL\n"
2582 "E1/T1 Sub-slot 1 is to be used for RSL\n"
2583 "E1/T1 Sub-slot 2 is to be used for RSL\n"
2584 "E1/T1 Sub-slot 3 is to be used for RSL\n"
2585 "E1/T1 full timeslot is to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002586{
2587 struct gsm_bts_trx *trx = vty->index;
2588
2589 parse_e1_link(&trx->rsl_e1_link, argv[0], argv[1], argv[2]);
2590
2591 return CMD_SUCCESS;
2592}
2593
2594DEFUN(cfg_trx_rsl_e1_tei,
2595 cfg_trx_rsl_e1_tei_cmd,
2596 "rsl e1 tei <0-63>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002597 "RSL Parameters\n"
2598 "Set the TEI to be used for RSL\n"
2599 "Set the TEI to be used for RSL\n"
2600 "TEI to be used for RSL\n")
Harald Welte42581822009-08-08 16:12:58 +02002601{
2602 struct gsm_bts_trx *trx = vty->index;
2603
2604 trx->rsl_tei = atoi(argv[0]);
2605
2606 return CMD_SUCCESS;
2607}
2608
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002609DEFUN(cfg_trx_rf_locked,
2610 cfg_trx_rf_locked_cmd,
2611 "rf_locked (0|1)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002612 "Set or unset the RF Locking (Turn off RF of the TRX)\n"
2613 "TRX is NOT RF locked (active)\n"
2614 "TRX is RF locked (turned off)\n")
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01002615{
2616 int locked = atoi(argv[0]);
2617 struct gsm_bts_trx *trx = vty->index;
2618
2619 gsm_trx_lock_rf(trx, locked);
2620 return CMD_SUCCESS;
2621}
Harald Welte42581822009-08-08 16:12:58 +02002622
Harald Welte5258fc42009-03-28 19:07:53 +00002623/* per TS configuration */
2624DEFUN(cfg_ts,
2625 cfg_ts_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002626 "timeslot <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002627 "Select a Timeslot to configure\n"
2628 "Timeslot number\n")
Harald Welte5258fc42009-03-28 19:07:53 +00002629{
2630 int ts_nr = atoi(argv[0]);
2631 struct gsm_bts_trx *trx = vty->index;
2632 struct gsm_bts_trx_ts *ts;
2633
2634 if (ts_nr >= TRX_NR_TS) {
2635 vty_out(vty, "%% A GSM TRX only has %u Timeslots per TRX%s",
2636 TRX_NR_TS, VTY_NEWLINE);
2637 return CMD_WARNING;
2638 }
2639
2640 ts = &trx->ts[ts_nr];
2641
2642 vty->index = ts;
2643 vty->node = TS_NODE;
2644
2645 return CMD_SUCCESS;
2646}
2647
Harald Weltea6fd58e2009-08-07 00:25:23 +02002648DEFUN(cfg_ts_pchan,
2649 cfg_ts_pchan_cmd,
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002650 "phys_chan_config PCHAN", /* dynamically generated! */
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01002651 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002652{
2653 struct gsm_bts_trx_ts *ts = vty->index;
2654 int pchanc;
2655
2656 pchanc = gsm_pchan_parse(argv[0]);
2657 if (pchanc < 0)
2658 return CMD_WARNING;
2659
2660 ts->pchan = pchanc;
2661
2662 return CMD_SUCCESS;
2663}
2664
2665/* used for backwards compatibility with old config files that still
2666 * have uppercase pchan type names */
2667DEFUN_HIDDEN(cfg_ts_pchan_compat,
2668 cfg_ts_pchan_compat_cmd,
Harald Weltea6fd58e2009-08-07 00:25:23 +02002669 "phys_chan_config PCHAN",
Holger Hans Peter Freyther63b0e442013-03-03 09:32:08 +01002670 "Physical Channel configuration (TCH/SDCCH/...)\n" "Physical Channel\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02002671{
2672 struct gsm_bts_trx_ts *ts = vty->index;
2673 int pchanc;
2674
2675 pchanc = gsm_pchan_parse(argv[0]);
2676 if (pchanc < 0)
2677 return CMD_WARNING;
2678
2679 ts->pchan = pchanc;
2680
2681 return CMD_SUCCESS;
2682}
2683
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002684
2685
Harald Welte135a6482011-05-30 12:09:13 +02002686DEFUN(cfg_ts_tsc,
2687 cfg_ts_tsc_cmd,
2688 "training_sequence_code <0-7>",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002689 "Training Sequence Code of the Timeslot\n" "TSC\n")
Harald Welte135a6482011-05-30 12:09:13 +02002690{
2691 struct gsm_bts_trx_ts *ts = vty->index;
2692
2693 ts->tsc = atoi(argv[0]);
2694
2695 return CMD_SUCCESS;
2696}
2697
Harald Weltea39b0f22010-06-14 22:26:10 +02002698#define HOPPING_STR "Configure frequency hopping\n"
2699
2700DEFUN(cfg_ts_hopping,
2701 cfg_ts_hopping_cmd,
2702 "hopping enabled (0|1)",
2703 HOPPING_STR "Enable or disable frequency hopping\n"
2704 "Disable frequency hopping\n" "Enable frequency hopping\n")
2705{
2706 struct gsm_bts_trx_ts *ts = vty->index;
Harald Weltec2fb3d02010-06-14 22:47:37 +02002707 int enabled = atoi(argv[0]);
Harald Weltea39b0f22010-06-14 22:26:10 +02002708
Harald Weltec2fb3d02010-06-14 22:47:37 +02002709 if (enabled && !gsm_bts_has_feature(ts->trx->bts, BTS_FEAT_HOPPING)) {
2710 vty_out(vty, "BTS model does not support hopping%s",
2711 VTY_NEWLINE);
2712 return CMD_WARNING;
2713 }
2714
2715 ts->hopping.enabled = enabled;
Harald Weltea39b0f22010-06-14 22:26:10 +02002716
2717 return CMD_SUCCESS;
2718}
2719
Harald Welte6e0cd042009-09-12 13:05:33 +02002720DEFUN(cfg_ts_hsn,
2721 cfg_ts_hsn_cmd,
Harald Weltea39b0f22010-06-14 22:26:10 +02002722 "hopping sequence-number <0-63>",
2723 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002724 "Which hopping sequence to use for this channel\n"
2725 "Hopping Sequence Number (HSN)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002726{
2727 struct gsm_bts_trx_ts *ts = vty->index;
2728
2729 ts->hopping.hsn = atoi(argv[0]);
2730
2731 return CMD_SUCCESS;
2732}
2733
2734DEFUN(cfg_ts_maio,
2735 cfg_ts_maio_cmd,
2736 "hopping maio <0-63>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002737 HOPPING_STR
Harald Weltecfaabbb2012-08-16 23:23:50 +02002738 "Which hopping MAIO to use for this channel\n"
2739 "Mobile Allocation Index Offset (MAIO)\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002740{
2741 struct gsm_bts_trx_ts *ts = vty->index;
2742
2743 ts->hopping.maio = atoi(argv[0]);
2744
2745 return CMD_SUCCESS;
2746}
2747
2748DEFUN(cfg_ts_arfcn_add,
2749 cfg_ts_arfcn_add_cmd,
2750 "hopping arfcn add <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002751 HOPPING_STR "Configure hopping ARFCN list\n"
2752 "Add an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002753{
2754 struct gsm_bts_trx_ts *ts = vty->index;
2755 int arfcn = atoi(argv[0]);
2756
Harald Weltea39b0f22010-06-14 22:26:10 +02002757 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 1);
2758
Harald Welte6e0cd042009-09-12 13:05:33 +02002759 return CMD_SUCCESS;
2760}
2761
2762DEFUN(cfg_ts_arfcn_del,
2763 cfg_ts_arfcn_del_cmd,
2764 "hopping arfcn del <0-1023>",
Harald Weltea39b0f22010-06-14 22:26:10 +02002765 HOPPING_STR "Configure hopping ARFCN list\n"
2766 "Delete an entry to the hopping ARFCN list\n" "ARFCN\n")
Harald Welte6e0cd042009-09-12 13:05:33 +02002767{
2768 struct gsm_bts_trx_ts *ts = vty->index;
2769 int arfcn = atoi(argv[0]);
2770
Harald Weltea39b0f22010-06-14 22:26:10 +02002771 bitvec_set_bit_pos(&ts->hopping.arfcns, arfcn, 0);
2772
Harald Welte6e0cd042009-09-12 13:05:33 +02002773 return CMD_SUCCESS;
2774}
2775
Harald Weltea6fd58e2009-08-07 00:25:23 +02002776DEFUN(cfg_ts_e1_subslot,
2777 cfg_ts_e1_subslot_cmd,
Harald Welte42581822009-08-08 16:12:58 +02002778 "e1 line E1_LINE timeslot <1-31> sub-slot (0|1|2|3|full)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002779 "E1/T1 channel connected to this on-air timeslot\n"
2780 "E1/T1 channel connected to this on-air timeslot\n"
2781 "E1/T1 line connected to this on-air timeslot\n"
Harald Welted13e0cd2012-08-17 09:52:03 +02002782 "E1/T1 timeslot connected to this on-air timeslot\n"
2783 "E1/T1 timeslot connected to this on-air timeslot\n"
Harald Weltecfaabbb2012-08-16 23:23:50 +02002784 "E1/T1 sub-slot connected to this on-air timeslot\n"
2785 "E1/T1 sub-slot 0 connected to this on-air timeslot\n"
2786 "E1/T1 sub-slot 1 connected to this on-air timeslot\n"
2787 "E1/T1 sub-slot 2 connected to this on-air timeslot\n"
2788 "E1/T1 sub-slot 3 connected to this on-air timeslot\n"
2789 "Full E1/T1 timeslot connected to this on-air timeslot\n")
Harald Weltea6fd58e2009-08-07 00:25:23 +02002790{
2791 struct gsm_bts_trx_ts *ts = vty->index;
2792
Harald Welte42581822009-08-08 16:12:58 +02002793 parse_e1_link(&ts->e1_link, argv[0], argv[1], argv[2]);
Harald Weltea6fd58e2009-08-07 00:25:23 +02002794
2795 return CMD_SUCCESS;
2796}
Harald Welte5258fc42009-03-28 19:07:53 +00002797
Harald Welte4f10c252010-05-16 21:47:13 +02002798void openbsc_vty_print_statistics(struct vty *vty, struct gsm_network *net)
2799{
2800 vty_out(vty, "Channel Requests : %lu total, %lu no channel%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002801 osmo_counter_get(net->stats.chreq.total),
2802 osmo_counter_get(net->stats.chreq.no_channel), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002803 vty_out(vty, "Channel Failures : %lu rf_failures, %lu rll failures%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002804 osmo_counter_get(net->stats.chan.rf_fail),
2805 osmo_counter_get(net->stats.chan.rll_err), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002806 vty_out(vty, "Paging : %lu attempted, %lu complete, %lu expired%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002807 osmo_counter_get(net->stats.paging.attempted),
2808 osmo_counter_get(net->stats.paging.completed),
2809 osmo_counter_get(net->stats.paging.expired), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002810 vty_out(vty, "BTS failures : %lu OML, %lu RSL%s",
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +02002811 osmo_counter_get(net->stats.bts.oml_fail),
2812 osmo_counter_get(net->stats.bts.rsl_fail), VTY_NEWLINE);
Harald Welte4f10c252010-05-16 21:47:13 +02002813}
2814
Harald Welte5bc61dc2010-05-16 22:02:16 +02002815DEFUN(logging_fltr_imsi,
2816 logging_fltr_imsi_cmd,
2817 "logging filter imsi IMSI",
2818 LOGGING_STR FILTER_STR
2819 "Filter log messages by IMSI\n" "IMSI to be used as filter\n")
2820{
Harald Welte8dcebd32011-02-18 21:10:05 +01002821 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002822
Harald Welte8dcebd32011-02-18 21:10:05 +01002823 if (!tgt)
Harald Welte5bc61dc2010-05-16 22:02:16 +02002824 return CMD_WARNING;
Harald Welte5bc61dc2010-05-16 22:02:16 +02002825
Harald Welte8dcebd32011-02-18 21:10:05 +01002826 log_set_imsi_filter(tgt, argv[0]);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002827 return CMD_SUCCESS;
2828}
2829
Harald Welte8dcebd32011-02-18 21:10:05 +01002830
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002831DEFUN(drop_bts,
2832 drop_bts_cmd,
Holger Hans Peter Freyther0586b0f2010-04-11 12:46:45 +02002833 "drop bts connection <0-65535> (oml|rsl)",
Harald Weltecfaabbb2012-08-16 23:23:50 +02002834 "Debug/Simulation command to drop Abis/IP BTS\n"
2835 "Debug/Simulation command to drop Abis/IP BTS\n"
2836 "Debug/Simulation command to drop Abis/IP BTS\n"
2837 "BTS NR\n" "Drop OML Connection\n" "Drop RSL Connection\n")
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002838{
2839 struct gsm_network *gsmnet;
2840 struct gsm_bts_trx *trx;
2841 struct gsm_bts *bts;
2842 unsigned int bts_nr;
2843
2844 gsmnet = gsmnet_from_vty(vty);
2845
2846 bts_nr = atoi(argv[0]);
2847 if (bts_nr >= gsmnet->num_bts) {
2848 vty_out(vty, "BTS number must be between 0 and %d. It was %d.%s",
2849 gsmnet->num_bts, bts_nr, VTY_NEWLINE);
2850 return CMD_WARNING;
2851 }
2852
2853 bts = gsm_bts_num(gsmnet, bts_nr);
2854 if (!bts) {
2855 vty_out(vty, "BTS Nr. %d could not be found.%s", bts_nr, VTY_NEWLINE);
2856 return CMD_WARNING;
2857 }
2858
2859 if (!is_ipaccess_bts(bts)) {
2860 vty_out(vty, "This command only works for ipaccess.%s", VTY_NEWLINE);
2861 return CMD_WARNING;
2862 }
2863
2864
2865 /* close all connections */
2866 if (strcmp(argv[1], "oml") == 0) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002867 ipaccess_drop_oml(bts);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002868 } else if (strcmp(argv[1], "rsl") == 0) {
2869 /* close all rsl connections */
2870 llist_for_each_entry(trx, &bts->trx_list, list) {
Holger Hans Peter Freytherdab8e272010-11-15 20:29:46 +01002871 ipaccess_drop_rsl(trx);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002872 }
2873 } else {
2874 vty_out(vty, "Argument must be 'oml# or 'rsl'.%s", VTY_NEWLINE);
2875 return CMD_WARNING;
2876 }
2877
2878 return CMD_SUCCESS;
2879}
2880
Harald Welted0d2b0b2010-12-23 13:18:07 +01002881DEFUN(pdch_act, pdch_act_cmd,
2882 "bts <0-255> trx <0-255> timeslot <0-7> pdch (activate|deactivate)",
2883 "BTS related commands\n" "BTS Number\n" "Transceiver\n" "Transceiver Number\n"
2884 "TRX Timeslot\n" "Timeslot Number\n" "Packet Data Channel\n"
2885 "Activate Dynamic PDCH/TCH (-> PDCH mode)\n"
2886 "Deactivate Dynamic PDCH/TCH (-> TCH mode)\n")
2887{
2888 struct gsm_bts *bts;
2889 struct gsm_bts_trx *trx;
2890 struct gsm_bts_trx_ts *ts;
2891 int bts_nr = atoi(argv[0]);
2892 int trx_nr = atoi(argv[1]);
2893 int ts_nr = atoi(argv[2]);
2894 int activate;
2895
2896 bts = gsm_bts_num(bsc_gsmnet, bts_nr);
2897 if (!bts) {
2898 vty_out(vty, "%% No such BTS (%d)%s", bts_nr, VTY_NEWLINE);
2899 return CMD_WARNING;
2900 }
2901
2902 if (!is_ipaccess_bts(bts)) {
2903 vty_out(vty, "%% This command only works for ipaccess BTS%s",
2904 VTY_NEWLINE);
2905 return CMD_WARNING;
2906 }
2907
2908 trx = gsm_bts_trx_num(bts, trx_nr);
2909 if (!trx) {
2910 vty_out(vty, "%% No such TRX (%d)%s", trx_nr, VTY_NEWLINE);
2911 return CMD_WARNING;
2912 }
2913
2914 ts = &trx->ts[ts_nr];
2915 if (ts->pchan != GSM_PCHAN_TCH_F_PDCH) {
2916 vty_out(vty, "%% Timeslot %u is not in dynamic TCH_F/PDCH "
2917 "mode%s", ts_nr, VTY_NEWLINE);
2918 return CMD_WARNING;
2919 }
2920
2921 if (!strcmp(argv[3], "activate"))
2922 activate = 1;
2923 else
2924 activate = 0;
2925
2926 rsl_ipacc_pdch_activate(ts, activate);
2927
2928 return CMD_SUCCESS;
2929
2930}
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02002931
Harald Weltedcccb182010-05-16 20:52:23 +02002932extern int bsc_vty_init_extra(void);
Harald Welte1353f962010-05-16 19:20:24 +02002933extern const char *openbsc_copyright;
Holger Hans Peter Freythere1ffc082010-04-10 00:08:28 +02002934
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002935int bsc_vty_init(const struct log_info *cat)
Harald Welte68628e82009-03-10 12:17:57 +00002936{
Harald Welte4ab9d7c2012-08-17 12:42:06 +02002937 cfg_ts_pchan_cmd.string =
2938 vty_cmd_string_from_valstr(tall_bsc_ctx,
2939 gsm_pchant_names,
2940 "phys_chan_config (", "|", ")",
2941 VTY_DO_LOWER);
2942 cfg_ts_pchan_cmd.doc =
2943 vty_cmd_string_from_valstr(tall_bsc_ctx,
2944 gsm_pchant_descs,
2945 "Physical Channel Combination\n",
2946 "\n", "", 0);
2947
Harald Weltee555c2b2012-08-17 13:02:12 +02002948 cfg_bts_type_cmd.string =
2949 vty_cmd_string_from_valstr(tall_bsc_ctx,
2950 bts_type_names,
2951 "type (", "|", ")",
2952 VTY_DO_LOWER);
2953 cfg_bts_type_cmd.doc =
2954 vty_cmd_string_from_valstr(tall_bsc_ctx,
2955 bts_type_descs,
2956 "BTS Vendor/Type\n",
2957 "\n", "", 0);
2958
2959
Harald Welteb4d5b172010-05-12 16:10:35 +00002960 install_element_ve(&show_net_cmd);
2961 install_element_ve(&show_bts_cmd);
2962 install_element_ve(&show_trx_cmd);
2963 install_element_ve(&show_ts_cmd);
2964 install_element_ve(&show_lchan_cmd);
Holger Hans Peter Freyther3d6a5d62010-05-14 02:08:49 +08002965 install_element_ve(&show_lchan_summary_cmd);
Harald Welte5bc61dc2010-05-16 22:02:16 +02002966 install_element_ve(&logging_fltr_imsi_cmd);
Harald Welte1bc77352009-03-10 19:47:51 +00002967
Harald Welteb4d5b172010-05-12 16:10:35 +00002968 install_element_ve(&show_paging_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00002969
Pablo Neira Ayuso739a5662011-03-09 13:36:32 +01002970 logging_vty_add_cmds(cat);
Harald Welte8dcebd32011-02-18 21:10:05 +01002971 install_element(CFG_LOG_NODE, &logging_fltr_imsi_cmd);
Holger Hans Peter Freytherb61e3b22009-12-22 22:32:51 +01002972
Harald Welte5013b2a2009-08-07 13:29:14 +02002973 install_element(CONFIG_NODE, &cfg_net_cmd);
2974 install_node(&net_node, config_write_net);
2975 install_default(GSMNET_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02002976 install_element(GSMNET_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02002977 install_element(GSMNET_NODE, &ournode_end_cmd);
Harald Welte42581822009-08-08 16:12:58 +02002978 install_element(GSMNET_NODE, &cfg_net_ncc_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02002979 install_element(GSMNET_NODE, &cfg_net_mnc_cmd);
2980 install_element(GSMNET_NODE, &cfg_net_name_short_cmd);
2981 install_element(GSMNET_NODE, &cfg_net_name_long_cmd);
Harald Welte (local)69de3972009-08-12 14:42:23 +02002982 install_element(GSMNET_NODE, &cfg_net_auth_policy_cmd);
Harald Welte1085c092009-11-18 20:33:19 +01002983 install_element(GSMNET_NODE, &cfg_net_reject_cause_cmd);
Harald Welte4381cfe2009-08-30 15:47:06 +09002984 install_element(GSMNET_NODE, &cfg_net_encryption_cmd);
Holger Hans Peter Freytherf7d752f2009-11-16 17:12:38 +01002985 install_element(GSMNET_NODE, &cfg_net_neci_cmd);
Harald Welteeab84a12009-12-13 10:53:12 +01002986 install_element(GSMNET_NODE, &cfg_net_rrlp_mode_cmd);
Harald Welte3d23db42009-12-14 17:49:15 +01002987 install_element(GSMNET_NODE, &cfg_net_mm_info_cmd);
Harald Weltebc814502009-12-19 21:41:52 +01002988 install_element(GSMNET_NODE, &cfg_net_handover_cmd);
Harald Welteb720bd32009-12-21 16:51:50 +01002989 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_cmd);
2990 install_element(GSMNET_NODE, &cfg_net_ho_win_rxqual_avg_cmd);
2991 install_element(GSMNET_NODE, &cfg_net_ho_win_rxlev_avg_neigh_cmd);
2992 install_element(GSMNET_NODE, &cfg_net_ho_pwr_interval_cmd);
2993 install_element(GSMNET_NODE, &cfg_net_ho_pwr_hysteresis_cmd);
2994 install_element(GSMNET_NODE, &cfg_net_ho_max_distance_cmd);
Holger Hans Peter Freytherc4d88ad2009-11-21 21:18:38 +01002995 install_element(GSMNET_NODE, &cfg_net_T3101_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01002996 install_element(GSMNET_NODE, &cfg_net_T3103_cmd);
2997 install_element(GSMNET_NODE, &cfg_net_T3105_cmd);
2998 install_element(GSMNET_NODE, &cfg_net_T3107_cmd);
2999 install_element(GSMNET_NODE, &cfg_net_T3109_cmd);
3000 install_element(GSMNET_NODE, &cfg_net_T3111_cmd);
3001 install_element(GSMNET_NODE, &cfg_net_T3113_cmd);
3002 install_element(GSMNET_NODE, &cfg_net_T3115_cmd);
3003 install_element(GSMNET_NODE, &cfg_net_T3117_cmd);
3004 install_element(GSMNET_NODE, &cfg_net_T3119_cmd);
Harald Weltec9f499f2010-12-23 22:53:50 +01003005 install_element(GSMNET_NODE, &cfg_net_T3122_cmd);
Holger Hans Peter Freyther23975e72009-11-21 21:42:26 +01003006 install_element(GSMNET_NODE, &cfg_net_T3141_cmd);
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +08003007 install_element(GSMNET_NODE, &cfg_net_dtx_cmd);
Holger Hans Peter Freytherae9006a2010-12-22 16:26:04 +01003008 install_element(GSMNET_NODE, &cfg_net_subscr_keep_cmd);
Holger Hans Peter Freyther76fc4a32010-09-06 09:41:50 +08003009 install_element(GSMNET_NODE, &cfg_net_pag_any_tch_cmd);
Harald Welte5013b2a2009-08-07 13:29:14 +02003010
3011 install_element(GSMNET_NODE, &cfg_bts_cmd);
Harald Welte67ce0732009-08-06 19:06:46 +02003012 install_node(&bts_node, config_write_bts);
Harald Welte68628e82009-03-10 12:17:57 +00003013 install_default(BTS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02003014 install_element(BTS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02003015 install_element(BTS_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003016 install_element(BTS_NODE, &cfg_bts_type_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003017 install_element(BTS_NODE, &cfg_description_cmd);
3018 install_element(BTS_NODE, &cfg_no_description_cmd);
Harald Weltefcd24452009-06-20 18:15:19 +02003019 install_element(BTS_NODE, &cfg_bts_band_cmd);
Holger Hans Peter Freytherc4a49e32009-08-21 14:44:12 +02003020 install_element(BTS_NODE, &cfg_bts_ci_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003021 install_element(BTS_NODE, &cfg_bts_lac_cmd);
3022 install_element(BTS_NODE, &cfg_bts_tsc_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003023 install_element(BTS_NODE, &cfg_bts_bsic_cmd);
Harald Welte4cc34222009-05-01 15:12:31 +00003024 install_element(BTS_NODE, &cfg_bts_unit_id_cmd);
Gus Bourg1c5dd2c2011-12-02 10:18:17 +01003025 install_element(BTS_NODE, &cfg_bts_timezone_cmd);
3026 install_element(BTS_NODE, &cfg_bts_no_timezone_cmd);
Harald Weltefd355a32011-03-04 13:41:31 +01003027 install_element(BTS_NODE, &cfg_bts_serno_cmd);
Sylvain Munautc9519462011-10-17 14:04:55 +02003028 install_element(BTS_NODE, &cfg_bts_nokia_site_skip_reset_cmd);
Harald Welte8175e952009-10-20 00:22:00 +02003029 install_element(BTS_NODE, &cfg_bts_stream_id_cmd);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02003030 install_element(BTS_NODE, &cfg_bts_hsl_oml_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003031 install_element(BTS_NODE, &cfg_bts_oml_e1_cmd);
3032 install_element(BTS_NODE, &cfg_bts_oml_e1_tei_cmd);
Harald Welte7a8fa412009-08-10 13:48:16 +02003033 install_element(BTS_NODE, &cfg_bts_challoc_cmd);
Sylvain Munaut4010f1e2009-12-22 13:43:26 +01003034 install_element(BTS_NODE, &cfg_bts_rach_tx_integer_cmd);
3035 install_element(BTS_NODE, &cfg_bts_rach_max_trans_cmd);
Andreas Eversberg2ee7ecd2012-10-13 07:27:47 +02003036 install_element(BTS_NODE, &cfg_bts_chan_desc_att_cmd);
3037 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_pa_mfrms_cmd);
3038 install_element(BTS_NODE, &cfg_bts_chan_desc_bs_ag_blks_res_cmd);
Holger Hans Peter Freyther95c22902010-04-25 23:08:39 +08003039 install_element(BTS_NODE, &cfg_bts_rach_nm_b_thresh_cmd);
3040 install_element(BTS_NODE, &cfg_bts_rach_nm_ldavg_cmd);
Harald Welte (local)5dececf2009-08-12 13:28:23 +02003041 install_element(BTS_NODE, &cfg_bts_cell_barred_cmd);
Holger Hans Peter Freyther3a0a4632010-05-14 00:39:19 +08003042 install_element(BTS_NODE, &cfg_bts_rach_ec_allowed_cmd);
Harald Welte (local)0e451d02009-08-13 10:14:26 +02003043 install_element(BTS_NODE, &cfg_bts_ms_max_power_cmd);
Harald Welte (local)efc92312009-08-14 23:09:25 +02003044 install_element(BTS_NODE, &cfg_bts_per_loc_upd_cmd);
Harald Welte73225282009-12-12 18:17:25 +01003045 install_element(BTS_NODE, &cfg_bts_cell_resel_hyst_cmd);
3046 install_element(BTS_NODE, &cfg_bts_rxlev_acc_min_cmd);
Sylvain Munaute0b06b02010-11-28 18:17:28 +01003047 install_element(BTS_NODE, &cfg_bts_cell_bar_qualify_cmd);
3048 install_element(BTS_NODE, &cfg_bts_cell_resel_ofs_cmd);
3049 install_element(BTS_NODE, &cfg_bts_temp_ofs_cmd);
3050 install_element(BTS_NODE, &cfg_bts_temp_ofs_inf_cmd);
3051 install_element(BTS_NODE, &cfg_bts_penalty_time_cmd);
3052 install_element(BTS_NODE, &cfg_bts_penalty_time_rsvd_cmd);
Harald Welte4511d892010-04-18 15:51:20 +02003053 install_element(BTS_NODE, &cfg_bts_gprs_mode_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003054 install_element(BTS_NODE, &cfg_bts_gprs_ns_timer_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003055 install_element(BTS_NODE, &cfg_bts_gprs_rac_cmd);
3056 install_element(BTS_NODE, &cfg_bts_gprs_bvci_cmd);
Harald Welte615e9562010-05-11 23:50:21 +02003057 install_element(BTS_NODE, &cfg_bts_gprs_cell_timer_cmd);
Harald Weltea5731cf2010-03-22 11:48:36 +08003058 install_element(BTS_NODE, &cfg_bts_gprs_nsei_cmd);
Harald Welte97a282b2010-03-14 15:37:43 +08003059 install_element(BTS_NODE, &cfg_bts_gprs_nsvci_cmd);
Harald Welteaf387632010-03-14 23:30:30 +08003060 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_lport_cmd);
3061 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rport_cmd);
3062 install_element(BTS_NODE, &cfg_bts_gprs_nsvc_rip_cmd);
Holger Hans Peter Freythere66bf1f2010-09-06 10:11:25 +08003063 install_element(BTS_NODE, &cfg_bts_pag_free_cmd);
Harald Welte9fbff4a2010-07-30 11:50:09 +02003064 install_element(BTS_NODE, &cfg_bts_si_mode_cmd);
3065 install_element(BTS_NODE, &cfg_bts_si_static_cmd);
Harald Welte32c09622011-01-11 23:44:56 +01003066 install_element(BTS_NODE, &cfg_bts_neigh_mode_cmd);
3067 install_element(BTS_NODE, &cfg_bts_neigh_cmd);
Harald Welte64c07d22011-02-15 11:43:27 +01003068 install_element(BTS_NODE, &cfg_bts_si5_neigh_cmd);
Holger Hans Peter Freythere30d40d2012-07-20 10:27:31 +02003069 install_element(BTS_NODE, &cfg_bts_excl_rf_lock_cmd);
3070 install_element(BTS_NODE, &cfg_bts_no_excl_rf_lock_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003071
Harald Welte5258fc42009-03-28 19:07:53 +00003072 install_element(BTS_NODE, &cfg_trx_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003073 install_node(&trx_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00003074 install_default(TRX_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02003075 install_element(TRX_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02003076 install_element(TRX_NODE, &ournode_end_cmd);
Harald Welte5258fc42009-03-28 19:07:53 +00003077 install_element(TRX_NODE, &cfg_trx_arfcn_cmd);
Harald Welte197dea92010-05-14 17:59:53 +02003078 install_element(TRX_NODE, &cfg_description_cmd);
3079 install_element(TRX_NODE, &cfg_no_description_cmd);
Harald Welte (local)7b37d972009-12-27 20:56:38 +01003080 install_element(TRX_NODE, &cfg_trx_nominal_power_cmd);
Harald Welte879dc972009-06-20 22:36:12 +02003081 install_element(TRX_NODE, &cfg_trx_max_power_red_cmd);
Harald Welte42581822009-08-08 16:12:58 +02003082 install_element(TRX_NODE, &cfg_trx_rsl_e1_cmd);
3083 install_element(TRX_NODE, &cfg_trx_rsl_e1_tei_cmd);
Holger Hans Peter Freyther2d501ea2009-11-11 11:54:24 +01003084 install_element(TRX_NODE, &cfg_trx_rf_locked_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003085
Harald Welte5258fc42009-03-28 19:07:53 +00003086 install_element(TRX_NODE, &cfg_ts_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003087 install_node(&ts_node, dummy_config_write);
Harald Welte68628e82009-03-10 12:17:57 +00003088 install_default(TS_NODE);
Harald Welte62ab20c2010-05-14 18:59:17 +02003089 install_element(TS_NODE, &ournode_exit_cmd);
Harald Welte54f74242010-05-14 19:11:04 +02003090 install_element(TS_NODE, &ournode_end_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003091 install_element(TS_NODE, &cfg_ts_pchan_cmd);
Harald Welte4ab9d7c2012-08-17 12:42:06 +02003092 install_element(TS_NODE, &cfg_ts_pchan_compat_cmd);
Harald Welte135a6482011-05-30 12:09:13 +02003093 install_element(TS_NODE, &cfg_ts_tsc_cmd);
Harald Weltea39b0f22010-06-14 22:26:10 +02003094 install_element(TS_NODE, &cfg_ts_hopping_cmd);
Harald Welte6e0cd042009-09-12 13:05:33 +02003095 install_element(TS_NODE, &cfg_ts_hsn_cmd);
3096 install_element(TS_NODE, &cfg_ts_maio_cmd);
3097 install_element(TS_NODE, &cfg_ts_arfcn_add_cmd);
3098 install_element(TS_NODE, &cfg_ts_arfcn_del_cmd);
Harald Weltea6fd58e2009-08-07 00:25:23 +02003099 install_element(TS_NODE, &cfg_ts_e1_subslot_cmd);
Harald Welte68628e82009-03-10 12:17:57 +00003100
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003101 install_element(ENABLE_NODE, &drop_bts_cmd);
Harald Welted0d2b0b2010-12-23 13:18:07 +01003102 install_element(ENABLE_NODE, &pdch_act_cmd);
Holger Hans Peter Freyther2484ceb2010-10-26 09:40:13 +02003103
Harald Welte81c9b9c2010-05-31 16:40:40 +02003104 abis_nm_vty_init();
Harald Weltee1d5eca2011-02-12 14:42:59 +01003105 abis_om2k_vty_init();
Harald Welte3016d9f2011-02-05 13:54:41 +01003106 e1inp_vty_init();
Harald Welte81c9b9c2010-05-31 16:40:40 +02003107
Harald Weltedcccb182010-05-16 20:52:23 +02003108 bsc_vty_init_extra();
Harald Welte40f82892009-05-23 17:31:39 +00003109
Harald Welte68628e82009-03-10 12:17:57 +00003110 return 0;
3111}