blob: 6030069a49706c51117c43791173c4c78c38778d [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. */
Feng Lu55cfa2f2014-07-03 18:24:34 +080071 VRF_NODE, /* VRF node. */
hassoe7168df2004-10-03 20:11:32 +000072 SERVICE_NODE, /* Service node. */
paul718e3742002-12-13 20:15:29 +000073 DEBUG_NODE, /* Debug node. */
74 AAA_NODE, /* AAA node. */
75 KEYCHAIN_NODE, /* Key-chain node. */
76 KEYCHAIN_KEY_NODE, /* Key-chain key node. */
77 INTERFACE_NODE, /* Interface mode node. */
78 ZEBRA_NODE, /* zebra connection node. */
79 TABLE_NODE, /* rtm_table selection node. */
80 RIP_NODE, /* RIP protocol mode node. */
81 RIPNG_NODE, /* RIPng protocol mode node. */
Paul Jakma57345092011-12-25 17:52:09 +010082 BABEL_NODE, /* Babel protocol mode node. */
paul718e3742002-12-13 20:15:29 +000083 BGP_NODE, /* BGP protocol mode which includes BGP4+ */
84 BGP_VPNV4_NODE, /* BGP MPLS-VPN PE exchange. */
85 BGP_IPV4_NODE, /* BGP IPv4 unicast address family. */
86 BGP_IPV4M_NODE, /* BGP IPv4 multicast address family. */
87 BGP_IPV6_NODE, /* BGP IPv6 address family */
paul1e836592005-08-22 22:39:56 +000088 BGP_IPV6M_NODE, /* BGP IPv6 multicast address family. */
paul718e3742002-12-13 20:15:29 +000089 OSPF_NODE, /* OSPF protocol mode */
90 OSPF6_NODE, /* OSPF protocol for IPv6 mode */
jardin9e867fe2003-12-23 08:56:18 +000091 ISIS_NODE, /* ISIS protocol mode */
Everton Marques871dbcf2009-08-11 15:43:05 -030092 PIM_NODE, /* PIM protocol mode */
paul718e3742002-12-13 20:15:29 +000093 MASC_NODE, /* MASC for multicast. */
94 IRDP_NODE, /* ICMP Router Discovery Protocol mode. */
95 IP_NODE, /* Static ip route node. */
96 ACCESS_NODE, /* Access list node. */
97 PREFIX_NODE, /* Prefix list node. */
98 ACCESS_IPV6_NODE, /* Access list node. */
99 PREFIX_IPV6_NODE, /* Prefix list node. */
100 AS_LIST_NODE, /* AS list node. */
101 COMMUNITY_LIST_NODE, /* Community list node. */
102 RMAP_NODE, /* Route map node. */
103 SMUX_NODE, /* SNMP configuration node. */
104 DUMP_NODE, /* Packet dump node. */
105 FORWARDING_NODE, /* IP forwarding node. */
Paul Jakma7514fb72007-05-02 16:05:35 +0000106 PROTOCOL_NODE, /* protocol filtering node */
Paul Jakma62687ff2008-08-23 14:27:06 +0100107 VTY_NODE, /* Vty node. */
paul718e3742002-12-13 20:15:29 +0000108};
109
110/* Node which has some commands and prompt string and configuration
111 function pointer . */
112struct cmd_node
113{
114 /* Node index. */
115 enum node_type node;
116
117 /* Prompt character at vty interface. */
hasso8c328f12004-10-05 21:01:23 +0000118 const char *prompt;
paul718e3742002-12-13 20:15:29 +0000119
120 /* Is this node's configuration goes to vtysh ? */
121 int vtysh;
122
123 /* Node's configuration write function */
124 int (*func) (struct vty *);
125
126 /* Vector of this node's command list. */
127 vector cmd_vector;
128};
129
paul406d6712004-10-22 12:27:44 +0000130enum
131{
paul9c5d8562005-03-08 15:56:42 +0000132 CMD_ATTR_DEPRECATED = 1,
paul406d6712004-10-22 12:27:44 +0000133 CMD_ATTR_HIDDEN,
134};
135
paul718e3742002-12-13 20:15:29 +0000136/* Structure of command element. */
137struct cmd_element
138{
hasso8c328f12004-10-05 21:01:23 +0000139 const char *string; /* Command specification by string. */
paul9035efa2004-10-10 11:56:56 +0000140 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
hasso8c328f12004-10-05 21:01:23 +0000141 const char *doc; /* Documentation of this command. */
paul718e3742002-12-13 20:15:29 +0000142 int daemon; /* Daemon to which this command belong. */
Christian Frankecd40b322013-09-30 12:27:51 +0000143 vector tokens; /* Vector of cmd_tokens */
paul406d6712004-10-22 12:27:44 +0000144 u_char attr; /* Command attributes */
paul718e3742002-12-13 20:15:29 +0000145};
146
Christian Frankecd40b322013-09-30 12:27:51 +0000147
148enum cmd_token_type
paul718e3742002-12-13 20:15:29 +0000149{
Christian Frankecd40b322013-09-30 12:27:51 +0000150 TOKEN_TERMINAL = 0,
151 TOKEN_MULTIPLE,
152 TOKEN_KEYWORD,
153};
154
David Lamparter10bac802015-05-05 11:10:20 +0200155enum cmd_terminal_type
156{
157 _TERMINAL_BUG = 0,
158 TERMINAL_LITERAL,
159 TERMINAL_OPTION,
160 TERMINAL_VARIABLE,
161 TERMINAL_VARARG,
162 TERMINAL_RANGE,
163 TERMINAL_IPV4,
164 TERMINAL_IPV4_PREFIX,
165 TERMINAL_IPV6,
166 TERMINAL_IPV6_PREFIX,
167};
168
David Lamparter14162932015-05-12 17:18:04 +0200169/* argument to be recorded on argv[] if it's not a literal */
170#define TERMINAL_RECORD(t) ((t) >= TERMINAL_OPTION)
171
Christian Frankecd40b322013-09-30 12:27:51 +0000172/* Command description structure. */
173struct cmd_token
174{
175 enum cmd_token_type type;
David Lamparter10bac802015-05-05 11:10:20 +0200176 enum cmd_terminal_type terminal;
Christian Frankecd40b322013-09-30 12:27:51 +0000177
178 /* Used for type == MULTIPLE */
179 vector multiple; /* vector of cmd_token, type == FINAL */
180
181 /* Used for type == KEYWORD */
182 vector keyword; /* vector of vector of cmd_tokens */
183
184 /* Used for type == TERMINAL */
Chris Caputo228da422009-07-18 05:44:03 +0000185 char *cmd; /* Command string. */
Christian Frankecd40b322013-09-30 12:27:51 +0000186 char *desc; /* Command's description. */
paul718e3742002-12-13 20:15:29 +0000187};
188
189/* Return value of the commands. */
190#define CMD_SUCCESS 0
191#define CMD_WARNING 1
192#define CMD_ERR_NO_MATCH 2
193#define CMD_ERR_AMBIGUOUS 3
194#define CMD_ERR_INCOMPLETE 4
195#define CMD_ERR_EXEED_ARGC_MAX 5
196#define CMD_ERR_NOTHING_TODO 6
197#define CMD_COMPLETE_FULL_MATCH 7
198#define CMD_COMPLETE_MATCH 8
199#define CMD_COMPLETE_LIST_MATCH 9
200#define CMD_SUCCESS_DAEMON 10
201
202/* Argc max counts. */
203#define CMD_ARGC_MAX 25
204
205/* Turn off these macros when uisng cpp with extract.pl */
206#ifndef VTYSH_EXTRACT_PL
207
paul406d6712004-10-22 12:27:44 +0000208/* helper defines for end-user DEFUN* macros */
209#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
paul718e3742002-12-13 20:15:29 +0000210 struct cmd_element cmdname = \
211 { \
paul9035efa2004-10-10 11:56:56 +0000212 .string = cmdstr, \
213 .func = funcname, \
paul406d6712004-10-22 12:27:44 +0000214 .doc = helpstr, \
215 .attr = attrs, \
216 .daemon = dnum, \
217 };
218
219#define DEFUN_CMD_FUNC_DECL(funcname) \
paul34204aa2005-11-03 09:00:23 +0000220 static int funcname (struct cmd_element *, struct vty *, int, const char *[]);
paul406d6712004-10-22 12:27:44 +0000221
222#define DEFUN_CMD_FUNC_TEXT(funcname) \
ajs274a4a42004-12-07 15:39:31 +0000223 static int funcname \
Paul Jakma6cf0cf02006-03-30 14:43:17 +0000224 (struct cmd_element *self __attribute__ ((unused)), \
225 struct vty *vty __attribute__ ((unused)), \
226 int argc __attribute__ ((unused)), \
227 const char *argv[] __attribute__ ((unused)) )
paul406d6712004-10-22 12:27:44 +0000228
Christian Frankecd40b322013-09-30 12:27:51 +0000229/* DEFUN for vty command interafce. Little bit hacky ;-).
230 *
231 * DEFUN(funcname, cmdname, cmdstr, helpstr)
232 *
233 * funcname
234 * ========
235 *
236 * Name of the function that will be defined.
237 *
238 * cmdname
239 * =======
240 *
241 * Name of the struct that will be defined for the command.
242 *
243 * cmdstr
244 * ======
245 *
246 * The cmdstr defines the command syntax. It is used by the vty subsystem
247 * and vtysh to perform matching and completion in the cli. So you have to take
248 * care to construct it adhering to the following grammar. The names used
249 * for the production rules losely represent the names used in lib/command.c
250 *
251 * cmdstr = cmd_token , { " " , cmd_token } ;
252 *
253 * cmd_token = cmd_terminal
254 * | cmd_multiple
255 * | cmd_keyword ;
256 *
257 * cmd_terminal_fixed = fixed_string
258 * | variable
259 * | range
260 * | ipv4
261 * | ipv4_prefix
262 * | ipv6
263 * | ipv6_prefix ;
264 *
265 * cmd_terminal = cmd_terminal_fixed
266 * | option
267 * | vararg ;
268 *
269 * multiple_part = cmd_terminal_fixed ;
270 * cmd_multiple = "(" , multiple_part , ( "|" | { "|" , multiple_part } ) , ")" ;
271 *
272 * keyword_part = fixed_string , { " " , ( cmd_terminal_fixed | cmd_multiple ) } ;
273 * cmd_keyword = "{" , keyword_part , { "|" , keyword_part } , "}" ;
274 *
275 * lowercase = "a" | ... | "z" ;
276 * uppercase = "A" | ... | "Z" ;
277 * digit = "0" | ... | "9" ;
278 * number = digit , { digit } ;
279 *
280 * fixed_string = (lowercase | digit) , { lowercase | digit | uppercase | "-" | "_" } ;
281 * variable = uppercase , { uppercase | "_" } ;
282 * range = "<" , number , "-" , number , ">" ;
283 * ipv4 = "A.B.C.D" ;
284 * ipv4_prefix = "A.B.C.D/M" ;
285 * ipv6 = "X:X::X:X" ;
286 * ipv6_prefix = "X:X::X:X/M" ;
287 * option = "[" , variable , "]" ;
288 * vararg = "." , variable ;
289 *
290 * To put that all in a textual description: A cmdstr is a sequence of tokens,
291 * separated by spaces.
292 *
293 * Terminal Tokens:
294 *
295 * A very simple cmdstring would be something like: "show ip bgp". It consists
296 * of three Terminal Tokens, each containing a fixed string. When this command
297 * is called, no arguments will be passed down to the function implementing it,
298 * as it only consists of fixed strings.
299 *
300 * Apart from fixed strings, Terminal Tokens can also contain variables:
301 * An example would be "show ip bgp A.B.C.D". This command expects an IPv4
302 * as argument. As this is a variable, the IP address entered by the user will
303 * be passed down as an argument. Apart from two exceptions, the other options
304 * for Terminal Tokens behave exactly as we just discussed and only make a
305 * difference for the CLI. The two exceptions will be discussed in the next
306 * paragraphs.
307 *
308 * A Terminal Token can contain a so called option match. This is a simple
309 * string variable that the user may omit. An example would be:
310 * "show interface [IFNAME]". If the user calls this without an interface as
311 * argument, no arguments will be passed down to the function implementing
312 * this command. Otherwise, the interface name will be provided to the function
313 * as a regular argument.
314
315 * Also, a Terminal Token can contain a so called vararg. This is used e.g. in
316 * "show ip bgp regexp .LINE". The last token is a vararg match and will
317 * consume all the arguments the user inputs on the command line and append
318 * those to the list of arguments passed down to the function implementing this
319 * command. (Therefore, it doesn't make much sense to have any tokens after a
320 * vararg because the vararg will already consume all the words the user entered
321 * in the CLI)
322 *
323 * Multiple Tokens:
324 *
325 * The Multiple Token type can be used if there are multiple possibilities what
326 * arguments may be used for a command, but it should map to the same function
327 * nonetheless. An example would be "ip route A.B.C.D/M (reject|blackhole)"
328 * In that case both "reject" and "blackhole" would be acceptable as last
329 * arguments. The words matched by Multiple Tokens are always added to the
330 * argument list, even if they are matched by fixed strings. Such a Multiple
331 * Token can contain almost any type of token that would also be acceptable
332 * for a Terminal Token, the exception are optional variables and varag.
333 *
334 * There is one special case that is used in some places of Quagga that should be
335 * pointed out here shortly. An example would be "password (8|) WORD". This
336 * construct is used to have fixed strings communicated as arguments. (The "8"
337 * will be passed down as an argument in this case) It does not mean that
338 * the "8" is optional. Another historic and possibly surprising property of
339 * this construct is that it consumes two parts of helpstr. (Help
340 * strings will be explained later)
341 *
342 * Keyword Tokens:
343 *
344 * There are commands that take a lot of different and possibly optional arguments.
345 * An example from ospf would be the "default-information originate" command. This
346 * command takes a lot of optional arguments that may be provided in any order.
347 * To accomodate such commands, the Keyword Token has been implemented.
348 * Using the keyword token, the "default-information originate" command and all
349 * its possible options can be represented using this single cmdstr:
350 * "default-information originate \
351 * {always|metric <0-16777214>|metric-type (1|2)|route-map WORD}"
352 *
353 * Keywords always start with a fixed string and may be followed by arguments.
354 * Except optional variables and vararg, everything is permitted here.
355 *
356 * For the special case of a keyword without arguments, either NULL or the
357 * keyword itself will be pushed as an argument, depending on whether the
358 * keyword is present.
359 * For the other keywords, arguments will be only pushed for
360 * variables/Multiple Tokens. If the keyword is not present, the arguments that
361 * would have been pushed will be substituted by NULL.
362 *
363 * A few examples:
364 * "default information originate metric-type 1 metric 1000"
365 * would yield the following arguments:
366 * { NULL, "1000", "1", NULL }
367 *
368 * "default information originate always route-map RMAP-DEFAULT"
369 * would yield the following arguments:
370 * { "always", NULL, NULL, "RMAP-DEFAULT" }
371 *
372 * helpstr
373 * =======
374 *
375 * The helpstr is used to show a short explantion for the commands that
376 * are available when the user presses '?' on the CLI. It is the concatenation
377 * of the helpstrings for all the tokens that make up the command.
378 *
379 * There should be one helpstring for each token in the cmdstr except those
380 * containing other tokens, like Multiple or Keyword Tokens. For those, there
381 * will only be the helpstrings of the contained tokens.
382 *
383 * The individual helpstrings are expected to be in the same order as their
384 * respective Tokens appear in the cmdstr. They should each be terminated with
385 * a linefeed. The last helpstring should be terminated with a linefeed as well.
386 *
387 * Care should also be taken to avoid having similar tokens with different
388 * helpstrings. Imagine e.g. the commands "show ip ospf" and "show ip bgp".
389 * they both contain a helpstring for "show", but only one will be displayed
390 * when the user enters "sh?". If those two helpstrings differ, it is not
391 * defined which one will be shown and the behavior is therefore unpredictable.
392 */
paul406d6712004-10-22 12:27:44 +0000393#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
394 DEFUN_CMD_FUNC_DECL(funcname) \
395 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
396 DEFUN_CMD_FUNC_TEXT(funcname)
397
398#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
399 DEFUN_CMD_FUNC_DECL(funcname) \
400 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
401 DEFUN_CMD_FUNC_TEXT(funcname)
402
403#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
404 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
405
406#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
hasso2557aed2004-11-28 21:16:20 +0000407 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
paul718e3742002-12-13 20:15:29 +0000408
409/* DEFUN_NOSH for commands that vtysh should ignore */
410#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
411 DEFUN(funcname, cmdname, cmdstr, helpstr)
412
413/* DEFSH for vtysh. */
414#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000415 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
paul718e3742002-12-13 20:15:29 +0000416
417/* DEFUN + DEFSH */
418#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000419 DEFUN_CMD_FUNC_DECL(funcname) \
420 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
421 DEFUN_CMD_FUNC_TEXT(funcname)
paul718e3742002-12-13 20:15:29 +0000422
ajs274a4a42004-12-07 15:39:31 +0000423/* DEFUN + DEFSH with attributes */
424#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
425 DEFUN_CMD_FUNC_DECL(funcname) \
426 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
427 DEFUN_CMD_FUNC_TEXT(funcname)
428
429#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
430 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
431
432#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
433 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
434
paul718e3742002-12-13 20:15:29 +0000435/* ALIAS macro which define existing command's alias. */
436#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000437 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
438
439#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
ajs274a4a42004-12-07 15:39:31 +0000440 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
paul406d6712004-10-22 12:27:44 +0000441
442#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
443 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
444
445#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
446 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
paul718e3742002-12-13 20:15:29 +0000447
ajs274a4a42004-12-07 15:39:31 +0000448#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
449 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
450
451#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
452 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
453
454#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
455 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
456
paul718e3742002-12-13 20:15:29 +0000457#endif /* VTYSH_EXTRACT_PL */
458
paul718e3742002-12-13 20:15:29 +0000459/* Common descriptions. */
460#define SHOW_STR "Show running system information\n"
461#define IP_STR "IP information\n"
462#define IPV6_STR "IPv6 information\n"
463#define NO_STR "Negate a command or set its defaults\n"
Paul Jakma9c42a6e2006-06-27 07:52:03 +0000464#define REDIST_STR "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +0000465#define CLEAR_STR "Reset functions\n"
466#define RIP_STR "RIP information\n"
467#define BGP_STR "BGP information\n"
468#define OSPF_STR "OSPF information\n"
469#define NEIGHBOR_STR "Specify neighbor router\n"
470#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
471#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
472#define ROUTER_STR "Enable a routing process\n"
473#define AS_STR "AS number\n"
474#define MBGP_STR "MBGP information\n"
475#define MATCH_STR "Match values from routing table\n"
476#define SET_STR "Set values in destination routing protocol\n"
477#define OUT_STR "Filter outgoing routing updates\n"
478#define IN_STR "Filter incoming routing updates\n"
479#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
480#define OSPF6_NUMBER_STR "Specify by number\n"
481#define INTERFACE_STR "Interface infomation\n"
482#define IFNAME_STR "Interface name(e.g. ep0)\n"
483#define IP6_STR "IPv6 Information\n"
484#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
485#define OSPF6_ROUTER_STR "Enable a routing process\n"
486#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
487#define SECONDS_STR "<1-65535> Seconds\n"
488#define ROUTE_STR "Routing Table\n"
489#define PREFIX_LIST_STR "Build a prefix list\n"
490#define OSPF6_DUMP_TYPE_LIST \
491"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
jardin9e867fe2003-12-23 08:56:18 +0000492#define ISIS_STR "IS-IS information\n"
493#define AREA_TAG_STR "[area tag]\n"
paul718e3742002-12-13 20:15:29 +0000494
495#define CONF_BACKUP_EXT ".sav"
496
497/* IPv4 only machine should not accept IPv6 address for peer's IP
498 address. So we replace VTY command string like below. */
499#ifdef HAVE_IPV6
500#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
501#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
502#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
503#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
504#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
505#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
506#else
507#define NEIGHBOR_CMD "neighbor A.B.C.D "
508#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
509#define NEIGHBOR_ADDR_STR "Neighbor address\n"
510#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
511#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
512#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
513#endif /* HAVE_IPV6 */
514
515/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000516extern void install_node (struct cmd_node *, int (*) (struct vty *));
517extern void install_default (enum node_type);
518extern void install_element (enum node_type, struct cmd_element *);
paul718e3742002-12-13 20:15:29 +0000519
ajsf6834d42005-01-28 20:28:35 +0000520/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
521 string with a space between each element (allocated using
522 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
paul8cc41982005-05-06 21:25:49 +0000523extern char *argv_concat (const char **argv, int argc, int shift);
ajsf6834d42005-01-28 20:28:35 +0000524
paul8cc41982005-05-06 21:25:49 +0000525extern vector cmd_make_strvec (const char *);
526extern void cmd_free_strvec (vector);
527extern vector cmd_describe_command (vector, struct vty *, int *status);
528extern char **cmd_complete_command (vector, struct vty *, int *status);
529extern const char *cmd_prompt (enum node_type);
Donald Sharpd8aa4be2015-09-28 20:10:40 -0400530extern int command_config_read_one_line (struct vty *vty, struct cmd_element **, int use_config_node);
Steve Hillea555002009-07-28 16:36:14 -0400531extern int config_from_file (struct vty *, FILE *, unsigned int *line_num);
paul8cc41982005-05-06 21:25:49 +0000532extern enum node_type node_parent (enum node_type);
533extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int);
534extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **);
paul8cc41982005-05-06 21:25:49 +0000535extern void cmd_init (int);
Chris Caputo228da422009-07-18 05:44:03 +0000536extern void cmd_terminate (void);
paul718e3742002-12-13 20:15:29 +0000537
538/* Export typical functions. */
539extern struct cmd_element config_end_cmd;
540extern struct cmd_element config_exit_cmd;
541extern struct cmd_element config_quit_cmd;
542extern struct cmd_element config_help_cmd;
543extern struct cmd_element config_list_cmd;
paul8cc41982005-05-06 21:25:49 +0000544extern char *host_config_file (void);
545extern void host_config_set (char *);
paul718e3742002-12-13 20:15:29 +0000546
paul8cc41982005-05-06 21:25:49 +0000547extern void print_version (const char *);
Paul Jakma86228fd2006-03-30 15:00:30 +0000548
549/* struct host global, ick */
550extern struct host host;
Chris Caputo228da422009-07-18 05:44:03 +0000551
552/* "<cr>" global */
553extern char *command_cr;
paul718e3742002-12-13 20:15:29 +0000554#endif /* _ZEBRA_COMMAND_H */