]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_vty.c
Merge remote-tracking branch 'origin/master' into EIGRP
[mirror_frr.git] / pimd / pim_vty.c
CommitLineData
12e41d03
DL
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
12e41d03
DL
19*/
20
21#include <zebra.h>
22
23#include "if.h"
24#include "linklist.h"
dfe43e25
DW
25#include "prefix.h"
26#include "vty.h"
469351b3 27#include "vrf.h"
dfe43e25 28#include "plist.h"
12e41d03
DL
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"
dedccda6 36#include "pim_pim.h"
9867746a 37#include "pim_oil.h"
f91f89bc 38#include "pim_static.h"
75a26779 39#include "pim_rp.h"
3c72d654 40#include "pim_msdp.h"
15a5dafe 41#include "pim_ssm.h"
12e41d03 42
c823065d
DS
43int
44pim_debug_config_write (struct vty *vty)
12e41d03
DL
45{
46 int writes = 0;
47
2a333e0f 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 }
977d71cc 56 if (PIM_DEBUG_MSDP_INTERNAL) {
57 vty_out(vty, "debug msdp internal%s", VTY_NEWLINE);
58 ++writes;
59 }
12e41d03
DL
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 }
c823065d
DS
72 if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
73 vty_out(vty, "debug igmp trace detail%s", VTY_NEWLINE);
74 ++writes;
75 }
12e41d03
DL
76
77 if (PIM_DEBUG_MROUTE) {
78 vty_out(vty, "debug mroute%s", VTY_NEWLINE);
79 ++writes;
80 }
81
6c7197b1
DS
82 if (PIM_DEBUG_MROUTE_DETAIL) {
83 vty_out (vty, "debug mroute detail%s", VTY_NEWLINE);
84 ++writes;
85 }
86
12e41d03
DL
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 }
c823065d 103
12e41d03
DL
104 if (PIM_DEBUG_PIM_TRACE) {
105 vty_out(vty, "debug pim trace%s", VTY_NEWLINE);
106 ++writes;
107 }
c823065d
DS
108 if (PIM_DEBUG_PIM_TRACE_DETAIL) {
109 vty_out(vty, "debug pim trace detail%s", VTY_NEWLINE);
110 ++writes;
111 }
12e41d03
DL
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
c823065d
DS
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) {
a23ee35b 129 vty_out (vty, "debug pim packets joins%s", VTY_NEWLINE);
c823065d
DS
130 ++writes;
131 }
132
9add3b88
DS
133 if (PIM_DEBUG_PIM_REG) {
134 vty_out (vty, "debug pim packets register%s", VTY_NEWLINE);
135 ++writes;
136 }
137
c823065d
DS
138 if (PIM_DEBUG_STATIC) {
139 vty_out (vty, "debug pim static%s", VTY_NEWLINE);
140 ++writes;
141 }
142
12e41d03
DL
143 return writes;
144}
145
146int pim_global_config_write(struct vty *vty)
147{
148 int writes = 0;
15a5dafe 149 struct pim_ssm *ssm = pimg->ssm_info;
12e41d03 150
3c72d654 151 writes += pim_msdp_config_write (vty);
152
71bbe73d
DS
153 if (!pimg->send_v6_secondary)
154 {
155 vty_out (vty, "no ip pim send-v6-secondary%s", VTY_NEWLINE);
156 ++writes;
157 }
158
75a26779 159 writes += pim_rp_config_write (vty);
12e41d03 160
191f5695 161 if (qpim_register_suppress_time != PIM_REGISTER_SUPPRESSION_TIME_DEFAULT)
4304f95c 162 {
191f5695
DS
163 vty_out (vty, "ip pim register-suppress-time %d%s",
164 qpim_register_suppress_time, VTY_NEWLINE);
4304f95c
DS
165 ++writes;
166 }
ee1a0718
DS
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 }
191f5695 173 if (qpim_keep_alive_time != PIM_KEEPALIVE_PERIOD)
01408ede 174 {
191f5695
DS
175 vty_out (vty, "ip pim keep-alive-timer %d%s",
176 qpim_keep_alive_time, VTY_NEWLINE);
01408ede
DS
177 ++writes;
178 }
8e4c9ef3
DS
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 }
15a5dafe 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 }
a7b2b1e2
DS
191 if (pimg->spt_switchover == PIM_SPT_INFINITY)
192 {
193 vty_out (vty, "ip pim spt-switchover infinity-and-beyond%s",
194 VTY_NEWLINE);
195 ++writes;
196 }
01408ede 197
12e41d03
DL
198 if (qpim_ssmpingd_list) {
199 struct listnode *node;
200 struct ssmpingd_sock *ss;
201 vty_out(vty, "!%s", VTY_NEWLINE);
202 ++writes;
203 for (ALL_LIST_ELEMENTS_RO(qpim_ssmpingd_list, node, ss)) {
eaa54bdb 204 char source_str[INET_ADDRSTRLEN];
12e41d03
DL
205 pim_inet4_dump("<src?>", ss->source_addr, source_str, sizeof(source_str));
206 vty_out(vty, "ip ssmpingd %s%s", source_str, VTY_NEWLINE);
207 ++writes;
208 }
209 }
210
211 return writes;
212}
213
214int pim_interface_config_write(struct vty *vty)
215{
216 int writes = 0;
217 struct listnode *node;
218 struct interface *ifp;
219
469351b3 220 for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp)) {
12e41d03
DL
221
222 /* IF name */
223 vty_out(vty, "interface %s%s", ifp->name, VTY_NEWLINE);
224 ++writes;
225
226 if (ifp->info) {
227 struct pim_interface *pim_ifp = ifp->info;
228
12e41d03 229 if (PIM_IF_TEST_PIM(pim_ifp->options)) {
d2772e7b 230 vty_out(vty, " ip pim sm%s", VTY_NEWLINE);
12e41d03
DL
231 ++writes;
232 }
233
dedccda6
DS
234 /* IF ip pim drpriority */
235 if (pim_ifp->pim_dr_priority != PIM_DEFAULT_DR_PRIORITY) {
94d95cde 236 vty_out(vty, " ip pim drpriority %u%s", pim_ifp->pim_dr_priority,
dedccda6
DS
237 VTY_NEWLINE);
238 ++writes;
239 }
240
7960fa8f
DS
241 /* IF ip pim hello */
242 if (pim_ifp->pim_hello_period != PIM_DEFAULT_HELLO_PERIOD) {
243 vty_out(vty, " ip pim hello %d", pim_ifp->pim_hello_period);
244 if (pim_ifp->pim_default_holdtime != -1)
245 vty_out(vty, " %d", pim_ifp->pim_default_holdtime);
246 vty_out(vty, "%s", VTY_NEWLINE);
247 }
248
4763cd0e 249 /* update source */
250 if (PIM_INADDR_ISNOT_ANY(pim_ifp->update_source)) {
251 char src_str[INET_ADDRSTRLEN];
252 pim_inet4_dump("<src?>", pim_ifp->update_source, src_str,
253 sizeof(src_str));
254 vty_out(vty, " ip pim use-source %s%s", src_str, VTY_NEWLINE);
255 ++writes;
256 }
257
12e41d03
DL
258 /* IF ip igmp */
259 if (PIM_IF_TEST_IGMP(pim_ifp->options)) {
260 vty_out(vty, " ip igmp%s", VTY_NEWLINE);
261 ++writes;
262 }
263
b05b72e8
DW
264 /* ip igmp version */
265 if (pim_ifp->igmp_version != IGMP_DEFAULT_VERSION)
266 {
267 vty_out(vty, " ip igmp version %d%s",
268 pim_ifp->igmp_version,
269 VTY_NEWLINE);
270 ++writes;
271 }
272
12e41d03 273 /* IF ip igmp query-interval */
6b775f61
DS
274 if (pim_ifp->igmp_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL)
275 {
199d90a1 276 vty_out(vty, " ip igmp query-interval %d%s",
6b775f61
DS
277 pim_ifp->igmp_default_query_interval,
278 VTY_NEWLINE);
279 ++writes;
280 }
12e41d03
DL
281
282 /* IF ip igmp query-max-response-time */
6b775f61
DS
283 if (pim_ifp->igmp_query_max_response_time_dsec != IGMP_QUERY_MAX_RESPONSE_TIME_DSEC)
284 {
58344b65 285 vty_out(vty, " ip igpm query-max-response-time %d%s",
6b775f61
DS
286 pim_ifp->igmp_query_max_response_time_dsec,
287 VTY_NEWLINE);
288 ++writes;
289 }
12e41d03
DL
290
291 /* IF ip igmp join */
292 if (pim_ifp->igmp_join_list) {
293 struct listnode *node;
294 struct igmp_join *ij;
295 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_join_list, node, ij)) {
eaa54bdb
DW
296 char group_str[INET_ADDRSTRLEN];
297 char source_str[INET_ADDRSTRLEN];
12e41d03 298 pim_inet4_dump("<grp?>", ij->group_addr, group_str, sizeof(group_str));
a277fb84 299 inet_ntop(AF_INET, &ij->source_addr, source_str, sizeof(source_str));
12e41d03
DL
300 vty_out(vty, " ip igmp join %s %s%s",
301 group_str, source_str,
302 VTY_NEWLINE);
303 ++writes;
304 }
305 }
f91f89bc
DS
306
307 writes += pim_static_write_mroute (vty, ifp);
12e41d03
DL
308 }
309 vty_out(vty, "!%s", VTY_NEWLINE);
310 ++writes;
311 }
312
313 return writes;
314}