blob: 110c361a987ab86eac61687ecea0f8aa8efa03d5 [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
Paul Jakma362b4032006-05-28 07:54:45 +00001314/* Memory */
1315DEFUN (vtysh_show_memory,
1316 vtysh_show_memory_cmd,
1317 "show memory",
1318 SHOW_STR
1319 "Memory statistics\n")
1320{
1321 unsigned int i;
1322 int ret = CMD_SUCCESS;
1323 char line[] = "show memory\n";
1324
1325 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1326 if ( vtysh_client[i].fd >= 0 )
1327 {
1328 fprintf (stdout, "Memory statistics for %s:\n",
1329 vtysh_client[i].name);
1330 ret = vtysh_client_execute (&vtysh_client[i], line, stdout);
1331 fprintf (stdout,"\n");
1332 }
1333
1334 return ret;
1335}
1336
hasso95e735b2004-08-26 13:08:30 +00001337/* Logging commands. */
Paul Jakmadbf7d132006-05-23 22:10:01 +00001338DEFUN (vtysh_show_logging,
1339 vtysh_show_logging_cmd,
1340 "show logging",
1341 SHOW_STR
1342 "Show current logging configuration\n")
1343{
1344 unsigned int i;
1345 int ret = CMD_SUCCESS;
1346 char line[] = "show logging\n";
1347
1348 for (i = 0; i < VTYSH_INDEX_MAX; i++)
Paul Jakma4150f332006-05-23 22:10:55 +00001349 if ( vtysh_client[i].fd >= 0 )
1350 {
1351 fprintf (stdout,"Logging configuration for %s:\n",
1352 vtysh_client[i].name);
1353 ret = vtysh_client_execute (&vtysh_client[i], line, stdout);
1354 fprintf (stdout,"\n");
1355 }
1356
Paul Jakmadbf7d132006-05-23 22:10:01 +00001357 return ret;
1358}
1359
hasso95e735b2004-08-26 13:08:30 +00001360DEFUNSH (VTYSH_ALL,
1361 vtysh_log_stdout,
1362 vtysh_log_stdout_cmd,
1363 "log stdout",
1364 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001365 "Set stdout logging level\n")
1366{
1367 return CMD_SUCCESS;
1368}
1369
1370DEFUNSH (VTYSH_ALL,
1371 vtysh_log_stdout_level,
1372 vtysh_log_stdout_level_cmd,
1373 "log stdout "LOG_LEVELS,
1374 "Logging control\n"
1375 "Set stdout logging level\n"
1376 LOG_LEVEL_DESC)
hasso95e735b2004-08-26 13:08:30 +00001377{
1378 return CMD_SUCCESS;
1379}
1380
1381DEFUNSH (VTYSH_ALL,
1382 no_vtysh_log_stdout,
1383 no_vtysh_log_stdout_cmd,
ajs274a4a42004-12-07 15:39:31 +00001384 "no log stdout [LEVEL]",
hasso95e735b2004-08-26 13:08:30 +00001385 NO_STR
1386 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001387 "Cancel logging to stdout\n"
1388 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001389{
1390 return CMD_SUCCESS;
1391}
1392
1393DEFUNSH (VTYSH_ALL,
1394 vtysh_log_file,
1395 vtysh_log_file_cmd,
1396 "log file FILENAME",
1397 "Logging control\n"
1398 "Logging to file\n"
1399 "Logging filename\n")
1400{
1401 return CMD_SUCCESS;
1402}
1403
1404DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001405 vtysh_log_file_level,
1406 vtysh_log_file_level_cmd,
1407 "log file FILENAME "LOG_LEVELS,
1408 "Logging control\n"
1409 "Logging to file\n"
1410 "Logging filename\n"
1411 LOG_LEVEL_DESC)
1412{
1413 return CMD_SUCCESS;
1414}
1415
1416DEFUNSH (VTYSH_ALL,
hasso95e735b2004-08-26 13:08:30 +00001417 no_vtysh_log_file,
1418 no_vtysh_log_file_cmd,
1419 "no log file [FILENAME]",
1420 NO_STR
1421 "Logging control\n"
1422 "Cancel logging to file\n"
1423 "Logging file name\n")
1424{
1425 return CMD_SUCCESS;
1426}
1427
ajs274a4a42004-12-07 15:39:31 +00001428ALIAS_SH (VTYSH_ALL,
1429 no_vtysh_log_file,
1430 no_vtysh_log_file_level_cmd,
1431 "no log file FILENAME LEVEL",
1432 NO_STR
1433 "Logging control\n"
1434 "Cancel logging to file\n"
1435 "Logging file name\n"
1436 "Logging level\n")
1437
1438DEFUNSH (VTYSH_ALL,
1439 vtysh_log_monitor,
1440 vtysh_log_monitor_cmd,
1441 "log monitor",
1442 "Logging control\n"
1443 "Set terminal line (monitor) logging level\n")
1444{
1445 return CMD_SUCCESS;
1446}
1447
1448DEFUNSH (VTYSH_ALL,
1449 vtysh_log_monitor_level,
1450 vtysh_log_monitor_level_cmd,
1451 "log monitor "LOG_LEVELS,
1452 "Logging control\n"
1453 "Set terminal line (monitor) logging level\n"
1454 LOG_LEVEL_DESC)
1455{
1456 return CMD_SUCCESS;
1457}
1458
1459DEFUNSH (VTYSH_ALL,
1460 no_vtysh_log_monitor,
1461 no_vtysh_log_monitor_cmd,
1462 "no log monitor [LEVEL]",
1463 NO_STR
1464 "Logging control\n"
1465 "Disable terminal line (monitor) logging\n"
1466 "Logging level\n")
1467{
1468 return CMD_SUCCESS;
1469}
1470
hasso95e735b2004-08-26 13:08:30 +00001471DEFUNSH (VTYSH_ALL,
1472 vtysh_log_syslog,
1473 vtysh_log_syslog_cmd,
1474 "log syslog",
1475 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001476 "Set syslog logging level\n")
1477{
1478 return CMD_SUCCESS;
1479}
1480
1481DEFUNSH (VTYSH_ALL,
1482 vtysh_log_syslog_level,
1483 vtysh_log_syslog_level_cmd,
1484 "log syslog "LOG_LEVELS,
1485 "Logging control\n"
1486 "Set syslog logging level\n"
1487 LOG_LEVEL_DESC)
hasso95e735b2004-08-26 13:08:30 +00001488{
1489 return CMD_SUCCESS;
1490}
1491
1492DEFUNSH (VTYSH_ALL,
1493 no_vtysh_log_syslog,
1494 no_vtysh_log_syslog_cmd,
ajs274a4a42004-12-07 15:39:31 +00001495 "no log syslog [LEVEL]",
hasso95e735b2004-08-26 13:08:30 +00001496 NO_STR
1497 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001498 "Cancel logging to syslog\n"
1499 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001500{
1501 return CMD_SUCCESS;
1502}
1503
1504DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001505 vtysh_log_facility,
1506 vtysh_log_facility_cmd,
1507 "log facility "LOG_FACILITIES,
hasso95e735b2004-08-26 13:08:30 +00001508 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001509 "Facility parameter for syslog messages\n"
1510 LOG_FACILITY_DESC)
1511
hasso95e735b2004-08-26 13:08:30 +00001512{
1513 return CMD_SUCCESS;
1514}
1515
1516DEFUNSH (VTYSH_ALL,
ajs274a4a42004-12-07 15:39:31 +00001517 no_vtysh_log_facility,
1518 no_vtysh_log_facility_cmd,
1519 "no log facility [FACILITY]",
hasso95e735b2004-08-26 13:08:30 +00001520 NO_STR
1521 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00001522 "Reset syslog facility to default (daemon)\n"
1523 "Syslog facility\n")
1524
1525{
1526 return CMD_SUCCESS;
1527}
1528
1529DEFUNSH_DEPRECATED (VTYSH_ALL,
1530 vtysh_log_trap,
1531 vtysh_log_trap_cmd,
1532 "log trap "LOG_LEVELS,
1533 "Logging control\n"
1534 "(Deprecated) Set logging level and default for all destinations\n"
1535 LOG_LEVEL_DESC)
1536
1537{
1538 return CMD_SUCCESS;
1539}
1540
1541DEFUNSH_DEPRECATED (VTYSH_ALL,
1542 no_vtysh_log_trap,
1543 no_vtysh_log_trap_cmd,
1544 "no log trap [LEVEL]",
1545 NO_STR
1546 "Logging control\n"
1547 "Permit all logging information\n"
1548 "Logging level\n")
hasso95e735b2004-08-26 13:08:30 +00001549{
1550 return CMD_SUCCESS;
1551}
1552
1553DEFUNSH (VTYSH_ALL,
1554 vtysh_log_record_priority,
1555 vtysh_log_record_priority_cmd,
1556 "log record-priority",
1557 "Logging control\n"
1558 "Log the priority of the message within the message\n")
1559{
1560 return CMD_SUCCESS;
1561}
1562
1563DEFUNSH (VTYSH_ALL,
1564 no_vtysh_log_record_priority,
1565 no_vtysh_log_record_priority_cmd,
1566 "no log record-priority",
1567 NO_STR
1568 "Logging control\n"
1569 "Do not log the priority of the message within the message\n")
1570{
1571 return CMD_SUCCESS;
1572}
1573
hassoe7168df2004-10-03 20:11:32 +00001574DEFUNSH (VTYSH_ALL,
1575 vtysh_service_password_encrypt,
1576 vtysh_service_password_encrypt_cmd,
1577 "service password-encryption",
1578 "Set up miscellaneous service\n"
1579 "Enable encrypted passwords\n")
1580{
1581 return CMD_SUCCESS;
1582}
1583
1584DEFUNSH (VTYSH_ALL,
1585 no_vtysh_service_password_encrypt,
1586 no_vtysh_service_password_encrypt_cmd,
1587 "no service password-encryption",
1588 NO_STR
1589 "Set up miscellaneous service\n"
1590 "Enable encrypted passwords\n")
1591{
1592 return CMD_SUCCESS;
1593}
1594
1595DEFUNSH (VTYSH_ALL,
1596 vtysh_config_password,
1597 vtysh_password_cmd,
1598 "password (8|) WORD",
1599 "Assign the terminal connection password\n"
1600 "Specifies a HIDDEN password will follow\n"
1601 "dummy string \n"
1602 "The HIDDEN line password string\n")
1603{
1604 return CMD_SUCCESS;
1605}
1606
1607DEFUNSH (VTYSH_ALL,
1608 vtysh_password_text,
1609 vtysh_password_text_cmd,
1610 "password LINE",
1611 "Assign the terminal connection password\n"
1612 "The UNENCRYPTED (cleartext) line password\n")
1613{
1614 return CMD_SUCCESS;
1615}
1616
1617DEFUNSH (VTYSH_ALL,
1618 vtysh_config_enable_password,
1619 vtysh_enable_password_cmd,
1620 "enable password (8|) WORD",
1621 "Modify enable password parameters\n"
1622 "Assign the privileged level password\n"
1623 "Specifies a HIDDEN password will follow\n"
1624 "dummy string \n"
1625 "The HIDDEN 'enable' password string\n")
1626{
1627 return CMD_SUCCESS;
1628}
1629
1630DEFUNSH (VTYSH_ALL,
1631 vtysh_enable_password_text,
1632 vtysh_enable_password_text_cmd,
1633 "enable password LINE",
1634 "Modify enable password parameters\n"
1635 "Assign the privileged level password\n"
1636 "The UNENCRYPTED (cleartext) 'enable' password\n")
1637{
1638 return CMD_SUCCESS;
1639}
1640
1641DEFUNSH (VTYSH_ALL,
1642 no_vtysh_config_enable_password,
1643 no_vtysh_enable_password_cmd,
1644 "no enable password",
1645 NO_STR
1646 "Modify enable password parameters\n"
1647 "Assign the privileged level password\n")
1648{
1649 return CMD_SUCCESS;
1650}
1651
paul718e3742002-12-13 20:15:29 +00001652DEFUN (vtysh_write_terminal,
1653 vtysh_write_terminal_cmd,
1654 "write terminal",
1655 "Write running configuration to memory, network, or terminal\n"
1656 "Write to terminal\n")
1657{
ajsb1aa1472005-01-28 21:11:46 +00001658 u_int i;
paul718e3742002-12-13 20:15:29 +00001659 int ret;
1660 char line[] = "write terminal\n";
1661 FILE *fp = NULL;
1662
1663 if (vtysh_pager_name)
1664 {
paul4fc01e62002-12-13 20:49:00 +00001665 fp = popen (vtysh_pager_name, "w");
paul718e3742002-12-13 20:15:29 +00001666 if (fp == NULL)
1667 {
1668 perror ("popen");
1669 exit (1);
1670 }
1671 }
1672 else
1673 fp = stdout;
1674
1675 vty_out (vty, "Building configuration...%s", VTY_NEWLINE);
1676 vty_out (vty, "%sCurrent configuration:%s", VTY_NEWLINE,
1677 VTY_NEWLINE);
hassoe7168df2004-10-03 20:11:32 +00001678 vty_out (vty, "!%s", VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00001679
ajsb1aa1472005-01-28 21:11:46 +00001680 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1681 ret = vtysh_client_config (&vtysh_client[i], line);
paul718e3742002-12-13 20:15:29 +00001682
hassoe7168df2004-10-03 20:11:32 +00001683 /* Integrate vtysh specific configuration. */
1684 vtysh_config_write ();
1685
paul718e3742002-12-13 20:15:29 +00001686 vtysh_config_dump (fp);
1687
1688 if (vtysh_pager_name && fp)
1689 {
1690 fflush (fp);
1691 if (pclose (fp) == -1)
1692 {
1693 perror ("pclose");
1694 exit (1);
1695 }
1696 fp = NULL;
1697 }
1698
1699 return CMD_SUCCESS;
1700}
1701
hassoe7168df2004-10-03 20:11:32 +00001702DEFUN (vtysh_integrated_config,
1703 vtysh_integrated_config_cmd,
1704 "service integrated-vtysh-config",
1705 "Set up miscellaneous service\n"
1706 "Write configuration into integrated file\n")
paul4fc01e62002-12-13 20:49:00 +00001707{
hassoe7168df2004-10-03 20:11:32 +00001708 vtysh_writeconfig_integrated = 1;
1709 return CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001710}
1711
hassoe7168df2004-10-03 20:11:32 +00001712DEFUN (no_vtysh_integrated_config,
1713 no_vtysh_integrated_config_cmd,
1714 "no service integrated-vtysh-config",
1715 NO_STR
1716 "Set up miscellaneous service\n"
1717 "Write configuration into integrated file\n")
paul4fc01e62002-12-13 20:49:00 +00001718{
hassoe7168df2004-10-03 20:11:32 +00001719 vtysh_writeconfig_integrated = 0;
1720 return CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001721}
1722
ajs274a4a42004-12-07 15:39:31 +00001723static int
1724write_config_integrated(void)
paul718e3742002-12-13 20:15:29 +00001725{
ajsb1aa1472005-01-28 21:11:46 +00001726 u_int i;
paul718e3742002-12-13 20:15:29 +00001727 int ret;
paul718e3742002-12-13 20:15:29 +00001728 char line[] = "write terminal\n";
1729 FILE *fp;
1730 char *integrate_sav = NULL;
1731
hasso95e735b2004-08-26 13:08:30 +00001732 integrate_sav = malloc (strlen (integrate_default) +
1733 strlen (CONF_BACKUP_EXT) + 1);
paul718e3742002-12-13 20:15:29 +00001734 strcpy (integrate_sav, integrate_default);
1735 strcat (integrate_sav, CONF_BACKUP_EXT);
1736
paul4fc01e62002-12-13 20:49:00 +00001737 fprintf (stdout,"Building Configuration...\n");
paul718e3742002-12-13 20:15:29 +00001738
hasso95e735b2004-08-26 13:08:30 +00001739 /* Move current configuration file to backup config file. */
paul718e3742002-12-13 20:15:29 +00001740 unlink (integrate_sav);
1741 rename (integrate_default, integrate_sav);
hasso95e735b2004-08-26 13:08:30 +00001742 free (integrate_sav);
paul4fc01e62002-12-13 20:49:00 +00001743
paul718e3742002-12-13 20:15:29 +00001744 fp = fopen (integrate_default, "w");
1745 if (fp == NULL)
1746 {
hasso95e735b2004-08-26 13:08:30 +00001747 fprintf (stdout,"%% Can't open configuration file %s.\n",
1748 integrate_default);
paul718e3742002-12-13 20:15:29 +00001749 return CMD_SUCCESS;
1750 }
paul718e3742002-12-13 20:15:29 +00001751
ajsb1aa1472005-01-28 21:11:46 +00001752 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1753 ret = vtysh_client_config (&vtysh_client[i], line);
paul718e3742002-12-13 20:15:29 +00001754
1755 vtysh_config_dump (fp);
1756
1757 fclose (fp);
1758
gdtaa593d52003-12-22 20:15:53 +00001759 if (chmod (integrate_default, CONFIGFILE_MASK) != 0)
1760 {
1761 fprintf (stdout,"%% Can't chmod configuration file %s: %s (%d)\n",
ajs6099b3b2004-11-20 02:06:59 +00001762 integrate_default, safe_strerror(errno), errno);
gdtaa593d52003-12-22 20:15:53 +00001763 return CMD_WARNING;
1764 }
1765
paul4fc01e62002-12-13 20:49:00 +00001766 fprintf(stdout,"Integrated configuration saved to %s\n",integrate_default);
1767
1768 fprintf (stdout,"[OK]\n");
1769
paul718e3742002-12-13 20:15:29 +00001770 return CMD_SUCCESS;
1771}
1772
paul4fc01e62002-12-13 20:49:00 +00001773DEFUN (vtysh_write_memory,
1774 vtysh_write_memory_cmd,
1775 "write memory",
1776 "Write running configuration to memory, network, or terminal\n"
1777 "Write configuration to the file (same as write file)\n")
1778{
pauldfc0d9b2003-04-18 23:55:29 +00001779 int ret = CMD_SUCCESS;
paul4fc01e62002-12-13 20:49:00 +00001780 char line[] = "write memory\n";
ajsb1aa1472005-01-28 21:11:46 +00001781 u_int i;
paul4fc01e62002-12-13 20:49:00 +00001782
hassoe7168df2004-10-03 20:11:32 +00001783 /* If integrated Quagga.conf explicitely set. */
1784 if (vtysh_writeconfig_integrated)
1785 return write_config_integrated();
paul4fc01e62002-12-13 20:49:00 +00001786
1787 fprintf (stdout,"Building Configuration...\n");
1788
ajsb1aa1472005-01-28 21:11:46 +00001789 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1790 ret = vtysh_client_execute (&vtysh_client[i], line, stdout);
hassoe7168df2004-10-03 20:11:32 +00001791
paul4fc01e62002-12-13 20:49:00 +00001792 fprintf (stdout,"[OK]\n");
1793
pauldfc0d9b2003-04-18 23:55:29 +00001794 return ret;
paul4fc01e62002-12-13 20:49:00 +00001795}
1796
paul718e3742002-12-13 20:15:29 +00001797ALIAS (vtysh_write_memory,
1798 vtysh_copy_runningconfig_startupconfig_cmd,
1799 "copy running-config startup-config",
1800 "Copy from one file to another\n"
1801 "Copy from current system configuration\n"
1802 "Copy to startup configuration\n")
1803
1804ALIAS (vtysh_write_memory,
1805 vtysh_write_file_cmd,
1806 "write file",
1807 "Write running configuration to memory, network, or terminal\n"
1808 "Write configuration to the file (same as write memory)\n")
1809
hasso4a6e2252003-05-25 11:51:29 +00001810ALIAS (vtysh_write_memory,
1811 vtysh_write_cmd,
1812 "write",
1813 "Write running configuration to memory, network, or terminal\n")
1814
paul718e3742002-12-13 20:15:29 +00001815ALIAS (vtysh_write_terminal,
1816 vtysh_show_running_config_cmd,
1817 "show running-config",
1818 SHOW_STR
1819 "Current operating configuration\n")
hassob094d262004-08-25 12:22:00 +00001820
hasso34553cc2004-08-27 13:56:39 +00001821DEFUN (vtysh_terminal_length,
1822 vtysh_terminal_length_cmd,
1823 "terminal length <0-512>",
1824 "Set terminal line parameters\n"
1825 "Set number of lines on a screen\n"
1826 "Number of lines on screen (0 for no pausing)\n")
1827{
1828 int lines;
1829 char *endptr = NULL;
1830 char default_pager[10];
1831
1832 lines = strtol (argv[0], &endptr, 10);
1833 if (lines < 0 || lines > 512 || *endptr != '\0')
1834 {
1835 vty_out (vty, "length is malformed%s", VTY_NEWLINE);
1836 return CMD_WARNING;
1837 }
1838
1839 if (vtysh_pager_name)
1840 {
1841 free (vtysh_pager_name);
1842 vtysh_pager_name = NULL;
1843 }
1844
1845 if (lines != 0)
1846 {
1847 snprintf(default_pager, 10, "more -%i", lines);
1848 vtysh_pager_name = strdup (default_pager);
1849 }
1850
1851 return CMD_SUCCESS;
1852}
1853
1854DEFUN (vtysh_terminal_no_length,
1855 vtysh_terminal_no_length_cmd,
1856 "terminal no length",
1857 "Set terminal line parameters\n"
1858 NO_STR
1859 "Set number of lines on a screen\n")
1860{
1861 if (vtysh_pager_name)
1862 {
1863 free (vtysh_pager_name);
1864 vtysh_pager_name = NULL;
1865 }
1866
1867 vtysh_pager_init();
1868 return CMD_SUCCESS;
1869}
1870
hassof2799e62004-10-28 17:43:11 +00001871DEFUN (vtysh_show_daemons,
1872 vtysh_show_daemons_cmd,
1873 "show daemons",
hassoe7168df2004-10-03 20:11:32 +00001874 SHOW_STR
1875 "Show list of running daemons\n")
1876{
ajsb1aa1472005-01-28 21:11:46 +00001877 u_int i;
1878
1879 for (i = 0; i < VTYSH_INDEX_MAX; i++)
1880 if ( vtysh_client[i].fd >= 0 )
1881 vty_out(vty, " %s", vtysh_client[i].name);
hassoe7168df2004-10-03 20:11:32 +00001882 vty_out(vty, "%s", VTY_NEWLINE);
1883
1884 return CMD_SUCCESS;
1885}
1886
paul718e3742002-12-13 20:15:29 +00001887/* Execute command in child process. */
ajs274a4a42004-12-07 15:39:31 +00001888static int
hasso5862ff52004-10-11 13:20:40 +00001889execute_command (const char *command, int argc, const char *arg1,
1890 const char *arg2)
paul718e3742002-12-13 20:15:29 +00001891{
1892 int ret;
1893 pid_t pid;
1894 int status;
1895
1896 /* Call fork(). */
1897 pid = fork ();
1898
1899 if (pid < 0)
1900 {
1901 /* Failure of fork(). */
ajs6099b3b2004-11-20 02:06:59 +00001902 fprintf (stderr, "Can't fork: %s\n", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001903 exit (1);
1904 }
1905 else if (pid == 0)
1906 {
1907 /* This is child process. */
1908 switch (argc)
1909 {
1910 case 0:
hassofa2b17e2004-03-04 17:45:00 +00001911 ret = execlp (command, command, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001912 break;
1913 case 1:
hassofa2b17e2004-03-04 17:45:00 +00001914 ret = execlp (command, command, arg1, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001915 break;
1916 case 2:
hassofa2b17e2004-03-04 17:45:00 +00001917 ret = execlp (command, command, arg1, arg2, (const char *)NULL);
paul718e3742002-12-13 20:15:29 +00001918 break;
1919 }
1920
1921 /* When execlp suceed, this part is not executed. */
ajs6099b3b2004-11-20 02:06:59 +00001922 fprintf (stderr, "Can't execute %s: %s\n", command, safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +00001923 exit (1);
1924 }
1925 else
1926 {
1927 /* This is parent. */
1928 execute_flag = 1;
1929 ret = wait4 (pid, &status, 0, NULL);
1930 execute_flag = 0;
1931 }
1932 return 0;
1933}
1934
1935DEFUN (vtysh_ping,
1936 vtysh_ping_cmd,
1937 "ping WORD",
hasso4eeccf12003-06-25 10:49:55 +00001938 "Send echo messages\n"
paul718e3742002-12-13 20:15:29 +00001939 "Ping destination address or hostname\n")
1940{
1941 execute_command ("ping", 1, argv[0], NULL);
1942 return CMD_SUCCESS;
1943}
1944
hasso4eeccf12003-06-25 10:49:55 +00001945ALIAS (vtysh_ping,
1946 vtysh_ping_ip_cmd,
1947 "ping ip WORD",
1948 "Send echo messages\n"
1949 "IP echo\n"
1950 "Ping destination address or hostname\n")
1951
paul718e3742002-12-13 20:15:29 +00001952DEFUN (vtysh_traceroute,
1953 vtysh_traceroute_cmd,
1954 "traceroute WORD",
1955 "Trace route to destination\n"
1956 "Trace route to destination address or hostname\n")
1957{
1958 execute_command ("traceroute", 1, argv[0], NULL);
1959 return CMD_SUCCESS;
1960}
1961
hasso4eeccf12003-06-25 10:49:55 +00001962ALIAS (vtysh_traceroute,
1963 vtysh_traceroute_ip_cmd,
1964 "traceroute ip WORD",
1965 "Trace route to destination\n"
1966 "IP trace\n"
1967 "Trace route to destination address or hostname\n")
1968
1969#ifdef HAVE_IPV6
1970DEFUN (vtysh_ping6,
1971 vtysh_ping6_cmd,
1972 "ping ipv6 WORD",
1973 "Send echo messages\n"
1974 "IPv6 echo\n"
1975 "Ping destination address or hostname\n")
1976{
1977 execute_command ("ping6", 1, argv[0], NULL);
1978 return CMD_SUCCESS;
1979}
1980
1981DEFUN (vtysh_traceroute6,
1982 vtysh_traceroute6_cmd,
1983 "traceroute ipv6 WORD",
1984 "Trace route to destination\n"
1985 "IPv6 trace\n"
1986 "Trace route to destination address or hostname\n")
1987{
1988 execute_command ("traceroute6", 1, argv[0], NULL);
1989 return CMD_SUCCESS;
1990}
1991#endif
1992
paul718e3742002-12-13 20:15:29 +00001993DEFUN (vtysh_telnet,
1994 vtysh_telnet_cmd,
1995 "telnet WORD",
1996 "Open a telnet connection\n"
1997 "IP address or hostname of a remote system\n")
1998{
1999 execute_command ("telnet", 1, argv[0], NULL);
2000 return CMD_SUCCESS;
2001}
2002
2003DEFUN (vtysh_telnet_port,
2004 vtysh_telnet_port_cmd,
2005 "telnet WORD PORT",
2006 "Open a telnet connection\n"
2007 "IP address or hostname of a remote system\n"
2008 "TCP Port number\n")
2009{
2010 execute_command ("telnet", 2, argv[0], argv[1]);
2011 return CMD_SUCCESS;
2012}
2013
paul5087df52003-01-25 06:56:09 +00002014DEFUN (vtysh_ssh,
2015 vtysh_ssh_cmd,
2016 "ssh WORD",
2017 "Open an ssh connection\n"
2018 "[user@]host\n")
2019{
2020 execute_command ("ssh", 1, argv[0], NULL);
2021 return CMD_SUCCESS;
2022}
2023
paul718e3742002-12-13 20:15:29 +00002024DEFUN (vtysh_start_shell,
2025 vtysh_start_shell_cmd,
2026 "start-shell",
2027 "Start UNIX shell\n")
2028{
2029 execute_command ("sh", 0, NULL, NULL);
2030 return CMD_SUCCESS;
2031}
2032
2033DEFUN (vtysh_start_bash,
2034 vtysh_start_bash_cmd,
2035 "start-shell bash",
2036 "Start UNIX shell\n"
2037 "Start bash\n")
2038{
2039 execute_command ("bash", 0, NULL, NULL);
2040 return CMD_SUCCESS;
2041}
2042
2043DEFUN (vtysh_start_zsh,
2044 vtysh_start_zsh_cmd,
2045 "start-shell zsh",
2046 "Start UNIX shell\n"
2047 "Start Z shell\n")
2048{
2049 execute_command ("zsh", 0, NULL, NULL);
2050 return CMD_SUCCESS;
2051}
hassob094d262004-08-25 12:22:00 +00002052
ajs274a4a42004-12-07 15:39:31 +00002053static void
paul718e3742002-12-13 20:15:29 +00002054vtysh_install_default (enum node_type node)
2055{
2056 install_element (node, &config_list_cmd);
2057}
2058
2059/* Making connection to protocol daemon. */
ajs274a4a42004-12-07 15:39:31 +00002060static int
ajsb1aa1472005-01-28 21:11:46 +00002061vtysh_connect (struct vtysh_client *vclient)
paul718e3742002-12-13 20:15:29 +00002062{
2063 int ret;
2064 int sock, len;
2065 struct sockaddr_un addr;
2066 struct stat s_stat;
paul718e3742002-12-13 20:15:29 +00002067
paul718e3742002-12-13 20:15:29 +00002068 /* Stat socket to see if we have permission to access it. */
ajsb1aa1472005-01-28 21:11:46 +00002069 ret = stat (vclient->path, &s_stat);
paul718e3742002-12-13 20:15:29 +00002070 if (ret < 0 && errno != ENOENT)
2071 {
2072 fprintf (stderr, "vtysh_connect(%s): stat = %s\n",
ajsb1aa1472005-01-28 21:11:46 +00002073 vclient->path, safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002074 exit(1);
2075 }
2076
2077 if (ret >= 0)
2078 {
2079 if (! S_ISSOCK(s_stat.st_mode))
2080 {
2081 fprintf (stderr, "vtysh_connect(%s): Not a socket\n",
ajsb1aa1472005-01-28 21:11:46 +00002082 vclient->path);
paul718e3742002-12-13 20:15:29 +00002083 exit (1);
2084 }
2085
paul718e3742002-12-13 20:15:29 +00002086 }
2087
2088 sock = socket (AF_UNIX, SOCK_STREAM, 0);
2089 if (sock < 0)
2090 {
2091#ifdef DEBUG
ajsb1aa1472005-01-28 21:11:46 +00002092 fprintf(stderr, "vtysh_connect(%s): socket = %s\n", vclient->path,
ajs6099b3b2004-11-20 02:06:59 +00002093 safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002094#endif /* DEBUG */
2095 return -1;
2096 }
2097
2098 memset (&addr, 0, sizeof (struct sockaddr_un));
2099 addr.sun_family = AF_UNIX;
ajsb1aa1472005-01-28 21:11:46 +00002100 strncpy (addr.sun_path, vclient->path, strlen (vclient->path));
paul718e3742002-12-13 20:15:29 +00002101#ifdef HAVE_SUN_LEN
2102 len = addr.sun_len = SUN_LEN(&addr);
2103#else
2104 len = sizeof (addr.sun_family) + strlen (addr.sun_path);
2105#endif /* HAVE_SUN_LEN */
2106
2107 ret = connect (sock, (struct sockaddr *) &addr, len);
2108 if (ret < 0)
2109 {
2110#ifdef DEBUG
ajsb1aa1472005-01-28 21:11:46 +00002111 fprintf(stderr, "vtysh_connect(%s): connect = %s\n", vclient->path,
ajs6099b3b2004-11-20 02:06:59 +00002112 safe_strerror(errno));
paul718e3742002-12-13 20:15:29 +00002113#endif /* DEBUG */
2114 close (sock);
2115 return -1;
2116 }
2117 vclient->fd = sock;
2118
2119 return 0;
2120}
2121
2122void
ajsb1aa1472005-01-28 21:11:46 +00002123vtysh_connect_all(void)
paul718e3742002-12-13 20:15:29 +00002124{
ajsb1aa1472005-01-28 21:11:46 +00002125 u_int i;
2126
2127 for (i = 0; i < VTYSH_INDEX_MAX; i++)
2128 {
2129 vtysh_connect(&vtysh_client[i]);
2130 /* We need direct access to ripd in vtysh_exit_ripd_only. */
2131 if (vtysh_client[i].flag == VTYSH_RIPD)
2132 ripd_client = &vtysh_client[i];
2133 }
paul718e3742002-12-13 20:15:29 +00002134}
2135
hasso95e735b2004-08-26 13:08:30 +00002136/* To disable readline's filename completion. */
ajs274a4a42004-12-07 15:39:31 +00002137static char *
pauldfc0d9b2003-04-18 23:55:29 +00002138vtysh_completion_entry_function (const char *ignore, int invoking_key)
paul718e3742002-12-13 20:15:29 +00002139{
pauldfc0d9b2003-04-18 23:55:29 +00002140 return NULL;
paul718e3742002-12-13 20:15:29 +00002141}
2142
2143void
ajsb1aa1472005-01-28 21:11:46 +00002144vtysh_readline_init (void)
paul718e3742002-12-13 20:15:29 +00002145{
2146 /* readline related settings. */
hasso53a6f932005-09-15 06:50:53 +00002147 rl_bind_key ('?', (Function *) vtysh_rl_describe);
paul68980082003-03-25 05:07:42 +00002148 rl_completion_entry_function = vtysh_completion_entry_function;
paul718e3742002-12-13 20:15:29 +00002149 rl_attempted_completion_function = (CPPFunction *)new_completion;
2150 /* do not append space after completion. It will be appended
hasso95e735b2004-08-26 13:08:30 +00002151 * in new_completion() function explicitly. */
paul718e3742002-12-13 20:15:29 +00002152 rl_completion_append_character = '\0';
2153}
2154
2155char *
ajsb1aa1472005-01-28 21:11:46 +00002156vtysh_prompt (void)
paul718e3742002-12-13 20:15:29 +00002157{
2158 struct utsname names;
2159 static char buf[100];
2160 const char*hostname;
2161 extern struct host host;
2162
2163 hostname = host.name;
2164
2165 if (!hostname)
2166 {
2167 uname (&names);
2168 hostname = names.nodename;
2169 }
2170
2171 snprintf (buf, sizeof buf, cmd_prompt (vty->node), hostname);
2172
2173 return buf;
2174}
2175
2176void
ajsb1aa1472005-01-28 21:11:46 +00002177vtysh_init_vty (void)
paul718e3742002-12-13 20:15:29 +00002178{
2179 /* Make vty structure. */
2180 vty = vty_new ();
2181 vty->type = VTY_SHELL;
2182 vty->node = VIEW_NODE;
2183
2184 /* Initialize commands. */
2185 cmd_init (0);
2186
2187 /* Install nodes. */
2188 install_node (&bgp_node, NULL);
2189 install_node (&rip_node, NULL);
2190 install_node (&interface_node, NULL);
2191 install_node (&rmap_node, NULL);
2192 install_node (&zebra_node, NULL);
2193 install_node (&bgp_vpnv4_node, NULL);
2194 install_node (&bgp_ipv4_node, NULL);
2195 install_node (&bgp_ipv4m_node, NULL);
2196/* #ifdef HAVE_IPV6 */
2197 install_node (&bgp_ipv6_node, NULL);
paul57b5b7e2005-08-22 22:44:29 +00002198 install_node (&bgp_ipv6m_node, NULL);
paul718e3742002-12-13 20:15:29 +00002199/* #endif */
2200 install_node (&ospf_node, NULL);
2201/* #ifdef HAVE_IPV6 */
2202 install_node (&ripng_node, NULL);
2203 install_node (&ospf6_node, NULL);
2204/* #endif */
2205 install_node (&keychain_node, NULL);
2206 install_node (&keychain_key_node, NULL);
hassoc25e4582003-12-23 10:39:08 +00002207 install_node (&isis_node, NULL);
hassoe7168df2004-10-03 20:11:32 +00002208 install_node (&vty_node, NULL);
paul718e3742002-12-13 20:15:29 +00002209
2210 vtysh_install_default (VIEW_NODE);
2211 vtysh_install_default (ENABLE_NODE);
2212 vtysh_install_default (CONFIG_NODE);
2213 vtysh_install_default (BGP_NODE);
2214 vtysh_install_default (RIP_NODE);
2215 vtysh_install_default (INTERFACE_NODE);
2216 vtysh_install_default (RMAP_NODE);
2217 vtysh_install_default (ZEBRA_NODE);
2218 vtysh_install_default (BGP_VPNV4_NODE);
2219 vtysh_install_default (BGP_IPV4_NODE);
2220 vtysh_install_default (BGP_IPV4M_NODE);
2221 vtysh_install_default (BGP_IPV6_NODE);
paul57b5b7e2005-08-22 22:44:29 +00002222 vtysh_install_default (BGP_IPV6M_NODE);
paul718e3742002-12-13 20:15:29 +00002223 vtysh_install_default (OSPF_NODE);
2224 vtysh_install_default (RIPNG_NODE);
2225 vtysh_install_default (OSPF6_NODE);
hassoc25e4582003-12-23 10:39:08 +00002226 vtysh_install_default (ISIS_NODE);
paul718e3742002-12-13 20:15:29 +00002227 vtysh_install_default (KEYCHAIN_NODE);
2228 vtysh_install_default (KEYCHAIN_KEY_NODE);
hassoe7168df2004-10-03 20:11:32 +00002229 vtysh_install_default (VTY_NODE);
paul718e3742002-12-13 20:15:29 +00002230
2231 install_element (VIEW_NODE, &vtysh_enable_cmd);
2232 install_element (ENABLE_NODE, &vtysh_config_terminal_cmd);
2233 install_element (ENABLE_NODE, &vtysh_disable_cmd);
2234
2235 /* "exit" command. */
2236 install_element (VIEW_NODE, &vtysh_exit_all_cmd);
2237 install_element (VIEW_NODE, &vtysh_quit_all_cmd);
2238 install_element (CONFIG_NODE, &vtysh_exit_all_cmd);
2239 /* install_element (CONFIG_NODE, &vtysh_quit_all_cmd); */
2240 install_element (ENABLE_NODE, &vtysh_exit_all_cmd);
2241 install_element (ENABLE_NODE, &vtysh_quit_all_cmd);
2242 install_element (RIP_NODE, &vtysh_exit_ripd_cmd);
2243 install_element (RIP_NODE, &vtysh_quit_ripd_cmd);
paul68980082003-03-25 05:07:42 +00002244 install_element (RIPNG_NODE, &vtysh_exit_ripngd_cmd);
2245 install_element (RIPNG_NODE, &vtysh_quit_ripngd_cmd);
paul718e3742002-12-13 20:15:29 +00002246 install_element (OSPF_NODE, &vtysh_exit_ospfd_cmd);
2247 install_element (OSPF_NODE, &vtysh_quit_ospfd_cmd);
paul68980082003-03-25 05:07:42 +00002248 install_element (OSPF6_NODE, &vtysh_exit_ospf6d_cmd);
2249 install_element (OSPF6_NODE, &vtysh_quit_ospf6d_cmd);
paul718e3742002-12-13 20:15:29 +00002250 install_element (BGP_NODE, &vtysh_exit_bgpd_cmd);
2251 install_element (BGP_NODE, &vtysh_quit_bgpd_cmd);
2252 install_element (BGP_VPNV4_NODE, &vtysh_exit_bgpd_cmd);
2253 install_element (BGP_VPNV4_NODE, &vtysh_quit_bgpd_cmd);
2254 install_element (BGP_IPV4_NODE, &vtysh_exit_bgpd_cmd);
2255 install_element (BGP_IPV4_NODE, &vtysh_quit_bgpd_cmd);
2256 install_element (BGP_IPV4M_NODE, &vtysh_exit_bgpd_cmd);
2257 install_element (BGP_IPV4M_NODE, &vtysh_quit_bgpd_cmd);
2258 install_element (BGP_IPV6_NODE, &vtysh_exit_bgpd_cmd);
2259 install_element (BGP_IPV6_NODE, &vtysh_quit_bgpd_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002260 install_element (BGP_IPV6M_NODE, &vtysh_exit_bgpd_cmd);
2261 install_element (BGP_IPV6M_NODE, &vtysh_quit_bgpd_cmd);
hassoc25e4582003-12-23 10:39:08 +00002262 install_element (ISIS_NODE, &vtysh_exit_isisd_cmd);
2263 install_element (ISIS_NODE, &vtysh_quit_isisd_cmd);
paul718e3742002-12-13 20:15:29 +00002264 install_element (KEYCHAIN_NODE, &vtysh_exit_ripd_cmd);
2265 install_element (KEYCHAIN_NODE, &vtysh_quit_ripd_cmd);
2266 install_element (KEYCHAIN_KEY_NODE, &vtysh_exit_ripd_cmd);
2267 install_element (KEYCHAIN_KEY_NODE, &vtysh_quit_ripd_cmd);
2268 install_element (RMAP_NODE, &vtysh_exit_rmap_cmd);
2269 install_element (RMAP_NODE, &vtysh_quit_rmap_cmd);
hassoe7168df2004-10-03 20:11:32 +00002270 install_element (VTY_NODE, &vtysh_exit_line_vty_cmd);
2271 install_element (VTY_NODE, &vtysh_quit_line_vty_cmd);
paul718e3742002-12-13 20:15:29 +00002272
2273 /* "end" command. */
2274 install_element (CONFIG_NODE, &vtysh_end_all_cmd);
2275 install_element (ENABLE_NODE, &vtysh_end_all_cmd);
2276 install_element (RIP_NODE, &vtysh_end_all_cmd);
2277 install_element (RIPNG_NODE, &vtysh_end_all_cmd);
2278 install_element (OSPF_NODE, &vtysh_end_all_cmd);
2279 install_element (OSPF6_NODE, &vtysh_end_all_cmd);
2280 install_element (BGP_NODE, &vtysh_end_all_cmd);
2281 install_element (BGP_IPV4_NODE, &vtysh_end_all_cmd);
2282 install_element (BGP_IPV4M_NODE, &vtysh_end_all_cmd);
2283 install_element (BGP_VPNV4_NODE, &vtysh_end_all_cmd);
2284 install_element (BGP_IPV6_NODE, &vtysh_end_all_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002285 install_element (BGP_IPV6M_NODE, &vtysh_end_all_cmd);
hassoc25e4582003-12-23 10:39:08 +00002286 install_element (ISIS_NODE, &vtysh_end_all_cmd);
paul718e3742002-12-13 20:15:29 +00002287 install_element (KEYCHAIN_NODE, &vtysh_end_all_cmd);
2288 install_element (KEYCHAIN_KEY_NODE, &vtysh_end_all_cmd);
2289 install_element (RMAP_NODE, &vtysh_end_all_cmd);
hassoe7168df2004-10-03 20:11:32 +00002290 install_element (VTY_NODE, &vtysh_end_all_cmd);
paul718e3742002-12-13 20:15:29 +00002291
paul338a9912003-03-01 15:44:10 +00002292 install_element (INTERFACE_NODE, &interface_desc_cmd);
paul464dc8d2003-03-28 02:25:45 +00002293 install_element (INTERFACE_NODE, &no_interface_desc_cmd);
paul718e3742002-12-13 20:15:29 +00002294 install_element (INTERFACE_NODE, &vtysh_end_all_cmd);
2295 install_element (INTERFACE_NODE, &vtysh_exit_interface_cmd);
2296 install_element (INTERFACE_NODE, &vtysh_quit_interface_cmd);
2297 install_element (CONFIG_NODE, &router_rip_cmd);
2298#ifdef HAVE_IPV6
2299 install_element (CONFIG_NODE, &router_ripng_cmd);
2300#endif
2301 install_element (CONFIG_NODE, &router_ospf_cmd);
2302#ifdef HAVE_IPV6
2303 install_element (CONFIG_NODE, &router_ospf6_cmd);
2304#endif
hassoc25e4582003-12-23 10:39:08 +00002305 install_element (CONFIG_NODE, &router_isis_cmd);
paul718e3742002-12-13 20:15:29 +00002306 install_element (CONFIG_NODE, &router_bgp_cmd);
2307 install_element (BGP_NODE, &address_family_vpnv4_cmd);
2308 install_element (BGP_NODE, &address_family_vpnv4_unicast_cmd);
2309 install_element (BGP_NODE, &address_family_ipv4_unicast_cmd);
2310 install_element (BGP_NODE, &address_family_ipv4_multicast_cmd);
2311#ifdef HAVE_IPV6
2312 install_element (BGP_NODE, &address_family_ipv6_cmd);
2313 install_element (BGP_NODE, &address_family_ipv6_unicast_cmd);
2314#endif
2315 install_element (BGP_VPNV4_NODE, &exit_address_family_cmd);
2316 install_element (BGP_IPV4_NODE, &exit_address_family_cmd);
2317 install_element (BGP_IPV4M_NODE, &exit_address_family_cmd);
2318 install_element (BGP_IPV6_NODE, &exit_address_family_cmd);
paul57b5b7e2005-08-22 22:44:29 +00002319 install_element (BGP_IPV6M_NODE, &exit_address_family_cmd);
paul718e3742002-12-13 20:15:29 +00002320 install_element (CONFIG_NODE, &key_chain_cmd);
2321 install_element (CONFIG_NODE, &route_map_cmd);
hassoe7168df2004-10-03 20:11:32 +00002322 install_element (CONFIG_NODE, &vtysh_line_vty_cmd);
paul718e3742002-12-13 20:15:29 +00002323 install_element (KEYCHAIN_NODE, &key_cmd);
2324 install_element (KEYCHAIN_NODE, &key_chain_cmd);
2325 install_element (KEYCHAIN_KEY_NODE, &key_chain_cmd);
2326 install_element (CONFIG_NODE, &vtysh_interface_cmd);
paul32d24632003-05-23 09:25:20 +00002327 install_element (CONFIG_NODE, &vtysh_no_interface_cmd);
paul718e3742002-12-13 20:15:29 +00002328 install_element (ENABLE_NODE, &vtysh_show_running_config_cmd);
2329 install_element (ENABLE_NODE, &vtysh_copy_runningconfig_startupconfig_cmd);
2330 install_element (ENABLE_NODE, &vtysh_write_file_cmd);
hasso4a6e2252003-05-25 11:51:29 +00002331 install_element (ENABLE_NODE, &vtysh_write_cmd);
paul718e3742002-12-13 20:15:29 +00002332
hasso95e735b2004-08-26 13:08:30 +00002333 /* "write terminal" command. */
paul718e3742002-12-13 20:15:29 +00002334 install_element (ENABLE_NODE, &vtysh_write_terminal_cmd);
hassoe7168df2004-10-03 20:11:32 +00002335
2336 install_element (CONFIG_NODE, &vtysh_integrated_config_cmd);
2337 install_element (CONFIG_NODE, &no_vtysh_integrated_config_cmd);
paul718e3742002-12-13 20:15:29 +00002338
hasso95e735b2004-08-26 13:08:30 +00002339 /* "write memory" command. */
paul718e3742002-12-13 20:15:29 +00002340 install_element (ENABLE_NODE, &vtysh_write_memory_cmd);
paul718e3742002-12-13 20:15:29 +00002341
hasso34553cc2004-08-27 13:56:39 +00002342 install_element (VIEW_NODE, &vtysh_terminal_length_cmd);
2343 install_element (ENABLE_NODE, &vtysh_terminal_length_cmd);
2344 install_element (VIEW_NODE, &vtysh_terminal_no_length_cmd);
2345 install_element (ENABLE_NODE, &vtysh_terminal_no_length_cmd);
hassof2799e62004-10-28 17:43:11 +00002346 install_element (VIEW_NODE, &vtysh_show_daemons_cmd);
2347 install_element (ENABLE_NODE, &vtysh_show_daemons_cmd);
hasso34553cc2004-08-27 13:56:39 +00002348
paul718e3742002-12-13 20:15:29 +00002349 install_element (VIEW_NODE, &vtysh_ping_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002350 install_element (VIEW_NODE, &vtysh_ping_ip_cmd);
paul718e3742002-12-13 20:15:29 +00002351 install_element (VIEW_NODE, &vtysh_traceroute_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002352 install_element (VIEW_NODE, &vtysh_traceroute_ip_cmd);
2353#ifdef HAVE_IPV6
2354 install_element (VIEW_NODE, &vtysh_ping6_cmd);
2355 install_element (VIEW_NODE, &vtysh_traceroute6_cmd);
2356#endif
paul718e3742002-12-13 20:15:29 +00002357 install_element (VIEW_NODE, &vtysh_telnet_cmd);
2358 install_element (VIEW_NODE, &vtysh_telnet_port_cmd);
paul5087df52003-01-25 06:56:09 +00002359 install_element (VIEW_NODE, &vtysh_ssh_cmd);
paul718e3742002-12-13 20:15:29 +00002360 install_element (ENABLE_NODE, &vtysh_ping_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002361 install_element (ENABLE_NODE, &vtysh_ping_ip_cmd);
paul718e3742002-12-13 20:15:29 +00002362 install_element (ENABLE_NODE, &vtysh_traceroute_cmd);
hasso4eeccf12003-06-25 10:49:55 +00002363 install_element (ENABLE_NODE, &vtysh_traceroute_ip_cmd);
2364#ifdef HAVE_IPV6
2365 install_element (ENABLE_NODE, &vtysh_ping6_cmd);
2366 install_element (ENABLE_NODE, &vtysh_traceroute6_cmd);
2367#endif
paul718e3742002-12-13 20:15:29 +00002368 install_element (ENABLE_NODE, &vtysh_telnet_cmd);
2369 install_element (ENABLE_NODE, &vtysh_telnet_port_cmd);
hasso67e29ab2004-08-26 22:21:31 +00002370 install_element (ENABLE_NODE, &vtysh_ssh_cmd);
paul718e3742002-12-13 20:15:29 +00002371 install_element (ENABLE_NODE, &vtysh_start_shell_cmd);
2372 install_element (ENABLE_NODE, &vtysh_start_bash_cmd);
2373 install_element (ENABLE_NODE, &vtysh_start_zsh_cmd);
Paul Jakmadbf7d132006-05-23 22:10:01 +00002374
Paul Jakma362b4032006-05-28 07:54:45 +00002375 install_element (VIEW_NODE, &vtysh_show_memory_cmd);
2376 install_element (ENABLE_NODE, &vtysh_show_memory_cmd);
2377
Paul Jakmadbf7d132006-05-23 22:10:01 +00002378 /* Logging */
2379 install_element (ENABLE_NODE, &vtysh_show_logging_cmd);
2380 install_element (VIEW_NODE, &vtysh_show_logging_cmd);
paul718e3742002-12-13 20:15:29 +00002381 install_element (CONFIG_NODE, &vtysh_log_stdout_cmd);
ajs274a4a42004-12-07 15:39:31 +00002382 install_element (CONFIG_NODE, &vtysh_log_stdout_level_cmd);
paul718e3742002-12-13 20:15:29 +00002383 install_element (CONFIG_NODE, &no_vtysh_log_stdout_cmd);
2384 install_element (CONFIG_NODE, &vtysh_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00002385 install_element (CONFIG_NODE, &vtysh_log_file_level_cmd);
paul718e3742002-12-13 20:15:29 +00002386 install_element (CONFIG_NODE, &no_vtysh_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00002387 install_element (CONFIG_NODE, &no_vtysh_log_file_level_cmd);
2388 install_element (CONFIG_NODE, &vtysh_log_monitor_cmd);
2389 install_element (CONFIG_NODE, &vtysh_log_monitor_level_cmd);
2390 install_element (CONFIG_NODE, &no_vtysh_log_monitor_cmd);
paul718e3742002-12-13 20:15:29 +00002391 install_element (CONFIG_NODE, &vtysh_log_syslog_cmd);
ajs274a4a42004-12-07 15:39:31 +00002392 install_element (CONFIG_NODE, &vtysh_log_syslog_level_cmd);
paul718e3742002-12-13 20:15:29 +00002393 install_element (CONFIG_NODE, &no_vtysh_log_syslog_cmd);
2394 install_element (CONFIG_NODE, &vtysh_log_trap_cmd);
2395 install_element (CONFIG_NODE, &no_vtysh_log_trap_cmd);
ajs274a4a42004-12-07 15:39:31 +00002396 install_element (CONFIG_NODE, &vtysh_log_facility_cmd);
2397 install_element (CONFIG_NODE, &no_vtysh_log_facility_cmd);
paul718e3742002-12-13 20:15:29 +00002398 install_element (CONFIG_NODE, &vtysh_log_record_priority_cmd);
2399 install_element (CONFIG_NODE, &no_vtysh_log_record_priority_cmd);
hassoe7168df2004-10-03 20:11:32 +00002400
2401 install_element (CONFIG_NODE, &vtysh_service_password_encrypt_cmd);
2402 install_element (CONFIG_NODE, &no_vtysh_service_password_encrypt_cmd);
2403
2404 install_element (CONFIG_NODE, &vtysh_password_cmd);
2405 install_element (CONFIG_NODE, &vtysh_password_text_cmd);
2406 install_element (CONFIG_NODE, &vtysh_enable_password_cmd);
2407 install_element (CONFIG_NODE, &vtysh_enable_password_text_cmd);
2408 install_element (CONFIG_NODE, &no_vtysh_enable_password_cmd);
2409
paul718e3742002-12-13 20:15:29 +00002410}