1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/* $OpenBSD: printconf.c,v 1.15 2016/05/23 16:14:37 renato Exp $ */
/*
* Copyright (c) 2004, 2005, 2008 Esben Norby <norby@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/queue.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include "ldp.h"
#include "ldpd.h"
#include "ldpe.h"
void print_mainconf(struct ldpd_conf *);
void print_iface(struct iface *);
void print_tnbr(struct tnbr *);
void print_nbrp(struct nbr_params *);
void print_l2vpn(struct l2vpn *);
void print_pw(struct l2vpn_pw *);
void
print_mainconf(struct ldpd_conf *conf)
{
printf("router-id %s\n\n", inet_ntoa(conf->rtr_id));
if (conf->flags & LDPD_FLAG_NO_FIB_UPDATE)
printf("fib-update no\n");
else
printf("fib-update yes\n");
if (conf->flags & LDPD_FLAG_TH_ACCEPT)
printf("targeted-hello-accept yes\n");
else
printf("targeted-hello-accept no\n");
printf("keepalive %u\n", conf->keepalive);
printf("transport-address %s\n", inet_ntoa(conf->trans_addr));
}
void
print_iface(struct iface *iface)
{
printf("\ninterface %s {\n", iface->name);
printf("\tlink-hello-holdtime %u\n", iface->hello_holdtime);
printf("\tlink-hello-interval %u\n", iface->hello_interval);
printf("}\n");
}
void
print_tnbr(struct tnbr *tnbr)
{
printf("\ntargeted-neighbor %s {\n", inet_ntoa(tnbr->addr));
printf("\ttargeted-hello-holdtime %u\n", tnbr->hello_holdtime);
printf("\ttargeted-hello-interval %u\n", tnbr->hello_interval);
printf("}\n");
}
void
print_nbrp(struct nbr_params *nbrp)
{
printf("\nneighbor %s {\n", inet_ntoa(nbrp->addr));
if (nbrp->flags & F_NBRP_KEEPALIVE)
printf("\tkeepalive %u\n", nbrp->keepalive);
if (nbrp->auth.method == AUTH_MD5SIG)
printf("\tpassword XXXXXX\n");
printf("}\n");
}
void
print_l2vpn(struct l2vpn *l2vpn)
{
struct l2vpn_if *lif;
struct l2vpn_pw *pw;
printf("l2vpn %s type vpls {\n", l2vpn->name);
if (l2vpn->pw_type == PW_TYPE_ETHERNET)
printf("\tpw-type ethernet\n");
else
printf("\tpw-type ethernet-tagged\n");
printf("\tmtu %u\n", l2vpn->mtu);
printf("\n");
if (l2vpn->br_ifindex != 0)
printf("\tbridge %s\n", l2vpn->br_ifname);
LIST_FOREACH(lif, &l2vpn->if_list, entry)
printf("\tinterface %s\n", lif->ifname);
LIST_FOREACH(pw, &l2vpn->pw_list, entry)
print_pw(pw);
printf("}\n");
}
void
print_pw(struct l2vpn_pw *pw)
{
printf("\tpseudowire %s {\n", pw->ifname);
if (pw->addr.s_addr != INADDR_ANY)
printf("\t\tneighbor %s\n", inet_ntoa(pw->addr));
if (pw->pwid != 0)
printf("\t\tpw-id %u\n", pw->pwid);
if (pw->flags & F_PW_STATUSTLV_CONF)
printf("\t\tstatus-tlv yes\n");
else
printf("\t\tstatus-tlv no\n");
if (pw->flags & F_PW_CWORD_CONF)
printf("\t\tcontrol-word yes\n");
else
printf("\t\tcontrol-word no\n");
printf("\t}\n");
}
void
print_config(struct ldpd_conf *conf)
{
struct iface *iface;
struct tnbr *tnbr;
struct nbr_params *nbrp;
struct l2vpn *l2vpn;
print_mainconf(conf);
printf("\n");
LIST_FOREACH(iface, &conf->iface_list, entry)
print_iface(iface);
printf("\n");
LIST_FOREACH(tnbr, &conf->tnbr_list, entry)
if (tnbr->flags & F_TNBR_CONFIGURED)
print_tnbr(tnbr);
printf("\n");
LIST_FOREACH(nbrp, &conf->nbrp_list, entry)
print_nbrp(nbrp);
printf("\n");
LIST_FOREACH(l2vpn, &conf->l2vpn_list, entry)
print_l2vpn(l2vpn);
}
|