blob: cef47d1b34a2d828be44c9fe53b04f92aaacff68 [file] [log] [blame]
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001/* OpenBSC NAT interface to quagga VTY */
2/* (C) 2010 by Holger Hans Peter Freyther
3 * (C) 2010 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <vty/command.h>
23#include <vty/buffer.h>
24#include <vty/vty.h>
25
26#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +080027#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080028#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +080029#include <openbsc/mgcp.h>
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +020030#include <openbsc/vty.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080031
32#include <osmocore/talloc.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080033
34#include <sccp/sccp.h>
35
36#include <stdlib.h>
37
38static struct bsc_nat *_nat;
39
40static struct cmd_node nat_node = {
41 NAT_NODE,
42 "%s(nat)#",
43 1,
44};
45
46static struct cmd_node bsc_node = {
47 BSC_NODE,
48 "%s(bsc)#",
49 1,
50};
51
52static int config_write_nat(struct vty *vty)
53{
54 vty_out(vty, "nat%s", VTY_NEWLINE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +020055 if (_nat->imsi_deny)
Holger Hans Peter Freyther3df02332010-05-14 23:06:09 +080056 vty_out(vty, " imsi deny %s%s", _nat->imsi_deny, VTY_NEWLINE);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080057 vty_out(vty, " msc ip %s%s", _nat->msc_ip, VTY_NEWLINE);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020058 vty_out(vty, " msc port %d%s", _nat->msc_port, VTY_NEWLINE);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080059 vty_out(vty, " timeout auth %d%s", _nat->auth_timeout, VTY_NEWLINE);
60 vty_out(vty, " timeout ping %d%s", _nat->ping_timeout, VTY_NEWLINE);
61 vty_out(vty, " timeout pong %d%s", _nat->pong_timeout, VTY_NEWLINE);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +080062 if (_nat->token)
63 vty_out(vty, " token %s%s", _nat->token, VTY_NEWLINE);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +080064 vty_out(vty, " ip-tos %d%s", _nat->bsc_ip_tos, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080065 return CMD_SUCCESS;
66}
67
68static void config_write_bsc_single(struct vty *vty, struct bsc_config *bsc)
69{
70 vty_out(vty, " bsc %u%s", bsc->nr, VTY_NEWLINE);
71 vty_out(vty, " token %s%s", bsc->token, VTY_NEWLINE);
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +020072 vty_out(vty, " location_area_code %u%s", bsc->lac, VTY_NEWLINE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +020073 if (bsc->imsi_allow)
74 vty_out(vty, " imsi allow %s%s", bsc->imsi_allow, VTY_NEWLINE);
75 if (bsc->imsi_deny)
76 vty_out(vty, " imsi deny %s%s", bsc->imsi_deny, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +080077 vty_out(vty, " paging forbidden %d%s", bsc->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +080078 if (bsc->description)
79 vty_out(vty, " description %s%s", bsc->description, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080080}
81
82static int config_write_bsc(struct vty *vty)
83{
84 struct bsc_config *bsc;
85
86 llist_for_each_entry(bsc, &_nat->bsc_configs, entry)
87 config_write_bsc_single(vty, bsc);
88 return CMD_SUCCESS;
89}
90
91
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +080092DEFUN(show_sccp, show_sccp_cmd, "show sccp connections",
93 SHOW_STR "Display information about current SCCP connections")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080094{
95 struct sccp_connections *con;
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +080096 vty_out(vty, "Listing all opening SCCP connections%s", VTY_NEWLINE);
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +080097
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080098 llist_for_each_entry(con, &_nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +080099 vty_out(vty, "For BSC Nr: %d lac: %d; BSC ref: 0x%x; MUX ref: 0x%x; Network has ref: %d ref: 0x%x MSC/BSC mux: 0x%x/0x%x type: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200100 con->bsc->cfg ? con->bsc->cfg->nr : -1,
101 con->bsc->cfg ? con->bsc->cfg->lac : -1,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800102 sccp_src_ref_to_int(&con->real_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200103 sccp_src_ref_to_int(&con->patched_ref),
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800104 con->has_remote_ref,
105 sccp_src_ref_to_int(&con->remote_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200106 con->msc_timeslot, con->bsc_timeslot,
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800107 bsc_con_type_to_string(con->con_type),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200108 VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800109 }
110
111 return CMD_SUCCESS;
112}
113
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800114DEFUN(show_bsc, show_bsc_cmd, "show bsc connections",
115 SHOW_STR "Display information about current BSCs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800116{
117 struct bsc_connection *con;
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200118 struct sockaddr_in sock;
119 socklen_t len = sizeof(sock);
120
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800121 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200122 getpeername(con->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
Holger Hans Peter Freyther3b879812010-05-01 15:32:32 +0800123 vty_out(vty, "BSC nr: %d lac: %d auth: %d fd: %d peername: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200124 con->cfg ? con->cfg->nr : -1,
125 con->cfg ? con->cfg->lac : -1,
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200126 con->authenticated, con->write_queue.bfd.fd,
127 inet_ntoa(sock.sin_addr), VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800128 }
129
130 return CMD_SUCCESS;
131}
132
Holger Hans Peter Freytherab7539c2010-04-22 13:36:46 +0800133DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
134 SHOW_STR "Display information about known BSC configs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800135{
136 struct bsc_config *conf;
137 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
138 vty_out(vty, "BSC token: '%s' lac: %u nr: %u%s",
139 conf->token, conf->lac, conf->nr, VTY_NEWLINE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200140 vty_out(vty, " imsi_allow: '%s' imsi_deny: '%s'%s",
141 conf->imsi_allow ? conf->imsi_allow: "any",
142 conf->imsi_deny ? conf->imsi_deny : "none",
143 VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800144 vty_out(vty, " paging forbidden: %d%s",
145 conf->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800146 if (conf->description)
147 vty_out(vty, " description: %s%s", conf->description, VTY_NEWLINE);
148 else
149 vty_out(vty, " No description.%s", VTY_NEWLINE);
150
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800151 }
152
153 return CMD_SUCCESS;
154}
155
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200156DEFUN(show_stats,
157 show_stats_cmd,
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800158 "show statistics [NR]",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800159 SHOW_STR "Display network statistics")
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200160{
161 struct bsc_config *conf;
162
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800163 int nr = -1;
164
165 if (argc == 1)
166 nr = atoi(argv[0]);
167
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200168 vty_out(vty, "NAT statistics%s", VTY_NEWLINE);
169 vty_out(vty, " SCCP Connections %lu total, %lu calls%s",
170 counter_get(_nat->stats.sccp.conn),
171 counter_get(_nat->stats.sccp.calls), VTY_NEWLINE);
172 vty_out(vty, " MSC Connections %lu%s",
173 counter_get(_nat->stats.msc.reconn), VTY_NEWLINE);
174 vty_out(vty, " BSC Connections %lu total, %lu auth failed.%s",
175 counter_get(_nat->stats.bsc.reconn),
176 counter_get(_nat->stats.bsc.auth_fail), VTY_NEWLINE);
177
178 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800179 if (argc == 1 && nr != conf->nr)
180 continue;
181
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200182 vty_out(vty, " BSC lac: %d nr: %d%s",
183 conf->lac, conf->nr, VTY_NEWLINE);
184 vty_out(vty, " SCCP Connnections %lu total, %lu calls%s",
185 counter_get(conf->stats.sccp.conn),
186 counter_get(conf->stats.sccp.calls), VTY_NEWLINE);
187 vty_out(vty, " BSC Connections %lu total%s",
188 counter_get(conf->stats.net.reconn), VTY_NEWLINE);
189 }
190
191 return CMD_SUCCESS;
192}
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800193
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800194DEFUN(show_msc,
195 show_msc_cmd,
196 "show msc connection",
197 SHOW_STR "Show the status of the MSC connection.")
198{
199 if (!_nat->msc_con) {
200 vty_out(vty, "The MSC is not yet configured.\n");
201 return CMD_WARNING;
202 }
203
204 vty_out(vty, "MSC on %s:%d is connected: %d%s\n",
205 _nat->msc_con->ip, _nat->msc_con->port,
206 _nat->msc_con->is_connected, VTY_NEWLINE);
207 return CMD_SUCCESS;
208}
209
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800210DEFUN(close_bsc,
211 close_bsc_cmd,
212 "close bsc connection BSC_NR",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800213 "Close the connection with the BSC identified by the config number.")
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800214{
215 struct bsc_connection *bsc;
216 int bsc_nr = atoi(argv[0]);
217
218 llist_for_each_entry(bsc, &_nat->bsc_connections, list_entry) {
219 if (!bsc->cfg || bsc->cfg->nr != bsc_nr)
220 continue;
221 bsc_close_connection(bsc);
222 break;
223 }
224
225 return CMD_SUCCESS;
226}
227
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800228DEFUN(cfg_nat, cfg_nat_cmd, "nat", "Configute the NAT")
229{
230 vty->index = _nat;
231 vty->node = NAT_NODE;
232
233 return CMD_SUCCESS;
234}
235
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200236DEFUN(cfg_nat_imsi_deny,
237 cfg_nat_imsi_deny_cmd,
238 "imsi deny [REGEXP]",
239 "Deny matching IMSIs to talk to the MSC. "
240 "The defualt is to not deny.")
241{
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800242 bsc_parse_reg(_nat, &_nat->imsi_deny_re, &_nat->imsi_deny, argc, argv);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200243 return CMD_SUCCESS;
244}
245
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800246DEFUN(cfg_nat_msc_ip,
247 cfg_nat_msc_ip_cmd,
Holger Hans Peter Freytherd8b82062010-05-14 02:36:42 +0800248 "msc ip A.B.C.D",
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800249 "Set the IP address of the MSC.")
250{
251 bsc_nat_set_msc_ip(_nat, argv[0]);
252 return CMD_SUCCESS;
253}
254
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200255DEFUN(cfg_nat_msc_port,
256 cfg_nat_msc_port_cmd,
257 "msc port <1-65500>",
258 "Set the port of the MSC.")
259{
260 _nat->msc_port = atoi(argv[0]);
261 return CMD_SUCCESS;
262}
263
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800264DEFUN(cfg_nat_auth_time,
265 cfg_nat_auth_time_cmd,
266 "timeout auth <1-256>",
267 "The time to wait for an auth response.")
268{
269 _nat->auth_timeout = atoi(argv[0]);
270 return CMD_SUCCESS;
271}
272
273DEFUN(cfg_nat_ping_time,
274 cfg_nat_ping_time_cmd,
275 "timeout ping NR",
276 "Send a ping every NR seconds. Negative to disable.")
277{
278 _nat->ping_timeout = atoi(argv[0]);
279 return CMD_SUCCESS;
280}
281
282DEFUN(cfg_nat_pong_time,
283 cfg_nat_pong_time_cmd,
284 "timeout pong NR",
285 "Wait NR seconds for the PONG response. Should be smaller than ping.")
286{
287 _nat->pong_timeout = atoi(argv[0]);
288 return CMD_SUCCESS;
289}
290
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800291DEFUN(cfg_nat_token, cfg_nat_token_cmd,
292 "token TOKEN",
293 "Set a token for the NAT")
294{
295 if (_nat->token)
296 talloc_free(_nat->token);
297 _nat->token = talloc_strdup(_nat, argv[0]);
298 return CMD_SUCCESS;
299}
300
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800301DEFUN(cfg_nat_bsc_ip_tos, cfg_nat_bsc_ip_tos_cmd,
302 "ip-tos <0-255>",
303 "Set the IP_TOS for the BSCs to use\n" "Set the IP_TOS attribute")
304{
305 _nat->bsc_ip_tos = atoi(argv[0]);
306 return CMD_SUCCESS;
307}
308
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800309/* per BSC configuration */
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800310DEFUN(cfg_bsc, cfg_bsc_cmd, "bsc BSC_NR", "Select a BSC to configure")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800311{
312 int bsc_nr = atoi(argv[0]);
313 struct bsc_config *bsc;
314
315 if (bsc_nr > _nat->num_bsc) {
316 vty_out(vty, "%% The next unused BSC number is %u%s",
317 _nat->num_bsc, VTY_NEWLINE);
318 return CMD_WARNING;
319 } else if (bsc_nr == _nat->num_bsc) {
320 /* allocate a new one */
321 bsc = bsc_config_alloc(_nat, "unknown", 0);
322 } else
323 bsc = bsc_config_num(_nat, bsc_nr);
324
325 if (!bsc)
326 return CMD_WARNING;
327
328 vty->index = bsc;
329 vty->node = BSC_NODE;
330
331 return CMD_SUCCESS;
332}
333
334DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN", "Set the token")
335{
336 struct bsc_config *conf = vty->index;
337
338 if (conf->token)
339 talloc_free(conf->token);
340 conf->token = talloc_strdup(conf, argv[0]);
341 return CMD_SUCCESS;
342}
343
344DEFUN(cfg_bsc_lac, cfg_bsc_lac_cmd, "location_area_code <0-65535>",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800345 "Set the Location Area Code (LAC) of this BSC")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800346{
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200347 struct bsc_config *tmp;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800348 struct bsc_config *conf = vty->index;
349
350 int lac = atoi(argv[0]);
351
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800352 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
353 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
354 lac, VTY_NEWLINE);
355 return CMD_WARNING;
356 }
357
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200358 /* verify that the LACs are unique */
359 llist_for_each_entry(tmp, &_nat->bsc_configs, entry) {
360 if (tmp->lac == lac) {
361 vty_out(vty, "%% LAC %d is already used.%s", lac, VTY_NEWLINE);
362 return CMD_ERR_INCOMPLETE;
363 }
364 }
365
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800366 conf->lac = lac;
367
368 return CMD_SUCCESS;
369}
370
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200371DEFUN(cfg_bsc_imsi_allow,
372 cfg_bsc_imsi_allow_cmd,
373 "imsi allow [REGEXP]",
374 "Allow IMSIs with the following network to talk to the MSC."
375 "The default is to allow everyone)")
376{
377 struct bsc_config *conf = vty->index;
378
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800379 bsc_parse_reg(conf, &conf->imsi_allow_re, &conf->imsi_allow, argc, argv);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200380 return CMD_SUCCESS;
381}
382
383DEFUN(cfg_bsc_imsi_deny,
384 cfg_bsc_imsi_deny_cmd,
385 "imsi deny [REGEXP]",
386 "Deny IMSIs with the following network to talk to the MSC."
387 "The default is to not deny anyone.)")
388{
389 struct bsc_config *conf = vty->index;
390
Holger Hans Peter Freyther12dc89a2010-05-14 18:38:29 +0800391 bsc_parse_reg(conf, &conf->imsi_deny_re, &conf->imsi_deny, argc, argv);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200392 return CMD_SUCCESS;
393}
394
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800395DEFUN(cfg_bsc_paging,
396 cfg_bsc_paging_cmd,
397 "paging forbidden (0|1)",
398 "Forbid sending PAGING REQUESTS to the BSC.")
399{
400 struct bsc_config *conf = vty->index;
401
Holger Hans Peter Freyther834f1df2010-04-21 20:07:07 +0800402 if (strcmp("1", argv[0]) == 0)
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800403 conf->forbid_paging = 1;
404 else
405 conf->forbid_paging = 0;
406
407 return CMD_SUCCESS;
408}
409
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800410DEFUN(cfg_bsc_desc,
411 cfg_bsc_desc_cmd,
412 "description DESC",
413 "Provide a description for the given BSC.")
414{
415 struct bsc_config *conf = vty->index;
416
417 if (conf->description)
418 talloc_free(conf->description);
419 conf->description = talloc_strdup(conf, argv[0]);
420 return CMD_SUCCESS;
421}
422
Holger Hans Peter Freyther52c4ba02010-05-14 23:43:12 +0800423DEFUN(test_regex, test_regex_cmd,
424 "test regex PATTERN STRING",
425 "Check if the string is matching the current pattern.")
426{
427 regex_t reg;
428 char *str = NULL;
429
430 memset(&reg, 0, sizeof(reg));
431 bsc_parse_reg(_nat, &reg, &str, 1, argv);
432
433 vty_out(vty, "String matches allow pattern: %d%s",
434 regexec(&reg, argv[1], 0, NULL, 0) == 0, VTY_NEWLINE);
435
436 talloc_free(str);
437 regfree(&reg);
438 return CMD_SUCCESS;
439}
440
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800441int bsc_nat_vty_init(struct bsc_nat *nat)
442{
443 _nat = nat;
444
445 cmd_init(1);
446 vty_init();
447
448 /* show commands */
449 install_element(VIEW_NODE, &show_sccp_cmd);
450 install_element(VIEW_NODE, &show_bsc_cmd);
451 install_element(VIEW_NODE, &show_bsc_cfg_cmd);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200452 install_element(VIEW_NODE, &show_stats_cmd);
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800453 install_element(VIEW_NODE, &close_bsc_cmd);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800454 install_element(VIEW_NODE, &show_msc_cmd);
Holger Hans Peter Freyther52c4ba02010-05-14 23:43:12 +0800455 install_element(VIEW_NODE, &test_regex_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800456
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +0200457 openbsc_vty_add_cmds();
458
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800459 /* nat group */
460 install_element(CONFIG_NODE, &cfg_nat_cmd);
461 install_node(&nat_node, config_write_nat);
462 install_default(NAT_NODE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200463 install_element(NAT_NODE, &cfg_nat_imsi_deny_cmd);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800464 install_element(NAT_NODE, &cfg_nat_msc_ip_cmd);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200465 install_element(NAT_NODE, &cfg_nat_msc_port_cmd);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800466 install_element(NAT_NODE, &cfg_nat_auth_time_cmd);
467 install_element(NAT_NODE, &cfg_nat_ping_time_cmd);
468 install_element(NAT_NODE, &cfg_nat_pong_time_cmd);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800469 install_element(NAT_NODE, &cfg_nat_token_cmd);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800470 install_element(NAT_NODE, &cfg_nat_bsc_ip_tos_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800471
472 /* BSC subgroups */
473 install_element(NAT_NODE, &cfg_bsc_cmd);
474 install_node(&bsc_node, config_write_bsc);
475 install_default(BSC_NODE);
476 install_element(BSC_NODE, &cfg_bsc_token_cmd);
477 install_element(BSC_NODE, &cfg_bsc_lac_cmd);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200478 install_element(BSC_NODE, &cfg_bsc_imsi_allow_cmd);
479 install_element(BSC_NODE, &cfg_bsc_imsi_deny_cmd);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800480 install_element(BSC_NODE, &cfg_bsc_paging_cmd);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800481 install_element(BSC_NODE, &cfg_bsc_desc_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800482
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800483 mgcp_vty_init();
484
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800485 return 0;
486}
487
488
489/* called by the telnet interface... we have our own init above */
490void bsc_vty_init()
491{}