]> git.proxmox.com Git - mirror_frr.git/blob - ripd/rip_cli.c
ripd: retrofit the 'allow-ecmp' command to the new northbound model
[mirror_frr.git] / ripd / rip_cli.c
1 /*
2 * Copyright (C) 1997, 1998, 1999 Kunihiro Ishiguro <kunihiro@zebra.org>
3 * Copyright (C) 2018 NetDEF, Inc.
4 * Renato Westphal
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "if.h"
24 #include "vrf.h"
25 #include "log.h"
26 #include "prefix.h"
27 #include "command.h"
28 #include "northbound_cli.h"
29 #include "libfrr.h"
30
31 #include "ripd/ripd.h"
32 #include "ripd/rip_cli.h"
33 #ifndef VTYSH_EXTRACT_PL
34 #include "ripd/rip_cli_clippy.c"
35 #endif
36
37 /*
38 * XPath: /frr-ripd:ripd/instance
39 */
40 DEFPY_NOSH (router_rip,
41 router_rip_cmd,
42 "router rip",
43 "Enable a routing process\n"
44 "Routing Information Protocol (RIP)\n")
45 {
46 int ret;
47
48 struct cli_config_change changes[] = {
49 {
50 .xpath = "/frr-ripd:ripd/instance",
51 .operation = NB_OP_CREATE,
52 .value = NULL,
53 },
54 };
55
56 ret = nb_cli_cfg_change(vty, NULL, changes, array_size(changes));
57 if (ret == CMD_SUCCESS)
58 VTY_PUSH_XPATH(RIP_NODE, changes[0].xpath);
59
60 return ret;
61 }
62
63 DEFPY (no_router_rip,
64 no_router_rip_cmd,
65 "no router rip",
66 NO_STR
67 "Enable a routing process\n"
68 "Routing Information Protocol (RIP)\n")
69 {
70 struct cli_config_change changes[] = {
71 {
72 .xpath = "/frr-ripd:ripd/instance",
73 .operation = NB_OP_DELETE,
74 .value = NULL,
75 },
76 };
77
78 return nb_cli_cfg_change(vty, NULL, changes, array_size(changes));
79 }
80
81 void cli_show_router_rip(struct vty *vty, struct lyd_node *dnode,
82 bool show_defaults)
83 {
84 vty_out(vty, "!\n");
85 vty_out(vty, "router rip\n");
86 }
87
88 /*
89 * XPath: /frr-ripd:ripd/instance/allow-ecmp
90 */
91 DEFPY (rip_allow_ecmp,
92 rip_allow_ecmp_cmd,
93 "[no] allow-ecmp",
94 NO_STR
95 "Allow Equal Cost MultiPath\n")
96 {
97 struct cli_config_change changes[] = {
98 {
99 .xpath = "./allow-ecmp",
100 .operation = NB_OP_MODIFY,
101 .value = no ? "false" : "true",
102 },
103 };
104
105 return nb_cli_cfg_change(vty, NULL, changes, array_size(changes));
106 }
107
108 void cli_show_rip_allow_ecmp(struct vty *vty, struct lyd_node *dnode,
109 bool show_defaults)
110 {
111 if (!yang_dnode_get_bool(dnode, NULL))
112 vty_out(vty, " no");
113
114 vty_out(vty, " allow-ecmp\n");
115 }
116
117 void rip_cli_init(void)
118 {
119 install_element(CONFIG_NODE, &router_rip_cmd);
120 install_element(CONFIG_NODE, &no_router_rip_cmd);
121
122 install_element(RIP_NODE, &rip_allow_ecmp_cmd);
123 }