blob: 3a95df93a62b14f1bf349a0f260aa89491ab18d0 [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
Christian Frankecd40b322013-09-30 12:27:51 +0000168/* Command description structure. */
169struct cmd_token
170{
171 enum cmd_token_type type;
David Lamparter10bac802015-05-05 11:10:20 +0200172 enum cmd_terminal_type terminal;
Christian Frankecd40b322013-09-30 12:27:51 +0000173
174 /* Used for type == MULTIPLE */
175 vector multiple; /* vector of cmd_token, type == FINAL */
176
177 /* Used for type == KEYWORD */
178 vector keyword; /* vector of vector of cmd_tokens */
179
180 /* Used for type == TERMINAL */
Chris Caputo228da422009-07-18 05:44:03 +0000181 char *cmd; /* Command string. */
Christian Frankecd40b322013-09-30 12:27:51 +0000182 char *desc; /* Command's description. */
paul718e3742002-12-13 20:15:29 +0000183};
184
185/* Return value of the commands. */
186#define CMD_SUCCESS 0
187#define CMD_WARNING 1
188#define CMD_ERR_NO_MATCH 2
189#define CMD_ERR_AMBIGUOUS 3
190#define CMD_ERR_INCOMPLETE 4
191#define CMD_ERR_EXEED_ARGC_MAX 5
192#define CMD_ERR_NOTHING_TODO 6
193#define CMD_COMPLETE_FULL_MATCH 7
194#define CMD_COMPLETE_MATCH 8
195#define CMD_COMPLETE_LIST_MATCH 9
196#define CMD_SUCCESS_DAEMON 10
197
198/* Argc max counts. */
199#define CMD_ARGC_MAX 25
200
201/* Turn off these macros when uisng cpp with extract.pl */
202#ifndef VTYSH_EXTRACT_PL
203
paul406d6712004-10-22 12:27:44 +0000204/* helper defines for end-user DEFUN* macros */
205#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
paul718e3742002-12-13 20:15:29 +0000206 struct cmd_element cmdname = \
207 { \
paul9035efa2004-10-10 11:56:56 +0000208 .string = cmdstr, \
209 .func = funcname, \
paul406d6712004-10-22 12:27:44 +0000210 .doc = helpstr, \
211 .attr = attrs, \
212 .daemon = dnum, \
213 };
214
215#define DEFUN_CMD_FUNC_DECL(funcname) \
paul34204aa2005-11-03 09:00:23 +0000216 static int funcname (struct cmd_element *, struct vty *, int, const char *[]);
paul406d6712004-10-22 12:27:44 +0000217
218#define DEFUN_CMD_FUNC_TEXT(funcname) \
ajs274a4a42004-12-07 15:39:31 +0000219 static int funcname \
Paul Jakma6cf0cf02006-03-30 14:43:17 +0000220 (struct cmd_element *self __attribute__ ((unused)), \
221 struct vty *vty __attribute__ ((unused)), \
222 int argc __attribute__ ((unused)), \
223 const char *argv[] __attribute__ ((unused)) )
paul406d6712004-10-22 12:27:44 +0000224
Christian Frankecd40b322013-09-30 12:27:51 +0000225/* DEFUN for vty command interafce. Little bit hacky ;-).
226 *
227 * DEFUN(funcname, cmdname, cmdstr, helpstr)
228 *
229 * funcname
230 * ========
231 *
232 * Name of the function that will be defined.
233 *
234 * cmdname
235 * =======
236 *
237 * Name of the struct that will be defined for the command.
238 *
239 * cmdstr
240 * ======
241 *
242 * The cmdstr defines the command syntax. It is used by the vty subsystem
243 * and vtysh to perform matching and completion in the cli. So you have to take
244 * care to construct it adhering to the following grammar. The names used
245 * for the production rules losely represent the names used in lib/command.c
246 *
247 * cmdstr = cmd_token , { " " , cmd_token } ;
248 *
249 * cmd_token = cmd_terminal
250 * | cmd_multiple
251 * | cmd_keyword ;
252 *
253 * cmd_terminal_fixed = fixed_string
254 * | variable
255 * | range
256 * | ipv4
257 * | ipv4_prefix
258 * | ipv6
259 * | ipv6_prefix ;
260 *
261 * cmd_terminal = cmd_terminal_fixed
262 * | option
263 * | vararg ;
264 *
265 * multiple_part = cmd_terminal_fixed ;
266 * cmd_multiple = "(" , multiple_part , ( "|" | { "|" , multiple_part } ) , ")" ;
267 *
268 * keyword_part = fixed_string , { " " , ( cmd_terminal_fixed | cmd_multiple ) } ;
269 * cmd_keyword = "{" , keyword_part , { "|" , keyword_part } , "}" ;
270 *
271 * lowercase = "a" | ... | "z" ;
272 * uppercase = "A" | ... | "Z" ;
273 * digit = "0" | ... | "9" ;
274 * number = digit , { digit } ;
275 *
276 * fixed_string = (lowercase | digit) , { lowercase | digit | uppercase | "-" | "_" } ;
277 * variable = uppercase , { uppercase | "_" } ;
278 * range = "<" , number , "-" , number , ">" ;
279 * ipv4 = "A.B.C.D" ;
280 * ipv4_prefix = "A.B.C.D/M" ;
281 * ipv6 = "X:X::X:X" ;
282 * ipv6_prefix = "X:X::X:X/M" ;
283 * option = "[" , variable , "]" ;
284 * vararg = "." , variable ;
285 *
286 * To put that all in a textual description: A cmdstr is a sequence of tokens,
287 * separated by spaces.
288 *
289 * Terminal Tokens:
290 *
291 * A very simple cmdstring would be something like: "show ip bgp". It consists
292 * of three Terminal Tokens, each containing a fixed string. When this command
293 * is called, no arguments will be passed down to the function implementing it,
294 * as it only consists of fixed strings.
295 *
296 * Apart from fixed strings, Terminal Tokens can also contain variables:
297 * An example would be "show ip bgp A.B.C.D". This command expects an IPv4
298 * as argument. As this is a variable, the IP address entered by the user will
299 * be passed down as an argument. Apart from two exceptions, the other options
300 * for Terminal Tokens behave exactly as we just discussed and only make a
301 * difference for the CLI. The two exceptions will be discussed in the next
302 * paragraphs.
303 *
304 * A Terminal Token can contain a so called option match. This is a simple
305 * string variable that the user may omit. An example would be:
306 * "show interface [IFNAME]". If the user calls this without an interface as
307 * argument, no arguments will be passed down to the function implementing
308 * this command. Otherwise, the interface name will be provided to the function
309 * as a regular argument.
310
311 * Also, a Terminal Token can contain a so called vararg. This is used e.g. in
312 * "show ip bgp regexp .LINE". The last token is a vararg match and will
313 * consume all the arguments the user inputs on the command line and append
314 * those to the list of arguments passed down to the function implementing this
315 * command. (Therefore, it doesn't make much sense to have any tokens after a
316 * vararg because the vararg will already consume all the words the user entered
317 * in the CLI)
318 *
319 * Multiple Tokens:
320 *
321 * The Multiple Token type can be used if there are multiple possibilities what
322 * arguments may be used for a command, but it should map to the same function
323 * nonetheless. An example would be "ip route A.B.C.D/M (reject|blackhole)"
324 * In that case both "reject" and "blackhole" would be acceptable as last
325 * arguments. The words matched by Multiple Tokens are always added to the
326 * argument list, even if they are matched by fixed strings. Such a Multiple
327 * Token can contain almost any type of token that would also be acceptable
328 * for a Terminal Token, the exception are optional variables and varag.
329 *
330 * There is one special case that is used in some places of Quagga that should be
331 * pointed out here shortly. An example would be "password (8|) WORD". This
332 * construct is used to have fixed strings communicated as arguments. (The "8"
333 * will be passed down as an argument in this case) It does not mean that
334 * the "8" is optional. Another historic and possibly surprising property of
335 * this construct is that it consumes two parts of helpstr. (Help
336 * strings will be explained later)
337 *
338 * Keyword Tokens:
339 *
340 * There are commands that take a lot of different and possibly optional arguments.
341 * An example from ospf would be the "default-information originate" command. This
342 * command takes a lot of optional arguments that may be provided in any order.
343 * To accomodate such commands, the Keyword Token has been implemented.
344 * Using the keyword token, the "default-information originate" command and all
345 * its possible options can be represented using this single cmdstr:
346 * "default-information originate \
347 * {always|metric <0-16777214>|metric-type (1|2)|route-map WORD}"
348 *
349 * Keywords always start with a fixed string and may be followed by arguments.
350 * Except optional variables and vararg, everything is permitted here.
351 *
352 * For the special case of a keyword without arguments, either NULL or the
353 * keyword itself will be pushed as an argument, depending on whether the
354 * keyword is present.
355 * For the other keywords, arguments will be only pushed for
356 * variables/Multiple Tokens. If the keyword is not present, the arguments that
357 * would have been pushed will be substituted by NULL.
358 *
359 * A few examples:
360 * "default information originate metric-type 1 metric 1000"
361 * would yield the following arguments:
362 * { NULL, "1000", "1", NULL }
363 *
364 * "default information originate always route-map RMAP-DEFAULT"
365 * would yield the following arguments:
366 * { "always", NULL, NULL, "RMAP-DEFAULT" }
367 *
368 * helpstr
369 * =======
370 *
371 * The helpstr is used to show a short explantion for the commands that
372 * are available when the user presses '?' on the CLI. It is the concatenation
373 * of the helpstrings for all the tokens that make up the command.
374 *
375 * There should be one helpstring for each token in the cmdstr except those
376 * containing other tokens, like Multiple or Keyword Tokens. For those, there
377 * will only be the helpstrings of the contained tokens.
378 *
379 * The individual helpstrings are expected to be in the same order as their
380 * respective Tokens appear in the cmdstr. They should each be terminated with
381 * a linefeed. The last helpstring should be terminated with a linefeed as well.
382 *
383 * Care should also be taken to avoid having similar tokens with different
384 * helpstrings. Imagine e.g. the commands "show ip ospf" and "show ip bgp".
385 * they both contain a helpstring for "show", but only one will be displayed
386 * when the user enters "sh?". If those two helpstrings differ, it is not
387 * defined which one will be shown and the behavior is therefore unpredictable.
388 */
paul406d6712004-10-22 12:27:44 +0000389#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
390 DEFUN_CMD_FUNC_DECL(funcname) \
391 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
392 DEFUN_CMD_FUNC_TEXT(funcname)
393
394#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
395 DEFUN_CMD_FUNC_DECL(funcname) \
396 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
397 DEFUN_CMD_FUNC_TEXT(funcname)
398
399#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
400 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
401
402#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
hasso2557aed2004-11-28 21:16:20 +0000403 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
paul718e3742002-12-13 20:15:29 +0000404
405/* DEFUN_NOSH for commands that vtysh should ignore */
406#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
407 DEFUN(funcname, cmdname, cmdstr, helpstr)
408
409/* DEFSH for vtysh. */
410#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000411 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
paul718e3742002-12-13 20:15:29 +0000412
413/* DEFUN + DEFSH */
414#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000415 DEFUN_CMD_FUNC_DECL(funcname) \
416 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
417 DEFUN_CMD_FUNC_TEXT(funcname)
paul718e3742002-12-13 20:15:29 +0000418
ajs274a4a42004-12-07 15:39:31 +0000419/* DEFUN + DEFSH with attributes */
420#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
421 DEFUN_CMD_FUNC_DECL(funcname) \
422 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
423 DEFUN_CMD_FUNC_TEXT(funcname)
424
425#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
426 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
427
428#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
429 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
430
paul718e3742002-12-13 20:15:29 +0000431/* ALIAS macro which define existing command's alias. */
432#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000433 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
434
435#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
ajs274a4a42004-12-07 15:39:31 +0000436 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
paul406d6712004-10-22 12:27:44 +0000437
438#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
439 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
440
441#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
442 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
paul718e3742002-12-13 20:15:29 +0000443
ajs274a4a42004-12-07 15:39:31 +0000444#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
445 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
446
447#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
448 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
449
450#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
451 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
452
paul718e3742002-12-13 20:15:29 +0000453#endif /* VTYSH_EXTRACT_PL */
454
paul718e3742002-12-13 20:15:29 +0000455/* Common descriptions. */
456#define SHOW_STR "Show running system information\n"
457#define IP_STR "IP information\n"
458#define IPV6_STR "IPv6 information\n"
459#define NO_STR "Negate a command or set its defaults\n"
Paul Jakma9c42a6e2006-06-27 07:52:03 +0000460#define REDIST_STR "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +0000461#define CLEAR_STR "Reset functions\n"
462#define RIP_STR "RIP information\n"
463#define BGP_STR "BGP information\n"
464#define OSPF_STR "OSPF information\n"
465#define NEIGHBOR_STR "Specify neighbor router\n"
466#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
467#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
468#define ROUTER_STR "Enable a routing process\n"
469#define AS_STR "AS number\n"
470#define MBGP_STR "MBGP information\n"
471#define MATCH_STR "Match values from routing table\n"
472#define SET_STR "Set values in destination routing protocol\n"
473#define OUT_STR "Filter outgoing routing updates\n"
474#define IN_STR "Filter incoming routing updates\n"
475#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
476#define OSPF6_NUMBER_STR "Specify by number\n"
477#define INTERFACE_STR "Interface infomation\n"
478#define IFNAME_STR "Interface name(e.g. ep0)\n"
479#define IP6_STR "IPv6 Information\n"
480#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
481#define OSPF6_ROUTER_STR "Enable a routing process\n"
482#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
483#define SECONDS_STR "<1-65535> Seconds\n"
484#define ROUTE_STR "Routing Table\n"
485#define PREFIX_LIST_STR "Build a prefix list\n"
486#define OSPF6_DUMP_TYPE_LIST \
487"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
jardin9e867fe2003-12-23 08:56:18 +0000488#define ISIS_STR "IS-IS information\n"
489#define AREA_TAG_STR "[area tag]\n"
paul718e3742002-12-13 20:15:29 +0000490
491#define CONF_BACKUP_EXT ".sav"
492
493/* IPv4 only machine should not accept IPv6 address for peer's IP
494 address. So we replace VTY command string like below. */
495#ifdef HAVE_IPV6
496#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
497#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
498#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
499#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
500#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
501#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
502#else
503#define NEIGHBOR_CMD "neighbor A.B.C.D "
504#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
505#define NEIGHBOR_ADDR_STR "Neighbor address\n"
506#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
507#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
508#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
509#endif /* HAVE_IPV6 */
510
511/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000512extern void install_node (struct cmd_node *, int (*) (struct vty *));
513extern void install_default (enum node_type);
514extern void install_element (enum node_type, struct cmd_element *);
paul718e3742002-12-13 20:15:29 +0000515
ajsf6834d42005-01-28 20:28:35 +0000516/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
517 string with a space between each element (allocated using
518 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
paul8cc41982005-05-06 21:25:49 +0000519extern char *argv_concat (const char **argv, int argc, int shift);
ajsf6834d42005-01-28 20:28:35 +0000520
paul8cc41982005-05-06 21:25:49 +0000521extern vector cmd_make_strvec (const char *);
522extern void cmd_free_strvec (vector);
523extern vector cmd_describe_command (vector, struct vty *, int *status);
524extern char **cmd_complete_command (vector, struct vty *, int *status);
525extern const char *cmd_prompt (enum node_type);
Steve Hillea555002009-07-28 16:36:14 -0400526extern int config_from_file (struct vty *, FILE *, unsigned int *line_num);
paul8cc41982005-05-06 21:25:49 +0000527extern enum node_type node_parent (enum node_type);
528extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int);
529extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **);
paul8cc41982005-05-06 21:25:49 +0000530extern void cmd_init (int);
Chris Caputo228da422009-07-18 05:44:03 +0000531extern void cmd_terminate (void);
paul718e3742002-12-13 20:15:29 +0000532
533/* Export typical functions. */
534extern struct cmd_element config_end_cmd;
535extern struct cmd_element config_exit_cmd;
536extern struct cmd_element config_quit_cmd;
537extern struct cmd_element config_help_cmd;
538extern struct cmd_element config_list_cmd;
paul8cc41982005-05-06 21:25:49 +0000539extern char *host_config_file (void);
540extern void host_config_set (char *);
paul718e3742002-12-13 20:15:29 +0000541
paul8cc41982005-05-06 21:25:49 +0000542extern void print_version (const char *);
Paul Jakma86228fd2006-03-30 15:00:30 +0000543
544/* struct host global, ick */
545extern struct host host;
Chris Caputo228da422009-07-18 05:44:03 +0000546
547/* "<cr>" global */
548extern char *command_cr;
paul718e3742002-12-13 20:15:29 +0000549#endif /* _ZEBRA_COMMAND_H */