blob: e31e2d6e675759e240e61144ffa4ca255a1e3099 [file] [log] [blame]
Everton Marques871dbcf2009-08-11 15:43:05 -03001/*
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 $QuaggaId: $Format:%an, %ai, %h$ $
21*/
22
23#include <zebra.h>
24
25#include "if.h"
26#include "linklist.h"
27
28#include "pimd.h"
29#include "pim_vty.h"
30#include "pim_iface.h"
31#include "pim_cmd.h"
32#include "pim_str.h"
Everton Marques824adbe2009-10-08 09:16:27 -030033#include "pim_ssmpingd.h"
Donald Sharp6ae80e02015-06-18 18:14:20 -070034#include "pim_pim.h"
Everton Marques871dbcf2009-08-11 15:43:05 -030035
36int pim_debug_config_write(struct vty *vty)
37{
38 int writes = 0;
39
40 if (PIM_DEBUG_IGMP_EVENTS) {
41 vty_out(vty, "debug igmp events%s", VTY_NEWLINE);
42 ++writes;
43 }
44 if (PIM_DEBUG_IGMP_PACKETS) {
45 vty_out(vty, "debug igmp packets%s", VTY_NEWLINE);
46 ++writes;
47 }
48 if (PIM_DEBUG_IGMP_TRACE) {
49 vty_out(vty, "debug igmp trace%s", VTY_NEWLINE);
50 ++writes;
51 }
52
Everton Marques67faabc2010-02-23 12:11:11 -030053 if (PIM_DEBUG_MROUTE) {
54 vty_out(vty, "debug mroute%s", VTY_NEWLINE);
55 ++writes;
56 }
57
Everton Marques871dbcf2009-08-11 15:43:05 -030058 if (PIM_DEBUG_PIM_EVENTS) {
59 vty_out(vty, "debug pim events%s", VTY_NEWLINE);
60 ++writes;
61 }
62 if (PIM_DEBUG_PIM_PACKETS) {
63 vty_out(vty, "debug pim packets%s", VTY_NEWLINE);
64 ++writes;
65 }
Everton Marques62738042009-11-18 10:44:13 -020066 if (PIM_DEBUG_PIM_PACKETDUMP_SEND) {
67 vty_out(vty, "debug pim packet-dump send%s", VTY_NEWLINE);
68 ++writes;
69 }
70 if (PIM_DEBUG_PIM_PACKETDUMP_RECV) {
71 vty_out(vty, "debug pim packet-dump receive%s", VTY_NEWLINE);
72 ++writes;
73 }
Everton Marques871dbcf2009-08-11 15:43:05 -030074 if (PIM_DEBUG_PIM_TRACE) {
75 vty_out(vty, "debug pim trace%s", VTY_NEWLINE);
76 ++writes;
77 }
78
79 if (PIM_DEBUG_ZEBRA) {
80 vty_out(vty, "debug pim zebra%s", VTY_NEWLINE);
81 ++writes;
82 }
83
Everton Marques824adbe2009-10-08 09:16:27 -030084 if (PIM_DEBUG_SSMPINGD) {
85 vty_out(vty, "debug ssmpingd%s", VTY_NEWLINE);
86 ++writes;
87 }
88
Everton Marques871dbcf2009-08-11 15:43:05 -030089 return writes;
90}
91
92int pim_global_config_write(struct vty *vty)
93{
94 int writes = 0;
95
96 if (PIM_MROUTE_IS_ENABLED) {
97 vty_out(vty, "%s%s", PIM_CMD_IP_MULTICAST_ROUTING, VTY_NEWLINE);
98 ++writes;
99 }
100
Everton Marques824adbe2009-10-08 09:16:27 -0300101 if (qpim_ssmpingd_list) {
102 struct listnode *node;
103 struct ssmpingd_sock *ss;
104 vty_out(vty, "!%s", VTY_NEWLINE);
105 ++writes;
106 for (ALL_LIST_ELEMENTS_RO(qpim_ssmpingd_list, node, ss)) {
107 char source_str[100];
108 pim_inet4_dump("<src?>", ss->source_addr, source_str, sizeof(source_str));
109 vty_out(vty, "ip ssmpingd %s%s", source_str, VTY_NEWLINE);
110 ++writes;
111 }
112 }
113
Everton Marques871dbcf2009-08-11 15:43:05 -0300114 return writes;
115}
116
117int pim_interface_config_write(struct vty *vty)
118{
119 int writes = 0;
120 struct listnode *node;
121 struct interface *ifp;
122
123 for (ALL_LIST_ELEMENTS_RO(iflist, node, ifp)) {
124
125 /* IF name */
126 vty_out(vty, "interface %s%s", ifp->name, VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300127 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300128
129 if (ifp->info) {
130 struct pim_interface *pim_ifp = ifp->info;
131
132 /* IF ip pim ssm */
133 if (PIM_IF_TEST_PIM(pim_ifp->options)) {
134 vty_out(vty, " ip pim ssm%s", VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300135 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300136 }
137
Donald Sharp6ae80e02015-06-18 18:14:20 -0700138 /* IF ip pim drpriority */
139 if (pim_ifp->pim_dr_priority != PIM_DEFAULT_DR_PRIORITY) {
140 vty_out(vty, " ip pim drpriority %d%s", pim_ifp->pim_dr_priority,
141 VTY_NEWLINE);
142 ++writes;
143 }
144
Everton Marques871dbcf2009-08-11 15:43:05 -0300145 /* IF ip igmp */
146 if (PIM_IF_TEST_IGMP(pim_ifp->options)) {
147 vty_out(vty, " ip igmp%s", VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300148 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300149 }
150
151 /* IF ip igmp query-interval */
152 vty_out(vty, " %s %d%s",
153 PIM_CMD_IP_IGMP_QUERY_INTERVAL,
154 pim_ifp->igmp_default_query_interval,
155 VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300156 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300157
158 /* IF ip igmp query-max-response-time */
159 vty_out(vty, " %s %d%s",
160 PIM_CMD_IP_IGMP_QUERY_MAX_RESPONSE_TIME_DSEC,
161 pim_ifp->igmp_query_max_response_time_dsec,
162 VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300163 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300164
165 /* IF ip igmp join */
166 if (pim_ifp->igmp_join_list) {
167 struct listnode *node;
168 struct igmp_join *ij;
169 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_join_list, node, ij)) {
170 char group_str[100];
171 char source_str[100];
172 pim_inet4_dump("<grp?>", ij->group_addr, group_str, sizeof(group_str));
173 pim_inet4_dump("<src?>", ij->source_addr, source_str, sizeof(source_str));
174 vty_out(vty, " ip igmp join %s %s%s",
175 group_str, source_str,
176 VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300177 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300178 }
179 }
180 }
181 vty_out(vty, "!%s", VTY_NEWLINE);
Everton Marques824adbe2009-10-08 09:16:27 -0300182 ++writes;
Everton Marques871dbcf2009-08-11 15:43:05 -0300183 }
184
185 return writes;
186}