blob: a2115faef4c81c4277fb0c0d78d4db0612a3d5bc [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Virtual terminal interface shell.
2 * Copyright (C) 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include <sys/un.h>
25#include <setjmp.h>
26#include <sys/wait.h>
27#include <sys/resource.h>
28#include <sys/stat.h>
29
30#include <readline/readline.h>
31#include <readline/history.h>
32
33#include "command.h"
34#include "memory.h"
35#include "vtysh/vtysh.h"
ajs6099b3b2004-11-20 02:06:59 +000036#include "log.h"
paul718e3742002-12-13 20:15:29 +000037
38/* Struct VTY. */
39struct vty *vty;
40
41/* VTY shell pager name. */
42char *vtysh_pager_name = NULL;
43
44/* VTY shell client structure. */
45struct vtysh_client
46{
47 int fd;
ajsb1aa1472005-01-28 21:11:46 +000048 const char *name;
49 int flag;
50 const char *path;
51} vtysh_client[] =
52{
53 { .fd = -1, .name = "zebra", .flag = VTYSH_ZEBRA, .path = ZEBRA_VTYSH_PATH},
54 { .fd = -1, .name = "ripd", .flag = VTYSH_RIPD, .path = RIP_VTYSH_PATH},
55 { .fd = -1, .name = "ripngd", .flag = VTYSH_RIPNGD, .path = RIPNG_VTYSH_PATH},
56 { .fd = -1, .name = "ospfd", .flag = VTYSH_OSPFD, .path = OSPF_VTYSH_PATH},
57 { .fd = -1, .name = "ospf6d", .flag = VTYSH_OSPF6D, .path = OSPF6_VTYSH_PATH},
58 { .fd = -1, .name = "bgpd", .flag = VTYSH_BGPD, .path = BGP_VTYSH_PATH},
59 { .fd = -1, .name = "isisd", .flag = VTYSH_ISISD, .path = ISIS_VTYSH_PATH},
60};
61
62#define VTYSH_INDEX_MAX (sizeof(vtysh_client)/sizeof(vtysh_client[0]))
63
64/* We need direct access to ripd to implement vtysh_exit_ripd_only. */
65static struct vtysh_client *ripd_client = NULL;
66
hassob094d262004-08-25 12:22:00 +000067
hassoe7168df2004-10-03 20:11:32 +000068/* Using integrated config from Quagga.conf. Default is no. */
69int vtysh_writeconfig_integrated = 0;
70
71extern char config_default[];
72
ajs274a4a42004-12-07 15:39:31 +000073static void
paul718e3742002-12-13 20:15:29 +000074vclient_close (struct vtysh_client *vclient)
75{
ajsb1aa1472005-01-28 21:11:46 +000076 if (vclient->fd >= 0)
77 {
78 fprintf(stderr,
79 "Warning: closing connection to %s because of an I/O error!\n",
80 vclient->name);
81 close (vclient->fd);
82 vclient->fd = -1;
83 }
paul718e3742002-12-13 20:15:29 +000084}
85
paul718e3742002-12-13 20:15:29 +000086/* Following filled with debug code to trace a problematic condition
hasso95e735b2004-08-26 13:08:30 +000087 * under load - it SHOULD handle it. */
paul718e3742002-12-13 20:15:29 +000088#define ERR_WHERE_STRING "vtysh(): vtysh_client_config(): "
ajs274a4a42004-12-07 15:39:31 +000089static int
paul718e3742002-12-13 20:15:29 +000090vtysh_client_config (struct vtysh_client *vclient, char *line)
91{
92 int ret;
93 char *buf;
94 size_t bufsz;
95 char *pbuf;
96 size_t left;
97 char *eoln;
98 int nbytes;
99 int i;
100 int readln;
101
102 if (vclient->fd < 0)
103 return CMD_SUCCESS;
104
105 ret = write (vclient->fd, line, strlen (line) + 1);
106 if (ret <= 0)
107 {
108 vclient_close (vclient);
109 return CMD_SUCCESS;
110 }
111
hasso95e735b2004-08-26 13:08:30 +0000112 /* Allow enough room for buffer to read more than a few pages from socket. */
paule3d29b52003-01-23 18:05:42 +0000113 bufsz = 5 * getpagesize() + 1;
paul718e3742002-12-13 20:15:29 +0000114 buf = XMALLOC(MTYPE_TMP, bufsz);
115 memset(buf, 0, bufsz);
116 pbuf = buf;
117
118 while (1)
119 {
120 if (pbuf >= ((buf + bufsz) -1))
121 {
122 fprintf (stderr, ERR_WHERE_STRING \
123 "warning - pbuf beyond buffer end.\n");
124 return CMD_WARNING;
125 }
126
127 readln = (buf + bufsz) - pbuf - 1;
128 nbytes = read (vclient->fd, pbuf, readln);
129
130 if (nbytes <= 0)
131 {
132
133 if (errno == EINTR)
134 continue;
135
136 fprintf(stderr, ERR_WHERE_STRING "(%u)", errno);
137 perror("");
138
139 if (errno == EAGAIN || errno == EIO)
140 continue;
141
142 vclient_close (vclient);
143 XFREE(MTYPE_TMP, buf);
144 return CMD_SUCCESS;
145 }
146
147 pbuf[nbytes] = '\0';
148
149 if (nbytes >= 4)
150 {
151 i = nbytes - 4;
152 if (pbuf[i] == '\0' && pbuf[i + 1] == '\0' && pbuf[i + 2] == '\0')
153 {
154 ret = pbuf[i + 3];
155 break;
156 }
157 }
158 pbuf += nbytes;
159
160 /* See if a line exists in buffer, if so parse and consume it, and
hasso95e735b2004-08-26 13:08:30 +0000161 * reset read position. */
paul718e3742002-12-13 20:15:29 +0000162 if ((eoln = strrchr(buf, '\n')) == NULL)
163 continue;
164
165 if (eoln >= ((buf + bufsz) - 1))
166 {
167 fprintf (stderr, ERR_WHERE_STRING \
168 "warning - eoln beyond buffer end.\n");
169 }
170 vtysh_config_parse(buf);
171
172 eoln++;
173 left = (size_t)(buf + bufsz - eoln);
174 memmove(buf, eoln, left);
175 buf[bufsz-1] = '\0';
176 pbuf = buf + strlen(buf);
177 }
178
hasso95e735b2004-08-26 13:08:30 +0000179 /* Parse anything left in the buffer. */
hassoe7168df2004-10-03 20:11:32 +0000180
paul718e3742002-12-13 20:15:29 +0000181 vtysh_config_parse (buf);
182
183 XFREE(MTYPE_TMP, buf);
184 return ret;
185}
186
ajs274a4a42004-12-07 15:39:31 +0000187static int
hassodda09522004-10-07 21:40:25 +0000188vtysh_client_execute (struct vtysh_client *vclient, const char *line, FILE *fp)
paul718e3742002-12-13 20:15:29 +0000189{
190 int ret;
191 char buf[1001];
192 int nbytes;
paul2852de12004-09-17 06:52:16 +0000193 int i;
194 int numnulls = 0;
paul718e3742002-12-13 20:15:29 +0000195
196 if (vclient->fd < 0)
197 return CMD_SUCCESS;
198
199 ret = write (vclient->fd, line, strlen (line) + 1);
200 if (ret <= 0)
201 {
202 vclient_close (vclient);
203 return CMD_SUCCESS;
204 }
205
206 while (1)
207 {
208 nbytes = read (vclient->fd, buf, sizeof(buf)-1);
209
210 if (nbytes <= 0 && errno != EINTR)
211 {
212 vclient_close (vclient);
213 return CMD_SUCCESS;
214 }
215
216 if (nbytes > 0)
217 {
ajs85fb1e62004-11-11 14:03:39 +0000218 if ((numnulls == 3) && (nbytes == 1))
219 return buf[0];
220
paul718e3742002-12-13 20:15:29 +0000221 buf[nbytes] = '\0';
ajs85fb1e62004-11-11 14:03:39 +0000222 fputs (buf, fp);
paul718e3742002-12-13 20:15:29 +0000223 fflush (fp);
paul2852de12004-09-17 06:52:16 +0000224
paul0921d482004-10-11 18:21:55 +0000225 /* check for trailling \0\0\0<ret code>,
226 * even if split across reads
227 * (see lib/vty.c::vtysh_read)
228 */
paul2852de12004-09-17 06:52:16 +0000229 if (nbytes >= 4)
230 {
231 i = nbytes-4;
232 numnulls = 0;
233 }
234 else
235 i = 0;
236
paul0921d482004-10-11 18:21:55 +0000237 while (i < nbytes && numnulls < 3)
paul2852de12004-09-17 06:52:16 +0000238 {
239 if (buf[i++] == '\0')
240 numnulls++;
241 else
ajs85fb1e62004-11-11 14:03:39 +0000242 numnulls = 0;
paul2852de12004-09-17 06:52:16 +0000243 }
paul718e3742002-12-13 20:15:29 +0000244
ajs85fb1e62004-11-11 14:03:39 +0000245 /* got 3 or more trailing NULs? */
246 if ((numnulls >= 3) && (i < nbytes))
paul0921d482004-10-11 18:21:55 +0000247 return (buf[nbytes-1]);
paul718e3742002-12-13 20:15:29 +0000248 }
249 }
paul718e3742002-12-13 20:15:29 +0000250}
251
252void
ajsb1aa1472005-01-28 21:11:46 +0000253vtysh_exit_ripd_only (void)
paul718e3742002-12-13 20:15:29 +0000254{
ajsb1aa1472005-01-28 21:11:46 +0000255 if (ripd_client)
256 vtysh_client_execute (ripd_client, "exit", stdout);
paul718e3742002-12-13 20:15:29 +0000257}
258
259
260void
ajsb1aa1472005-01-28 21:11:46 +0000261vtysh_pager_init (void)
paul718e3742002-12-13 20:15:29 +0000262{
hasso5a9c53d2004-08-27 14:23:28 +0000263 char *pager_defined;
264
265 pager_defined = getenv ("VTYSH_PAGER");
266
267 if (pager_defined)
268 vtysh_pager_name = strdup (pager_defined);
269 else
hasso34553cc2004-08-27 13:56:39 +0000270 vtysh_pager_name = strdup ("more");
paul718e3742002-12-13 20:15:29 +0000271}
272
273/* Command execution over the vty interface. */
ajs274a4a42004-12-07 15:39:31 +0000274static void
hassodda09522004-10-07 21:40:25 +0000275vtysh_execute_func (const char *line, int pager)
paul718e3742002-12-13 20:15:29 +0000276{
277 int ret, cmd_stat;
ajsb1aa1472005-01-28 21:11:46 +0000278 u_int i;
paul718e3742002-12-13 20:15:29 +0000279 vector vline;
280 struct cmd_element *cmd;
281 FILE *fp = NULL;
hasso13bfca72005-01-23 21:42:25 +0000282 int closepager = 0;
283 int tried = 0;
284 int saved_ret, saved_node;
paul718e3742002-12-13 20:15:29 +0000285
hasso95e735b2004-08-26 13:08:30 +0000286 /* Split readline string up into the vector. */
paul718e3742002-12-13 20:15:29 +0000287 vline = cmd_make_strvec (line);
288
289 if (vline == NULL)
290 return;
291
hasso13bfca72005-01-23 21:42:25 +0000292 saved_ret = ret = cmd_execute_command (vline, vty, &cmd, 1);
293 saved_node = vty->node;
294
295 /* If command doesn't succeeded in current node, try to walk up in node tree.
296 * Changing vty->node is enough to try it just out without actual walkup in
297 * the vtysh. */
298 while (ret != CMD_SUCCESS && ret != CMD_SUCCESS_DAEMON && ret != CMD_WARNING
299 && vty->node > CONFIG_NODE)
300 {
301 vty->node = node_parent(vty->node);
302 ret = cmd_execute_command (vline, vty, &cmd, 1);
303 tried++;
304 }
305
306 vty->node = saved_node;
307
308 /* If command succeeded in any other node than current (tried > 0) we have
309 * to move into node in the vtysh where it succeeded. */
310 if (ret == CMD_SUCCESS || ret == CMD_SUCCESS_DAEMON || ret == CMD_WARNING)
311 {
312 if ((saved_node == BGP_VPNV4_NODE || saved_node == BGP_IPV4_NODE
paul57b5b7e2005-08-22 22:44:29 +0000313 || saved_node == BGP_IPV6_NODE || saved_node == BGP_IPV4M_NODE
314 || saved_node == BGP_IPV6M_NODE)
hasso13bfca72005-01-23 21:42:25 +0000315 && (tried == 1))
316 {
317 vtysh_execute("exit-address-family");
318 }
319 else if ((saved_node == KEYCHAIN_KEY_NODE) && (tried == 1))
320 {
321 vtysh_execute("exit");
322 }
323 else if (tried)
324 {
325 vtysh_execute ("end");
326 vtysh_execute ("configure terminal");
327 }
328 }
329 /* If command didn't succeed in any node, continue with return value from
330 * first try. */
331 else if (tried)
332 {
333 ret = saved_ret;
334 }
paul718e3742002-12-13 20:15:29 +0000335
336 cmd_free_strvec (vline);
337
338 switch (ret)
339 {
340 case CMD_WARNING:
341 if (vty->type == VTY_FILE)
paul4fc01e62002-12-13 20:49:00 +0000342 fprintf (stdout,"Warning...\n");
paul718e3742002-12-13 20:15:29 +0000343 break;
344 case CMD_ERR_AMBIGUOUS:
paul4fc01e62002-12-13 20:49:00 +0000345 fprintf (stdout,"%% Ambiguous command.\n");
paul718e3742002-12-13 20:15:29 +0000346 break;
347 case CMD_ERR_NO_MATCH:
paul4fc01e62002-12-13 20:49:00 +0000348 fprintf (stdout,"%% Unknown command.\n");
paul718e3742002-12-13 20:15:29 +0000349 break;
350 case CMD_ERR_INCOMPLETE:
paul4fc01e62002-12-13 20:49:00 +0000351 fprintf (stdout,"%% Command incomplete.\n");
paul718e3742002-12-13 20:15:29 +0000352 break;
353 case CMD_SUCCESS_DAEMON:
354 {
hasso97b7db22004-10-20 19:07:48 +0000355 /* FIXME: Don't open pager for exit commands. popen() causes problems
356 * if exited from vtysh at all. This hack shouldn't cause any problem
357 * but is really ugly. */
358 if (pager && vtysh_pager_name && (strncmp(line, "exit", 4) != 0))
paul718e3742002-12-13 20:15:29 +0000359 {
paul4fc01e62002-12-13 20:49:00 +0000360 fp = popen (vtysh_pager_name, "w");
paul718e3742002-12-13 20:15:29 +0000361 if (fp == NULL)
362 {
paula805cc22003-05-01 14:29:48 +0000363 perror ("popen failed for pager");
364 fp = stdout;
paul718e3742002-12-13 20:15:29 +0000365 }
paula805cc22003-05-01 14:29:48 +0000366 else
367 closepager=1;
paul718e3742002-12-13 20:15:29 +0000368 }
369 else
370 fp = stdout;
371
372 if (! strcmp(cmd->string,"configure terminal"))
373 {
ajsb1aa1472005-01-28 21:11:46 +0000374 for (i = 0; i < VTYSH_INDEX_MAX; i++)
375 {
376 cmd_stat = vtysh_client_execute(&vtysh_client[i], line, fp);
377 if (cmd_stat == CMD_WARNING)
378 break;
379 }
380
paul718e3742002-12-13 20:15:29 +0000381 if (cmd_stat)
382 {
hassob094d262004-08-25 12:22:00 +0000383 line = "end";
384 vline = cmd_make_strvec (line);
paul718e3742002-12-13 20:15:29 +0000385
hassob094d262004-08-25 12:22:00 +0000386 if (vline == NULL)
paul718e3742002-12-13 20:15:29 +0000387 {
paula805cc22003-05-01 14:29:48 +0000388 if (pager && vtysh_pager_name && fp && closepager)
paul718e3742002-12-13 20:15:29 +0000389 {
390 if (pclose (fp) == -1)
391 {
paula805cc22003-05-01 14:29:48 +0000392 perror ("pclose failed for pager");
paul718e3742002-12-13 20:15:29 +0000393 }
394 fp = NULL;
395 }
396 return;
397 }
398
hasso87d683b2005-01-16 23:31:54 +0000399 ret = cmd_execute_command (vline, vty, &cmd, 1);
hassob094d262004-08-25 12:22:00 +0000400 cmd_free_strvec (vline);
401 if (ret != CMD_SUCCESS_DAEMON)
402 break;
paul718e3742002-12-13 20:15:29 +0000403 }
404 else
405 if (cmd->func)
406 {
407 (*cmd->func) (cmd, vty, 0, NULL);
408 break;
hassob094d262004-08-25 12:22:00 +0000409 }
paul718e3742002-12-13 20:15:29 +0000410 }
411
ajsb1aa1472005-01-28 21:11:46 +0000412 cmd_stat = CMD_SUCCESS;
413 for (i = 0; i < VTYSH_INDEX_MAX; i++)
414 {
415 if (cmd->daemon & vtysh_client[i].flag)
416 {
417 cmd_stat = vtysh_client_execute(&vtysh_client[i], line, fp);
418 if (cmd_stat != CMD_SUCCESS)
419 break;
420 }
421 }
422 if (cmd_stat != CMD_SUCCESS)
423 break;
424
paul718e3742002-12-13 20:15:29 +0000425 if (cmd->func)
426 (*cmd->func) (cmd, vty, 0, NULL);
427 }
428 }
paula805cc22003-05-01 14:29:48 +0000429 if (pager && vtysh_pager_name && fp && closepager)
paul718e3742002-12-13 20:15:29 +0000430 {
431 if (pclose (fp) == -1)
432 {
paula805cc22003-05-01 14:29:48 +0000433 perror ("pclose failed for pager");
paul718e3742002-12-13 20:15:29 +0000434 }
435 fp = NULL;
436 }
437}
438
439void
hassodda09522004-10-07 21:40:25 +0000440vtysh_execute_no_pager (const char *line)
paul718e3742002-12-13 20:15:29 +0000441{
442 vtysh_execute_func (line, 0);
443}
444
445void
hassodda09522004-10-07 21:40:25 +0000446vtysh_execute (const char *line)
paul718e3742002-12-13 20:15:29 +0000447{
448 vtysh_execute_func (line, 1);
449}
450
451/* Configration make from file. */
452int
453vtysh_config_from_file (struct vty *vty, FILE *fp)
454{
455 int ret;
456 vector vline;
457 struct cmd_element *cmd;
458
459 while (fgets (vty->buf, VTY_BUFSIZ, fp))
460 {
461 if (vty->buf[0] == '!' || vty->buf[1] == '#')
462 continue;
463
464 vline = cmd_make_strvec (vty->buf);
465
hasso95e735b2004-08-26 13:08:30 +0000466 /* In case of comment line. */
paul718e3742002-12-13 20:15:29 +0000467 if (vline == NULL)
468 continue;
469
hasso95e735b2004-08-26 13:08:30 +0000470 /* Execute configuration command : this is strict match. */
paul718e3742002-12-13 20:15:29 +0000471 ret = cmd_execute_command_strict (vline, vty, &cmd);
472
hasso95e735b2004-08-26 13:08:30 +0000473 /* Try again with setting node to CONFIG_NODE. */
paul718e3742002-12-13 20:15:29 +0000474 if (ret != CMD_SUCCESS
475 && ret != CMD_SUCCESS_DAEMON
476 && ret != CMD_WARNING)
477 {
478 if (vty->node == KEYCHAIN_KEY_NODE)
479 {
480 vty->node = KEYCHAIN_NODE;
481 vtysh_exit_ripd_only ();
482 ret = cmd_execute_command_strict (vline, vty, &cmd);
483
484 if (ret != CMD_SUCCESS
485 && ret != CMD_SUCCESS_DAEMON
486 && ret != CMD_WARNING)
487 {
488 vtysh_exit_ripd_only ();
489 vty->node = CONFIG_NODE;
490 ret = cmd_execute_command_strict (vline, vty, &cmd);
491 }
492 }
493 else
494 {
495 vtysh_execute ("end");
496 vtysh_execute ("configure terminal");
497 vty->node = CONFIG_NODE;
498 ret = cmd_execute_command_strict (vline, vty, &cmd);
499 }
500 }
501
502 cmd_free_strvec (vline);
503
504 switch (ret)
505 {
506 case CMD_WARNING:
507 if (vty->type == VTY_FILE)
paul4fc01e62002-12-13 20:49:00 +0000508 fprintf (stdout,"Warning...\n");
paul718e3742002-12-13 20:15:29 +0000509 break;
510 case CMD_ERR_AMBIGUOUS:
paul4fc01e62002-12-13 20:49:00 +0000511 fprintf (stdout,"%% Ambiguous command.\n");
paul718e3742002-12-13 20:15:29 +0000512 break;
513 case CMD_ERR_NO_MATCH:
paul4fc01e62002-12-13 20:49:00 +0000514 fprintf (stdout,"%% Unknown command: %s", vty->buf);
paul718e3742002-12-13 20:15:29 +0000515 break;
516 case CMD_ERR_INCOMPLETE:
paul4fc01e62002-12-13 20:49:00 +0000517 fprintf (stdout,"%% Command incomplete.\n");
paul718e3742002-12-13 20:15:29 +0000518 break;
519 case CMD_SUCCESS_DAEMON:
520 {
ajsb1aa1472005-01-28 21:11:46 +0000521 u_int i;
522 int cmd_stat = CMD_SUCCESS;
523
524 for (i = 0; i < VTYSH_INDEX_MAX; i++)
525 {
paul44316fe2006-01-11 01:38:25 +0000526 if (cmd->daemon & vtysh_client[i].flag)
ajsb1aa1472005-01-28 21:11:46 +0000527 {
528 cmd_stat = vtysh_client_execute (&vtysh_client[i],
529 vty->buf, stdout);
530 if (cmd_stat != CMD_SUCCESS)
531 break;
532 }
533 }
534 if (cmd_stat != CMD_SUCCESS)
535 break;
536
paul718e3742002-12-13 20:15:29 +0000537 if (cmd->func)
538 (*cmd->func) (cmd, vty, 0, NULL);
539 }
540 }
541 }
542 return CMD_SUCCESS;
543}
544
545/* We don't care about the point of the cursor when '?' is typed. */
546int
ajsb1aa1472005-01-28 21:11:46 +0000547vtysh_rl_describe (void)
paul718e3742002-12-13 20:15:29 +0000548{
549 int ret;
hassodda09522004-10-07 21:40:25 +0000550 unsigned int i;
paul718e3742002-12-13 20:15:29 +0000551 vector vline;
552 vector describe;
553 int width;
554 struct desc *desc;
555
556 vline = cmd_make_strvec (rl_line_buffer);
557
558 /* In case of '> ?'. */
559 if (vline == NULL)
560 {
561 vline = vector_init (1);
562 vector_set (vline, '\0');
563 }
564 else
565 if (rl_end && isspace ((int) rl_line_buffer[rl_end - 1]))
566 vector_set (vline, '\0');
567
568 describe = cmd_describe_command (vline, vty, &ret);
569
paul4fc01e62002-12-13 20:49:00 +0000570 fprintf (stdout,"\n");
paul718e3742002-12-13 20:15:29 +0000571
572 /* Ambiguous and no match error. */
573 switch (ret)
574 {
575 case CMD_ERR_AMBIGUOUS:
576 cmd_free_strvec (vline);
paul4fc01e62002-12-13 20:49:00 +0000577 fprintf (stdout,"%% Ambiguous command.\n");
paul718e3742002-12-13 20:15:29 +0000578 rl_on_new_line ();
579 return 0;
580 break;
581 case CMD_ERR_NO_MATCH:
582 cmd_free_strvec (vline);
paul4fc01e62002-12-13 20:49:00 +0000583 fprintf (stdout,"%% There is no matched command.\n");
paul718e3742002-12-13 20:15:29 +0000584 rl_on_new_line ();
585 return 0;
586 break;
587 }
588
589 /* Get width of command string. */
590 width = 0;
paul55468c82005-03-14 20:19:01 +0000591 for (i = 0; i < vector_active (describe); i++)
paul718e3742002-12-13 20:15:29 +0000592 if ((desc = vector_slot (describe, i)) != NULL)
593 {
594 int len;
595
596 if (desc->cmd[0] == '\0')
597 continue;
598
599 len = strlen (desc->cmd);
600 if (desc->cmd[0] == '.')
601 len--;
602
603 if (width < len)
604 width = len;
605 }
606
paul55468c82005-03-14 20:19:01 +0000607 for (i = 0; i < vector_active (describe); i++)
paul718e3742002-12-13 20:15:29 +0000608 if ((desc = vector_slot (describe, i)) != NULL)
609 {
610 if (desc->cmd[0] == '\0')
611 continue;
612
613 if (! desc->str)
paul4fc01e62002-12-13 20:49:00 +0000614 fprintf (stdout," %-s\n",
hassob094d262004-08-25 12:22:00 +0000615 desc->cmd[0] == '.' ? desc->cmd + 1 : desc->cmd);
paul718e3742002-12-13 20:15:29 +0000616 else
paul4fc01e62002-12-13 20:49:00 +0000617 fprintf (stdout," %-*s %s\n",
hassob094d262004-08-25 12:22:00 +0000618 width,
619 desc->cmd[0] == '.' ? desc->cmd + 1 : desc->cmd,
620 desc->str);
paul718e3742002-12-13 20:15:29 +0000621 }
622
623 cmd_free_strvec (vline);
624 vector_free (describe);
625
626 rl_on_new_line();
627
628 return 0;
629}
630
hasso95e735b2004-08-26 13:08:30 +0000631/* Result of cmd_complete_command() call will be stored here
632 * and used in new_completion() in order to put the space in
633 * correct places only. */
paul718e3742002-12-13 20:15:29 +0000634int complete_status;
635
ajs274a4a42004-12-07 15:39:31 +0000636static char *
pauldfc0d9b2003-04-18 23:55:29 +0000637command_generator (const char *text, int state)
paul718e3742002-12-13 20:15:29 +0000638{
639 vector vline;
640 static char **matched = NULL;
641 static int index = 0;
642
643 /* First call. */
644 if (! state)
645 {
646 index = 0;
647
648 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
649 return NULL;
650
651 vline = cmd_make_strvec (rl_line_buffer);
652 if (vline == NULL)
653 return NULL;
654
655 if (rl_end && isspace ((int) rl_line_buffer[rl_end - 1]))
656 vector_set (vline, '\0');
657
658 matched = cmd_complete_command (vline, vty, &complete_status);
659 }
660
661 if (matched && matched[index])
662 return matched[index++];
663
664 return NULL;
665}
666
ajs274a4a42004-12-07 15:39:31 +0000667static char **
paul718e3742002-12-13 20:15:29 +0000668new_completion (char *text, int start, int end)
669{
670 char **matches;
671
pauldfc0d9b2003-04-18 23:55:29 +0000672 matches = rl_completion_matches (text, command_generator);
paul718e3742002-12-13 20:15:29 +0000673
674 if (matches)
675 {
676 rl_point = rl_end;
677 if (complete_status == CMD_COMPLETE_FULL_MATCH)
678 rl_pending_input = ' ';
679 }
680
681 return matches;
682}
683
ajs274a4a42004-12-07 15:39:31 +0000684#if 0
685/* This function is not actually being used. */
686static char **
paul718e3742002-12-13 20:15:29 +0000687vtysh_completion (char *text, int start, int end)
688{
689 int ret;
690 vector vline;
691 char **matched = NULL;
692
693 if (vty->node == AUTH_NODE || vty->node == AUTH_ENABLE_NODE)
694 return NULL;
695
696 vline = cmd_make_strvec (rl_line_buffer);
697 if (vline == NULL)
698 return NULL;
699
700 /* In case of 'help \t'. */
701 if (rl_end && isspace ((int) rl_line_buffer[rl_end - 1]))
702 vector_set (vline, '\0');
703
704 matched = cmd_complete_command (vline, vty, &ret);
705
706 cmd_free_strvec (vline);
707
708 return (char **) matched;
709}
ajs274a4a42004-12-07 15:39:31 +0000710#endif
paul718e3742002-12-13 20:15:29 +0000711
hasso95e735b2004-08-26 13:08:30 +0000712/* Vty node structures. */
paul718e3742002-12-13 20:15:29 +0000713struct cmd_node bgp_node =
714{
715 BGP_NODE,
716 "%s(config-router)# ",
717};
718
paul718e3742002-12-13 20:15:29 +0000719struct cmd_node rip_node =
720{
721 RIP_NODE,
722 "%s(config-router)# ",
723};
724
hassoc25e4582003-12-23 10:39:08 +0000725struct cmd_node isis_node =
726{
727 ISIS_NODE,
728 "%s(config-router)# ",
hassoc25e4582003-12-23 10:39:08 +0000729};
730
paul718e3742002-12-13 20:15:29 +0000731struct cmd_node interface_node =
732{
733 INTERFACE_NODE,
734 "%s(config-if)# ",
735};
736
hasso95e735b2004-08-26 13:08:30 +0000737struct cmd_node rmap_node =
738{
739 RMAP_NODE,
740 "%s(config-route-map)# "
741};
742
743struct cmd_node zebra_node =
744{
745 ZEBRA_NODE,
746 "%s(config-router)# "
747};
748
749struct cmd_node bgp_vpnv4_node =
750{
751 BGP_VPNV4_NODE,
752 "%s(config-router-af)# "
753};
754
755struct cmd_node bgp_ipv4_node =
756{
757 BGP_IPV4_NODE,
758 "%s(config-router-af)# "
759};
760
761struct cmd_node bgp_ipv4m_node =
762{
763 BGP_IPV4M_NODE,
764 "%s(config-router-af)# "
765};
766
767struct cmd_node bgp_ipv6_node =
768{
769 BGP_IPV6_NODE,
770 "%s(config-router-af)# "
771};
772
paul57b5b7e2005-08-22 22:44:29 +0000773struct cmd_node bgp_ipv6m_node =
774{
775 BGP_IPV6M_NODE,
776 "%s(config-router-af)# "
777};
778
hasso95e735b2004-08-26 13:08:30 +0000779struct cmd_node ospf_node =
780{
781 OSPF_NODE,
782 "%s(config-router)# "
783};
784
785struct cmd_node ripng_node =
786{
787 RIPNG_NODE,
788 "%s(config-router)# "
789};
790
791struct cmd_node ospf6_node =
792{
793 OSPF6_NODE,
794 "%s(config-ospf6)# "
795};
796
797struct cmd_node keychain_node =
798{
799 KEYCHAIN_NODE,
800 "%s(config-keychain)# "
801};
802
803struct cmd_node keychain_key_node =
804{
805 KEYCHAIN_KEY_NODE,
806 "%s(config-keychain-key)# "
807};
808
hassoe7168df2004-10-03 20:11:32 +0000809/* Defined in lib/vty.c */
810extern struct cmd_node vty_node;
811
hasso95e735b2004-08-26 13:08:30 +0000812/* When '^Z' is received from vty, move down to the enable mode. */
813int
ajsb1aa1472005-01-28 21:11:46 +0000814vtysh_end (void)
hasso95e735b2004-08-26 13:08:30 +0000815{
816 switch (vty->node)
817 {
818 case VIEW_NODE:
819 case ENABLE_NODE:
820 /* Nothing to do. */
821 break;
822 default:
823 vty->node = ENABLE_NODE;
824 break;
825 }
826 return CMD_SUCCESS;
827}
828
829DEFUNSH (VTYSH_ALL,
830 vtysh_end_all,
831 vtysh_end_all_cmd,
832 "end",
hassoe7168df2004-10-03 20:11:32 +0000833 "End current mode and change to enable mode\n")
hasso95e735b2004-08-26 13:08:30 +0000834{
hasso42895462004-09-26 16:25:07 +0000835 return vtysh_end ();
hasso95e735b2004-08-26 13:08:30 +0000836}
837
paul718e3742002-12-13 20:15:29 +0000838DEFUNSH (VTYSH_BGPD,
839 router_bgp,
840 router_bgp_cmd,
841 "router bgp <1-65535>",
842 ROUTER_STR
843 BGP_STR
844 AS_STR)
845{
846 vty->node = BGP_NODE;
847 return CMD_SUCCESS;
848}
849
850DEFUNSH (VTYSH_BGPD,
851 address_family_vpnv4,
852 address_family_vpnv4_cmd,
853 "address-family vpnv4",
854 "Enter Address Family command mode\n"
855 "Address family\n")
856{
857 vty->node = BGP_VPNV4_NODE;
858 return CMD_SUCCESS;
859}
860
861DEFUNSH (VTYSH_BGPD,
862 address_family_vpnv4_unicast,
863 address_family_vpnv4_unicast_cmd,
864 "address-family vpnv4 unicast",
865 "Enter Address Family command mode\n"
866 "Address family\n"
867 "Address Family Modifier\n")
868{
869 vty->node = BGP_VPNV4_NODE;
870 return CMD_SUCCESS;
871}
872
873DEFUNSH (VTYSH_BGPD,
874 address_family_ipv4_unicast,
875 address_family_ipv4_unicast_cmd,
876 "address-family ipv4 unicast",
877 "Enter Address Family command mode\n"
878 "Address family\n"
879 "Address Family Modifier\n")
880{
881 vty->node = BGP_IPV4_NODE;
882 return CMD_SUCCESS;
883}
884
885DEFUNSH (VTYSH_BGPD,
886 address_family_ipv4_multicast,
887 address_family_ipv4_multicast_cmd,
888 "address-family ipv4 multicast",
889 "Enter Address Family command mode\n"
890 "Address family\n"
891 "Address Family Modifier\n")
892{
893 vty->node = BGP_IPV4M_NODE;
894 return CMD_SUCCESS;
895}
896
897DEFUNSH (VTYSH_BGPD,
898 address_family_ipv6,
899 address_family_ipv6_cmd,
900 "address-family ipv6",
901 "Enter Address Family command mode\n"
902 "Address family\n")
903{
904 vty->node = BGP_IPV6_NODE;
905 return CMD_SUCCESS;
906}
907
908DEFUNSH (VTYSH_BGPD,
909 address_family_ipv6_unicast,
910 address_family_ipv6_unicast_cmd,
911 "address-family ipv6 unicast",
912 "Enter Address Family command mode\n"
913 "Address family\n"
914 "Address Family Modifier\n")
915{
916 vty->node = BGP_IPV6_NODE;
917 return CMD_SUCCESS;
918}
919
paul57b5b7e2005-08-22 22:44:29 +0000920DEFUNSH (VTYSH_BGPD,
921 address_family_ipv6_multicast,
922 address_family_ipv6_multicast_cmd,
923 "address-family ipv6 multicast",
924 "Enter Address Family command mode\n"
925 "Address family\n"
926 "Address Family Modifier\n")
927{
928 vty->node = BGP_IPV6M_NODE;
929 return CMD_SUCCESS;
930}
931
paul718e3742002-12-13 20:15:29 +0000932DEFUNSH (VTYSH_RIPD,
933 key_chain,
934 key_chain_cmd,
935 "key chain WORD",
936 "Authentication key management\n"
937 "Key-chain management\n"
938 "Key-chain name\n")
939{
940 vty->node = KEYCHAIN_NODE;
941 return CMD_SUCCESS;
942}
943
944DEFUNSH (VTYSH_RIPD,
945 key,
946 key_cmd,
947 "key <0-2147483647>",
948 "Configure a key\n"
949 "Key identifier number\n")
950{
951 vty->node = KEYCHAIN_KEY_NODE;
952 return CMD_SUCCESS;
953}
954
955DEFUNSH (VTYSH_RIPD,
956 router_rip,
957 router_rip_cmd,
958 "router rip",
959 ROUTER_STR
960 "RIP")
961{
962 vty->node = RIP_NODE;
963 return CMD_SUCCESS;
964}
965
966DEFUNSH (VTYSH_RIPNGD,
967 router_ripng,
968 router_ripng_cmd,
969 "router ripng",
970 ROUTER_STR
971 "RIPng")
972{
973 vty->node = RIPNG_NODE;
974 return CMD_SUCCESS;
975}
976
977DEFUNSH (VTYSH_OSPFD,
978 router_ospf,
979 router_ospf_cmd,
980 "router ospf",
981 "Enable a routing process\n"
982 "Start OSPF configuration\n")
983{
984 vty->node = OSPF_NODE;
985 return CMD_SUCCESS;
986}
987
988DEFUNSH (VTYSH_OSPF6D,
989 router_ospf6,
990 router_ospf6_cmd,
991 "router ospf6",
992 OSPF6_ROUTER_STR
993 OSPF6_STR)
994{
995 vty->node = OSPF6_NODE;
996 return CMD_SUCCESS;
997}
998
hassoc25e4582003-12-23 10:39:08 +0000999DEFUNSH (VTYSH_ISISD,
hassob094d262004-08-25 12:22:00 +00001000 router_isis,
1001 router_isis_cmd,
1002 "router isis WORD",
1003 ROUTER_STR
1004 "ISO IS-IS\n"
1005 "ISO Routing area tag")
hassoc25e4582003-12-23 10:39:08 +00001006{
1007 vty->node = ISIS_NODE;
1008 return CMD_SUCCESS;
1009}
1010
paul718e3742002-12-13 20:15:29 +00001011DEFUNSH (VTYSH_RMAP,
1012 route_map,
1013 route_map_cmd,
1014 "route-map WORD (deny|permit) <1-65535>",
1015 "Create route-map or enter route-map command mode\n"
1016 "Route map tag\n"
1017 "Route map denies set operations\n"
1018 "Route map permits set operations\n"
1019 "Sequence to insert to/delete from existing route-map entry\n")
1020{
1021 vty->node = RMAP_NODE;
1022 return CMD_SUCCESS;
1023}
1024
paul718e3742002-12-13 20:15:29 +00001025DEFUNSH (VTYSH_ALL,
hassoe7168df2004-10-03 20:11:32 +00001026 vtysh_line_vty,
1027 vtysh_line_vty_cmd,
1028 "line vty",
1029 "Configure a terminal line\n"
1030 "Virtual terminal\n")
1031{
1032 vty->node = VTY_NODE;
1033 return CMD_SUCCESS;
1034}
1035
1036DEFUNSH (VTYSH_ALL,
paul718e3742002-12-13 20:15:29 +00001037 vtysh_enable,
1038 vtysh_enable_cmd,
1039 "enable",
1040 "Turn on privileged mode command\n")
1041{
1042 vty->node = ENABLE_NODE;
1043 return CMD_SUCCESS;
1044}
1045
paul718e3742002-12-13 20:15:29 +00001046DEFUNSH (VTYSH_ALL,
1047 vtysh_disable,
1048 vtysh_disable_cmd,
1049 "disable",
1050 "Turn off privileged mode command\n")
1051{
1052 if (vty->node == ENABLE_NODE)
1053 vty->node = VIEW_NODE;
1054 return CMD_SUCCESS;
1055}
1056
paul718e3742002-12-13 20:15:29 +00001057DEFUNSH (VTYSH_ALL,
1058 vtysh_config_terminal,
1059 vtysh_config_terminal_cmd,
1060 "configure terminal",
1061 "Configuration from vty interface\n"
1062 "Configuration terminal\n")
1063{
1064 vty->node = CONFIG_NODE;
1065 return CMD_SUCCESS;
1066}
1067
ajs274a4a42004-12-07 15:39:31 +00001068static int
paul718e3742002-12-13 20:15:29 +00001069vtysh_exit (struct vty *vty)
1070{
1071 switch (vty->node)
1072 {
1073 case VIEW_NODE:
1074 case ENABLE_NODE:
1075 exit (0);
1076 break;
1077 case CONFIG_NODE:
1078 vty->node = ENABLE_NODE;
1079 break;
1080 case INTERFACE_NODE:
1081 case ZEBRA_NODE:
1082 case BGP_NODE:
1083 case RIP_NODE:
1084 case RIPNG_NODE:
1085 case OSPF_NODE:
1086 case OSPF6_NODE:
hassoc25e4582003-12-23 10:39:08 +00001087 case ISIS_NODE:
paul718e3742002-12-13 20:15:29 +00001088 case MASC_NODE:
1089 case RMAP_NODE:
1090 case VTY_NODE:
1091 case KEYCHAIN_NODE:
hasso2a56df92004-05-09 23:16:40 +00001092 vtysh_execute("end");
1093 vtysh_execute("configure terminal");
paul718e3742002-12-13 20:15:29 +00001094 vty->node = CONFIG_NODE;
1095 break;
1096 case BGP_VPNV4_NODE:
1097 case BGP_IPV4_NODE:
1098 case BGP_IPV4M_NODE:
1099 case BGP_IPV6_NODE:
paul57b5b7e2005-08-22 22:44:29 +00001100 case BGP_IPV6M_NODE:
paul718e3742002-12-13 20:15:29 +00001101 vty->node = BGP_NODE;
1102 break;
1103 case KEYCHAIN_KEY_NODE:
1104 vty->node = KEYCHAIN_NODE;
1105 break;
1106 default:
1107 break;
1108 }
1109 return CMD_SUCCESS;
1110}
1111
1112DEFUNSH (VTYSH_ALL,
1113 vtysh_exit_all,
1114 vtysh_exit_all_cmd,
1115 "exit",
1116 "Exit current mode and down to previous mode\n")
1117{
1118 return vtysh_exit (vty);
1119}
1120
1121ALIAS (vtysh_exit_all,
1122 vtysh_quit_all_cmd,
1123 "quit",
1124 "Exit current mode and down to previous mode\n")
1125
1126DEFUNSH (VTYSH_BGPD,
1127 exit_address_family,
1128 exit_address_family_cmd,
1129 "exit-address-family",
1130 "Exit from Address Family configuration mode\n")
1131{
1132 if (vty->node == BGP_IPV4_NODE
1133 || vty->node == BGP_IPV4M_NODE
1134 || vty->node == BGP_VPNV4_NODE
paul57b5b7e2005-08-22 22:44:29 +00001135 || vty->node == BGP_IPV6_NODE
1136 || vty->node == BGP_IPV6M_NODE)
paul718e3742002-12-13 20:15:29 +00001137 vty->node = BGP_NODE;
1138 return CMD_SUCCESS;
1139}
1140
1141DEFUNSH (VTYSH_ZEBRA,
1142 vtysh_exit_zebra,
1143 vtysh_exit_zebra_cmd,
1144 "exit",
1145 "Exit current mode and down to previous mode\n")
1146{
1147 return vtysh_exit (vty);
1148}
1149
1150ALIAS (vtysh_exit_zebra,
1151 vtysh_quit_zebra_cmd,
1152 "quit",
1153 "Exit current mode and down to previous mode\n")
1154
1155DEFUNSH (VTYSH_RIPD,
1156 vtysh_exit_ripd,
1157 vtysh_exit_ripd_cmd,
1158 "exit",
1159 "Exit current mode and down to previous mode\n")
1160{
1161 return vtysh_exit (vty);
1162}
1163
1164ALIAS (vtysh_exit_ripd,
1165 vtysh_quit_ripd_cmd,
1166 "quit",
1167 "Exit current mode and down to previous mode\n")
1168
paul68980082003-03-25 05:07:42 +00001169DEFUNSH (VTYSH_RIPNGD,
hassob094d262004-08-25 12:22:00 +00001170 vtysh_exit_ripngd,
1171 vtysh_exit_ripngd_cmd,
1172 "exit",
1173 "Exit current mode and down to previous mode\n")
paul68980082003-03-25 05:07:42 +00001174{
1175 return vtysh_exit (vty);
1176}
1177
1178ALIAS (vtysh_exit_ripngd,
1179 vtysh_quit_ripngd_cmd,
1180 "quit",
1181 "Exit current mode and down to previous mode\n")
1182
paul718e3742002-12-13 20:15:29 +00001183DEFUNSH (VTYSH_RMAP,
1184 vtysh_exit_rmap,
1185 vtysh_exit_rmap_cmd,
1186 "exit",
1187 "Exit current mode and down to previous mode\n")
1188{
1189 return vtysh_exit (vty);
1190}
1191
1192ALIAS (vtysh_exit_rmap,
1193 vtysh_quit_rmap_cmd,
1194 "quit",
1195 "Exit current mode and down to previous mode\n")
1196
1197DEFUNSH (VTYSH_BGPD,
1198 vtysh_exit_bgpd,
1199 vtysh_exit_bgpd_cmd,
1200 "exit",
1201 "Exit current mode and down to previous mode\n")
1202{
1203 return vtysh_exit (vty);
1204}
1205
1206ALIAS (vtysh_exit_bgpd,
1207 vtysh_quit_bgpd_cmd,
1208 "quit",
1209 "Exit current mode and down to previous mode\n")
1210
1211DEFUNSH (VTYSH_OSPFD,
1212 vtysh_exit_ospfd,
1213 vtysh_exit_ospfd_cmd,
1214 "exit",
1215 "Exit current mode and down to previous mode\n")
1216{
1217 return vtysh_exit (vty);
1218}
1219
1220ALIAS (vtysh_exit_ospfd,
1221 vtysh_quit_ospfd_cmd,
1222 "quit",
1223 "Exit current mode and down to previous mode\n")
1224
paul68980082003-03-25 05:07:42 +00001225DEFUNSH (VTYSH_OSPF6D,
hassob094d262004-08-25 12:22:00 +00001226 vtysh_exit_ospf6d,
1227 vtysh_exit_ospf6d_cmd,
1228 "exit",
1229 "Exit current mode and down to previous mode\n")
paul68980082003-03-25 05:07:42 +00001230{
1231 return vtysh_exit (vty);
1232}
1233
1234ALIAS (vtysh_exit_ospf6d,
1235 vtysh_quit_ospf6d_cmd,
1236 "quit",
1237 "Exit current mode and down to previous mode\n")
1238
hassoc25e4582003-12-23 10:39:08 +00001239DEFUNSH (VTYSH_ISISD,
hassob094d262004-08-25 12:22:00 +00001240 vtysh_exit_isisd,
1241 vtysh_exit_isisd_cmd,
1242 "exit",
1243 "Exit current mode and down to previous mode\n")
hassoc25e4582003-12-23 10:39:08 +00001244{
1245 return vtysh_exit (vty);
1246}
1247
1248ALIAS (vtysh_exit_isisd,
1249 vtysh_quit_isisd_cmd,
1250 "quit",
1251 "Exit current mode and down to previous mode\n")
1252
hassoe7168df2004-10-03 20:11:32 +00001253DEFUNSH (VTYSH_ALL,
1254 vtysh_exit_line_vty,
1255 vtysh_exit_line_vty_cmd,
1256 "exit",
1257 "Exit current mode and down to previous mode\n")
1258{
1259 return vtysh_exit (vty);
1260}
1261
1262ALIAS (vtysh_exit_line_vty,
1263 vtysh_quit_line_vty_cmd,
1264 "quit",
1265 "Exit current mode and down to previous mode\n")
1266
hasso95e735b2004-08-26 13:08:30 +00001267DEFUNSH (VTYSH_INTERFACE,
paul718e3742002-12-13 20:15:29 +00001268 vtysh_interface,
1269 vtysh_interface_cmd,
1270 "interface IFNAME",
1271 "Select an interface to configure\n"
1272 "Interface's name\n")
1273{
1274 vty->node = INTERFACE_NODE;
1275 return CMD_SUCCESS;
1276}
1277
hasso95e735b2004-08-26 13:08:30 +00001278/* TODO Implement "no interface command in isisd. */
paul32d24632003-05-23 09:25:20 +00001279DEFSH (VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_RIPNGD|VTYSH_OSPFD|VTYSH_OSPF6D,
1280 vtysh_no_interface_cmd,
1281 "no interface IFNAME",
1282 NO_STR
1283 "Delete a pseudo interface's configuration\n"
1284 "Interface's name\n")
1285
hasso95e735b2004-08-26 13:08:30 +00001286/* TODO Implement interface description commands in ripngd, ospf6d
1287 * and isisd. */
paul338a9912003-03-01 15:44:10 +00001288DEFSH (VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD,
1289 interface_desc_cmd,
1290 "description .LINE",
1291 "Interface specific description\n"
1292 "Characters describing this interface\n")
paul464dc8d2003-03-28 02:25:45 +00001293
1294DEFSH (VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD,
1295 no_interface_desc_cmd,
1296 "no description",
1297 NO_STR
1298 "Interface specific description\n")
paul338a9912003-03-01 15:44:10 +00001299
hasso95e735b2004-08-26 13:08:30 +00001300DEFUNSH (VTYSH_INTERFACE,
paul718e3742002-12-13 20:15:29 +00001301 vtysh_exit_interface,
1302 vtysh_exit_interface_cmd,
1303 "exit",
1304 "Exit current mode and down to previous mode\n")
1305{
1306 return vtysh_exit (vty);
1307}
1308
1309ALIAS (vtysh_exit_interface,
1310 vtysh_quit_interface_cmd,
1311 "quit",
1312 "Exit current mode and down to previous mode\n")
1313
hasso95e735b2004-08-26 13:08:30 +00001314/* Logging commands. */
Paul Jakmadbf7d132006-05-23 22:10:01 +00001315DEFUN (vtysh_show_logging,
1316 vtysh_show_logging_cmd,
1317 "show logging",
1318 SHOW_STR
1319 "Show current logging configuration\n")
1320{
1321 unsigned int i;
1322 int ret = CMD_SUCCESS;
1323 char line[] = "show logging\n";
1324
1325 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1326 {
1327 fprintf (stdout,"Logging configuration for %s:\n", vtysh_client[i].name);
1328 ret = vtysh_client_execute (&vtysh_client[i], line, stdout);
1329 fprintf (stdout,"\n");
1330 }
1331
1332 return ret;
1333}
1334
hasso95e735b2004-08-26 13:08:30 +00001335DEFUNSH (VTYSH_ALL,
1336 vtysh_log_stdout,
1337 vtysh_log_stdout_cmd,
1338 "log stdout",
1339 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001340 "Set stdout logging level\n")
1341{
1342 return CMD_SUCCESS;
1343}
1344
1345DEFUNSH (VTYSH_ALL,
1346 vtysh_log_stdout_level,
1347 vtysh_log_stdout_level_cmd,
1348 "log stdout "LOG_LEVELS,
1349 "Logging control\n"
1350 "Set stdout logging level\n"
1351 LOG_LEVEL_DESC)
hasso95e735b2004-08-26 13:08:30 +00001352{
1353 return CMD_SUCCESS;
1354}
1355
1356DEFUNSH (VTYSH_ALL,
1357 no_vtysh_log_stdout,
1358 no_vtysh_log_stdout_cmd,
ajs274a4a42004-12-07 15:39:31 +00001359 "no log stdout [LEVEL]",
hasso95e735b2004-08-26 13:08:30 +00001360 NO_STR
1361 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001362 "Cancel logging to stdout\n"
1363 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001364{
1365 return CMD_SUCCESS;
1366}
1367
1368DEFUNSH (VTYSH_ALL,
1369 vtysh_log_file,
1370 vtysh_log_file_cmd,
1371 "log file FILENAME",
1372 "Logging control\n"
1373 "Logging to file\n"
1374 "Logging filename\n")
1375{
1376 return CMD_SUCCESS;
1377}
1378
1379DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001380 vtysh_log_file_level,
1381 vtysh_log_file_level_cmd,
1382 "log file FILENAME "LOG_LEVELS,
1383 "Logging control\n"
1384 "Logging to file\n"
1385 "Logging filename\n"
1386 LOG_LEVEL_DESC)
1387{
1388 return CMD_SUCCESS;
1389}
1390
1391DEFUNSH (VTYSH_ALL,
hasso95e735b2004-08-26 13:08:30 +00001392 no_vtysh_log_file,
1393 no_vtysh_log_file_cmd,
1394 "no log file [FILENAME]",
1395 NO_STR
1396 "Logging control\n"
1397 "Cancel logging to file\n"
1398 "Logging file name\n")
1399{
1400 return CMD_SUCCESS;
1401}
1402
ajs274a4a42004-12-07 15:39:31 +00001403ALIAS_SH (VTYSH_ALL,
1404 no_vtysh_log_file,
1405 no_vtysh_log_file_level_cmd,
1406 "no log file FILENAME LEVEL",
1407 NO_STR
1408 "Logging control\n"
1409 "Cancel logging to file\n"
1410 "Logging file name\n"
1411 "Logging level\n")
1412
1413DEFUNSH (VTYSH_ALL,
1414 vtysh_log_monitor,
1415 vtysh_log_monitor_cmd,
1416 "log monitor",
1417 "Logging control\n"
1418 "Set terminal line (monitor) logging level\n")
1419{
1420 return CMD_SUCCESS;
1421}
1422
1423DEFUNSH (VTYSH_ALL,
1424 vtysh_log_monitor_level,
1425 vtysh_log_monitor_level_cmd,
1426 "log monitor "LOG_LEVELS,
1427 "Logging control\n"
1428 "Set terminal line (monitor) logging level\n"
1429 LOG_LEVEL_DESC)
1430{
1431 return CMD_SUCCESS;
1432}
1433
1434DEFUNSH (VTYSH_ALL,
1435 no_vtysh_log_monitor,
1436 no_vtysh_log_monitor_cmd,
1437 "no log monitor [LEVEL]",
1438 NO_STR
1439 "Logging control\n"
1440 "Disable terminal line (monitor) logging\n"
1441 "Logging level\n")
1442{
1443 return CMD_SUCCESS;
1444}
1445
hasso95e735b2004-08-26 13:08:30 +00001446DEFUNSH (VTYSH_ALL,
1447 vtysh_log_syslog,
1448 vtysh_log_syslog_cmd,
1449 "log syslog",
1450 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001451 "Set syslog logging level\n")
1452{
1453 return CMD_SUCCESS;
1454}
1455
1456DEFUNSH (VTYSH_ALL,
1457 vtysh_log_syslog_level,
1458 vtysh_log_syslog_level_cmd,
1459 "log syslog "LOG_LEVELS,
1460 "Logging control\n"
1461 "Set syslog logging level\n"
1462 LOG_LEVEL_DESC)
hasso95e735b2004-08-26 13:08:30 +00001463{
1464 return CMD_SUCCESS;
1465}
1466
1467DEFUNSH (VTYSH_ALL,
1468 no_vtysh_log_syslog,
1469 no_vtysh_log_syslog_cmd,
ajs274a4a42004-12-07 15:39:31 +00001470 "no log syslog [LEVEL]",
hasso95e735b2004-08-26 13:08:30 +00001471 NO_STR
1472 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001473 "Cancel logging to syslog\n"
1474 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001475{
1476 return CMD_SUCCESS;
1477}
1478
1479DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001480 vtysh_log_facility,
1481 vtysh_log_facility_cmd,
1482 "log facility "LOG_FACILITIES,
hasso95e735b2004-08-26 13:08:30 +00001483 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001484 "Facility parameter for syslog messages\n"
1485 LOG_FACILITY_DESC)
1486
hasso95e735b2004-08-26 13:08:30 +00001487{
1488 return CMD_SUCCESS;
1489}
1490
1491DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001492 no_vtysh_log_facility,
1493 no_vtysh_log_facility_cmd,
1494 "no log facility [FACILITY]",
hasso95e735b2004-08-26 13:08:30 +00001495 NO_STR
1496 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001497 "Reset syslog facility to default (daemon)\n"
1498 "Syslog facility\n")
1499
1500{
1501 return CMD_SUCCESS;
1502}
1503
1504DEFUNSH_DEPRECATED (VTYSH_ALL,
1505 vtysh_log_trap,
1506 vtysh_log_trap_cmd,
1507 "log trap "LOG_LEVELS,
1508 "Logging control\n"
1509 "(Deprecated) Set logging level and default for all destinations\n"
1510 LOG_LEVEL_DESC)
1511
1512{
1513 return CMD_SUCCESS;
1514}
1515
1516DEFUNSH_DEPRECATED (VTYSH_ALL,
1517 no_vtysh_log_trap,
1518 no_vtysh_log_trap_cmd,
1519 "no log trap [LEVEL]",
1520 NO_STR
1521 "Logging control\n"
1522 "Permit all logging information\n"
1523 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001524{
1525 return CMD_SUCCESS;
1526}
1527
1528DEFUNSH (VTYSH_ALL,
1529 vtysh_log_record_priority,
1530 vtysh_log_record_priority_cmd,
1531 "log record-priority",
1532 "Logging control\n"
1533 "Log the priority of the message within the message\n")
1534{
1535 return CMD_SUCCESS;
1536}
1537
1538DEFUNSH (VTYSH_ALL,
1539 no_vtysh_log_record_priority,
1540 no_vtysh_log_record_priority_cmd,
1541 "no log record-priority",
1542 NO_STR
1543 "Logging control\n"
1544 "Do not log the priority of the message within the message\n")
1545{
1546 return CMD_SUCCESS;
1547}
1548
hassoe7168df2004-10-03 20:11:32 +00001549DEFUNSH (VTYSH_ALL,
1550 vtysh_service_password_encrypt,
1551 vtysh_service_password_encrypt_cmd,
1552 "service password-encryption",
1553 "Set up miscellaneous service\n"
1554 "Enable encrypted passwords\n")
1555{
1556 return CMD_SUCCESS;
1557}
1558
1559DEFUNSH (VTYSH_ALL,
1560 no_vtysh_service_password_encrypt,
1561 no_vtysh_service_password_encrypt_cmd,
1562 "no service password-encryption",
1563 NO_STR
1564 "Set up miscellaneous service\n"
1565 "Enable encrypted passwords\n")
1566{
1567 return CMD_SUCCESS;
1568}
1569
1570DEFUNSH (VTYSH_ALL,
1571 vtysh_config_password,
1572 vtysh_password_cmd,
1573 "password (8|) WORD",
1574 "Assign the terminal connection password\n"
1575 "Specifies a HIDDEN password will follow\n"
1576 "dummy string \n"
1577 "The HIDDEN line password string\n")
1578{
1579 return CMD_SUCCESS;
1580}
1581
1582DEFUNSH (VTYSH_ALL,
1583 vtysh_password_text,
1584 vtysh_password_text_cmd,
1585 "password LINE",
1586 "Assign the terminal connection password\n"
1587 "The UNENCRYPTED (cleartext) line password\n")
1588{
1589 return CMD_SUCCESS;
1590}
1591
1592DEFUNSH (VTYSH_ALL,
1593 vtysh_config_enable_password,
1594 vtysh_enable_password_cmd,
1595 "enable password (8|) WORD",
1596 "Modify enable password parameters\n"
1597 "Assign the privileged level password\n"
1598 "Specifies a HIDDEN password will follow\n"
1599 "dummy string \n"
1600 "The HIDDEN 'enable' password string\n")
1601{
1602 return CMD_SUCCESS;
1603}
1604
1605DEFUNSH (VTYSH_ALL,
1606 vtysh_enable_password_text,
1607 vtysh_enable_password_text_cmd,
1608 "enable password LINE",
1609 "Modify enable password parameters\n"
1610 "Assign the privileged level password\n"
1611 "The UNENCRYPTED (cleartext) 'enable' password\n")
1612{
1613 return CMD_SUCCESS;
1614}
1615
1616DEFUNSH (VTYSH_ALL,
1617 no_vtysh_config_enable_password,
1618 no_vtysh_enable_password_cmd,
1619 "no enable password",
1620 NO_STR
1621 "Modify enable password parameters\n"
1622 "Assign the privileged level password\n")
1623{
1624 return CMD_SUCCESS;
1625}
1626
paul718e3742002-12-13 20:15:29 +00001627DEFUN (vtysh_write_terminal,
1628 vtysh_write_terminal_cmd,
1629 "write terminal",
1630 "Write running configuration to memory, network, or terminal\n"
1631 "Write to terminal\n")
1632{
ajsb1aa1472005-01-28 21:11:46 +00001633 u_int i;
paul718e3742002-12-13 20:15:29 +00001634 int ret;
1635 char line[] = "write terminal\n";
1636 FILE *fp = NULL;
1637
1638 if (vtysh_pager_name)
1639 {
paul4fc01e62002-12-13 20:49:00 +00001640 fp = popen (vtysh_pager_name, "w");
paul718e3742002-12-13 20:15:29 +00001641 if (fp == NULL)
1642 {
1643 perror ("popen");
1644 exit (1);
1645 }
1646 }
1647 else
1648 fp = stdout;
1649
1650 vty_out (vty, "Building configuration...%s", VTY_NEWLINE);
1651 vty_out (vty, "%sCurrent configuration:%s", VTY_NEWLINE,
1652 VTY_NEWLINE);
hassoe7168df2004-10-03 20:11:32 +00001653 vty_out (vty, "!%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001654
ajsb1aa1472005-01-28 21:11:46 +00001655 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1656 ret = vtysh_client_config (&vtysh_client[i], line);
paul718e3742002-12-13 20:15:29 +00001657
hassoe7168df2004-10-03 20:11:32 +00001658 /* Integrate vtysh specific configuration. */
1659 vtysh_config_write ();
1660
paul718e3742002-12-13 20:15:29 +00001661 vtysh_config_dump (fp);
1662
1663 if (vtysh_pager_name && fp)
1664 {
1665 fflush (fp);
1666 if (pclose (fp) == -1)
1667 {
1668 perror ("pclose");
1669 exit (1);
1670 }
1671 fp = NULL;
1672 }
1673
1674 return CMD_SUCCESS;
1675}
1676
hassoe7168df2004-10-03 20:11:32 +00001677DEFUN (vtysh_integrated_config,
1678 vtysh_integrated_config_cmd,
1679 "service integrated-vtysh-config",
1680 "Set up miscellaneous service\n"
1681 "Write configuration into integrated file\n")
paul4fc01e62002-12-13 20:49:00 +00001682{
hassoe7168df2004-10-03 20:11:32 +00001683 vtysh_writeconfig_integrated = 1;
1684 return CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001685}
1686
hassoe7168df2004-10-03 20:11:32 +00001687DEFUN (no_vtysh_integrated_config,
1688 no_vtysh_integrated_config_cmd,
1689 "no service integrated-vtysh-config",
1690 NO_STR
1691 "Set up miscellaneous service\n"
1692 "Write configuration into integrated file\n")
paul4fc01e62002-12-13 20:49:00 +00001693{
hassoe7168df2004-10-03 20:11:32 +00001694 vtysh_writeconfig_integrated = 0;
1695 return CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001696}
1697
ajs274a4a42004-12-07 15:39:31 +00001698static int
1699write_config_integrated(void)
paul718e3742002-12-13 20:15:29 +00001700{
ajsb1aa1472005-01-28 21:11:46 +00001701 u_int i;
paul718e3742002-12-13 20:15:29 +00001702 int ret;
paul718e3742002-12-13 20:15:29 +00001703 char line[] = "write terminal\n";
1704 FILE *fp;
1705 char *integrate_sav = NULL;
1706
hasso95e735b2004-08-26 13:08:30 +00001707 integrate_sav = malloc (strlen (integrate_default) +
1708 strlen (CONF_BACKUP_EXT) + 1);
paul718e3742002-12-13 20:15:29 +00001709 strcpy (integrate_sav, integrate_default);
1710 strcat (integrate_sav, CONF_BACKUP_EXT);
1711
paul4fc01e62002-12-13 20:49:00 +00001712 fprintf (stdout,"Building Configuration...\n");
paul718e3742002-12-13 20:15:29 +00001713
hasso95e735b2004-08-26 13:08:30 +00001714 /* Move current configuration file to backup config file. */
paul718e3742002-12-13 20:15:29 +00001715 unlink (integrate_sav);
1716 rename (integrate_default, integrate_sav);
hasso95e735b2004-08-26 13:08:30 +00001717 free (integrate_sav);
paul4fc01e62002-12-13 20:49:00 +00001718
paul718e3742002-12-13 20:15:29 +00001719 fp = fopen (integrate_default, "w");
1720 if (fp == NULL)
1721 {
hasso95e735b2004-08-26 13:08:30 +00001722 fprintf (stdout,"%% Can't open configuration file %s.\n",
1723 integrate_default);
paul718e3742002-12-13 20:15:29 +00001724 return CMD_SUCCESS;
1725 }
paul718e3742002-12-13 20:15:29 +00001726
ajsb1aa1472005-01-28 21:11:46 +00001727 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1728 ret = vtysh_client_config (&vtysh_client[i], line);
paul718e3742002-12-13 20:15:29 +00001729
1730 vtysh_config_dump (fp);
1731
1732 fclose (fp);
1733
gdtaa593d52003-12-22 20:15:53 +00001734 if (chmod (integrate_default, CONFIGFILE_MASK) != 0)
1735 {
1736 fprintf (stdout,"%% Can't chmod configuration file %s: %s (%d)\n",
ajs6099b3b2004-11-20 02:06:59 +00001737 integrate_default, safe_strerror(errno), errno);
gdtaa593d52003-12-22 20:15:53 +00001738 return CMD_WARNING;
1739 }
1740
paul4fc01e62002-12-13 20:49:00 +00001741 fprintf(stdout,"Integrated configuration saved to %s\n",integrate_default);
1742
1743 fprintf (stdout,"[OK]\n");
1744
paul718e3742002-12-13 20:15:29 +00001745 return CMD_SUCCESS;
1746}
1747
paul4fc01e62002-12-13 20:49:00 +00001748DEFUN (vtysh_write_memory,
1749 vtysh_write_memory_cmd,
1750 "write memory",
1751 "Write running configuration to memory, network, or terminal\n"
1752 "Write configuration to the file (same as write file)\n")
1753{
pauldfc0d9b2003-04-18 23:55:29 +00001754 int ret = CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001755 char line[] = "write memory\n";
ajsb1aa1472005-01-28 21:11:46 +00001756 u_int i;
paul4fc01e62002-12-13 20:49:00 +00001757
hassoe7168df2004-10-03 20:11:32 +00001758 /* If integrated Quagga.conf explicitely set. */
1759 if (vtysh_writeconfig_integrated)
1760 return write_config_integrated();
paul4fc01e62002-12-13 20:49:00 +00001761
1762 fprintf (stdout,"Building Configuration...\n");
1763
ajsb1aa1472005-01-28 21:11:46 +00001764 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1765 ret = vtysh_client_execute (&vtysh_client[i], line, stdout);
hassoe7168df2004-10-03 20:11:32 +00001766
paul4fc01e62002-12-13 20:49:00 +00001767 fprintf (stdout,"[OK]\n");
1768
pauldfc0d9b2003-04-18 23:55:29 +00001769 return ret;
paul4fc01e62002-12-13 20:49:00 +00001770}
1771
paul718e3742002-12-13 20:15:29 +00001772ALIAS (vtysh_write_memory,
1773 vtysh_copy_runningconfig_startupconfig_cmd,
1774 "copy running-config startup-config",
1775 "Copy from one file to another\n"
1776 "Copy from current system configuration\n"
1777 "Copy to startup configuration\n")
1778
1779ALIAS (vtysh_write_memory,
1780 vtysh_write_file_cmd,
1781 "write file",
1782 "Write running configuration to memory, network, or terminal\n"
1783 "Write configuration to the file (same as write memory)\n")
1784
hasso4a6e2252003-05-25 11:51:29 +00001785ALIAS (vtysh_write_memory,
1786 vtysh_write_cmd,
1787 "write",
1788 "Write running configuration to memory, network, or terminal\n")
1789
paul718e3742002-12-13 20:15:29 +00001790ALIAS (vtysh_write_terminal,
1791 vtysh_show_running_config_cmd,
1792 "show running-config",
1793 SHOW_STR
1794 "Current operating configuration\n")
hassob094d262004-08-25 12:22:00 +00001795
hasso34553cc2004-08-27 13:56:39 +00001796DEFUN (vtysh_terminal_length,
1797 vtysh_terminal_length_cmd,
1798 "terminal length <0-512>",
1799 "Set terminal line parameters\n"
1800 "Set number of lines on a screen\n"
1801 "Number of lines on screen (0 for no pausing)\n")
1802{
1803 int lines;
1804 char *endptr = NULL;
1805 char default_pager[10];
1806
1807 lines = strtol (argv[0], &endptr, 10);
1808 if (lines < 0 || lines > 512 || *endptr != '\0')
1809 {
1810 vty_out (vty, "length is malformed%s", VTY_NEWLINE);
1811 return CMD_WARNING;
1812 }
1813
1814 if (vtysh_pager_name)
1815 {
1816 free (vtysh_pager_name);
1817 vtysh_pager_name = NULL;
1818 }
1819
1820 if (lines != 0)
1821 {
1822 snprintf(default_pager, 10, "more -%i", lines);
1823 vtysh_pager_name = strdup (default_pager);
1824 }
1825
1826 return CMD_SUCCESS;
1827}
1828
1829DEFUN (vtysh_terminal_no_length,
1830 vtysh_terminal_no_length_cmd,
1831 "terminal no length",
1832 "Set terminal line parameters\n"
1833 NO_STR
1834 "Set number of lines on a screen\n")
1835{
1836 if (vtysh_pager_name)
1837 {
1838 free (vtysh_pager_name);
1839 vtysh_pager_name = NULL;
1840 }
1841
1842 vtysh_pager_init();
1843 return CMD_SUCCESS;
1844}
1845
hassof2799e62004-10-28 17:43:11 +00001846DEFUN (vtysh_show_daemons,
1847 vtysh_show_daemons_cmd,
1848 "show daemons",
hassoe7168df2004-10-03 20:11:32 +00001849 SHOW_STR
1850 "Show list of running daemons\n")
1851{
ajsb1aa1472005-01-28 21:11:46 +00001852 u_int i;
1853
1854 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1855 if ( vtysh_client[i].fd >= 0 )
1856 vty_out(vty, " %s", vtysh_client[i].name);
hassoe7168df2004-10-03 20:11:32 +00001857 vty_out(vty, "%s", VTY_NEWLINE);
1858
1859 return CMD_SUCCESS;
1860}
1861
paul718e3742002-12-13 20:15:29 +00001862/* Execute command in child process. */
ajs274a4a42004-12-07 15:39:31 +00001863static int
hasso5862ff52004-10-11 13:20:40 +00001864execute_command (const char *command, int argc, const char *arg1,
1865 const char *arg2)
paul718e3742002-12-13 20:15:29 +00001866{
1867 int ret;
1868 pid_t pid;
1869 int status;
1870
1871 /* Call fork(). */
1872 pid = fork ();
1873
1874 if (pid < 0)
1875 {
1876 /* Failure of fork(). */
ajs6099b3b2004-11-20 02:06:59 +00001877 fprintf (stderr, "Can't fork: %s\n", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001878 exit (1);
1879 }
1880 else if (pid == 0)
1881 {
1882 /* This is child process. */
1883 switch (argc)
1884 {
1885 case 0:
hassofa2b17e2004-03-04 17:45:00 +00001886 ret = execlp (command, command, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001887 break;
1888 case 1:
hassofa2b17e2004-03-04 17:45:00 +00001889 ret = execlp (command, command, arg1, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001890 break;
1891 case 2:
hassofa2b17e2004-03-04 17:45:00 +00001892 ret = execlp (command, command, arg1, arg2, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001893 break;
1894 }
1895
1896 /* When execlp suceed, this part is not executed. */
ajs6099b3b2004-11-20 02:06:59 +00001897 fprintf (stderr, "Can't execute %s: %s\n", command, safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001898 exit (1);
1899 }
1900 else
1901 {
1902 /* This is parent. */
1903 execute_flag = 1;
1904 ret = wait4 (pid, &status, 0, NULL);
1905 execute_flag = 0;
1906 }
1907 return 0;
1908}
1909
1910DEFUN (vtysh_ping,
1911 vtysh_ping_cmd,
1912 "ping WORD",
hasso4eeccf12003-06-25 10:49:55 +00001913 "Send echo messages\n"
paul718e3742002-12-13 20:15:29 +00001914 "Ping destination address or hostname\n")
1915{
1916 execute_command ("ping", 1, argv[0], NULL);
1917 return CMD_SUCCESS;
1918}
1919
hasso4eeccf12003-06-25 10:49:55 +00001920ALIAS (vtysh_ping,
1921 vtysh_ping_ip_cmd,
1922 "ping ip WORD",
1923 "Send echo messages\n"
1924 "IP echo\n"
1925 "Ping destination address or hostname\n")
1926
paul718e3742002-12-13 20:15:29 +00001927DEFUN (vtysh_traceroute,
1928 vtysh_traceroute_cmd,
1929 "traceroute WORD",
1930 "Trace route to destination\n"
1931 "Trace route to destination address or hostname\n")
1932{
1933 execute_command ("traceroute", 1, argv[0], NULL);
1934 return CMD_SUCCESS;
1935}
1936
hasso4eeccf12003-06-25 10:49:55 +00001937ALIAS (vtysh_traceroute,
1938 vtysh_traceroute_ip_cmd,
1939 "traceroute ip WORD",
1940 "Trace route to destination\n"
1941 "IP trace\n"
1942 "Trace route to destination address or hostname\n")
1943
1944#ifdef HAVE_IPV6
1945DEFUN (vtysh_ping6,
1946 vtysh_ping6_cmd,
1947 "ping ipv6 WORD",
1948 "Send echo messages\n"
1949 "IPv6 echo\n"
1950 "Ping destination address or hostname\n")
1951{
1952 execute_command ("ping6", 1, argv[0], NULL);
1953 return CMD_SUCCESS;
1954}
1955
1956DEFUN (vtysh_traceroute6,
1957 vtysh_traceroute6_cmd,
1958 "traceroute ipv6 WORD",
1959 "Trace route to destination\n"
1960 "IPv6 trace\n"
1961 "Trace route to destination address or hostname\n")
1962{
1963 execute_command ("traceroute6", 1, argv[0], NULL);
1964 return CMD_SUCCESS;
1965}
1966#endif
1967
paul718e3742002-12-13 20:15:29 +00001968DEFUN (vtysh_telnet,
1969 vtysh_telnet_cmd,
1970 "telnet WORD",
1971 "Open a telnet connection\n"
1972 "IP address or hostname of a remote system\n")
1973{
1974 execute_command ("telnet", 1, argv[0], NULL);
1975 return CMD_SUCCESS;
1976}
1977
1978DEFUN (vtysh_telnet_port,
1979 vtysh_telnet_port_cmd,
1980 "telnet WORD PORT",
1981 "Open a telnet connection\n"
1982 "IP address or hostname of a remote system\n"
1983 "TCP Port number\n")
1984{
1985 execute_command ("telnet", 2, argv[0], argv[1]);
1986 return CMD_SUCCESS;
1987}
1988
paul5087df52003-01-25 06:56:09 +00001989DEFUN (vtysh_ssh,
1990 vtysh_ssh_cmd,
1991 "ssh WORD",
1992 "Open an ssh connection\n"
1993 "[user@]host\n")
1994{
1995 execute_command ("ssh", 1, argv[0], NULL);
1996 return CMD_SUCCESS;
1997}
1998
paul718e3742002-12-13 20:15:29 +00001999DEFUN (vtysh_start_shell,
2000 vtysh_start_shell_cmd,
2001 "start-shell",
2002 "Start UNIX shell\n")
2003{
2004 execute_command ("sh", 0, NULL, NULL);
2005 return CMD_SUCCESS;
2006}
2007
2008DEFUN (vtysh_start_bash,
2009 vtysh_start_bash_cmd,
2010 "start-shell bash",
2011 "Start UNIX shell\n"
2012 "Start bash\n")
2013{
2014 execute_command ("bash", 0, NULL, NULL);
2015 return CMD_SUCCESS;
2016}
2017
2018DEFUN (vtysh_start_zsh,
2019 vtysh_start_zsh_cmd,
2020 "start-shell zsh",
2021 "Start UNIX shell\n"
2022 "Start Z shell\n")
2023{
2024 execute_command ("zsh", 0, NULL, NULL);
2025 return CMD_SUCCESS;
2026}
hassob094d262004-08-25 12:22:00 +00002027
ajs274a4a42004-12-07 15:39:31 +00002028static void
paul718e3742002-12-13 20:15:29 +00002029vtysh_install_default (enum node_type node)
2030{
2031 install_element (node, &config_list_cmd);
2032}
2033
2034/* Making connection to protocol daemon. */
ajs274a4a42004-12-07 15:39:31 +00002035static int
ajsb1aa1472005-01-28 21:11:46 +00002036vtysh_connect (struct vtysh_client *vclient)
paul718e3742002-12-13 20:15:29 +00002037{
2038 int ret;
2039 int sock, len;
2040 struct sockaddr_un addr;
2041 struct stat s_stat;
paul718e3742002-12-13 20:15:29 +00002042
paul718e3742002-12-13 20:15:29 +00002043 /* Stat socket to see if we have permission to access it. */
ajsb1aa1472005-01-28 21:11:46 +00002044 ret = stat (vclient->path, &s_stat);
paul718e3742002-12-13 20:15:29 +00002045 if (ret < 0 && errno != ENOENT)
2046 {
2047 fprintf (stderr, "vtysh_connect(%s): stat = %s\n",
ajsb1aa1472005-01-28 21:11:46 +00002048 vclient->path, safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002049 exit(1);
2050 }
2051
2052 if (ret >= 0)
2053 {
2054 if (! S_ISSOCK(s_stat.st_mode))
2055 {
2056 fprintf (stderr, "vtysh_connect(%s): Not a socket\n",
ajsb1aa1472005-01-28 21:11:46 +00002057 vclient->path);
paul718e3742002-12-13 20:15:29 +00002058 exit (1);
2059 }
2060
paul718e3742002-12-13 20:15:29 +00002061 }
2062
2063 sock = socket (AF_UNIX, SOCK_STREAM, 0);
2064 if (sock < 0)
2065 {
2066#ifdef DEBUG
ajsb1aa1472005-01-28 21:11:46 +00002067 fprintf(stderr, "vtysh_connect(%s): socket = %s\n", vclient->path,
ajs6099b3b2004-11-20 02:06:59 +00002068 safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002069#endif /* DEBUG */
2070 return -1;
2071 }
2072
2073 memset (&addr, 0, sizeof (struct sockaddr_un));
2074 addr.sun_family = AF_UNIX;
ajsb1aa1472005-01-28 21:11:46 +00002075 strncpy (addr.sun_path, vclient->path, strlen (vclient->path));
paul718e3742002-12-13 20:15:29 +00002076#ifdef HAVE_SUN_LEN
2077 len = addr.sun_len = SUN_LEN(&addr);
2078#else
2079 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
2080#endif /* HAVE_SUN_LEN */
2081
2082 ret = connect (sock, (struct sockaddr *) &addr, len);
2083 if (ret < 0)
2084 {
2085#ifdef DEBUG
ajsb1aa1472005-01-28 21:11:46 +00002086 fprintf(stderr, "vtysh_connect(%s): connect = %s\n", vclient->path,
ajs6099b3b2004-11-20 02:06:59 +00002087 safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002088#endif /* DEBUG */
2089 close (sock);
2090 return -1;
2091 }
2092 vclient->fd = sock;
2093
2094 return 0;
2095}
2096
2097void
ajsb1aa1472005-01-28 21:11:46 +00002098vtysh_connect_all(void)
paul718e3742002-12-13 20:15:29 +00002099{
ajsb1aa1472005-01-28 21:11:46 +00002100 u_int i;
2101
2102 for (i = 0; i < VTYSH_INDEX_MAX; i++)
2103 {
2104 vtysh_connect(&vtysh_client[i]);
2105 /* We need direct access to ripd in vtysh_exit_ripd_only. */
2106 if (vtysh_client[i].flag == VTYSH_RIPD)
2107 ripd_client = &vtysh_client[i];
2108 }
paul718e3742002-12-13 20:15:29 +00002109}
2110
hasso95e735b2004-08-26 13:08:30 +00002111/* To disable readline's filename completion. */
ajs274a4a42004-12-07 15:39:31 +00002112static char *
pauldfc0d9b2003-04-18 23:55:29 +00002113vtysh_completion_entry_function (const char *ignore, int invoking_key)
paul718e3742002-12-13 20:15:29 +00002114{
pauldfc0d9b2003-04-18 23:55:29 +00002115 return NULL;
paul718e3742002-12-13 20:15:29 +00002116}
2117
2118void
ajsb1aa1472005-01-28 21:11:46 +00002119vtysh_readline_init (void)
paul718e3742002-12-13 20:15:29 +00002120{
2121 /* readline related settings. */
hasso53a6f932005-09-15 06:50:53 +00002122 rl_bind_key ('?', (Function *) vtysh_rl_describe);
paul68980082003-03-25 05:07:42 +00002123 rl_completion_entry_function = vtysh_completion_entry_function;
paul718e3742002-12-13 20:15:29 +00002124 rl_attempted_completion_function = (CPPFunction *)new_completion;
2125 /* do not append space after completion. It will be appended
hasso95e735b2004-08-26 13:08:30 +00002126 * in new_completion() function explicitly. */
paul718e3742002-12-13 20:15:29 +00002127 rl_completion_append_character = '\0';
2128}
2129
2130char *
ajsb1aa1472005-01-28 21:11:46 +00002131vtysh_prompt (void)
paul718e3742002-12-13 20:15:29 +00002132{
2133 struct utsname names;
2134 static char buf[100];
2135 const char*hostname;
2136 extern struct host host;
2137
2138 hostname = host.name;
2139
2140 if (!hostname)
2141 {
2142 uname (&names);
2143 hostname = names.nodename;
2144 }
2145
2146 snprintf (buf, sizeof buf, cmd_prompt (vty->node), hostname);
2147
2148 return buf;
2149}
2150
2151void
ajsb1aa1472005-01-28 21:11:46 +00002152vtysh_init_vty (void)
paul718e3742002-12-13 20:15:29 +00002153{
2154 /* Make vty structure. */
2155 vty = vty_new ();
2156 vty->type = VTY_SHELL;
2157 vty->node = VIEW_NODE;
2158
2159 /* Initialize commands. */
2160 cmd_init (0);
2161
2162 /* Install nodes. */
2163 install_node (&bgp_node, NULL);
2164 install_node (&rip_node, NULL);
2165 install_node (&interface_node, NULL);
2166 install_node (&rmap_node, NULL);
2167 install_node (&zebra_node, NULL);
2168 install_node (&bgp_vpnv4_node, NULL);
2169 install_node (&bgp_ipv4_node, NULL);
2170 install_node (&bgp_ipv4m_node, NULL);
2171/* #ifdef HAVE_IPV6 */
2172 install_node (&bgp_ipv6_node, NULL);
paul57b5b7e2005-08-22 22:44:29 +00002173 install_node (&bgp_ipv6m_node, NULL);
paul718e3742002-12-13 20:15:29 +00002174/* #endif */
2175 install_node (&ospf_node, NULL);
2176/* #ifdef HAVE_IPV6 */
2177 install_node (&ripng_node, NULL);
2178 install_node (&ospf6_node, NULL);
2179/* #endif */
2180 install_node (&keychain_node, NULL);
2181 install_node (&keychain_key_node, NULL);
hassoc25e4582003-12-23 10:39:08 +00002182 install_node (&isis_node, NULL);
hassoe7168df2004-10-03 20:11:32 +00002183 install_node (&vty_node, NULL);
paul718e3742002-12-13 20:15:29 +00002184
2185 vtysh_install_default (VIEW_NODE);
2186 vtysh_install_default (ENABLE_NODE);
2187 vtysh_install_default (CONFIG_NODE);
2188 vtysh_install_default (BGP_NODE);
2189 vtysh_install_default (RIP_NODE);
2190 vtysh_install_default (INTERFACE_NODE);
2191 vtysh_install_default (RMAP_NODE);
2192 vtysh_install_default (ZEBRA_NODE);
2193 vtysh_install_default (BGP_VPNV4_NODE);
2194 vtysh_install_default (BGP_IPV4_NODE);
2195 vtysh_install_default (BGP_IPV4M_NODE);
2196 vtysh_install_default (BGP_IPV6_NODE);
paul57b5b7e2005-08-22 22:44:29 +00002197 vtysh_install_default (BGP_IPV6M_NODE);
paul718e3742002-12-13 20:15:29 +00002198 vtysh_install_default (OSPF_NODE);
2199 vtysh_install_default (RIPNG_NODE);
2200 vtysh_install_default (OSPF6_NODE);
hassoc25e4582003-12-23 10:39:08 +00002201 vtysh_install_default (ISIS_NODE);
paul718e3742002-12-13 20:15:29 +00002202 vtysh_install_default (KEYCHAIN_NODE);
2203 vtysh_install_default (KEYCHAIN_KEY_NODE);
hassoe7168df2004-10-03 20:11:32 +00002204 vtysh_install_default (VTY_NODE);
paul718e3742002-12-13 20:15:29 +00002205
2206 install_element (VIEW_NODE, &vtysh_enable_cmd);
2207 install_element (ENABLE_NODE, &vtysh_config_terminal_cmd);
2208 install_element (ENABLE_NODE, &vtysh_disable_cmd);
2209
2210 /* "exit" command. */
2211 install_element (VIEW_NODE, &vtysh_exit_all_cmd);
2212 install_element (VIEW_NODE, &vtysh_quit_all_cmd);
2213 install_element (CONFIG_NODE, &vtysh_exit_all_cmd);
2214 /* install_element (CONFIG_NODE, &vtysh_quit_all_cmd); */
2215 install_element (ENABLE_NODE, &vtysh_exit_all_cmd);
2216 install_element (ENABLE_NODE, &vtysh_quit_all_cmd);
2217 install_element (RIP_NODE, &vtysh_exit_ripd_cmd);
2218 install_element (RIP_NODE, &vtysh_quit_ripd_cmd);
paul68980082003-03-25 05:07:42 +00002219 install_element (RIPNG_NODE, &vtysh_exit_ripngd_cmd);
2220 install_element (RIPNG_NODE, &vtysh_quit_ripngd_cmd);
paul718e3742002-12-13 20:15:29 +00002221 install_element (OSPF_NODE, &vtysh_exit_ospfd_cmd);
2222 install_element (OSPF_NODE, &vtysh_quit_ospfd_cmd);
paul68980082003-03-25 05:07:42 +00002223 install_element (OSPF6_NODE, &vtysh_exit_ospf6d_cmd);
2224 install_element (OSPF6_NODE, &vtysh_quit_ospf6d_cmd);
paul718e3742002-12-13 20:15:29 +00002225 install_element (BGP_NODE, &vtysh_exit_bgpd_cmd);
2226 install_element (BGP_NODE, &vtysh_quit_bgpd_cmd);
2227 install_element (BGP_VPNV4_NODE, &vtysh_exit_bgpd_cmd);
2228 install_element (BGP_VPNV4_NODE, &vtysh_quit_bgpd_cmd);
2229 install_element (BGP_IPV4_NODE, &vtysh_exit_bgpd_cmd);
2230 install_element (BGP_IPV4_NODE, &vtysh_quit_bgpd_cmd);
2231 install_element (BGP_IPV4M_NODE, &vtysh_exit_bgpd_cmd);
2232 install_element (BGP_IPV4M_NODE, &vtysh_quit_bgpd_cmd);
2233 install_element (BGP_IPV6_NODE, &vtysh_exit_bgpd_cmd);
2234 install_element (BGP_IPV6_NODE, &vtysh_quit_bgpd_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002235 install_element (BGP_IPV6M_NODE, &vtysh_exit_bgpd_cmd);
2236 install_element (BGP_IPV6M_NODE, &vtysh_quit_bgpd_cmd);
hassoc25e4582003-12-23 10:39:08 +00002237 install_element (ISIS_NODE, &vtysh_exit_isisd_cmd);
2238 install_element (ISIS_NODE, &vtysh_quit_isisd_cmd);
paul718e3742002-12-13 20:15:29 +00002239 install_element (KEYCHAIN_NODE, &vtysh_exit_ripd_cmd);
2240 install_element (KEYCHAIN_NODE, &vtysh_quit_ripd_cmd);
2241 install_element (KEYCHAIN_KEY_NODE, &vtysh_exit_ripd_cmd);
2242 install_element (KEYCHAIN_KEY_NODE, &vtysh_quit_ripd_cmd);
2243 install_element (RMAP_NODE, &vtysh_exit_rmap_cmd);
2244 install_element (RMAP_NODE, &vtysh_quit_rmap_cmd);
hassoe7168df2004-10-03 20:11:32 +00002245 install_element (VTY_NODE, &vtysh_exit_line_vty_cmd);
2246 install_element (VTY_NODE, &vtysh_quit_line_vty_cmd);
paul718e3742002-12-13 20:15:29 +00002247
2248 /* "end" command. */
2249 install_element (CONFIG_NODE, &vtysh_end_all_cmd);
2250 install_element (ENABLE_NODE, &vtysh_end_all_cmd);
2251 install_element (RIP_NODE, &vtysh_end_all_cmd);
2252 install_element (RIPNG_NODE, &vtysh_end_all_cmd);
2253 install_element (OSPF_NODE, &vtysh_end_all_cmd);
2254 install_element (OSPF6_NODE, &vtysh_end_all_cmd);
2255 install_element (BGP_NODE, &vtysh_end_all_cmd);
2256 install_element (BGP_IPV4_NODE, &vtysh_end_all_cmd);
2257 install_element (BGP_IPV4M_NODE, &vtysh_end_all_cmd);
2258 install_element (BGP_VPNV4_NODE, &vtysh_end_all_cmd);
2259 install_element (BGP_IPV6_NODE, &vtysh_end_all_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002260 install_element (BGP_IPV6M_NODE, &vtysh_end_all_cmd);
hassoc25e4582003-12-23 10:39:08 +00002261 install_element (ISIS_NODE, &vtysh_end_all_cmd);
paul718e3742002-12-13 20:15:29 +00002262 install_element (KEYCHAIN_NODE, &vtysh_end_all_cmd);
2263 install_element (KEYCHAIN_KEY_NODE, &vtysh_end_all_cmd);
2264 install_element (RMAP_NODE, &vtysh_end_all_cmd);
hassoe7168df2004-10-03 20:11:32 +00002265 install_element (VTY_NODE, &vtysh_end_all_cmd);
paul718e3742002-12-13 20:15:29 +00002266
paul338a9912003-03-01 15:44:10 +00002267 install_element (INTERFACE_NODE, &interface_desc_cmd);
paul464dc8d2003-03-28 02:25:45 +00002268 install_element (INTERFACE_NODE, &no_interface_desc_cmd);
paul718e3742002-12-13 20:15:29 +00002269 install_element (INTERFACE_NODE, &vtysh_end_all_cmd);
2270 install_element (INTERFACE_NODE, &vtysh_exit_interface_cmd);
2271 install_element (INTERFACE_NODE, &vtysh_quit_interface_cmd);
2272 install_element (CONFIG_NODE, &router_rip_cmd);
2273#ifdef HAVE_IPV6
2274 install_element (CONFIG_NODE, &router_ripng_cmd);
2275#endif
2276 install_element (CONFIG_NODE, &router_ospf_cmd);
2277#ifdef HAVE_IPV6
2278 install_element (CONFIG_NODE, &router_ospf6_cmd);
2279#endif
hassoc25e4582003-12-23 10:39:08 +00002280 install_element (CONFIG_NODE, &router_isis_cmd);
paul718e3742002-12-13 20:15:29 +00002281 install_element (CONFIG_NODE, &router_bgp_cmd);
2282 install_element (BGP_NODE, &address_family_vpnv4_cmd);
2283 install_element (BGP_NODE, &address_family_vpnv4_unicast_cmd);
2284 install_element (BGP_NODE, &address_family_ipv4_unicast_cmd);
2285 install_element (BGP_NODE, &address_family_ipv4_multicast_cmd);
2286#ifdef HAVE_IPV6
2287 install_element (BGP_NODE, &address_family_ipv6_cmd);
2288 install_element (BGP_NODE, &address_family_ipv6_unicast_cmd);
2289#endif
2290 install_element (BGP_VPNV4_NODE, &exit_address_family_cmd);
2291 install_element (BGP_IPV4_NODE, &exit_address_family_cmd);
2292 install_element (BGP_IPV4M_NODE, &exit_address_family_cmd);
2293 install_element (BGP_IPV6_NODE, &exit_address_family_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002294 install_element (BGP_IPV6M_NODE, &exit_address_family_cmd);
paul718e3742002-12-13 20:15:29 +00002295 install_element (CONFIG_NODE, &key_chain_cmd);
2296 install_element (CONFIG_NODE, &route_map_cmd);
hassoe7168df2004-10-03 20:11:32 +00002297 install_element (CONFIG_NODE, &vtysh_line_vty_cmd);
paul718e3742002-12-13 20:15:29 +00002298 install_element (KEYCHAIN_NODE, &key_cmd);
2299 install_element (KEYCHAIN_NODE, &key_chain_cmd);
2300 install_element (KEYCHAIN_KEY_NODE, &key_chain_cmd);
2301 install_element (CONFIG_NODE, &vtysh_interface_cmd);
paul32d24632003-05-23 09:25:20 +00002302 install_element (CONFIG_NODE, &vtysh_no_interface_cmd);
paul718e3742002-12-13 20:15:29 +00002303 install_element (ENABLE_NODE, &vtysh_show_running_config_cmd);
2304 install_element (ENABLE_NODE, &vtysh_copy_runningconfig_startupconfig_cmd);
2305 install_element (ENABLE_NODE, &vtysh_write_file_cmd);
hasso4a6e2252003-05-25 11:51:29 +00002306 install_element (ENABLE_NODE, &vtysh_write_cmd);
paul718e3742002-12-13 20:15:29 +00002307
hasso95e735b2004-08-26 13:08:30 +00002308 /* "write terminal" command. */
paul718e3742002-12-13 20:15:29 +00002309 install_element (ENABLE_NODE, &vtysh_write_terminal_cmd);
hassoe7168df2004-10-03 20:11:32 +00002310
2311 install_element (CONFIG_NODE, &vtysh_integrated_config_cmd);
2312 install_element (CONFIG_NODE, &no_vtysh_integrated_config_cmd);
paul718e3742002-12-13 20:15:29 +00002313
hasso95e735b2004-08-26 13:08:30 +00002314 /* "write memory" command. */
paul718e3742002-12-13 20:15:29 +00002315 install_element (ENABLE_NODE, &vtysh_write_memory_cmd);
paul718e3742002-12-13 20:15:29 +00002316
hasso34553cc2004-08-27 13:56:39 +00002317 install_element (VIEW_NODE, &vtysh_terminal_length_cmd);
2318 install_element (ENABLE_NODE, &vtysh_terminal_length_cmd);
2319 install_element (VIEW_NODE, &vtysh_terminal_no_length_cmd);
2320 install_element (ENABLE_NODE, &vtysh_terminal_no_length_cmd);
hassof2799e62004-10-28 17:43:11 +00002321 install_element (VIEW_NODE, &vtysh_show_daemons_cmd);
2322 install_element (ENABLE_NODE, &vtysh_show_daemons_cmd);
hasso34553cc2004-08-27 13:56:39 +00002323
paul718e3742002-12-13 20:15:29 +00002324 install_element (VIEW_NODE, &vtysh_ping_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002325 install_element (VIEW_NODE, &vtysh_ping_ip_cmd);
paul718e3742002-12-13 20:15:29 +00002326 install_element (VIEW_NODE, &vtysh_traceroute_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002327 install_element (VIEW_NODE, &vtysh_traceroute_ip_cmd);
2328#ifdef HAVE_IPV6
2329 install_element (VIEW_NODE, &vtysh_ping6_cmd);
2330 install_element (VIEW_NODE, &vtysh_traceroute6_cmd);
2331#endif
paul718e3742002-12-13 20:15:29 +00002332 install_element (VIEW_NODE, &vtysh_telnet_cmd);
2333 install_element (VIEW_NODE, &vtysh_telnet_port_cmd);
paul5087df52003-01-25 06:56:09 +00002334 install_element (VIEW_NODE, &vtysh_ssh_cmd);
paul718e3742002-12-13 20:15:29 +00002335 install_element (ENABLE_NODE, &vtysh_ping_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002336 install_element (ENABLE_NODE, &vtysh_ping_ip_cmd);
paul718e3742002-12-13 20:15:29 +00002337 install_element (ENABLE_NODE, &vtysh_traceroute_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002338 install_element (ENABLE_NODE, &vtysh_traceroute_ip_cmd);
2339#ifdef HAVE_IPV6
2340 install_element (ENABLE_NODE, &vtysh_ping6_cmd);
2341 install_element (ENABLE_NODE, &vtysh_traceroute6_cmd);
2342#endif
paul718e3742002-12-13 20:15:29 +00002343 install_element (ENABLE_NODE, &vtysh_telnet_cmd);
2344 install_element (ENABLE_NODE, &vtysh_telnet_port_cmd);
hasso67e29ab2004-08-26 22:21:31 +00002345 install_element (ENABLE_NODE, &vtysh_ssh_cmd);
paul718e3742002-12-13 20:15:29 +00002346 install_element (ENABLE_NODE, &vtysh_start_shell_cmd);
2347 install_element (ENABLE_NODE, &vtysh_start_bash_cmd);
2348 install_element (ENABLE_NODE, &vtysh_start_zsh_cmd);
Paul Jakmadbf7d132006-05-23 22:10:01 +00002349
2350 /* Logging */
2351 install_element (ENABLE_NODE, &vtysh_show_logging_cmd);
2352 install_element (VIEW_NODE, &vtysh_show_logging_cmd);
paul718e3742002-12-13 20:15:29 +00002353 install_element (CONFIG_NODE, &vtysh_log_stdout_cmd);
ajs274a4a42004-12-07 15:39:31 +00002354 install_element (CONFIG_NODE, &vtysh_log_stdout_level_cmd);
paul718e3742002-12-13 20:15:29 +00002355 install_element (CONFIG_NODE, &no_vtysh_log_stdout_cmd);
2356 install_element (CONFIG_NODE, &vtysh_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00002357 install_element (CONFIG_NODE, &vtysh_log_file_level_cmd);
paul718e3742002-12-13 20:15:29 +00002358 install_element (CONFIG_NODE, &no_vtysh_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00002359 install_element (CONFIG_NODE, &no_vtysh_log_file_level_cmd);
2360 install_element (CONFIG_NODE, &vtysh_log_monitor_cmd);
2361 install_element (CONFIG_NODE, &vtysh_log_monitor_level_cmd);
2362 install_element (CONFIG_NODE, &no_vtysh_log_monitor_cmd);
paul718e3742002-12-13 20:15:29 +00002363 install_element (CONFIG_NODE, &vtysh_log_syslog_cmd);
ajs274a4a42004-12-07 15:39:31 +00002364 install_element (CONFIG_NODE, &vtysh_log_syslog_level_cmd);
paul718e3742002-12-13 20:15:29 +00002365 install_element (CONFIG_NODE, &no_vtysh_log_syslog_cmd);
2366 install_element (CONFIG_NODE, &vtysh_log_trap_cmd);
2367 install_element (CONFIG_NODE, &no_vtysh_log_trap_cmd);
ajs274a4a42004-12-07 15:39:31 +00002368 install_element (CONFIG_NODE, &vtysh_log_facility_cmd);
2369 install_element (CONFIG_NODE, &no_vtysh_log_facility_cmd);
paul718e3742002-12-13 20:15:29 +00002370 install_element (CONFIG_NODE, &vtysh_log_record_priority_cmd);
2371 install_element (CONFIG_NODE, &no_vtysh_log_record_priority_cmd);
hassoe7168df2004-10-03 20:11:32 +00002372
2373 install_element (CONFIG_NODE, &vtysh_service_password_encrypt_cmd);
2374 install_element (CONFIG_NODE, &no_vtysh_service_password_encrypt_cmd);
2375
2376 install_element (CONFIG_NODE, &vtysh_password_cmd);
2377 install_element (CONFIG_NODE, &vtysh_password_text_cmd);
2378 install_element (CONFIG_NODE, &vtysh_enable_password_cmd);
2379 install_element (CONFIG_NODE, &vtysh_enable_password_text_cmd);
2380 install_element (CONFIG_NODE, &no_vtysh_enable_password_cmd);
2381
paul718e3742002-12-13 20:15:29 +00002382}