blob: a36a524a048fd7693a22235615954061641c955b [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Zebra configuration command interface routine
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_COMMAND_H
24#define _ZEBRA_COMMAND_H
25
26#include "vector.h"
27#include "vty.h"
Paul Jakma9c42a6e2006-06-27 07:52:03 +000028#include "lib/route_types.h"
paul718e3742002-12-13 20:15:29 +000029
30/* Host configuration variable */
31struct host
32{
33 /* Host name of this router. */
34 char *name;
35
36 /* Password for vty interface. */
37 char *password;
38 char *password_encrypt;
39
40 /* Enable password */
41 char *enable;
42 char *enable_encrypt;
43
44 /* System wide terminal lines. */
45 int lines;
46
47 /* Log filename. */
48 char *logfile;
49
paul718e3742002-12-13 20:15:29 +000050 /* config file name of this host */
51 char *config;
52
53 /* Flags for services */
54 int advanced;
55 int encrypt;
56
57 /* Banner configuration. */
hasso8c328f12004-10-05 21:01:23 +000058 const char *motd;
paul3b0c5d92005-03-08 10:43:43 +000059 char *motdfile;
paul718e3742002-12-13 20:15:29 +000060};
61
62/* There are some command levels which called from command node. */
63enum node_type
64{
65 AUTH_NODE, /* Authentication mode of vty interface. */
Paul Jakma62687ff2008-08-23 14:27:06 +010066 RESTRICTED_NODE, /* Restricted view mode */
paul718e3742002-12-13 20:15:29 +000067 VIEW_NODE, /* View node. Default mode of vty interface. */
68 AUTH_ENABLE_NODE, /* Authentication mode for change enable. */
69 ENABLE_NODE, /* Enable node. */
70 CONFIG_NODE, /* Config node. Default mode of config file. */
hassoe7168df2004-10-03 20:11:32 +000071 SERVICE_NODE, /* Service node. */
paul718e3742002-12-13 20:15:29 +000072 DEBUG_NODE, /* Debug node. */
73 AAA_NODE, /* AAA node. */
74 KEYCHAIN_NODE, /* Key-chain node. */
75 KEYCHAIN_KEY_NODE, /* Key-chain key node. */
76 INTERFACE_NODE, /* Interface mode node. */
77 ZEBRA_NODE, /* zebra connection node. */
78 TABLE_NODE, /* rtm_table selection node. */
79 RIP_NODE, /* RIP protocol mode node. */
80 RIPNG_NODE, /* RIPng protocol mode node. */
Paul Jakma57345092011-12-25 17:52:09 +010081 BABEL_NODE, /* Babel protocol mode node. */
paul718e3742002-12-13 20:15:29 +000082 BGP_NODE, /* BGP protocol mode which includes BGP4+ */
83 BGP_VPNV4_NODE, /* BGP MPLS-VPN PE exchange. */
84 BGP_IPV4_NODE, /* BGP IPv4 unicast address family. */
85 BGP_IPV4M_NODE, /* BGP IPv4 multicast address family. */
86 BGP_IPV6_NODE, /* BGP IPv6 address family */
paul1e836592005-08-22 22:39:56 +000087 BGP_IPV6M_NODE, /* BGP IPv6 multicast address family. */
paul718e3742002-12-13 20:15:29 +000088 OSPF_NODE, /* OSPF protocol mode */
89 OSPF6_NODE, /* OSPF protocol for IPv6 mode */
jardin9e867fe2003-12-23 08:56:18 +000090 ISIS_NODE, /* ISIS protocol mode */
Everton Marques871dbcf2009-08-11 15:43:05 -030091 PIM_NODE, /* PIM protocol mode */
paul718e3742002-12-13 20:15:29 +000092 MASC_NODE, /* MASC for multicast. */
93 IRDP_NODE, /* ICMP Router Discovery Protocol mode. */
94 IP_NODE, /* Static ip route node. */
95 ACCESS_NODE, /* Access list node. */
96 PREFIX_NODE, /* Prefix list node. */
97 ACCESS_IPV6_NODE, /* Access list node. */
98 PREFIX_IPV6_NODE, /* Prefix list node. */
99 AS_LIST_NODE, /* AS list node. */
100 COMMUNITY_LIST_NODE, /* Community list node. */
101 RMAP_NODE, /* Route map node. */
102 SMUX_NODE, /* SNMP configuration node. */
103 DUMP_NODE, /* Packet dump node. */
104 FORWARDING_NODE, /* IP forwarding node. */
Paul Jakma7514fb72007-05-02 16:05:35 +0000105 PROTOCOL_NODE, /* protocol filtering node */
Paul Jakma62687ff2008-08-23 14:27:06 +0100106 VTY_NODE, /* Vty node. */
paul718e3742002-12-13 20:15:29 +0000107};
108
109/* Node which has some commands and prompt string and configuration
110 function pointer . */
111struct cmd_node
112{
113 /* Node index. */
114 enum node_type node;
115
116 /* Prompt character at vty interface. */
hasso8c328f12004-10-05 21:01:23 +0000117 const char *prompt;
paul718e3742002-12-13 20:15:29 +0000118
119 /* Is this node's configuration goes to vtysh ? */
120 int vtysh;
121
122 /* Node's configuration write function */
123 int (*func) (struct vty *);
124
125 /* Vector of this node's command list. */
126 vector cmd_vector;
127};
128
paul406d6712004-10-22 12:27:44 +0000129enum
130{
paul9c5d8562005-03-08 15:56:42 +0000131 CMD_ATTR_DEPRECATED = 1,
paul406d6712004-10-22 12:27:44 +0000132 CMD_ATTR_HIDDEN,
133};
134
paul718e3742002-12-13 20:15:29 +0000135/* Structure of command element. */
136struct cmd_element
137{
hasso8c328f12004-10-05 21:01:23 +0000138 const char *string; /* Command specification by string. */
paul9035efa2004-10-10 11:56:56 +0000139 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
hasso8c328f12004-10-05 21:01:23 +0000140 const char *doc; /* Documentation of this command. */
paul718e3742002-12-13 20:15:29 +0000141 int daemon; /* Daemon to which this command belong. */
Christian Frankecd40b322013-09-30 12:27:51 +0000142 vector tokens; /* Vector of cmd_tokens */
paul406d6712004-10-22 12:27:44 +0000143 u_char attr; /* Command attributes */
paul718e3742002-12-13 20:15:29 +0000144};
145
Christian Frankecd40b322013-09-30 12:27:51 +0000146
147enum cmd_token_type
paul718e3742002-12-13 20:15:29 +0000148{
Christian Frankecd40b322013-09-30 12:27:51 +0000149 TOKEN_TERMINAL = 0,
150 TOKEN_MULTIPLE,
151 TOKEN_KEYWORD,
152};
153
David Lamparter10bac802015-05-05 11:10:20 +0200154enum cmd_terminal_type
155{
156 _TERMINAL_BUG = 0,
157 TERMINAL_LITERAL,
158 TERMINAL_OPTION,
159 TERMINAL_VARIABLE,
160 TERMINAL_VARARG,
161 TERMINAL_RANGE,
162 TERMINAL_IPV4,
163 TERMINAL_IPV4_PREFIX,
164 TERMINAL_IPV6,
165 TERMINAL_IPV6_PREFIX,
166};
167
David Lamparter14162932015-05-12 17:18:04 +0200168/* argument to be recorded on argv[] if it's not a literal */
169#define TERMINAL_RECORD(t) ((t) >= TERMINAL_OPTION)
170
Christian Frankecd40b322013-09-30 12:27:51 +0000171/* Command description structure. */
172struct cmd_token
173{
174 enum cmd_token_type type;
David Lamparter10bac802015-05-05 11:10:20 +0200175 enum cmd_terminal_type terminal;
Christian Frankecd40b322013-09-30 12:27:51 +0000176
177 /* Used for type == MULTIPLE */
178 vector multiple; /* vector of cmd_token, type == FINAL */
179
180 /* Used for type == KEYWORD */
181 vector keyword; /* vector of vector of cmd_tokens */
182
183 /* Used for type == TERMINAL */
Chris Caputo228da422009-07-18 05:44:03 +0000184 char *cmd; /* Command string. */
Christian Frankecd40b322013-09-30 12:27:51 +0000185 char *desc; /* Command's description. */
paul718e3742002-12-13 20:15:29 +0000186};
187
188/* Return value of the commands. */
189#define CMD_SUCCESS 0
190#define CMD_WARNING 1
191#define CMD_ERR_NO_MATCH 2
192#define CMD_ERR_AMBIGUOUS 3
193#define CMD_ERR_INCOMPLETE 4
194#define CMD_ERR_EXEED_ARGC_MAX 5
195#define CMD_ERR_NOTHING_TODO 6
196#define CMD_COMPLETE_FULL_MATCH 7
197#define CMD_COMPLETE_MATCH 8
198#define CMD_COMPLETE_LIST_MATCH 9
199#define CMD_SUCCESS_DAEMON 10
200
201/* Argc max counts. */
202#define CMD_ARGC_MAX 25
203
204/* Turn off these macros when uisng cpp with extract.pl */
205#ifndef VTYSH_EXTRACT_PL
206
paul406d6712004-10-22 12:27:44 +0000207/* helper defines for end-user DEFUN* macros */
208#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
paul718e3742002-12-13 20:15:29 +0000209 struct cmd_element cmdname = \
210 { \
paul9035efa2004-10-10 11:56:56 +0000211 .string = cmdstr, \
212 .func = funcname, \
paul406d6712004-10-22 12:27:44 +0000213 .doc = helpstr, \
214 .attr = attrs, \
215 .daemon = dnum, \
216 };
217
218#define DEFUN_CMD_FUNC_DECL(funcname) \
paul34204aa2005-11-03 09:00:23 +0000219 static int funcname (struct cmd_element *, struct vty *, int, const char *[]);
paul406d6712004-10-22 12:27:44 +0000220
221#define DEFUN_CMD_FUNC_TEXT(funcname) \
ajs274a4a42004-12-07 15:39:31 +0000222 static int funcname \
Paul Jakma6cf0cf02006-03-30 14:43:17 +0000223 (struct cmd_element *self __attribute__ ((unused)), \
224 struct vty *vty __attribute__ ((unused)), \
225 int argc __attribute__ ((unused)), \
226 const char *argv[] __attribute__ ((unused)) )
paul406d6712004-10-22 12:27:44 +0000227
Christian Frankecd40b322013-09-30 12:27:51 +0000228/* DEFUN for vty command interafce. Little bit hacky ;-).
229 *
230 * DEFUN(funcname, cmdname, cmdstr, helpstr)
231 *
232 * funcname
233 * ========
234 *
235 * Name of the function that will be defined.
236 *
237 * cmdname
238 * =======
239 *
240 * Name of the struct that will be defined for the command.
241 *
242 * cmdstr
243 * ======
244 *
245 * The cmdstr defines the command syntax. It is used by the vty subsystem
246 * and vtysh to perform matching and completion in the cli. So you have to take
247 * care to construct it adhering to the following grammar. The names used
248 * for the production rules losely represent the names used in lib/command.c
249 *
250 * cmdstr = cmd_token , { " " , cmd_token } ;
251 *
252 * cmd_token = cmd_terminal
253 * | cmd_multiple
254 * | cmd_keyword ;
255 *
256 * cmd_terminal_fixed = fixed_string
257 * | variable
258 * | range
259 * | ipv4
260 * | ipv4_prefix
261 * | ipv6
262 * | ipv6_prefix ;
263 *
264 * cmd_terminal = cmd_terminal_fixed
265 * | option
266 * | vararg ;
267 *
268 * multiple_part = cmd_terminal_fixed ;
269 * cmd_multiple = "(" , multiple_part , ( "|" | { "|" , multiple_part } ) , ")" ;
270 *
271 * keyword_part = fixed_string , { " " , ( cmd_terminal_fixed | cmd_multiple ) } ;
272 * cmd_keyword = "{" , keyword_part , { "|" , keyword_part } , "}" ;
273 *
274 * lowercase = "a" | ... | "z" ;
275 * uppercase = "A" | ... | "Z" ;
276 * digit = "0" | ... | "9" ;
277 * number = digit , { digit } ;
278 *
279 * fixed_string = (lowercase | digit) , { lowercase | digit | uppercase | "-" | "_" } ;
280 * variable = uppercase , { uppercase | "_" } ;
281 * range = "<" , number , "-" , number , ">" ;
282 * ipv4 = "A.B.C.D" ;
283 * ipv4_prefix = "A.B.C.D/M" ;
284 * ipv6 = "X:X::X:X" ;
285 * ipv6_prefix = "X:X::X:X/M" ;
286 * option = "[" , variable , "]" ;
287 * vararg = "." , variable ;
288 *
289 * To put that all in a textual description: A cmdstr is a sequence of tokens,
290 * separated by spaces.
291 *
292 * Terminal Tokens:
293 *
294 * A very simple cmdstring would be something like: "show ip bgp". It consists
295 * of three Terminal Tokens, each containing a fixed string. When this command
296 * is called, no arguments will be passed down to the function implementing it,
297 * as it only consists of fixed strings.
298 *
299 * Apart from fixed strings, Terminal Tokens can also contain variables:
300 * An example would be "show ip bgp A.B.C.D". This command expects an IPv4
301 * as argument. As this is a variable, the IP address entered by the user will
302 * be passed down as an argument. Apart from two exceptions, the other options
303 * for Terminal Tokens behave exactly as we just discussed and only make a
304 * difference for the CLI. The two exceptions will be discussed in the next
305 * paragraphs.
306 *
307 * A Terminal Token can contain a so called option match. This is a simple
308 * string variable that the user may omit. An example would be:
309 * "show interface [IFNAME]". If the user calls this without an interface as
310 * argument, no arguments will be passed down to the function implementing
311 * this command. Otherwise, the interface name will be provided to the function
312 * as a regular argument.
313
314 * Also, a Terminal Token can contain a so called vararg. This is used e.g. in
315 * "show ip bgp regexp .LINE". The last token is a vararg match and will
316 * consume all the arguments the user inputs on the command line and append
317 * those to the list of arguments passed down to the function implementing this
318 * command. (Therefore, it doesn't make much sense to have any tokens after a
319 * vararg because the vararg will already consume all the words the user entered
320 * in the CLI)
321 *
322 * Multiple Tokens:
323 *
324 * The Multiple Token type can be used if there are multiple possibilities what
325 * arguments may be used for a command, but it should map to the same function
326 * nonetheless. An example would be "ip route A.B.C.D/M (reject|blackhole)"
327 * In that case both "reject" and "blackhole" would be acceptable as last
328 * arguments. The words matched by Multiple Tokens are always added to the
329 * argument list, even if they are matched by fixed strings. Such a Multiple
330 * Token can contain almost any type of token that would also be acceptable
331 * for a Terminal Token, the exception are optional variables and varag.
332 *
333 * There is one special case that is used in some places of Quagga that should be
334 * pointed out here shortly. An example would be "password (8|) WORD". This
335 * construct is used to have fixed strings communicated as arguments. (The "8"
336 * will be passed down as an argument in this case) It does not mean that
337 * the "8" is optional. Another historic and possibly surprising property of
338 * this construct is that it consumes two parts of helpstr. (Help
339 * strings will be explained later)
340 *
341 * Keyword Tokens:
342 *
343 * There are commands that take a lot of different and possibly optional arguments.
344 * An example from ospf would be the "default-information originate" command. This
345 * command takes a lot of optional arguments that may be provided in any order.
346 * To accomodate such commands, the Keyword Token has been implemented.
347 * Using the keyword token, the "default-information originate" command and all
348 * its possible options can be represented using this single cmdstr:
349 * "default-information originate \
350 * {always|metric <0-16777214>|metric-type (1|2)|route-map WORD}"
351 *
352 * Keywords always start with a fixed string and may be followed by arguments.
353 * Except optional variables and vararg, everything is permitted here.
354 *
355 * For the special case of a keyword without arguments, either NULL or the
356 * keyword itself will be pushed as an argument, depending on whether the
357 * keyword is present.
358 * For the other keywords, arguments will be only pushed for
359 * variables/Multiple Tokens. If the keyword is not present, the arguments that
360 * would have been pushed will be substituted by NULL.
361 *
362 * A few examples:
363 * "default information originate metric-type 1 metric 1000"
364 * would yield the following arguments:
365 * { NULL, "1000", "1", NULL }
366 *
367 * "default information originate always route-map RMAP-DEFAULT"
368 * would yield the following arguments:
369 * { "always", NULL, NULL, "RMAP-DEFAULT" }
370 *
371 * helpstr
372 * =======
373 *
374 * The helpstr is used to show a short explantion for the commands that
375 * are available when the user presses '?' on the CLI. It is the concatenation
376 * of the helpstrings for all the tokens that make up the command.
377 *
378 * There should be one helpstring for each token in the cmdstr except those
379 * containing other tokens, like Multiple or Keyword Tokens. For those, there
380 * will only be the helpstrings of the contained tokens.
381 *
382 * The individual helpstrings are expected to be in the same order as their
383 * respective Tokens appear in the cmdstr. They should each be terminated with
384 * a linefeed. The last helpstring should be terminated with a linefeed as well.
385 *
386 * Care should also be taken to avoid having similar tokens with different
387 * helpstrings. Imagine e.g. the commands "show ip ospf" and "show ip bgp".
388 * they both contain a helpstring for "show", but only one will be displayed
389 * when the user enters "sh?". If those two helpstrings differ, it is not
390 * defined which one will be shown and the behavior is therefore unpredictable.
391 */
paul406d6712004-10-22 12:27:44 +0000392#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
393 DEFUN_CMD_FUNC_DECL(funcname) \
394 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
395 DEFUN_CMD_FUNC_TEXT(funcname)
396
397#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
398 DEFUN_CMD_FUNC_DECL(funcname) \
399 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
400 DEFUN_CMD_FUNC_TEXT(funcname)
401
402#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
403 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
404
405#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
hasso2557aed2004-11-28 21:16:20 +0000406 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
paul718e3742002-12-13 20:15:29 +0000407
408/* DEFUN_NOSH for commands that vtysh should ignore */
409#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
410 DEFUN(funcname, cmdname, cmdstr, helpstr)
411
412/* DEFSH for vtysh. */
413#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000414 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
paul718e3742002-12-13 20:15:29 +0000415
416/* DEFUN + DEFSH */
417#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000418 DEFUN_CMD_FUNC_DECL(funcname) \
419 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
420 DEFUN_CMD_FUNC_TEXT(funcname)
paul718e3742002-12-13 20:15:29 +0000421
ajs274a4a42004-12-07 15:39:31 +0000422/* DEFUN + DEFSH with attributes */
423#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
424 DEFUN_CMD_FUNC_DECL(funcname) \
425 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
426 DEFUN_CMD_FUNC_TEXT(funcname)
427
428#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
429 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
430
431#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
432 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
433
paul718e3742002-12-13 20:15:29 +0000434/* ALIAS macro which define existing command's alias. */
435#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000436 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
437
438#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
ajs274a4a42004-12-07 15:39:31 +0000439 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
paul406d6712004-10-22 12:27:44 +0000440
441#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
442 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
443
444#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
445 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
paul718e3742002-12-13 20:15:29 +0000446
ajs274a4a42004-12-07 15:39:31 +0000447#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
448 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
449
450#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
451 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
452
453#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
454 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
455
paul718e3742002-12-13 20:15:29 +0000456#endif /* VTYSH_EXTRACT_PL */
457
paul718e3742002-12-13 20:15:29 +0000458/* Common descriptions. */
459#define SHOW_STR "Show running system information\n"
460#define IP_STR "IP information\n"
461#define IPV6_STR "IPv6 information\n"
462#define NO_STR "Negate a command or set its defaults\n"
Paul Jakma9c42a6e2006-06-27 07:52:03 +0000463#define REDIST_STR "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +0000464#define CLEAR_STR "Reset functions\n"
465#define RIP_STR "RIP information\n"
466#define BGP_STR "BGP information\n"
467#define OSPF_STR "OSPF information\n"
468#define NEIGHBOR_STR "Specify neighbor router\n"
469#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
470#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
471#define ROUTER_STR "Enable a routing process\n"
472#define AS_STR "AS number\n"
473#define MBGP_STR "MBGP information\n"
474#define MATCH_STR "Match values from routing table\n"
475#define SET_STR "Set values in destination routing protocol\n"
476#define OUT_STR "Filter outgoing routing updates\n"
477#define IN_STR "Filter incoming routing updates\n"
478#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
479#define OSPF6_NUMBER_STR "Specify by number\n"
480#define INTERFACE_STR "Interface infomation\n"
481#define IFNAME_STR "Interface name(e.g. ep0)\n"
482#define IP6_STR "IPv6 Information\n"
483#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
484#define OSPF6_ROUTER_STR "Enable a routing process\n"
485#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
486#define SECONDS_STR "<1-65535> Seconds\n"
487#define ROUTE_STR "Routing Table\n"
488#define PREFIX_LIST_STR "Build a prefix list\n"
489#define OSPF6_DUMP_TYPE_LIST \
490"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
jardin9e867fe2003-12-23 08:56:18 +0000491#define ISIS_STR "IS-IS information\n"
492#define AREA_TAG_STR "[area tag]\n"
paul718e3742002-12-13 20:15:29 +0000493
494#define CONF_BACKUP_EXT ".sav"
495
496/* IPv4 only machine should not accept IPv6 address for peer's IP
497 address. So we replace VTY command string like below. */
498#ifdef HAVE_IPV6
499#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
500#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
501#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
502#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
503#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
504#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
505#else
506#define NEIGHBOR_CMD "neighbor A.B.C.D "
507#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
508#define NEIGHBOR_ADDR_STR "Neighbor address\n"
509#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
510#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
511#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
512#endif /* HAVE_IPV6 */
513
514/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000515extern void install_node (struct cmd_node *, int (*) (struct vty *));
516extern void install_default (enum node_type);
517extern void install_element (enum node_type, struct cmd_element *);
paul718e3742002-12-13 20:15:29 +0000518
ajsf6834d42005-01-28 20:28:35 +0000519/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
520 string with a space between each element (allocated using
521 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
paul8cc41982005-05-06 21:25:49 +0000522extern char *argv_concat (const char **argv, int argc, int shift);
ajsf6834d42005-01-28 20:28:35 +0000523
paul8cc41982005-05-06 21:25:49 +0000524extern vector cmd_make_strvec (const char *);
525extern void cmd_free_strvec (vector);
526extern vector cmd_describe_command (vector, struct vty *, int *status);
527extern char **cmd_complete_command (vector, struct vty *, int *status);
528extern const char *cmd_prompt (enum node_type);
Steve Hillea555002009-07-28 16:36:14 -0400529extern int config_from_file (struct vty *, FILE *, unsigned int *line_num);
paul8cc41982005-05-06 21:25:49 +0000530extern enum node_type node_parent (enum node_type);
531extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int);
532extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **);
paul8cc41982005-05-06 21:25:49 +0000533extern void cmd_init (int);
Chris Caputo228da422009-07-18 05:44:03 +0000534extern void cmd_terminate (void);
paul718e3742002-12-13 20:15:29 +0000535
536/* Export typical functions. */
537extern struct cmd_element config_end_cmd;
538extern struct cmd_element config_exit_cmd;
539extern struct cmd_element config_quit_cmd;
540extern struct cmd_element config_help_cmd;
541extern struct cmd_element config_list_cmd;
paul8cc41982005-05-06 21:25:49 +0000542extern char *host_config_file (void);
543extern void host_config_set (char *);
paul718e3742002-12-13 20:15:29 +0000544
paul8cc41982005-05-06 21:25:49 +0000545extern void print_version (const char *);
Paul Jakma86228fd2006-03-30 15:00:30 +0000546
547/* struct host global, ick */
548extern struct host host;
Chris Caputo228da422009-07-18 05:44:03 +0000549
550/* "<cr>" global */
551extern char *command_cr;
paul718e3742002-12-13 20:15:29 +0000552#endif /* _ZEBRA_COMMAND_H */