]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_vty.c
2d502d9aa901b8c9317e856a8fb0316008897e2d
[mirror_frr.git] / pimd / pim_vty.c
1 /*
2 PIM for Quagga
3 Copyright (C) 2008 Everton da Silva Marques
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING; if not, write to the
17 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
18 MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "if.h"
24 #include "linklist.h"
25 #include "prefix.h"
26 #include "vty.h"
27 #include "vrf.h"
28 #include "plist.h"
29
30 #include "pimd.h"
31 #include "pim_vty.h"
32 #include "pim_iface.h"
33 #include "pim_cmd.h"
34 #include "pim_str.h"
35 #include "pim_ssmpingd.h"
36 #include "pim_pim.h"
37 #include "pim_oil.h"
38 #include "pim_static.h"
39 #include "pim_rp.h"
40 #include "pim_msdp.h"
41 #include "pim_ssm.h"
42
43 int
44 pim_debug_config_write (struct vty *vty)
45 {
46 int writes = 0;
47
48 if (PIM_DEBUG_MSDP_EVENTS) {
49 vty_out(vty, "debug msdp events%s", VTY_NEWLINE);
50 ++writes;
51 }
52 if (PIM_DEBUG_MSDP_PACKETS) {
53 vty_out(vty, "debug msdp packets%s", VTY_NEWLINE);
54 ++writes;
55 }
56 if (PIM_DEBUG_MSDP_INTERNAL) {
57 vty_out(vty, "debug msdp internal%s", VTY_NEWLINE);
58 ++writes;
59 }
60 if (PIM_DEBUG_IGMP_EVENTS) {
61 vty_out(vty, "debug igmp events%s", VTY_NEWLINE);
62 ++writes;
63 }
64 if (PIM_DEBUG_IGMP_PACKETS) {
65 vty_out(vty, "debug igmp packets%s", VTY_NEWLINE);
66 ++writes;
67 }
68 if (PIM_DEBUG_IGMP_TRACE) {
69 vty_out(vty, "debug igmp trace%s", VTY_NEWLINE);
70 ++writes;
71 }
72 if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
73 vty_out(vty, "debug igmp trace detail%s", VTY_NEWLINE);
74 ++writes;
75 }
76
77 if (PIM_DEBUG_MROUTE) {
78 vty_out(vty, "debug mroute%s", VTY_NEWLINE);
79 ++writes;
80 }
81
82 if (PIM_DEBUG_MROUTE_DETAIL) {
83 vty_out (vty, "debug mroute detail%s", VTY_NEWLINE);
84 ++writes;
85 }
86
87 if (PIM_DEBUG_PIM_EVENTS) {
88 vty_out(vty, "debug pim events%s", VTY_NEWLINE);
89 ++writes;
90 }
91 if (PIM_DEBUG_PIM_PACKETS) {
92 vty_out(vty, "debug pim packets%s", VTY_NEWLINE);
93 ++writes;
94 }
95 if (PIM_DEBUG_PIM_PACKETDUMP_SEND) {
96 vty_out(vty, "debug pim packet-dump send%s", VTY_NEWLINE);
97 ++writes;
98 }
99 if (PIM_DEBUG_PIM_PACKETDUMP_RECV) {
100 vty_out(vty, "debug pim packet-dump receive%s", VTY_NEWLINE);
101 ++writes;
102 }
103
104 if (PIM_DEBUG_PIM_TRACE) {
105 vty_out(vty, "debug pim trace%s", VTY_NEWLINE);
106 ++writes;
107 }
108 if (PIM_DEBUG_PIM_TRACE_DETAIL) {
109 vty_out(vty, "debug pim trace detail%s", VTY_NEWLINE);
110 ++writes;
111 }
112
113 if (PIM_DEBUG_ZEBRA) {
114 vty_out(vty, "debug pim zebra%s", VTY_NEWLINE);
115 ++writes;
116 }
117
118 if (PIM_DEBUG_SSMPINGD) {
119 vty_out(vty, "debug ssmpingd%s", VTY_NEWLINE);
120 ++writes;
121 }
122
123 if (PIM_DEBUG_PIM_HELLO) {
124 vty_out (vty, "debug pim packets hello%s", VTY_NEWLINE);
125 ++writes;
126 }
127
128 if (PIM_DEBUG_PIM_J_P) {
129 vty_out (vty, "debug pim packets joins%s", VTY_NEWLINE);
130 ++writes;
131 }
132
133 if (PIM_DEBUG_PIM_REG) {
134 vty_out (vty, "debug pim packets register%s", VTY_NEWLINE);
135 ++writes;
136 }
137
138 if (PIM_DEBUG_STATIC) {
139 vty_out (vty, "debug pim static%s", VTY_NEWLINE);
140 ++writes;
141 }
142
143 return writes;
144 }
145
146 int pim_global_config_write(struct vty *vty)
147 {
148 int writes = 0;
149 struct pim_ssm *ssm = pimg->ssm_info;
150
151 writes += pim_msdp_config_write (vty);
152
153 if (!pimg->send_v6_secondary)
154 {
155 vty_out (vty, "no ip pim send-v6-secondary%s", VTY_NEWLINE);
156 ++writes;
157 }
158
159 writes += pim_rp_config_write (vty);
160
161 if (qpim_register_suppress_time != PIM_REGISTER_SUPPRESSION_TIME_DEFAULT)
162 {
163 vty_out (vty, "ip pim register-suppress-time %d%s",
164 qpim_register_suppress_time, VTY_NEWLINE);
165 ++writes;
166 }
167 if (qpim_t_periodic != PIM_DEFAULT_T_PERIODIC)
168 {
169 vty_out (vty, "ip pim join-prune-interval %d%s",
170 qpim_t_periodic, VTY_NEWLINE);
171 ++writes;
172 }
173 if (qpim_keep_alive_time != PIM_KEEPALIVE_PERIOD)
174 {
175 vty_out (vty, "ip pim keep-alive-timer %d%s",
176 qpim_keep_alive_time, VTY_NEWLINE);
177 ++writes;
178 }
179 if (qpim_packet_process != PIM_DEFAULT_PACKET_PROCESS)
180 {
181 vty_out (vty, "ip pim packets %d%s",
182 qpim_packet_process, VTY_NEWLINE);
183 ++writes;
184 }
185 if (ssm->plist_name)
186 {
187 vty_out (vty, "ip pim ssm prefix-list %s%s",
188 ssm->plist_name, VTY_NEWLINE);
189 ++writes;
190 }
191 if (pimg->spt.switchover == PIM_SPT_INFINITY)
192 {
193 if (pimg->spt.plist)
194 vty_out (vty, "ip pim spt-switchover infinity-and-beyond prefix-list %s%s",
195 pimg->spt.plist, VTY_NEWLINE);
196 else
197 vty_out (vty, "ip pim spt-switchover infinity-and-beyond%s",
198 VTY_NEWLINE);
199 ++writes;
200 }
201 if (qpim_ecmp_rebalance_enable)
202 {
203 vty_out (vty, "ip pim ecmp rebalance%s", VTY_NEWLINE);
204 ++writes;
205 }
206 else if (qpim_ecmp_enable)
207 {
208 vty_out (vty, "ip pim ecmp%s", VTY_NEWLINE);
209 ++writes;
210 }
211 if (qpim_ssmpingd_list) {
212 struct listnode *node;
213 struct ssmpingd_sock *ss;
214 vty_out(vty, "!%s", VTY_NEWLINE);
215 ++writes;
216 for (ALL_LIST_ELEMENTS_RO(qpim_ssmpingd_list, node, ss)) {
217 char source_str[INET_ADDRSTRLEN];
218 pim_inet4_dump("<src?>", ss->source_addr, source_str, sizeof(source_str));
219 vty_out(vty, "ip ssmpingd %s%s", source_str, VTY_NEWLINE);
220 ++writes;
221 }
222 }
223
224 return writes;
225 }
226
227 int pim_interface_config_write(struct vty *vty)
228 {
229 int writes = 0;
230 struct listnode *node;
231 struct interface *ifp;
232
233 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp)) {
234
235 /* IF name */
236 vty_out(vty, "interface %s%s", ifp->name, VTY_NEWLINE);
237 ++writes;
238
239 if (ifp->info) {
240 struct pim_interface *pim_ifp = ifp->info;
241
242 if (PIM_IF_TEST_PIM(pim_ifp->options)) {
243 vty_out(vty, " ip pim sm%s", VTY_NEWLINE);
244 ++writes;
245 }
246
247 /* IF ip pim drpriority */
248 if (pim_ifp->pim_dr_priority != PIM_DEFAULT_DR_PRIORITY) {
249 vty_out(vty, " ip pim drpriority %u%s", pim_ifp->pim_dr_priority,
250 VTY_NEWLINE);
251 ++writes;
252 }
253
254 /* IF ip pim hello */
255 if (pim_ifp->pim_hello_period != PIM_DEFAULT_HELLO_PERIOD) {
256 vty_out(vty, " ip pim hello %d", pim_ifp->pim_hello_period);
257 if (pim_ifp->pim_default_holdtime != -1)
258 vty_out(vty, " %d", pim_ifp->pim_default_holdtime);
259 vty_out(vty, "%s", VTY_NEWLINE);
260 }
261
262 /* update source */
263 if (PIM_INADDR_ISNOT_ANY(pim_ifp->update_source)) {
264 char src_str[INET_ADDRSTRLEN];
265 pim_inet4_dump("<src?>", pim_ifp->update_source, src_str,
266 sizeof(src_str));
267 vty_out(vty, " ip pim use-source %s%s", src_str, VTY_NEWLINE);
268 ++writes;
269 }
270
271 /* IF ip igmp */
272 if (PIM_IF_TEST_IGMP(pim_ifp->options)) {
273 vty_out(vty, " ip igmp%s", VTY_NEWLINE);
274 ++writes;
275 }
276
277 /* ip igmp version */
278 if (pim_ifp->igmp_version != IGMP_DEFAULT_VERSION)
279 {
280 vty_out(vty, " ip igmp version %d%s",
281 pim_ifp->igmp_version,
282 VTY_NEWLINE);
283 ++writes;
284 }
285
286 /* IF ip igmp query-interval */
287 if (pim_ifp->igmp_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL)
288 {
289 vty_out(vty, " ip igmp query-interval %d%s",
290 pim_ifp->igmp_default_query_interval,
291 VTY_NEWLINE);
292 ++writes;
293 }
294
295 /* IF ip igmp query-max-response-time */
296 if (pim_ifp->igmp_query_max_response_time_dsec != IGMP_QUERY_MAX_RESPONSE_TIME_DSEC)
297 {
298 vty_out(vty, " ip igpm query-max-response-time %d%s",
299 pim_ifp->igmp_query_max_response_time_dsec,
300 VTY_NEWLINE);
301 ++writes;
302 }
303
304 /* IF ip igmp join */
305 if (pim_ifp->igmp_join_list) {
306 struct listnode *node;
307 struct igmp_join *ij;
308 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_join_list, node, ij)) {
309 char group_str[INET_ADDRSTRLEN];
310 char source_str[INET_ADDRSTRLEN];
311 pim_inet4_dump("<grp?>", ij->group_addr, group_str, sizeof(group_str));
312 inet_ntop(AF_INET, &ij->source_addr, source_str, sizeof(source_str));
313 vty_out(vty, " ip igmp join %s %s%s",
314 group_str, source_str,
315 VTY_NEWLINE);
316 ++writes;
317 }
318 }
319
320 writes += pim_static_write_mroute (vty, ifp);
321 }
322 vty_out(vty, "!%s", VTY_NEWLINE);
323 ++writes;
324 }
325
326 return writes;
327 }