blob: fd55f2d541ae7ee50ffa900c68b8a9f3d95567e5 [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. */
Lou Berger13c378d2016-01-12 13:41:56 -050085 BGP_VPNV6_NODE, /* BGP MPLS-VPN PE exchange. */
paul718e3742002-12-13 20:15:29 +000086 BGP_IPV4_NODE, /* BGP IPv4 unicast address family. */
87 BGP_IPV4M_NODE, /* BGP IPv4 multicast address family. */
88 BGP_IPV6_NODE, /* BGP IPv6 address family */
paul1e836592005-08-22 22:39:56 +000089 BGP_IPV6M_NODE, /* BGP IPv6 multicast address family. */
Lou Bergera3fda882016-01-12 13:42:04 -050090 BGP_ENCAP_NODE, /* BGP ENCAP SAFI */
91 BGP_ENCAPV6_NODE, /* BGP ENCAP SAFI */
paul718e3742002-12-13 20:15:29 +000092 OSPF_NODE, /* OSPF protocol mode */
93 OSPF6_NODE, /* OSPF protocol for IPv6 mode */
jardin9e867fe2003-12-23 08:56:18 +000094 ISIS_NODE, /* ISIS protocol mode */
Everton Marques871dbcf2009-08-11 15:43:05 -030095 PIM_NODE, /* PIM protocol mode */
paul718e3742002-12-13 20:15:29 +000096 MASC_NODE, /* MASC for multicast. */
97 IRDP_NODE, /* ICMP Router Discovery Protocol mode. */
98 IP_NODE, /* Static ip route node. */
99 ACCESS_NODE, /* Access list node. */
100 PREFIX_NODE, /* Prefix list node. */
101 ACCESS_IPV6_NODE, /* Access list node. */
102 PREFIX_IPV6_NODE, /* Prefix list node. */
103 AS_LIST_NODE, /* AS list node. */
104 COMMUNITY_LIST_NODE, /* Community list node. */
105 RMAP_NODE, /* Route map node. */
106 SMUX_NODE, /* SNMP configuration node. */
107 DUMP_NODE, /* Packet dump node. */
108 FORWARDING_NODE, /* IP forwarding node. */
Paul Jakma7514fb72007-05-02 16:05:35 +0000109 PROTOCOL_NODE, /* protocol filtering node */
Paul Jakma62687ff2008-08-23 14:27:06 +0100110 VTY_NODE, /* Vty node. */
paul718e3742002-12-13 20:15:29 +0000111};
112
113/* Node which has some commands and prompt string and configuration
114 function pointer . */
115struct cmd_node
116{
117 /* Node index. */
118 enum node_type node;
119
120 /* Prompt character at vty interface. */
hasso8c328f12004-10-05 21:01:23 +0000121 const char *prompt;
paul718e3742002-12-13 20:15:29 +0000122
123 /* Is this node's configuration goes to vtysh ? */
124 int vtysh;
125
126 /* Node's configuration write function */
127 int (*func) (struct vty *);
128
129 /* Vector of this node's command list. */
130 vector cmd_vector;
131};
132
paul406d6712004-10-22 12:27:44 +0000133enum
134{
paul9c5d8562005-03-08 15:56:42 +0000135 CMD_ATTR_DEPRECATED = 1,
paul406d6712004-10-22 12:27:44 +0000136 CMD_ATTR_HIDDEN,
137};
138
paul718e3742002-12-13 20:15:29 +0000139/* Structure of command element. */
140struct cmd_element
141{
hasso8c328f12004-10-05 21:01:23 +0000142 const char *string; /* Command specification by string. */
paul9035efa2004-10-10 11:56:56 +0000143 int (*func) (struct cmd_element *, struct vty *, int, const char *[]);
hasso8c328f12004-10-05 21:01:23 +0000144 const char *doc; /* Documentation of this command. */
paul718e3742002-12-13 20:15:29 +0000145 int daemon; /* Daemon to which this command belong. */
Christian Frankecd40b322013-09-30 12:27:51 +0000146 vector tokens; /* Vector of cmd_tokens */
paul406d6712004-10-22 12:27:44 +0000147 u_char attr; /* Command attributes */
paul718e3742002-12-13 20:15:29 +0000148};
149
Christian Frankecd40b322013-09-30 12:27:51 +0000150
151enum cmd_token_type
paul718e3742002-12-13 20:15:29 +0000152{
Christian Frankecd40b322013-09-30 12:27:51 +0000153 TOKEN_TERMINAL = 0,
154 TOKEN_MULTIPLE,
155 TOKEN_KEYWORD,
156};
157
David Lamparter10bac802015-05-05 11:10:20 +0200158enum cmd_terminal_type
159{
160 _TERMINAL_BUG = 0,
161 TERMINAL_LITERAL,
162 TERMINAL_OPTION,
163 TERMINAL_VARIABLE,
164 TERMINAL_VARARG,
165 TERMINAL_RANGE,
166 TERMINAL_IPV4,
167 TERMINAL_IPV4_PREFIX,
168 TERMINAL_IPV6,
169 TERMINAL_IPV6_PREFIX,
170};
171
David Lamparter14162932015-05-12 17:18:04 +0200172/* argument to be recorded on argv[] if it's not a literal */
173#define TERMINAL_RECORD(t) ((t) >= TERMINAL_OPTION)
174
Christian Frankecd40b322013-09-30 12:27:51 +0000175/* Command description structure. */
176struct cmd_token
177{
178 enum cmd_token_type type;
David Lamparter10bac802015-05-05 11:10:20 +0200179 enum cmd_terminal_type terminal;
Christian Frankecd40b322013-09-30 12:27:51 +0000180
181 /* Used for type == MULTIPLE */
182 vector multiple; /* vector of cmd_token, type == FINAL */
183
184 /* Used for type == KEYWORD */
185 vector keyword; /* vector of vector of cmd_tokens */
186
187 /* Used for type == TERMINAL */
Chris Caputo228da422009-07-18 05:44:03 +0000188 char *cmd; /* Command string. */
Christian Frankecd40b322013-09-30 12:27:51 +0000189 char *desc; /* Command's description. */
paul718e3742002-12-13 20:15:29 +0000190};
191
192/* Return value of the commands. */
193#define CMD_SUCCESS 0
194#define CMD_WARNING 1
195#define CMD_ERR_NO_MATCH 2
196#define CMD_ERR_AMBIGUOUS 3
197#define CMD_ERR_INCOMPLETE 4
198#define CMD_ERR_EXEED_ARGC_MAX 5
199#define CMD_ERR_NOTHING_TODO 6
200#define CMD_COMPLETE_FULL_MATCH 7
201#define CMD_COMPLETE_MATCH 8
202#define CMD_COMPLETE_LIST_MATCH 9
203#define CMD_SUCCESS_DAEMON 10
204
205/* Argc max counts. */
206#define CMD_ARGC_MAX 25
207
208/* Turn off these macros when uisng cpp with extract.pl */
209#ifndef VTYSH_EXTRACT_PL
210
paul406d6712004-10-22 12:27:44 +0000211/* helper defines for end-user DEFUN* macros */
212#define DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attrs, dnum) \
paul718e3742002-12-13 20:15:29 +0000213 struct cmd_element cmdname = \
214 { \
paul9035efa2004-10-10 11:56:56 +0000215 .string = cmdstr, \
216 .func = funcname, \
paul406d6712004-10-22 12:27:44 +0000217 .doc = helpstr, \
218 .attr = attrs, \
219 .daemon = dnum, \
220 };
221
222#define DEFUN_CMD_FUNC_DECL(funcname) \
paul34204aa2005-11-03 09:00:23 +0000223 static int funcname (struct cmd_element *, struct vty *, int, const char *[]);
paul406d6712004-10-22 12:27:44 +0000224
225#define DEFUN_CMD_FUNC_TEXT(funcname) \
ajs274a4a42004-12-07 15:39:31 +0000226 static int funcname \
Paul Jakma6cf0cf02006-03-30 14:43:17 +0000227 (struct cmd_element *self __attribute__ ((unused)), \
228 struct vty *vty __attribute__ ((unused)), \
229 int argc __attribute__ ((unused)), \
230 const char *argv[] __attribute__ ((unused)) )
paul406d6712004-10-22 12:27:44 +0000231
Christian Frankecd40b322013-09-30 12:27:51 +0000232/* DEFUN for vty command interafce. Little bit hacky ;-).
233 *
234 * DEFUN(funcname, cmdname, cmdstr, helpstr)
235 *
236 * funcname
237 * ========
238 *
239 * Name of the function that will be defined.
240 *
241 * cmdname
242 * =======
243 *
244 * Name of the struct that will be defined for the command.
245 *
246 * cmdstr
247 * ======
248 *
249 * The cmdstr defines the command syntax. It is used by the vty subsystem
250 * and vtysh to perform matching and completion in the cli. So you have to take
251 * care to construct it adhering to the following grammar. The names used
252 * for the production rules losely represent the names used in lib/command.c
253 *
254 * cmdstr = cmd_token , { " " , cmd_token } ;
255 *
256 * cmd_token = cmd_terminal
257 * | cmd_multiple
258 * | cmd_keyword ;
259 *
260 * cmd_terminal_fixed = fixed_string
261 * | variable
262 * | range
263 * | ipv4
264 * | ipv4_prefix
265 * | ipv6
266 * | ipv6_prefix ;
267 *
268 * cmd_terminal = cmd_terminal_fixed
269 * | option
270 * | vararg ;
271 *
272 * multiple_part = cmd_terminal_fixed ;
273 * cmd_multiple = "(" , multiple_part , ( "|" | { "|" , multiple_part } ) , ")" ;
274 *
275 * keyword_part = fixed_string , { " " , ( cmd_terminal_fixed | cmd_multiple ) } ;
276 * cmd_keyword = "{" , keyword_part , { "|" , keyword_part } , "}" ;
277 *
278 * lowercase = "a" | ... | "z" ;
279 * uppercase = "A" | ... | "Z" ;
280 * digit = "0" | ... | "9" ;
281 * number = digit , { digit } ;
282 *
283 * fixed_string = (lowercase | digit) , { lowercase | digit | uppercase | "-" | "_" } ;
284 * variable = uppercase , { uppercase | "_" } ;
285 * range = "<" , number , "-" , number , ">" ;
286 * ipv4 = "A.B.C.D" ;
287 * ipv4_prefix = "A.B.C.D/M" ;
288 * ipv6 = "X:X::X:X" ;
289 * ipv6_prefix = "X:X::X:X/M" ;
290 * option = "[" , variable , "]" ;
291 * vararg = "." , variable ;
292 *
293 * To put that all in a textual description: A cmdstr is a sequence of tokens,
294 * separated by spaces.
295 *
296 * Terminal Tokens:
297 *
298 * A very simple cmdstring would be something like: "show ip bgp". It consists
299 * of three Terminal Tokens, each containing a fixed string. When this command
300 * is called, no arguments will be passed down to the function implementing it,
301 * as it only consists of fixed strings.
302 *
303 * Apart from fixed strings, Terminal Tokens can also contain variables:
304 * An example would be "show ip bgp A.B.C.D". This command expects an IPv4
305 * as argument. As this is a variable, the IP address entered by the user will
306 * be passed down as an argument. Apart from two exceptions, the other options
307 * for Terminal Tokens behave exactly as we just discussed and only make a
308 * difference for the CLI. The two exceptions will be discussed in the next
309 * paragraphs.
310 *
311 * A Terminal Token can contain a so called option match. This is a simple
312 * string variable that the user may omit. An example would be:
313 * "show interface [IFNAME]". If the user calls this without an interface as
314 * argument, no arguments will be passed down to the function implementing
315 * this command. Otherwise, the interface name will be provided to the function
316 * as a regular argument.
317
318 * Also, a Terminal Token can contain a so called vararg. This is used e.g. in
319 * "show ip bgp regexp .LINE". The last token is a vararg match and will
320 * consume all the arguments the user inputs on the command line and append
321 * those to the list of arguments passed down to the function implementing this
322 * command. (Therefore, it doesn't make much sense to have any tokens after a
323 * vararg because the vararg will already consume all the words the user entered
324 * in the CLI)
325 *
326 * Multiple Tokens:
327 *
328 * The Multiple Token type can be used if there are multiple possibilities what
329 * arguments may be used for a command, but it should map to the same function
330 * nonetheless. An example would be "ip route A.B.C.D/M (reject|blackhole)"
331 * In that case both "reject" and "blackhole" would be acceptable as last
332 * arguments. The words matched by Multiple Tokens are always added to the
333 * argument list, even if they are matched by fixed strings. Such a Multiple
334 * Token can contain almost any type of token that would also be acceptable
335 * for a Terminal Token, the exception are optional variables and varag.
336 *
337 * There is one special case that is used in some places of Quagga that should be
338 * pointed out here shortly. An example would be "password (8|) WORD". This
339 * construct is used to have fixed strings communicated as arguments. (The "8"
340 * will be passed down as an argument in this case) It does not mean that
341 * the "8" is optional. Another historic and possibly surprising property of
342 * this construct is that it consumes two parts of helpstr. (Help
343 * strings will be explained later)
344 *
345 * Keyword Tokens:
346 *
347 * There are commands that take a lot of different and possibly optional arguments.
348 * An example from ospf would be the "default-information originate" command. This
349 * command takes a lot of optional arguments that may be provided in any order.
350 * To accomodate such commands, the Keyword Token has been implemented.
351 * Using the keyword token, the "default-information originate" command and all
352 * its possible options can be represented using this single cmdstr:
353 * "default-information originate \
354 * {always|metric <0-16777214>|metric-type (1|2)|route-map WORD}"
355 *
356 * Keywords always start with a fixed string and may be followed by arguments.
357 * Except optional variables and vararg, everything is permitted here.
358 *
359 * For the special case of a keyword without arguments, either NULL or the
360 * keyword itself will be pushed as an argument, depending on whether the
361 * keyword is present.
362 * For the other keywords, arguments will be only pushed for
363 * variables/Multiple Tokens. If the keyword is not present, the arguments that
364 * would have been pushed will be substituted by NULL.
365 *
366 * A few examples:
367 * "default information originate metric-type 1 metric 1000"
368 * would yield the following arguments:
369 * { NULL, "1000", "1", NULL }
370 *
371 * "default information originate always route-map RMAP-DEFAULT"
372 * would yield the following arguments:
373 * { "always", NULL, NULL, "RMAP-DEFAULT" }
374 *
375 * helpstr
376 * =======
377 *
378 * The helpstr is used to show a short explantion for the commands that
379 * are available when the user presses '?' on the CLI. It is the concatenation
380 * of the helpstrings for all the tokens that make up the command.
381 *
382 * There should be one helpstring for each token in the cmdstr except those
383 * containing other tokens, like Multiple or Keyword Tokens. For those, there
384 * will only be the helpstrings of the contained tokens.
385 *
386 * The individual helpstrings are expected to be in the same order as their
387 * respective Tokens appear in the cmdstr. They should each be terminated with
388 * a linefeed. The last helpstring should be terminated with a linefeed as well.
389 *
390 * Care should also be taken to avoid having similar tokens with different
391 * helpstrings. Imagine e.g. the commands "show ip ospf" and "show ip bgp".
392 * they both contain a helpstring for "show", but only one will be displayed
393 * when the user enters "sh?". If those two helpstrings differ, it is not
394 * defined which one will be shown and the behavior is therefore unpredictable.
395 */
paul406d6712004-10-22 12:27:44 +0000396#define DEFUN(funcname, cmdname, cmdstr, helpstr) \
397 DEFUN_CMD_FUNC_DECL(funcname) \
398 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0) \
399 DEFUN_CMD_FUNC_TEXT(funcname)
400
401#define DEFUN_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
402 DEFUN_CMD_FUNC_DECL(funcname) \
403 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0) \
404 DEFUN_CMD_FUNC_TEXT(funcname)
405
406#define DEFUN_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
407 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
408
409#define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
hasso2557aed2004-11-28 21:16:20 +0000410 DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
paul718e3742002-12-13 20:15:29 +0000411
412/* DEFUN_NOSH for commands that vtysh should ignore */
413#define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
414 DEFUN(funcname, cmdname, cmdstr, helpstr)
415
416/* DEFSH for vtysh. */
417#define DEFSH(daemon, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000418 DEFUN_CMD_ELEMENT(NULL, cmdname, cmdstr, helpstr, 0, daemon) \
paul718e3742002-12-13 20:15:29 +0000419
420/* DEFUN + DEFSH */
421#define DEFUNSH(daemon, funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000422 DEFUN_CMD_FUNC_DECL(funcname) \
423 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon) \
424 DEFUN_CMD_FUNC_TEXT(funcname)
paul718e3742002-12-13 20:15:29 +0000425
ajs274a4a42004-12-07 15:39:31 +0000426/* DEFUN + DEFSH with attributes */
427#define DEFUNSH_ATTR(daemon, funcname, cmdname, cmdstr, helpstr, attr) \
428 DEFUN_CMD_FUNC_DECL(funcname) \
429 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, daemon) \
430 DEFUN_CMD_FUNC_TEXT(funcname)
431
432#define DEFUNSH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
433 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)
434
435#define DEFUNSH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
436 DEFUNSH_ATTR (daemon, funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)
437
paul718e3742002-12-13 20:15:29 +0000438/* ALIAS macro which define existing command's alias. */
439#define ALIAS(funcname, cmdname, cmdstr, helpstr) \
paul406d6712004-10-22 12:27:44 +0000440 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, 0)
441
442#define ALIAS_ATTR(funcname, cmdname, cmdstr, helpstr, attr) \
ajs274a4a42004-12-07 15:39:31 +0000443 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, attr, 0)
paul406d6712004-10-22 12:27:44 +0000444
445#define ALIAS_HIDDEN(funcname, cmdname, cmdstr, helpstr) \
446 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, 0)
447
448#define ALIAS_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
449 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, 0)
paul718e3742002-12-13 20:15:29 +0000450
ajs274a4a42004-12-07 15:39:31 +0000451#define ALIAS_SH(daemon, funcname, cmdname, cmdstr, helpstr) \
452 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, 0, daemon)
453
454#define ALIAS_SH_HIDDEN(daemon, funcname, cmdname, cmdstr, helpstr) \
455 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN, daemon)
456
457#define ALIAS_SH_DEPRECATED(daemon, funcname, cmdname, cmdstr, helpstr) \
458 DEFUN_CMD_ELEMENT(funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED, daemon)
459
paul718e3742002-12-13 20:15:29 +0000460#endif /* VTYSH_EXTRACT_PL */
461
paul718e3742002-12-13 20:15:29 +0000462/* Common descriptions. */
463#define SHOW_STR "Show running system information\n"
464#define IP_STR "IP information\n"
465#define IPV6_STR "IPv6 information\n"
466#define NO_STR "Negate a command or set its defaults\n"
Paul Jakma9c42a6e2006-06-27 07:52:03 +0000467#define REDIST_STR "Redistribute information from another routing protocol\n"
paul718e3742002-12-13 20:15:29 +0000468#define CLEAR_STR "Reset functions\n"
469#define RIP_STR "RIP information\n"
470#define BGP_STR "BGP information\n"
471#define OSPF_STR "OSPF information\n"
472#define NEIGHBOR_STR "Specify neighbor router\n"
473#define DEBUG_STR "Debugging functions (see also 'undebug')\n"
474#define UNDEBUG_STR "Disable debugging functions (see also 'debug')\n"
475#define ROUTER_STR "Enable a routing process\n"
476#define AS_STR "AS number\n"
477#define MBGP_STR "MBGP information\n"
478#define MATCH_STR "Match values from routing table\n"
479#define SET_STR "Set values in destination routing protocol\n"
480#define OUT_STR "Filter outgoing routing updates\n"
481#define IN_STR "Filter incoming routing updates\n"
482#define V4NOTATION_STR "specify by IPv4 address notation(e.g. 0.0.0.0)\n"
483#define OSPF6_NUMBER_STR "Specify by number\n"
484#define INTERFACE_STR "Interface infomation\n"
485#define IFNAME_STR "Interface name(e.g. ep0)\n"
486#define IP6_STR "IPv6 Information\n"
487#define OSPF6_STR "Open Shortest Path First (OSPF) for IPv6\n"
488#define OSPF6_ROUTER_STR "Enable a routing process\n"
489#define OSPF6_INSTANCE_STR "<1-65535> Instance ID\n"
490#define SECONDS_STR "<1-65535> Seconds\n"
491#define ROUTE_STR "Routing Table\n"
492#define PREFIX_LIST_STR "Build a prefix list\n"
493#define OSPF6_DUMP_TYPE_LIST \
494"(neighbor|interface|area|lsa|zebra|config|dbex|spf|route|lsdb|redistribute|hook|asbr|prefix|abr)"
jardin9e867fe2003-12-23 08:56:18 +0000495#define ISIS_STR "IS-IS information\n"
496#define AREA_TAG_STR "[area tag]\n"
paul718e3742002-12-13 20:15:29 +0000497
498#define CONF_BACKUP_EXT ".sav"
499
500/* IPv4 only machine should not accept IPv6 address for peer's IP
501 address. So we replace VTY command string like below. */
502#ifdef HAVE_IPV6
503#define NEIGHBOR_CMD "neighbor (A.B.C.D|X:X::X:X) "
504#define NO_NEIGHBOR_CMD "no neighbor (A.B.C.D|X:X::X:X) "
505#define NEIGHBOR_ADDR_STR "Neighbor address\nIPv6 address\n"
506#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|X:X::X:X|WORD) "
507#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|X:X::X:X|WORD) "
508#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor IPv6 address\nNeighbor tag\n"
509#else
510#define NEIGHBOR_CMD "neighbor A.B.C.D "
511#define NO_NEIGHBOR_CMD "no neighbor A.B.C.D "
512#define NEIGHBOR_ADDR_STR "Neighbor address\n"
513#define NEIGHBOR_CMD2 "neighbor (A.B.C.D|WORD) "
514#define NO_NEIGHBOR_CMD2 "no neighbor (A.B.C.D|WORD) "
515#define NEIGHBOR_ADDR_STR2 "Neighbor address\nNeighbor tag\n"
516#endif /* HAVE_IPV6 */
517
518/* Prototypes. */
paul8cc41982005-05-06 21:25:49 +0000519extern void install_node (struct cmd_node *, int (*) (struct vty *));
520extern void install_default (enum node_type);
521extern void install_element (enum node_type, struct cmd_element *);
paul718e3742002-12-13 20:15:29 +0000522
ajsf6834d42005-01-28 20:28:35 +0000523/* Concatenates argv[shift] through argv[argc-1] into a single NUL-terminated
524 string with a space between each element (allocated using
525 XMALLOC(MTYPE_TMP)). Returns NULL if shift >= argc. */
paul8cc41982005-05-06 21:25:49 +0000526extern char *argv_concat (const char **argv, int argc, int shift);
ajsf6834d42005-01-28 20:28:35 +0000527
paul8cc41982005-05-06 21:25:49 +0000528extern vector cmd_make_strvec (const char *);
529extern void cmd_free_strvec (vector);
530extern vector cmd_describe_command (vector, struct vty *, int *status);
531extern char **cmd_complete_command (vector, struct vty *, int *status);
Lou Berger67290032016-01-12 13:41:46 -0500532extern char **cmd_complete_command_lib (vector, struct vty *, int *status, int islib);
paul8cc41982005-05-06 21:25:49 +0000533extern const char *cmd_prompt (enum node_type);
Donald Sharpd8aa4be2015-09-28 20:10:40 -0400534extern int command_config_read_one_line (struct vty *vty, struct cmd_element **, int use_config_node);
Steve Hillea555002009-07-28 16:36:14 -0400535extern int config_from_file (struct vty *, FILE *, unsigned int *line_num);
paul8cc41982005-05-06 21:25:49 +0000536extern enum node_type node_parent (enum node_type);
537extern int cmd_execute_command (vector, struct vty *, struct cmd_element **, int);
538extern int cmd_execute_command_strict (vector, struct vty *, struct cmd_element **);
paul8cc41982005-05-06 21:25:49 +0000539extern void cmd_init (int);
Chris Caputo228da422009-07-18 05:44:03 +0000540extern void cmd_terminate (void);
paul718e3742002-12-13 20:15:29 +0000541
542/* Export typical functions. */
543extern struct cmd_element config_end_cmd;
544extern struct cmd_element config_exit_cmd;
545extern struct cmd_element config_quit_cmd;
546extern struct cmd_element config_help_cmd;
547extern struct cmd_element config_list_cmd;
paul8cc41982005-05-06 21:25:49 +0000548extern char *host_config_file (void);
549extern void host_config_set (char *);
paul718e3742002-12-13 20:15:29 +0000550
paul8cc41982005-05-06 21:25:49 +0000551extern void print_version (const char *);
Paul Jakma86228fd2006-03-30 15:00:30 +0000552
553/* struct host global, ick */
554extern struct host host;
Chris Caputo228da422009-07-18 05:44:03 +0000555
556/* "<cr>" global */
557extern char *command_cr;
paul718e3742002-12-13 20:15:29 +0000558#endif /* _ZEBRA_COMMAND_H */