blob: 79b78499806f4d76f368317f36b8fa60ae08eff6 [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_allow)
56 vty_out(vty, " imsi allow %s%s", _nat->imsi_allow, VTY_NEWLINE);
57 if (_nat->imsi_deny)
58 vty_out(vty, " insi deny %s%s", _nat->imsi_deny, VTY_NEWLINE);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080059 vty_out(vty, " msc ip %s%s", _nat->msc_ip, VTY_NEWLINE);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020060 vty_out(vty, " msc port %d%s", _nat->msc_port, VTY_NEWLINE);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080061 vty_out(vty, " timeout auth %d%s", _nat->auth_timeout, VTY_NEWLINE);
62 vty_out(vty, " timeout ping %d%s", _nat->ping_timeout, VTY_NEWLINE);
63 vty_out(vty, " timeout pong %d%s", _nat->pong_timeout, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080064 return CMD_SUCCESS;
65}
66
67static void config_write_bsc_single(struct vty *vty, struct bsc_config *bsc)
68{
69 vty_out(vty, " bsc %u%s", bsc->nr, VTY_NEWLINE);
70 vty_out(vty, " token %s%s", bsc->token, VTY_NEWLINE);
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +020071 vty_out(vty, " location_area_code %u%s", bsc->lac, VTY_NEWLINE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +020072 if (bsc->imsi_allow)
73 vty_out(vty, " imsi allow %s%s", bsc->imsi_allow, VTY_NEWLINE);
74 if (bsc->imsi_deny)
75 vty_out(vty, " imsi deny %s%s", bsc->imsi_deny, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +080076 vty_out(vty, " paging forbidden %d%s", bsc->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080077}
78
79static int config_write_bsc(struct vty *vty)
80{
81 struct bsc_config *bsc;
82
83 llist_for_each_entry(bsc, &_nat->bsc_configs, entry)
84 config_write_bsc_single(vty, bsc);
85 return CMD_SUCCESS;
86}
87
88
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +080089DEFUN(show_sccp, show_sccp_cmd, "show sccp connections",
90 SHOW_STR "Display information about current SCCP connections")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080091{
92 struct sccp_connections *con;
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +080093 vty_out(vty, "Listing all opening SCCP connections%s", VTY_NEWLINE);
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +080094
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080095 llist_for_each_entry(con, &_nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +080096 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%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +020097 con->bsc->cfg ? con->bsc->cfg->nr : -1,
98 con->bsc->cfg ? con->bsc->cfg->lac : -1,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080099 sccp_src_ref_to_int(&con->real_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200100 sccp_src_ref_to_int(&con->patched_ref),
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800101 con->has_remote_ref,
102 sccp_src_ref_to_int(&con->remote_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200103 con->msc_timeslot, con->bsc_timeslot,
104 VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800105 }
106
107 return CMD_SUCCESS;
108}
109
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800110DEFUN(show_bsc, show_bsc_cmd, "show bsc connections",
111 SHOW_STR "Display information about current BSCs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800112{
113 struct bsc_connection *con;
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200114 struct sockaddr_in sock;
115 socklen_t len = sizeof(sock);
116
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800117 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200118 getpeername(con->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
Holger Hans Peter Freyther3b879812010-05-01 15:32:32 +0800119 vty_out(vty, "BSC nr: %d lac: %d auth: %d fd: %d peername: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200120 con->cfg ? con->cfg->nr : -1,
121 con->cfg ? con->cfg->lac : -1,
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200122 con->authenticated, con->write_queue.bfd.fd,
123 inet_ntoa(sock.sin_addr), VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800124 }
125
126 return CMD_SUCCESS;
127}
128
Holger Hans Peter Freytherab7539c2010-04-22 13:36:46 +0800129DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
130 SHOW_STR "Display information about known BSC configs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800131{
132 struct bsc_config *conf;
133 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
134 vty_out(vty, "BSC token: '%s' lac: %u nr: %u%s",
135 conf->token, conf->lac, conf->nr, VTY_NEWLINE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200136 vty_out(vty, " imsi_allow: '%s' imsi_deny: '%s'%s",
137 conf->imsi_allow ? conf->imsi_allow: "any",
138 conf->imsi_deny ? conf->imsi_deny : "none",
139 VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800140 vty_out(vty, " paging forbidden: %d%s",
141 conf->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800142 }
143
144 return CMD_SUCCESS;
145}
146
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200147DEFUN(show_stats,
148 show_stats_cmd,
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800149 "show statistics [NR]",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800150 SHOW_STR "Display network statistics")
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200151{
152 struct bsc_config *conf;
153
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800154 int nr = -1;
155
156 if (argc == 1)
157 nr = atoi(argv[0]);
158
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200159 vty_out(vty, "NAT statistics%s", VTY_NEWLINE);
160 vty_out(vty, " SCCP Connections %lu total, %lu calls%s",
161 counter_get(_nat->stats.sccp.conn),
162 counter_get(_nat->stats.sccp.calls), VTY_NEWLINE);
163 vty_out(vty, " MSC Connections %lu%s",
164 counter_get(_nat->stats.msc.reconn), VTY_NEWLINE);
165 vty_out(vty, " BSC Connections %lu total, %lu auth failed.%s",
166 counter_get(_nat->stats.bsc.reconn),
167 counter_get(_nat->stats.bsc.auth_fail), VTY_NEWLINE);
168
169 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800170 if (argc == 1 && nr != conf->nr)
171 continue;
172
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200173 vty_out(vty, " BSC lac: %d nr: %d%s",
174 conf->lac, conf->nr, VTY_NEWLINE);
175 vty_out(vty, " SCCP Connnections %lu total, %lu calls%s",
176 counter_get(conf->stats.sccp.conn),
177 counter_get(conf->stats.sccp.calls), VTY_NEWLINE);
178 vty_out(vty, " BSC Connections %lu total%s",
179 counter_get(conf->stats.net.reconn), VTY_NEWLINE);
180 }
181
182 return CMD_SUCCESS;
183}
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800184
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800185DEFUN(show_msc,
186 show_msc_cmd,
187 "show msc connection",
188 SHOW_STR "Show the status of the MSC connection.")
189{
190 if (!_nat->msc_con) {
191 vty_out(vty, "The MSC is not yet configured.\n");
192 return CMD_WARNING;
193 }
194
195 vty_out(vty, "MSC on %s:%d is connected: %d%s\n",
196 _nat->msc_con->ip, _nat->msc_con->port,
197 _nat->msc_con->is_connected, VTY_NEWLINE);
198 return CMD_SUCCESS;
199}
200
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800201DEFUN(close_bsc,
202 close_bsc_cmd,
203 "close bsc connection BSC_NR",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800204 "Close the connection with the BSC identified by the config number.")
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800205{
206 struct bsc_connection *bsc;
207 int bsc_nr = atoi(argv[0]);
208
209 llist_for_each_entry(bsc, &_nat->bsc_connections, list_entry) {
210 if (!bsc->cfg || bsc->cfg->nr != bsc_nr)
211 continue;
212 bsc_close_connection(bsc);
213 break;
214 }
215
216 return CMD_SUCCESS;
217}
218
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800219DEFUN(cfg_nat, cfg_nat_cmd, "nat", "Configute the NAT")
220{
221 vty->index = _nat;
222 vty->node = NAT_NODE;
223
224 return CMD_SUCCESS;
225}
226
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200227static void parse_reg(void *ctx, regex_t *reg, char **imsi, int argc, const char **argv)
228{
229 if (*imsi) {
230 talloc_free(*imsi);
231 *imsi = NULL;
232 }
233 regfree(reg);
234
235 if (argc > 0) {
236 *imsi = talloc_strdup(ctx, argv[0]);
237 regcomp(reg, argv[0], 0);
238 }
239}
240
241DEFUN(cfg_nat_imsi_allow,
242 cfg_nat_imsi_allow_cmd,
243 "imsi allow [REGEXP]",
244 "Allow matching IMSIs to talk to the MSC. "
245 "The defualt is to allow everyone.")
246{
247 parse_reg(_nat, &_nat->imsi_allow_re, &_nat->imsi_allow, argc, argv);
248 return CMD_SUCCESS;
249}
250
251DEFUN(cfg_nat_imsi_deny,
252 cfg_nat_imsi_deny_cmd,
253 "imsi deny [REGEXP]",
254 "Deny matching IMSIs to talk to the MSC. "
255 "The defualt is to not deny.")
256{
257 parse_reg(_nat, &_nat->imsi_deny_re, &_nat->imsi_deny, argc, argv);
258 return CMD_SUCCESS;
259}
260
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800261DEFUN(cfg_nat_msc_ip,
262 cfg_nat_msc_ip_cmd,
263 "msc ip IP",
264 "Set the IP address of the MSC.")
265{
266 bsc_nat_set_msc_ip(_nat, argv[0]);
267 return CMD_SUCCESS;
268}
269
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200270DEFUN(cfg_nat_msc_port,
271 cfg_nat_msc_port_cmd,
272 "msc port <1-65500>",
273 "Set the port of the MSC.")
274{
275 _nat->msc_port = atoi(argv[0]);
276 return CMD_SUCCESS;
277}
278
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800279DEFUN(cfg_nat_auth_time,
280 cfg_nat_auth_time_cmd,
281 "timeout auth <1-256>",
282 "The time to wait for an auth response.")
283{
284 _nat->auth_timeout = atoi(argv[0]);
285 return CMD_SUCCESS;
286}
287
288DEFUN(cfg_nat_ping_time,
289 cfg_nat_ping_time_cmd,
290 "timeout ping NR",
291 "Send a ping every NR seconds. Negative to disable.")
292{
293 _nat->ping_timeout = atoi(argv[0]);
294 return CMD_SUCCESS;
295}
296
297DEFUN(cfg_nat_pong_time,
298 cfg_nat_pong_time_cmd,
299 "timeout pong NR",
300 "Wait NR seconds for the PONG response. Should be smaller than ping.")
301{
302 _nat->pong_timeout = atoi(argv[0]);
303 return CMD_SUCCESS;
304}
305
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800306/* per BSC configuration */
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800307DEFUN(cfg_bsc, cfg_bsc_cmd, "bsc BSC_NR", "Select a BSC to configure")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800308{
309 int bsc_nr = atoi(argv[0]);
310 struct bsc_config *bsc;
311
312 if (bsc_nr > _nat->num_bsc) {
313 vty_out(vty, "%% The next unused BSC number is %u%s",
314 _nat->num_bsc, VTY_NEWLINE);
315 return CMD_WARNING;
316 } else if (bsc_nr == _nat->num_bsc) {
317 /* allocate a new one */
318 bsc = bsc_config_alloc(_nat, "unknown", 0);
319 } else
320 bsc = bsc_config_num(_nat, bsc_nr);
321
322 if (!bsc)
323 return CMD_WARNING;
324
325 vty->index = bsc;
326 vty->node = BSC_NODE;
327
328 return CMD_SUCCESS;
329}
330
331DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN", "Set the token")
332{
333 struct bsc_config *conf = vty->index;
334
335 if (conf->token)
336 talloc_free(conf->token);
337 conf->token = talloc_strdup(conf, argv[0]);
338 return CMD_SUCCESS;
339}
340
341DEFUN(cfg_bsc_lac, cfg_bsc_lac_cmd, "location_area_code <0-65535>",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800342 "Set the Location Area Code (LAC) of this BSC")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800343{
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200344 struct bsc_config *tmp;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800345 struct bsc_config *conf = vty->index;
346
347 int lac = atoi(argv[0]);
348
349 if (lac < 0 || lac > 0xffff) {
350 vty_out(vty, "%% LAC %d is not in the valid range (0-65535)%s",
351 lac, VTY_NEWLINE);
352 return CMD_WARNING;
353 }
354
355 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
356 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
357 lac, VTY_NEWLINE);
358 return CMD_WARNING;
359 }
360
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200361 /* verify that the LACs are unique */
362 llist_for_each_entry(tmp, &_nat->bsc_configs, entry) {
363 if (tmp->lac == lac) {
364 vty_out(vty, "%% LAC %d is already used.%s", lac, VTY_NEWLINE);
365 return CMD_ERR_INCOMPLETE;
366 }
367 }
368
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800369 conf->lac = lac;
370
371 return CMD_SUCCESS;
372}
373
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200374DEFUN(cfg_bsc_imsi_allow,
375 cfg_bsc_imsi_allow_cmd,
376 "imsi allow [REGEXP]",
377 "Allow IMSIs with the following network to talk to the MSC."
378 "The default is to allow everyone)")
379{
380 struct bsc_config *conf = vty->index;
381
382 parse_reg(conf, &conf->imsi_allow_re, &conf->imsi_allow, argc, argv);
383 return CMD_SUCCESS;
384}
385
386DEFUN(cfg_bsc_imsi_deny,
387 cfg_bsc_imsi_deny_cmd,
388 "imsi deny [REGEXP]",
389 "Deny IMSIs with the following network to talk to the MSC."
390 "The default is to not deny anyone.)")
391{
392 struct bsc_config *conf = vty->index;
393
394 parse_reg(conf, &conf->imsi_deny_re, &conf->imsi_deny, argc, argv);
395 return CMD_SUCCESS;
396}
397
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800398DEFUN(cfg_bsc_paging,
399 cfg_bsc_paging_cmd,
400 "paging forbidden (0|1)",
401 "Forbid sending PAGING REQUESTS to the BSC.")
402{
403 struct bsc_config *conf = vty->index;
404
Holger Hans Peter Freyther834f1df2010-04-21 20:07:07 +0800405 if (strcmp("1", argv[0]) == 0)
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800406 conf->forbid_paging = 1;
407 else
408 conf->forbid_paging = 0;
409
410 return CMD_SUCCESS;
411}
412
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800413int bsc_nat_vty_init(struct bsc_nat *nat)
414{
415 _nat = nat;
416
417 cmd_init(1);
418 vty_init();
419
420 /* show commands */
421 install_element(VIEW_NODE, &show_sccp_cmd);
422 install_element(VIEW_NODE, &show_bsc_cmd);
423 install_element(VIEW_NODE, &show_bsc_cfg_cmd);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200424 install_element(VIEW_NODE, &show_stats_cmd);
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800425 install_element(VIEW_NODE, &close_bsc_cmd);
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800426 install_element(VIEW_NODE, &show_msc_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800427
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +0200428 openbsc_vty_add_cmds();
429
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800430 /* nat group */
431 install_element(CONFIG_NODE, &cfg_nat_cmd);
432 install_node(&nat_node, config_write_nat);
433 install_default(NAT_NODE);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200434 install_element(NAT_NODE, &cfg_nat_imsi_allow_cmd);
435 install_element(NAT_NODE, &cfg_nat_imsi_deny_cmd);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800436 install_element(NAT_NODE, &cfg_nat_msc_ip_cmd);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200437 install_element(NAT_NODE, &cfg_nat_msc_port_cmd);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800438 install_element(NAT_NODE, &cfg_nat_auth_time_cmd);
439 install_element(NAT_NODE, &cfg_nat_ping_time_cmd);
440 install_element(NAT_NODE, &cfg_nat_pong_time_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800441
442 /* BSC subgroups */
443 install_element(NAT_NODE, &cfg_bsc_cmd);
444 install_node(&bsc_node, config_write_bsc);
445 install_default(BSC_NODE);
446 install_element(BSC_NODE, &cfg_bsc_token_cmd);
447 install_element(BSC_NODE, &cfg_bsc_lac_cmd);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200448 install_element(BSC_NODE, &cfg_bsc_imsi_allow_cmd);
449 install_element(BSC_NODE, &cfg_bsc_imsi_deny_cmd);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800450 install_element(BSC_NODE, &cfg_bsc_paging_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800451
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800452 mgcp_vty_init();
453
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800454 return 0;
455}
456
457
458/* called by the telnet interface... we have our own init above */
459void bsc_vty_init()
460{}