*: use vty_outln

Saves 400 lines

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
Quentin Young 2017-06-21 03:10:57 +00:00
parent 4d5f445750
commit 96ade3ed77
121 changed files with 4170 additions and 4538 deletions

View File

@ -290,8 +290,8 @@ DEFUN (babel_network,
ret = babel_enable_if_add (argv[1]->arg);
if (ret < 0) {
vty_out (vty, "There is same network configuration %s%s", argv[1]->arg,
VTY_NEWLINE);
vty_outln (vty, "There is same network configuration %s",
argv[1]->arg);
return CMD_WARNING;
}
@ -318,8 +318,7 @@ DEFUN (no_babel_network,
ret = babel_enable_if_delete (argv[2]->arg);
if (ret < 0) {
vty_out (vty, "can't find network %s%s", argv[2]->arg,
VTY_NEWLINE);
vty_outln (vty, "can't find network %s",argv[2]->arg);
return CMD_WARNING;
}
@ -862,30 +861,31 @@ show_babel_interface_sub (struct vty *vty, struct interface *ifp)
int is_up;
babel_interface_nfo *babel_ifp;
vty_out (vty, "%s is %s%s", ifp->name,
((is_up = if_is_operative(ifp)) ? "up" : "down"), VTY_NEWLINE);
vty_out (vty, " ifindex %u, MTU %u bytes %s%s",
ifp->ifindex, MIN(ifp->mtu, ifp->mtu6), if_flag_dump(ifp->flags), VTY_NEWLINE);
vty_outln (vty, "%s is %s", ifp->name,
((is_up = if_is_operative(ifp)) ? "up" : "down"));
vty_outln (vty, " ifindex %u, MTU %u bytes %s",
ifp->ifindex, MIN(ifp->mtu, ifp->mtu6), if_flag_dump(ifp->flags));
if (!IS_ENABLE(ifp))
{
vty_out (vty, " Babel protocol is not enabled on this interface%s", VTY_NEWLINE);
vty_outln (vty, " Babel protocol is not enabled on this interface");
return;
}
if (!is_up)
{
vty_out (vty, " Babel protocol is enabled, but not running on this interface%s", VTY_NEWLINE);
vty_outln (vty,
" Babel protocol is enabled, but not running on this interface");
return;
}
babel_ifp = babel_get_if_nfo (ifp);
vty_out (vty, " Babel protocol is running on this interface%s", VTY_NEWLINE);
vty_out (vty, " Operating mode is \"%s\"%s",
CHECK_FLAG (babel_ifp->flags, BABEL_IF_WIRED) ? "wired" : "wireless", VTY_NEWLINE);
vty_out (vty, " Split horizon mode is %s%s",
CHECK_FLAG (babel_ifp->flags, BABEL_IF_SPLIT_HORIZON) ? "On" : "Off", VTY_NEWLINE);
vty_out (vty, " Hello interval is %u ms%s", babel_ifp->hello_interval, VTY_NEWLINE);
vty_out (vty, " Update interval is %u ms%s", babel_ifp->update_interval, VTY_NEWLINE);
vty_out (vty, " Rxcost multiplier is %u%s", babel_ifp->cost, VTY_NEWLINE);
vty_outln (vty, " Babel protocol is running on this interface");
vty_outln (vty, " Operating mode is \"%s\"",
CHECK_FLAG(babel_ifp->flags, BABEL_IF_WIRED) ? "wired" : "wireless");
vty_outln (vty, " Split horizon mode is %s",
CHECK_FLAG(babel_ifp->flags, BABEL_IF_SPLIT_HORIZON) ? "On" : "Off");
vty_outln (vty, " Hello interval is %u ms", babel_ifp->hello_interval);
vty_outln (vty, " Update interval is %u ms", babel_ifp->update_interval);
vty_outln (vty, " Rxcost multiplier is %u", babel_ifp->cost);
}
DEFUN (show_babel_interface,
@ -907,7 +907,7 @@ DEFUN (show_babel_interface,
}
if ((ifp = if_lookup_by_name (argv[3]->arg, VRF_DEFAULT)) == NULL)
{
vty_out (vty, "No such interface name%s", VTY_NEWLINE);
vty_outln (vty, "No such interface name");
return CMD_WARNING;
}
show_babel_interface_sub (vty, ifp);
@ -917,9 +917,9 @@ DEFUN (show_babel_interface,
static void
show_babel_neighbour_sub (struct vty *vty, struct neighbour *neigh)
{
vty_out (vty,
vty_outln (vty,
"Neighbour %s dev %s reach %04x rxcost %d txcost %d "
"rtt %s rttcost %d%s.%s",
"rtt %s rttcost %d%s.",
format_address(neigh->address),
neigh->ifp->name,
neigh->reach,
@ -927,8 +927,7 @@ show_babel_neighbour_sub (struct vty *vty, struct neighbour *neigh)
neigh->txcost,
format_thousands(neigh->rtt),
neighbour_rttcost(neigh),
if_up(neigh->ifp) ? "" : " (down)",
VTY_NEWLINE);
if_up(neigh->ifp) ? "" : " (down)");
}
DEFUN (show_babel_neighbour,
@ -950,7 +949,7 @@ DEFUN (show_babel_neighbour,
}
if ((ifp = if_lookup_by_name (argv[3]->arg, VRF_DEFAULT)) == NULL)
{
vty_out (vty, "No such interface name%s", VTY_NEWLINE);
vty_outln (vty, "No such interface name");
return CMD_WARNING;
}
FOR_ALL_NEIGHBOURS(neigh) {
@ -1010,9 +1009,9 @@ show_babel_routes_sub(struct babel_route *route, struct vty *vty,
channels[0] = '\0';
}
vty_out(vty,
vty_outln (vty,
"%s metric %d refmetric %d id %s seqno %d%s age %d "
"via %s neigh %s%s%s%s%s",
"via %s neigh %s%s%s%s",
format_prefix(route->src->prefix, route->src->plen),
route_metric(route), route->refmetric,
format_eui64(route->src->id),
@ -1023,9 +1022,7 @@ show_babel_routes_sub(struct babel_route *route, struct vty *vty,
format_address(route->neigh->address),
nexthop ? " nexthop " : "",
nexthop ? format_address(nexthop) : "",
route->installed ? " (installed)" :
route_feasible(route) ? " (feasible)" : "",
VTY_NEWLINE);
route->installed ? " (installed)" : route_feasible(route) ? " (feasible)" : "");
}
static void
@ -1035,10 +1032,9 @@ show_babel_xroutes_sub (struct xroute *xroute, struct vty *vty,
if(prefix && !babel_prefix_eq(prefix, xroute->prefix, xroute->plen))
return;
vty_out(vty, "%s metric %d (exported)%s",
vty_outln (vty, "%s metric %d (exported)",
format_prefix(xroute->prefix, xroute->plen),
xroute->metric,
VTY_NEWLINE);
xroute->metric);
}
DEFUN (show_babel_route,
@ -1093,7 +1089,7 @@ DEFUN (show_babel_route_prefix,
ret = str2prefix(argv[3]->arg, &prefix);
if(ret == 0) {
vty_out (vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return CMD_WARNING;
}
@ -1142,7 +1138,7 @@ DEFUN (show_babel_route_addr,
ret = inet_aton (argv[3]->arg, &addr);
if (ret <= 0) {
vty_out (vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return CMD_WARNING;
}
@ -1151,7 +1147,7 @@ DEFUN (show_babel_route_addr,
ret = str2prefix(buf, &prefix);
if (ret == 0) {
vty_out (vty, "%% Parse error -- this shouldn't happen%s", VTY_NEWLINE);
vty_outln (vty, "%% Parse error -- this shouldn't happen");
return CMD_WARNING;
}
@ -1200,7 +1196,7 @@ DEFUN (show_babel_route_addr6,
ret = inet_pton (AF_INET6, argv[3]->arg, &addr);
if (ret <= 0) {
vty_out (vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return CMD_WARNING;
}
@ -1210,7 +1206,7 @@ DEFUN (show_babel_route_addr6,
ret = str2prefix(buf, &prefix);
if (ret == 0) {
vty_out (vty, "%% Parse error -- this shouldn't happen%s", VTY_NEWLINE);
vty_outln (vty, "%% Parse error -- this shouldn't happen");
return CMD_WARNING;
}
@ -1248,9 +1244,9 @@ DEFUN (show_babel_parameters,
"Babel information\n"
"Configuration information\n")
{
vty_out(vty, " -- Babel running configuration --%s", VTY_NEWLINE);
vty_outln (vty, " -- Babel running configuration --");
show_babel_main_configuration(vty);
vty_out(vty, " -- distribution lists --%s", VTY_NEWLINE);
vty_outln (vty, " -- distribution lists --");
config_show_distribute(vty);
return CMD_SUCCESS;
@ -1325,65 +1321,63 @@ interface_config_write (struct vty *vty)
int write = 0;
for (ALL_LIST_ELEMENTS_RO (vrf_iflist(VRF_DEFAULT), node, ifp)) {
vty_out (vty, "interface %s%s", ifp->name,
VTY_NEWLINE);
vty_outln (vty, "interface %s",ifp->name);
if (ifp->desc)
vty_out (vty, " description %s%s", ifp->desc,
VTY_NEWLINE);
vty_outln (vty, " description %s",ifp->desc);
babel_interface_nfo *babel_ifp = babel_get_if_nfo (ifp);
/* wireless is the default*/
if (CHECK_FLAG (babel_ifp->flags, BABEL_IF_WIRED))
{
vty_out (vty, " babel wired%s", VTY_NEWLINE);
vty_outln (vty, " babel wired");
write++;
}
if (babel_ifp->hello_interval != BABEL_DEFAULT_HELLO_INTERVAL)
{
vty_out (vty, " babel hello-interval %u%s", babel_ifp->hello_interval, VTY_NEWLINE);
vty_outln (vty, " babel hello-interval %u",
babel_ifp->hello_interval);
write++;
}
if (babel_ifp->update_interval != BABEL_DEFAULT_UPDATE_INTERVAL)
{
vty_out (vty, " babel update-interval %u%s", babel_ifp->update_interval, VTY_NEWLINE);
vty_outln (vty, " babel update-interval %u",
babel_ifp->update_interval);
write++;
}
/* Some parameters have different defaults for wired/wireless. */
if (CHECK_FLAG (babel_ifp->flags, BABEL_IF_WIRED)) {
if (!CHECK_FLAG (babel_ifp->flags, BABEL_IF_SPLIT_HORIZON)) {
vty_out (vty, " no babel split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " no babel split-horizon");
write++;
}
if (babel_ifp->cost != BABEL_DEFAULT_RXCOST_WIRED) {
vty_out (vty, " babel rxcost %u%s", babel_ifp->cost, VTY_NEWLINE);
vty_outln (vty, " babel rxcost %u", babel_ifp->cost);
write++;
}
if (babel_ifp->channel == BABEL_IF_CHANNEL_INTERFERING) {
vty_out (vty, " babel channel interfering%s", VTY_NEWLINE);
vty_outln (vty, " babel channel interfering");
write++;
} else if(babel_ifp->channel != BABEL_IF_CHANNEL_NONINTERFERING) {
vty_out (vty, " babel channel %d%s", babel_ifp->channel,
VTY_NEWLINE);
vty_outln (vty, " babel channel %d",babel_ifp->channel);
write++;
}
} else {
if (CHECK_FLAG (babel_ifp->flags, BABEL_IF_SPLIT_HORIZON)) {
vty_out (vty, " babel split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " babel split-horizon");
write++;
}
if (babel_ifp->cost != BABEL_DEFAULT_RXCOST_WIRELESS) {
vty_out (vty, " babel rxcost %u%s", babel_ifp->cost, VTY_NEWLINE);
vty_outln (vty, " babel rxcost %u", babel_ifp->cost);
write++;
}
if (babel_ifp->channel == BABEL_IF_CHANNEL_NONINTERFERING) {
vty_out (vty, " babel channel noninterfering%s", VTY_NEWLINE);
vty_outln (vty, " babel channel noninterfering");
write++;
} else if(babel_ifp->channel != BABEL_IF_CHANNEL_INTERFERING) {
vty_out (vty, " babel channel %d%s", babel_ifp->channel,
VTY_NEWLINE);
vty_outln (vty, " babel channel %d",babel_ifp->channel);
write++;
}
}
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
write++;
}
return write;
@ -1399,7 +1393,7 @@ babel_enable_if_config_write (struct vty * vty)
for (i = 0; i < vector_active (babel_enable_if); i++)
if ((str = vector_slot (babel_enable_if, i)) != NULL)
{
vty_out (vty, " network %s%s", str, VTY_NEWLINE);
vty_outln (vty, " network %s", str);
lines++;
}
return lines;

View File

@ -377,7 +377,7 @@ babel_save_state_file(void)
void
show_babel_main_configuration (struct vty *vty)
{
vty_out(vty,
vty_outln (vty,
"state file = %s%s"
"configuration file = %s%s"
"protocol informations:%s"
@ -386,7 +386,7 @@ show_babel_main_configuration (struct vty *vty)
"vty address = %s%s"
"vty port = %d%s"
"id = %s%s"
"kernel_metric = %d%s",
"kernel_metric = %d",
state_file, VTY_NEWLINE,
babel_config_file ? babel_config_file : babel_config_default,
VTY_NEWLINE,
@ -397,5 +397,5 @@ show_babel_main_configuration (struct vty *vty)
VTY_NEWLINE,
babel_vty_port, VTY_NEWLINE,
format_eui64(myid), VTY_NEWLINE,
kernel_metric, VTY_NEWLINE);
kernel_metric);
}

View File

@ -222,7 +222,7 @@ DEFUN (babel_redistribute_type,
type = babel_proto_redistnum(argv[1]->arg);
if (type < 0) {
vty_out(vty, "Invalid type %s%s", argv[1]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[1]->arg);
return CMD_WARNING;
}
@ -243,7 +243,7 @@ DEFUN (no_babel_redistribute_type,
type = babel_proto_redistnum(argv[2]->arg);
if (type < 0) {
vty_out(vty, "Invalid type %s%s", argv[2]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[2]->arg);
return CMD_WARNING;
}
@ -277,7 +277,7 @@ DEFUN (debug_babel,
}
}
vty_out(vty, "Invalid type %s%s", argv[2]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[2]->arg);
return CMD_WARNING;
}
@ -307,7 +307,7 @@ DEFUN (no_debug_babel,
}
}
vty_out(vty, "Invalid type %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[3]->arg);
return CMD_WARNING;
}
@ -324,7 +324,7 @@ debug_babel_config_write (struct vty * vty)
if (debug == BABEL_DEBUG_ALL)
{
vty_out (vty, "debug babel all%s", VTY_NEWLINE);
vty_outln (vty, "debug babel all");
lines++;
}
else
@ -335,12 +335,12 @@ debug_babel_config_write (struct vty * vty)
&& CHECK_FLAG (debug, debug_type[i].type)
)
{
vty_out (vty, "debug babel %s%s", debug_type[i].str, VTY_NEWLINE);
vty_outln (vty, "debug babel %s", debug_type[i].str);
lines++;
}
if (lines)
{
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
lines++;
}
return lines;
@ -384,13 +384,13 @@ zebra_config_write (struct vty *vty)
{
if (! zclient->enable)
{
vty_out (vty, "no router zebra%s", VTY_NEWLINE);
vty_outln (vty, "no router zebra");
return 1;
}
else if (! vrf_bitmap_check (zclient->redist[AFI_IP][ZEBRA_ROUTE_BABEL], VRF_DEFAULT))
{
vty_out (vty, "router zebra%s", VTY_NEWLINE);
vty_out (vty, " no redistribute babel%s", VTY_NEWLINE);
vty_outln (vty, "router zebra");
vty_outln (vty, " no redistribute babel");
return 1;
}
return 0;

View File

@ -83,27 +83,26 @@ babel_config_write (struct vty *vty)
if (!babel_routing_process)
return lines;
vty_out (vty, "router babel%s", VTY_NEWLINE);
vty_outln (vty, "router babel");
if (diversity_kind != DIVERSITY_NONE)
{
vty_out (vty, " babel diversity%s", VTY_NEWLINE);
vty_outln (vty, " babel diversity");
lines++;
}
if (diversity_factor != BABEL_DEFAULT_DIVERSITY_FACTOR)
{
vty_out (vty, " babel diversity-factor %d%s", diversity_factor,
VTY_NEWLINE);
vty_outln (vty, " babel diversity-factor %d",diversity_factor);
lines++;
}
if (resend_delay != BABEL_DEFAULT_RESEND_DELAY)
{
vty_out (vty, " babel resend-delay %u%s", resend_delay, VTY_NEWLINE);
vty_outln (vty, " babel resend-delay %u", resend_delay);
lines++;
}
if (smoothing_half_life != BABEL_DEFAULT_SMOOTHING_HALF_LIFE)
{
vty_out (vty, " babel smoothing-half-life %u%s",
smoothing_half_life, VTY_NEWLINE);
vty_outln (vty, " babel smoothing-half-life %u",
smoothing_half_life);
lines++;
}
/* list enabled interfaces */
@ -113,7 +112,7 @@ babel_config_write (struct vty *vty)
if (i != zclient->redist_default &&
vrf_bitmap_check (zclient->redist[AFI_IP][i], VRF_DEFAULT))
{
vty_out (vty, " redistribute %s%s", zebra_route_string (i), VTY_NEWLINE);
vty_outln (vty, " redistribute %s", zebra_route_string(i));
lines++;
}

View File

@ -2176,7 +2176,7 @@ aspath_show_all_iterator (struct hash_backet *backet, struct vty *vty)
as = (struct aspath *) backet->data;
vty_out (vty, "[%p:%u] (%ld) ", (void *)backet, backet->key, as->refcnt);
vty_out (vty, "%s%s", as->str, VTY_NEWLINE);
vty_outln (vty, "%s", as->str);
}
/* Print all aspath and hash information. This function is used from

View File

@ -791,8 +791,8 @@ attr_show_all_iterator (struct hash_backet *backet, struct vty *vty)
{
struct attr *attr = backet->data;
vty_out (vty, "attr[%ld] nexthop %s%s", attr->refcnt,
inet_ntoa (attr->nexthop), VTY_NEWLINE);
vty_outln (vty, "attr[%ld] nexthop %s", attr->refcnt,
inet_ntoa(attr->nexthop));
}
void

View File

@ -526,18 +526,17 @@ bgp_bfd_peer_config_write(struct vty *vty, struct peer *peer, char *addr)
bfd_info = (struct bfd_info *)peer->bfd_info;
if (CHECK_FLAG (bfd_info->flags, BFD_FLAG_PARAM_CFG))
vty_out (vty, " neighbor %s bfd %d %d %d%s", addr,
vty_outln (vty, " neighbor %s bfd %d %d %d", addr,
bfd_info->detect_mult, bfd_info->required_min_rx,
bfd_info->desired_min_tx, VTY_NEWLINE);
bfd_info->desired_min_tx);
if (bfd_info->type != BFD_TYPE_NOT_CONFIGURED)
vty_out (vty, " neighbor %s bfd %s%s", addr,
(bfd_info->type == BFD_TYPE_MULTIHOP) ? "multihop" : "singlehop",
VTY_NEWLINE);
vty_outln (vty, " neighbor %s bfd %s", addr,
(bfd_info->type == BFD_TYPE_MULTIHOP) ? "multihop" : "singlehop");
if (!CHECK_FLAG (bfd_info->flags, BFD_FLAG_PARAM_CFG) &&
(bfd_info->type == BFD_TYPE_NOT_CONFIGURED))
vty_out (vty, " neighbor %s bfd%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s bfd", addr);
}
/*

View File

@ -525,21 +525,19 @@ bgp_config_write_damp (struct vty *vty)
&& bgp_damp_cfg.reuse_limit == DEFAULT_REUSE
&& bgp_damp_cfg.suppress_value == DEFAULT_SUPPRESS
&& bgp_damp_cfg.max_suppress_time == bgp_damp_cfg.half_life*4)
vty_out (vty, " bgp dampening%s", VTY_NEWLINE);
vty_outln (vty, " bgp dampening");
else if (bgp_damp_cfg.half_life != DEFAULT_HALF_LIFE*60
&& bgp_damp_cfg.reuse_limit == DEFAULT_REUSE
&& bgp_damp_cfg.suppress_value == DEFAULT_SUPPRESS
&& bgp_damp_cfg.max_suppress_time == bgp_damp_cfg.half_life*4)
vty_out (vty, " bgp dampening %lld%s",
bgp_damp_cfg.half_life/60LL,
VTY_NEWLINE);
vty_outln (vty, " bgp dampening %lld",
bgp_damp_cfg.half_life / 60LL);
else
vty_out (vty, " bgp dampening %lld %d %d %lld%s",
vty_outln (vty, " bgp dampening %lld %d %d %lld",
bgp_damp_cfg.half_life/60LL,
bgp_damp_cfg.reuse_limit,
bgp_damp_cfg.suppress_value,
bgp_damp_cfg.max_suppress_time/60LL,
VTY_NEWLINE);
bgp_damp_cfg.max_suppress_time / 60LL);
}
static const char *
@ -654,7 +652,7 @@ bgp_damp_info_vty (struct vty *vty, struct bgp_info *binfo,
vty_out (vty, ", reuse in %s",
bgp_get_reuse_time (penalty, timebuf, BGP_UPTIME_LEN, 0, json_path));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
@ -693,27 +691,27 @@ bgp_show_dampening_parameters (struct vty *vty, afi_t afi, safi_t safi)
if (bgp == NULL)
{
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
if (CHECK_FLAG (bgp->af_flags[afi][safi], BGP_CONFIG_DAMPENING))
{
vty_out (vty, "Half-life time: %lld min%s",
(long long)damp->half_life / 60, VTY_NEWLINE);
vty_out (vty, "Reuse penalty: %d%s",
damp->reuse_limit, VTY_NEWLINE);
vty_out (vty, "Suppress penalty: %d%s",
damp->suppress_value, VTY_NEWLINE);
vty_out (vty, "Max suppress time: %lld min%s",
(long long)damp->max_suppress_time / 60, VTY_NEWLINE);
vty_out (vty, "Max supress penalty: %u%s",
damp->ceiling, VTY_NEWLINE);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "Half-life time: %lld min",
(long long)damp->half_life / 60);
vty_outln (vty, "Reuse penalty: %d",
damp->reuse_limit);
vty_outln (vty, "Suppress penalty: %d",
damp->suppress_value);
vty_outln (vty, "Max suppress time: %lld min",
(long long)damp->max_suppress_time / 60);
vty_outln (vty, "Max supress penalty: %u",
damp->ceiling);
vty_outln (vty, "");
}
else
vty_out (vty, "dampening not enabled for %s%s",
afi == AFI_IP ? "IPv4" : "IPv6", VTY_NEWLINE);
vty_outln (vty, "dampening not enabled for %s",
afi == AFI_IP ? "IPv4" : "IPv6");
return CMD_SUCCESS;
}

View File

@ -254,7 +254,7 @@ bgp_debug_list_print (struct vty *vty, const char *desc, struct list *list)
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* Print the command to enable the debug for each peer/prefix this debug is
@ -274,16 +274,16 @@ bgp_debug_list_conf_print (struct vty *vty, const char *desc, struct list *list)
{
if (filter->host)
{
vty_out (vty, "%s %s%s", desc, filter->host, VTY_NEWLINE);
vty_outln (vty, "%s %s", desc, filter->host);
write++;
}
if (filter->p)
{
vty_out (vty, "%s %s/%d%s", desc,
vty_outln (vty, "%s %s/%d", desc,
inet_ntop (filter->p->family, &filter->p->u.prefix, buf, INET6_ADDRSTRLEN),
filter->p->prefixlen, VTY_NEWLINE);
filter->p->prefixlen);
write++;
}
}
@ -291,7 +291,7 @@ bgp_debug_list_conf_print (struct vty *vty, const char *desc, struct list *list)
if (!write)
{
vty_out (vty, "%s%s", desc, VTY_NEWLINE);
vty_outln (vty, "%s", desc);
write++;
}
@ -583,7 +583,7 @@ DEFUN (debug_bgp_as4,
else
{
TERM_DEBUG_ON (as4, AS4);
vty_out (vty, "BGP as4 debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP as4 debugging is on");
}
return CMD_SUCCESS;
}
@ -601,7 +601,7 @@ DEFUN (no_debug_bgp_as4,
else
{
TERM_DEBUG_OFF (as4, AS4);
vty_out (vty, "BGP as4 debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP as4 debugging is off");
}
return CMD_SUCCESS;
}
@ -619,7 +619,7 @@ DEFUN (debug_bgp_as4_segment,
else
{
TERM_DEBUG_ON (as4, AS4_SEGMENT);
vty_out (vty, "BGP as4 segment debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP as4 segment debugging is on");
}
return CMD_SUCCESS;
}
@ -638,7 +638,7 @@ DEFUN (no_debug_bgp_as4_segment,
else
{
TERM_DEBUG_OFF (as4, AS4_SEGMENT);
vty_out (vty, "BGP as4 segment debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP as4 segment debugging is off");
}
return CMD_SUCCESS;
}
@ -658,7 +658,7 @@ DEFUN (debug_bgp_neighbor_events,
else
{
TERM_DEBUG_ON (neighbor_events, NEIGHBOR_EVENTS);
vty_out (vty, "BGP neighbor-events debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging is on");
}
return CMD_SUCCESS;
}
@ -681,7 +681,8 @@ DEFUN (debug_bgp_neighbor_events_peer,
if (bgp_debug_list_has_entry(bgp_debug_neighbor_events_peers, host, NULL))
{
vty_out (vty, "BGP neighbor-events debugging is already enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging is already enabled for %s",
host);
return CMD_SUCCESS;
}
@ -692,7 +693,7 @@ DEFUN (debug_bgp_neighbor_events_peer,
else
{
TERM_DEBUG_ON (neighbor_events, NEIGHBOR_EVENTS);
vty_out (vty, "BGP neighbor-events debugging is on for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging is on for %s", host);
}
return CMD_SUCCESS;
}
@ -712,7 +713,7 @@ DEFUN (no_debug_bgp_neighbor_events,
else
{
TERM_DEBUG_OFF (neighbor_events, NEIGHBOR_EVENTS);
vty_out (vty, "BGP neighbor-events debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging is off");
}
return CMD_SUCCESS;
}
@ -746,9 +747,10 @@ DEFUN (no_debug_bgp_neighbor_events_peer,
}
if (found_peer)
vty_out (vty, "BGP neighbor-events debugging is off for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging is off for %s", host);
else
vty_out (vty, "BGP neighbor-events debugging was not enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP neighbor-events debugging was not enabled for %s",
host);
return CMD_SUCCESS;
}
@ -766,7 +768,7 @@ DEFUN (debug_bgp_nht,
else
{
TERM_DEBUG_ON (nht, NHT);
vty_out (vty, "BGP nexthop tracking debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP nexthop tracking debugging is on");
}
return CMD_SUCCESS;
}
@ -784,7 +786,7 @@ DEFUN (no_debug_bgp_nht,
else
{
TERM_DEBUG_OFF (nht, NHT);
vty_out (vty, "BGP nexthop tracking debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP nexthop tracking debugging is off");
}
return CMD_SUCCESS;
}
@ -804,7 +806,7 @@ DEFUN (debug_bgp_keepalive,
else
{
TERM_DEBUG_ON (keepalive, KEEPALIVE);
vty_out (vty, "BGP keepalives debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP keepalives debugging is on");
}
return CMD_SUCCESS;
}
@ -827,7 +829,8 @@ DEFUN (debug_bgp_keepalive_peer,
if (bgp_debug_list_has_entry(bgp_debug_keepalive_peers, host, NULL))
{
vty_out (vty, "BGP keepalive debugging is already enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP keepalive debugging is already enabled for %s",
host);
return CMD_SUCCESS;
}
@ -838,7 +841,7 @@ DEFUN (debug_bgp_keepalive_peer,
else
{
TERM_DEBUG_ON (keepalive, KEEPALIVE);
vty_out (vty, "BGP keepalives debugging is on for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP keepalives debugging is on for %s", host);
}
return CMD_SUCCESS;
}
@ -858,7 +861,7 @@ DEFUN (no_debug_bgp_keepalive,
else
{
TERM_DEBUG_OFF (keepalive, KEEPALIVE);
vty_out (vty, "BGP keepalives debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP keepalives debugging is off");
}
return CMD_SUCCESS;
}
@ -892,9 +895,9 @@ DEFUN (no_debug_bgp_keepalive_peer,
}
if (found_peer)
vty_out (vty, "BGP keepalives debugging is off for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP keepalives debugging is off for %s", host);
else
vty_out (vty, "BGP keepalives debugging was not enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP keepalives debugging was not enabled for %s", host);
return CMD_SUCCESS;
}
@ -919,7 +922,7 @@ DEFPY (debug_bgp_bestpath_prefix,
if (bgp_debug_list_has_entry(bgp_debug_bestpath_prefixes, NULL, bestpath))
{
vty_out (vty, "BGP bestpath debugging is already enabled for %s%s", bestpath_str, VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging is already enabled for %s", bestpath_str);
return CMD_SUCCESS;
}
@ -932,7 +935,7 @@ DEFPY (debug_bgp_bestpath_prefix,
else
{
TERM_DEBUG_ON (bestpath, BESTPATH);
vty_out (vty, "BGP bestpath debugging is on for %s%s", bestpath_str, VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging is on for %s", bestpath_str);
}
return CMD_SUCCESS;
@ -959,7 +962,7 @@ DEFUN (no_debug_bgp_bestpath_prefix,
if (!ret)
{
prefix_free(argv_p);
vty_out (vty, "%% Malformed Prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Prefix");
return CMD_WARNING;
}
@ -976,15 +979,17 @@ DEFUN (no_debug_bgp_bestpath_prefix,
else
{
TERM_DEBUG_OFF (bestpath, BESTPATH);
vty_out (vty, "BGP bestpath debugging (per prefix) is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging (per prefix) is off");
}
}
}
if (found_prefix)
vty_out (vty, "BGP bestpath debugging is off for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging is off for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
else
vty_out (vty, "BGP bestpath debugging was not enabled for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging was not enabled for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
return CMD_SUCCESS;
}
@ -1004,7 +1009,7 @@ DEFUN (no_debug_bgp_bestpath,
else
{
TERM_DEBUG_OFF (bestpath, BESTPATH);
vty_out (vty, "BGP bestpath debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP bestpath debugging is off");
}
return CMD_SUCCESS;
}
@ -1030,7 +1035,7 @@ DEFUN (debug_bgp_update,
{
TERM_DEBUG_ON (update, UPDATE_IN);
TERM_DEBUG_ON (update, UPDATE_OUT);
vty_out (vty, "BGP updates debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on");
}
return CMD_SUCCESS;
}
@ -1063,12 +1068,12 @@ DEFUN (debug_bgp_update_direct,
if (strncmp ("i", argv[idx_in_out]->arg, 1) == 0)
{
TERM_DEBUG_ON (update, UPDATE_IN);
vty_out (vty, "BGP updates debugging is on (inbound)%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on (inbound)");
}
else
{
TERM_DEBUG_ON (update, UPDATE_OUT);
vty_out (vty, "BGP updates debugging is on (outbound)%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on (outbound)");
}
}
return CMD_SUCCESS;
@ -1106,7 +1111,8 @@ DEFUN (debug_bgp_update_direct_peer,
{
if (bgp_debug_list_has_entry(bgp_debug_update_in_peers, host, NULL))
{
vty_out (vty, "BGP inbound update debugging is already enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP inbound update debugging is already enabled for %s",
host);
return CMD_SUCCESS;
}
}
@ -1115,7 +1121,8 @@ DEFUN (debug_bgp_update_direct_peer,
{
if (bgp_debug_list_has_entry(bgp_debug_update_out_peers, host, NULL))
{
vty_out (vty, "BGP outbound update debugging is already enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP outbound update debugging is already enabled for %s",
host);
return CMD_SUCCESS;
}
}
@ -1159,12 +1166,14 @@ DEFUN (debug_bgp_update_direct_peer,
if (inbound)
{
TERM_DEBUG_ON (update, UPDATE_IN);
vty_out (vty, "BGP updates debugging is on (inbound) for %s%s", argv[idx_peer]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on (inbound) for %s",
argv[idx_peer]->arg);
}
else
{
TERM_DEBUG_ON (update, UPDATE_OUT);
vty_out (vty, "BGP updates debugging is on (outbound) for %s%s", argv[idx_peer]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on (outbound) for %s",
argv[idx_peer]->arg);
}
}
return CMD_SUCCESS;
@ -1192,7 +1201,7 @@ DEFUN (no_debug_bgp_update_direct,
else
{
TERM_DEBUG_OFF (update, UPDATE_IN);
vty_out (vty, "BGP updates debugging is off (inbound)%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is off (inbound)");
}
}
else
@ -1206,7 +1215,7 @@ DEFUN (no_debug_bgp_update_direct,
else
{
TERM_DEBUG_OFF (update, UPDATE_OUT);
vty_out (vty, "BGP updates debugging is off (outbound)%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is off (outbound)");
}
}
@ -1249,7 +1258,7 @@ DEFUN (no_debug_bgp_update_direct_peer,
else
{
TERM_DEBUG_OFF (update, UPDATE_IN);
vty_out (vty, "BGP updates debugging (inbound) is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (inbound) is off");
}
}
}
@ -1266,7 +1275,7 @@ DEFUN (no_debug_bgp_update_direct_peer,
else
{
TERM_DEBUG_OFF (update, UPDATE_OUT);
vty_out (vty, "BGP updates debugging (outbound) is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (outbound) is off");
}
}
@ -1293,14 +1302,17 @@ DEFUN (no_debug_bgp_update_direct_peer,
if (found_peer)
if (inbound)
vty_out (vty, "BGP updates debugging (inbound) is off for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (inbound) is off for %s", host);
else
vty_out (vty, "BGP updates debugging (outbound) is off for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (outbound) is off for %s",
host);
else
if (inbound)
vty_out (vty, "BGP updates debugging (inbound) was not enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (inbound) was not enabled for %s",
host);
else
vty_out (vty, "BGP updates debugging (outbound) was not enabled for %s%s", host, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (outbound) was not enabled for %s",
host);
return CMD_SUCCESS;
}
@ -1325,7 +1337,7 @@ DEFUN (debug_bgp_update_prefix,
if (!ret)
{
prefix_free(argv_p);
vty_out (vty, "%% Malformed Prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Prefix");
return CMD_WARNING;
}
@ -1335,7 +1347,8 @@ DEFUN (debug_bgp_update_prefix,
if (bgp_debug_list_has_entry(bgp_debug_update_prefixes, NULL, argv_p))
{
vty_out (vty, "BGP updates debugging is already enabled for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is already enabled for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
return CMD_SUCCESS;
}
@ -1348,7 +1361,8 @@ DEFUN (debug_bgp_update_prefix,
else
{
TERM_DEBUG_ON (update, UPDATE_PREFIX);
vty_out (vty, "BGP updates debugging is on for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is on for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
}
return CMD_SUCCESS;
@ -1376,7 +1390,7 @@ DEFUN (no_debug_bgp_update_prefix,
if (!ret)
{
prefix_free(argv_p);
vty_out (vty, "%% Malformed Prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Prefix");
return CMD_WARNING;
}
@ -1393,15 +1407,17 @@ DEFUN (no_debug_bgp_update_prefix,
else
{
TERM_DEBUG_OFF (update, UPDATE_PREFIX);
vty_out (vty, "BGP updates debugging (per prefix) is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging (per prefix) is off");
}
}
}
if (found_prefix)
vty_out (vty, "BGP updates debugging is off for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is off for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
else
vty_out (vty, "BGP updates debugging was not enabled for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging was not enabled for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
return CMD_SUCCESS;
}
@ -1432,7 +1448,7 @@ DEFUN (no_debug_bgp_update,
TERM_DEBUG_OFF (update, UPDATE_IN);
TERM_DEBUG_OFF (update, UPDATE_OUT);
TERM_DEBUG_OFF (update, UPDATE_PREFIX);
vty_out (vty, "BGP updates debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP updates debugging is off");
}
return CMD_SUCCESS;
}
@ -1450,7 +1466,7 @@ DEFUN (debug_bgp_zebra,
else
{
TERM_DEBUG_ON (zebra, ZEBRA);
vty_out (vty, "BGP zebra debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is on");
}
return CMD_SUCCESS;
}
@ -1475,7 +1491,7 @@ DEFUN (debug_bgp_zebra_prefix,
if (!ret)
{
prefix_free(argv_p);
vty_out (vty, "%% Malformed Prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Prefix");
return CMD_WARNING;
}
@ -1484,7 +1500,8 @@ DEFUN (debug_bgp_zebra_prefix,
if (bgp_debug_list_has_entry(bgp_debug_zebra_prefixes, NULL, argv_p))
{
vty_out (vty, "BGP zebra debugging is already enabled for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is already enabled for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
return CMD_SUCCESS;
}
@ -1495,7 +1512,8 @@ DEFUN (debug_bgp_zebra_prefix,
else
{
TERM_DEBUG_ON (zebra, ZEBRA);
vty_out (vty, "BGP zebra debugging is on for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is on for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
}
return CMD_SUCCESS;
@ -1516,7 +1534,7 @@ DEFUN (no_debug_bgp_zebra,
else
{
TERM_DEBUG_OFF (zebra, ZEBRA);
vty_out (vty, "BGP zebra debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is off");
}
return CMD_SUCCESS;
}
@ -1543,7 +1561,7 @@ DEFUN (no_debug_bgp_zebra_prefix,
if (!ret)
{
prefix_free(argv_p);
vty_out (vty, "%% Malformed Prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Prefix");
return CMD_WARNING;
}
@ -1558,15 +1576,17 @@ DEFUN (no_debug_bgp_zebra_prefix,
else
{
TERM_DEBUG_OFF (zebra, ZEBRA);
vty_out (vty, "BGP zebra debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is off");
}
}
}
if (found_prefix)
vty_out (vty, "BGP zebra debugging is off for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging is off for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
else
vty_out (vty, "BGP zebra debugging was not enabled for %s%s", argv[idx_ipv4_ipv6_prefixlen]->arg, VTY_NEWLINE);
vty_outln (vty, "BGP zebra debugging was not enabled for %s",
argv[idx_ipv4_ipv6_prefixlen]->arg);
return CMD_SUCCESS;
}
@ -1583,7 +1603,7 @@ DEFUN (debug_bgp_allow_martians,
else
{
TERM_DEBUG_ON (allow_martians, ALLOW_MARTIANS);
vty_out (vty, "BGP allow_martian next hop debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP allow_martian next hop debugging is on");
}
return CMD_SUCCESS;
}
@ -1601,7 +1621,7 @@ DEFUN (no_debug_bgp_allow_martians,
else
{
TERM_DEBUG_OFF (allow_martians, ALLOW_MARTIANS);
vty_out (vty, "BGP allow martian next hop debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP allow martian next hop debugging is off");
}
return CMD_SUCCESS;
}
@ -1620,7 +1640,7 @@ DEFUN (debug_bgp_update_groups,
else
{
TERM_DEBUG_ON (update_groups, UPDATE_GROUPS);
vty_out (vty, "BGP update-groups debugging is on%s", VTY_NEWLINE);
vty_outln (vty, "BGP update-groups debugging is on");
}
return CMD_SUCCESS;
}
@ -1638,7 +1658,7 @@ DEFUN (no_debug_bgp_update_groups,
else
{
TERM_DEBUG_OFF (update_groups, UPDATE_GROUPS);
vty_out (vty, "BGP update-groups debugging is off%s", VTY_NEWLINE);
vty_outln (vty, "BGP update-groups debugging is off");
}
return CMD_SUCCESS;
}
@ -1671,7 +1691,7 @@ DEFUN (no_debug_bgp,
TERM_DEBUG_OFF (neighbor_events, NEIGHBOR_EVENTS);
TERM_DEBUG_OFF (zebra, ZEBRA);
TERM_DEBUG_OFF (allow_martians, ALLOW_MARTIANS);
vty_out (vty, "All possible debugging has been turned off%s", VTY_NEWLINE);
vty_outln (vty, "All possible debugging has been turned off");
return CMD_SUCCESS;
}
@ -1683,13 +1703,13 @@ DEFUN (show_debugging_bgp,
DEBUG_STR
BGP_STR)
{
vty_out (vty, "BGP debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "BGP debugging status:");
if (BGP_DEBUG (as4, AS4))
vty_out (vty, " BGP as4 debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " BGP as4 debugging is on");
if (BGP_DEBUG (as4, AS4_SEGMENT))
vty_out (vty, " BGP as4 aspath segment debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " BGP as4 aspath segment debugging is on");
if (BGP_DEBUG (bestpath, BESTPATH))
bgp_debug_list_print (vty, " BGP bestpath debugging is on",
@ -1704,10 +1724,10 @@ DEFUN (show_debugging_bgp,
bgp_debug_neighbor_events_peers);
if (BGP_DEBUG (nht, NHT))
vty_out (vty, " BGP next-hop tracking debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " BGP next-hop tracking debugging is on");
if (BGP_DEBUG (update_groups, UPDATE_GROUPS))
vty_out (vty, " BGP update-groups debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " BGP update-groups debugging is on");
if (BGP_DEBUG (update, UPDATE_PREFIX))
bgp_debug_list_print (vty, " BGP updates debugging is on",
@ -1726,8 +1746,8 @@ DEFUN (show_debugging_bgp,
bgp_debug_zebra_prefixes);
if (BGP_DEBUG (allow_martians, ALLOW_MARTIANS))
vty_out (vty, " BGP allow martian next hop debugging is on%s", VTY_NEWLINE);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, " BGP allow martian next hop debugging is on");
vty_outln (vty, "");
return CMD_SUCCESS;
}
@ -1782,13 +1802,13 @@ bgp_config_write_debug (struct vty *vty)
if (CONF_BGP_DEBUG (as4, AS4))
{
vty_out (vty, "debug bgp as4%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp as4");
write++;
}
if (CONF_BGP_DEBUG (as4, AS4_SEGMENT))
{
vty_out (vty, "debug bgp as4 segment%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp as4 segment");
write++;
}
@ -1812,13 +1832,13 @@ bgp_config_write_debug (struct vty *vty)
if (CONF_BGP_DEBUG (nht, NHT))
{
vty_out (vty, "debug bgp nht%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp nht");
write++;
}
if (CONF_BGP_DEBUG (update_groups, UPDATE_GROUPS))
{
vty_out (vty, "debug bgp update-groups%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp update-groups");
write++;
}
@ -1844,7 +1864,7 @@ bgp_config_write_debug (struct vty *vty)
{
if (!bgp_debug_zebra_prefixes || list_isempty(bgp_debug_zebra_prefixes))
{
vty_out (vty, "debug bgp zebra%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp zebra");
write++;
}
else
@ -1856,7 +1876,7 @@ bgp_config_write_debug (struct vty *vty)
if (CONF_BGP_DEBUG (allow_martians, ALLOW_MARTIANS))
{
vty_out (vty, "debug bgp allow-martians%s", VTY_NEWLINE);
vty_outln (vty, "debug bgp allow-martians");
write++;
}

View File

@ -667,7 +667,7 @@ bgp_dump_set (struct vty *vty, struct bgp_dump *bgp_dump,
interval = bgp_dump_parse_time (interval_str);
if (interval == 0)
{
vty_out (vty, "Malformed interval string%s", VTY_NEWLINE);
vty_outln (vty, "Malformed interval string");
return CMD_WARNING;
}
@ -866,12 +866,11 @@ config_write_bgp_dump (struct vty *vty)
type_str = "all-et";
if (bgp_dump_all.interval_str)
vty_out (vty, "dump bgp %s %s %s%s", type_str,
bgp_dump_all.filename, bgp_dump_all.interval_str,
VTY_NEWLINE);
vty_outln (vty, "dump bgp %s %s %s", type_str,
bgp_dump_all.filename,bgp_dump_all.interval_str);
else
vty_out (vty, "dump bgp %s %s%s", type_str,
bgp_dump_all.filename, VTY_NEWLINE);
vty_outln (vty, "dump bgp %s %s", type_str,
bgp_dump_all.filename);
}
if (bgp_dump_updates.filename)
{
@ -880,22 +879,20 @@ config_write_bgp_dump (struct vty *vty)
type_str = "updates-et";
if (bgp_dump_updates.interval_str)
vty_out (vty, "dump bgp %s %s %s%s", type_str,
bgp_dump_updates.filename, bgp_dump_updates.interval_str,
VTY_NEWLINE);
vty_outln (vty, "dump bgp %s %s %s", type_str,
bgp_dump_updates.filename,bgp_dump_updates.interval_str);
else
vty_out (vty, "dump bgp %s %s%s", type_str,
bgp_dump_updates.filename, VTY_NEWLINE);
vty_outln (vty, "dump bgp %s %s", type_str,
bgp_dump_updates.filename);
}
if (bgp_dump_routes.filename)
{
if (bgp_dump_routes.interval_str)
vty_out (vty, "dump bgp routes-mrt %s %s%s",
bgp_dump_routes.filename, bgp_dump_routes.interval_str,
VTY_NEWLINE);
vty_outln (vty, "dump bgp routes-mrt %s %s",
bgp_dump_routes.filename,bgp_dump_routes.interval_str);
else
vty_out (vty, "dump bgp routes-mrt %s%s",
bgp_dump_routes.filename, VTY_NEWLINE);
vty_outln (vty, "dump bgp routes-mrt %s",
bgp_dump_routes.filename);
}
return 0;

View File

@ -49,12 +49,6 @@ bgp_show_ethernet_vpn(struct vty *vty, struct prefix_rd *prd,
struct bgp_info *ri;
int rd_header;
int header = 1;
char v4_header[] =
" Network Next Hop Metric LocPrf Weight Path%s";
char v4_header_tag[] =
" Network Next Hop In tag/Out tag%s";
char v4_header_overlay[] =
" Network Next Hop EthTag Overlay Index RouterMac%s";
unsigned long output_count = 0;
unsigned long total_count = 0;
@ -67,8 +61,7 @@ bgp_show_ethernet_vpn(struct vty *vty, struct prefix_rd *prd,
bgp = bgp_get_default();
if (bgp == NULL) {
if (!use_json)
vty_out(vty, "No BGP process is configured%s",
VTY_NEWLINE);
vty_outln (vty,"No BGP process is configured");
return CMD_WARNING;
}
@ -142,31 +135,20 @@ bgp_show_ethernet_vpn(struct vty *vty, struct prefix_rd *prd,
} else {
if (option ==
SHOW_DISPLAY_TAGS)
vty_out(vty,
v4_header_tag,
VTY_NEWLINE);
vty_outln(vty, V4_HEADER_TAG);
else if (option ==
SHOW_DISPLAY_OVERLAY)
vty_out(vty,
v4_header_overlay,
VTY_NEWLINE);
vty_outln(vty, V4_HEADER_OVERLAY);
else {
vty_out(vty,
"BGP table version is 0, local router ID is %s%s",
inet_ntoa
(bgp->
router_id),
VTY_NEWLINE);
vty_out(vty,
"Status codes: s suppressed, d damped, h history, * valid, > best, i - internal%s",
VTY_NEWLINE);
vty_out(vty,
"Origin codes: i - IGP, e - EGP, ? - incomplete%s%s",
VTY_NEWLINE,
VTY_NEWLINE);
vty_out(vty,
v4_header,
vty_outln (vty,
"BGP table version is 0, local router ID is %s",
inet_ntoa(bgp->router_id));
vty_outln (vty,
"Status codes: s suppressed, d damped, h history, * valid, > best, i - internal");
vty_outln (vty,
"Origin codes: i - IGP, e - EGP, ? - incomplete%s",
VTY_NEWLINE);
vty_outln(vty, V4_HEADER);
}
}
header = 0;
@ -242,8 +224,7 @@ bgp_show_ethernet_vpn(struct vty *vty, struct prefix_rd *prd,
ip),
rd_ip.
val);
vty_out(vty, "%s",
VTY_NEWLINE);
vty_outln (vty, VTYNL);
}
rd_header = 0;
}
@ -272,11 +253,11 @@ bgp_show_ethernet_vpn(struct vty *vty, struct prefix_rd *prd,
}
}
if (output_count == 0)
vty_out(vty, "No prefixes displayed, %ld exist%s", total_count,
VTY_NEWLINE);
vty_outln (vty, "No prefixes displayed, %ld exist",
total_count);
else
vty_out(vty, "%sDisplayed %ld out of %ld total prefixes%s",
VTY_NEWLINE, output_count, total_count, VTY_NEWLINE);
vty_outln (vty, "%sDisplayed %ld out of %ld total prefixes",
VTY_NEWLINE, output_count, total_count);
return CMD_SUCCESS;
}
@ -308,7 +289,7 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd,
ret = str2prefix_rd(argv[idx_ext_community]->arg, &prd);
if (!ret) {
vty_out(vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_ethernet_vpn(vty, &prd, bgp_show_type_normal, NULL, 0,
@ -349,7 +330,7 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_tags,
ret = str2prefix_rd(argv[idx_ext_community]->arg, &prd);
if (!ret) {
vty_out(vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_ethernet_vpn(vty, &prd, bgp_show_type_normal, NULL, 1,
@ -384,13 +365,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_all_neighbor_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed address");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "Malformed address: %s%s",
argv[idx_ipv4]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ipv4]->arg);
return CMD_WARNING;
}
@ -401,13 +381,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_all_neighbor_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"No such neighbor or address family");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% No such neighbor or address family%s",
VTY_NEWLINE);
vty_outln (vty,
"%% No such neighbor or address family");
return CMD_WARNING;
}
@ -447,13 +426,11 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed Route Distinguisher");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% Malformed Route Distinguisher%s",
VTY_NEWLINE);
vty_outln (vty,"%% Malformed Route Distinguisher");
return CMD_WARNING;
}
@ -464,13 +441,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed address");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "Malformed address: %s%s",
argv[idx_ext_community]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ext_community]->arg);
return CMD_WARNING;
}
@ -481,13 +457,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"No such neighbor or address family");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% No such neighbor or address family%s",
VTY_NEWLINE);
vty_outln (vty,
"%% No such neighbor or address family");
return CMD_WARNING;
}
@ -523,13 +498,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_all_neighbor_advertised_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed address");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "Malformed address: %s%s",
argv[idx_ipv4]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ipv4]->arg);
return CMD_WARNING;
}
peer = peer_lookup(NULL, &su);
@ -539,13 +513,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_all_neighbor_advertised_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"No such neighbor or address family");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% No such neighbor or address family%s",
VTY_NEWLINE);
vty_outln (vty,
"%% No such neighbor or address family");
return CMD_WARNING;
}
@ -584,13 +557,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_advertised_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed address");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "Malformed address: %s%s",
argv[idx_ext_community]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ext_community]->arg);
return CMD_WARNING;
}
peer = peer_lookup(NULL, &su);
@ -600,13 +572,12 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_advertised_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"No such neighbor or address family");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% No such neighbor or address family%s",
VTY_NEWLINE);
vty_outln (vty,
"%% No such neighbor or address family");
return CMD_WARNING;
}
@ -617,13 +588,11 @@ DEFUN(show_ip_bgp_l2vpn_evpn_rd_neighbor_advertised_routes,
json_no = json_object_new_object();
json_object_string_add(json_no, "warning",
"Malformed Route Distinguisher");
vty_out(vty, "%s%s",
json_object_to_json_string(json_no),
VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string(json_no));
json_object_free(json_no);
} else
vty_out(vty, "%% Malformed Route Distinguisher%s",
VTY_NEWLINE);
vty_outln (vty,"%% Malformed Route Distinguisher");
return CMD_WARNING;
}
@ -666,7 +635,7 @@ DEFUN(show_ip_bgp_evpn_rd_overlay,
ret = str2prefix_rd(argv[idx_ext_community]->arg, &prd);
if (!ret) {
vty_out(vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_ethernet_vpn(vty, &prd, bgp_show_type_normal, NULL,

View File

@ -457,7 +457,7 @@ DEFUN (ip_as_path,
regex = bgp_regcomp (regstr);
if (!regex)
{
vty_out (vty, "can't compile regexp %s%s", regstr, VTY_NEWLINE);
vty_outln (vty, "can't compile regexp %s", regstr);
XFREE (MTYPE_TMP, regstr);
return CMD_WARNING;
}
@ -503,8 +503,7 @@ DEFUN (no_ip_as_path,
aslist = as_list_lookup (aslistname);
if (aslist == NULL)
{
vty_out (vty, "ip as-path access-list %s doesn't exist%s", aslistname,
VTY_NEWLINE);
vty_outln (vty, "ip as-path access-list %s doesn't exist",aslistname);
return CMD_WARNING;
}
@ -515,7 +514,7 @@ DEFUN (no_ip_as_path,
type = AS_FILTER_DENY;
else
{
vty_out (vty, "filter type must be [permit|deny]%s", VTY_NEWLINE);
vty_outln (vty, "filter type must be [permit|deny]");
return CMD_WARNING;
}
@ -526,7 +525,7 @@ DEFUN (no_ip_as_path,
regex = bgp_regcomp (regstr);
if (!regex)
{
vty_out (vty, "can't compile regexp %s%s", regstr, VTY_NEWLINE);
vty_outln (vty, "can't compile regexp %s", regstr);
XFREE (MTYPE_TMP, regstr);
return CMD_WARNING;
}
@ -539,7 +538,7 @@ DEFUN (no_ip_as_path,
if (asfilter == NULL)
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return CMD_WARNING;
}
@ -563,8 +562,8 @@ DEFUN (no_ip_as_path_all,
aslist = as_list_lookup (argv[idx_word]->arg);
if (aslist == NULL)
{
vty_out (vty, "ip as-path access-list %s doesn't exist%s", argv[idx_word]->arg,
VTY_NEWLINE);
vty_outln (vty, "ip as-path access-list %s doesn't exist",
argv[idx_word]->arg);
return CMD_WARNING;
}
@ -582,12 +581,12 @@ as_list_show (struct vty *vty, struct as_list *aslist)
{
struct as_filter *asfilter;
vty_out (vty, "AS path access list %s%s", aslist->name, VTY_NEWLINE);
vty_outln (vty, "AS path access list %s", aslist->name);
for (asfilter = aslist->head; asfilter; asfilter = asfilter->next)
{
vty_out (vty, " %s %s%s", filter_type_str (asfilter->type),
asfilter->reg_str, VTY_NEWLINE);
vty_outln (vty, " %s %s", filter_type_str (asfilter->type),
asfilter->reg_str);
}
}
@ -599,23 +598,23 @@ as_list_show_all (struct vty *vty)
for (aslist = as_list_master.num.head; aslist; aslist = aslist->next)
{
vty_out (vty, "AS path access list %s%s", aslist->name, VTY_NEWLINE);
vty_outln (vty, "AS path access list %s", aslist->name);
for (asfilter = aslist->head; asfilter; asfilter = asfilter->next)
{
vty_out (vty, " %s %s%s", filter_type_str (asfilter->type),
asfilter->reg_str, VTY_NEWLINE);
vty_outln (vty, " %s %s", filter_type_str (asfilter->type),
asfilter->reg_str);
}
}
for (aslist = as_list_master.str.head; aslist; aslist = aslist->next)
{
vty_out (vty, "AS path access list %s%s", aslist->name, VTY_NEWLINE);
vty_outln (vty, "AS path access list %s", aslist->name);
for (asfilter = aslist->head; asfilter; asfilter = asfilter->next)
{
vty_out (vty, " %s %s%s", filter_type_str (asfilter->type),
asfilter->reg_str, VTY_NEWLINE);
vty_outln (vty, " %s %s", filter_type_str (asfilter->type),
asfilter->reg_str);
}
}
}
@ -659,20 +658,18 @@ config_write_as_list (struct vty *vty)
for (aslist = as_list_master.num.head; aslist; aslist = aslist->next)
for (asfilter = aslist->head; asfilter; asfilter = asfilter->next)
{
vty_out (vty, "ip as-path access-list %s %s %s%s",
vty_outln (vty, "ip as-path access-list %s %s %s",
aslist->name, filter_type_str (asfilter->type),
asfilter->reg_str,
VTY_NEWLINE);
asfilter->reg_str);
write++;
}
for (aslist = as_list_master.str.head; aslist; aslist = aslist->next)
for (asfilter = aslist->head; asfilter; asfilter = asfilter->next)
{
vty_out (vty, "ip as-path access-list %s %s %s%s",
vty_outln (vty, "ip as-path access-list %s %s %s",
aslist->name, filter_type_str (asfilter->type),
asfilter->reg_str,
VTY_NEWLINE);
asfilter->reg_str);
write++;
}
return write;

View File

@ -546,8 +546,6 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
struct bgp_info *ri;
int rd_header;
int header = 1;
char v4_header[] = " Network Next Hop Metric LocPrf Weight Path%s";
char v4_header_tag[] = " Network Next Hop In tag/Out tag%s";
unsigned long output_count = 0;
unsigned long total_count = 0;
json_object *json = NULL;
@ -561,7 +559,7 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
if (bgp == NULL)
{
if (!use_json)
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
@ -587,7 +585,7 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
if ((afi != AFI_IP) && (afi != AFI_IP6))
{
vty_out (vty, "Afi %d not supported%s", afi, VTY_NEWLINE);
vty_outln (vty, "Afi %d not supported", afi);
return CMD_WARNING;
}
@ -632,16 +630,16 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
else
{
if (tags)
vty_out (vty, v4_header_tag, VTY_NEWLINE);
vty_outln (vty, V4_HEADER_TAG);
else
{
vty_out (vty, "BGP table version is 0, local router ID is %s%s",
inet_ntoa (bgp->router_id), VTY_NEWLINE);
vty_out (vty, "Status codes: s suppressed, d damped, h history, * valid, > best, i - internal%s",
vty_outln (vty, "BGP table version is 0, local router ID is %s",
inet_ntoa(bgp->router_id));
vty_outln (vty,
"Status codes: s suppressed, d damped, h history, * valid, > best, i - internal");
vty_outln (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s",
VTY_NEWLINE);
vty_out (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s%s",
VTY_NEWLINE, VTY_NEWLINE);
vty_out (vty, v4_header, VTY_NEWLINE);
vty_outln (vty, V4_HEADER);
}
}
header = 0;
@ -701,7 +699,7 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
rd_vnc_eth.macaddr.octet[4],
rd_vnc_eth.macaddr.octet[5]);
#endif
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
rd_header = 0;
}
@ -738,16 +736,17 @@ bgp_show_mpls_vpn (struct vty *vty, afi_t afi, struct prefix_rd *prd,
if (use_json)
{
json_object_object_add(json, "routes", json_nroute);
vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
}
else
{
if (output_count == 0)
vty_out (vty, "No prefixes displayed, %ld exist%s", total_count, VTY_NEWLINE);
vty_outln (vty, "No prefixes displayed, %ld exist", total_count);
else
vty_out (vty, "%sDisplayed %ld routes and %ld total paths%s",
VTY_NEWLINE, output_count, total_count, VTY_NEWLINE);
vty_outln (vty, "%sDisplayed %ld routes and %ld total paths",
VTY_NEWLINE, output_count, total_count);
}
return CMD_SUCCESS;
@ -778,7 +777,7 @@ DEFUN (show_bgp_ip_vpn_all_rd,
ret = str2prefix_rd (argv[idx_rd]->arg, &prd);
if (! ret)
{
vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_mpls_vpn (vty, afi, &prd, bgp_show_type_normal, NULL, 0, use_json (argc, argv));
@ -813,7 +812,7 @@ DEFUN (show_ip_bgp_vpn_rd,
ret = str2prefix_rd (argv[idx_ext_community]->arg, &prd);
if (! ret)
{
vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_mpls_vpn (vty, afi, &prd, bgp_show_type_normal, NULL, 0, 0);
@ -878,7 +877,7 @@ DEFUN (show_ip_bgp_vpn_rd_tags,
ret = str2prefix_rd (argv[idx_ext_community]->arg, &prd);
if (! ret)
{
vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
return bgp_show_mpls_vpn (vty, afi, &prd, bgp_show_type_normal, NULL, 1, 0);
@ -917,11 +916,11 @@ DEFUN (show_ip_bgp_vpn_all_neighbor_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed address");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "Malformed address: %s%s", argv[idx_ipv4]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s", argv[idx_ipv4]->arg);
return CMD_WARNING;
}
@ -933,11 +932,11 @@ DEFUN (show_ip_bgp_vpn_all_neighbor_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "No such neighbor or address family");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE);
vty_outln (vty, "%% No such neighbor or address family");
return CMD_WARNING;
}
@ -980,11 +979,11 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed Route Distinguisher");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}
@ -996,11 +995,12 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed address");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "Malformed address: %s%s", argv[idx_ext_community]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ext_community]->arg);
return CMD_WARNING;
}
@ -1012,11 +1012,11 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "No such neighbor or address family");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE);
vty_outln (vty, "%% No such neighbor or address family");
return CMD_WARNING;
}
@ -1056,11 +1056,11 @@ DEFUN (show_ip_bgp_vpn_all_neighbor_advertised_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed address");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "Malformed address: %s%s", argv[idx_ipv4]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s", argv[idx_ipv4]->arg);
return CMD_WARNING;
}
peer = peer_lookup (NULL, &su);
@ -1071,11 +1071,11 @@ DEFUN (show_ip_bgp_vpn_all_neighbor_advertised_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "No such neighbor or address family");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE);
vty_outln (vty, "%% No such neighbor or address family");
return CMD_WARNING;
}
return show_adj_route_vpn (vty, peer, NULL, AFI_IP, SAFI_MPLS_VPN, uj);
@ -1117,11 +1117,12 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_advertised_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed address");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "Malformed address: %s%s", argv[idx_ext_community]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address: %s",
argv[idx_ext_community]->arg);
return CMD_WARNING;
}
peer = peer_lookup (NULL, &su);
@ -1132,11 +1133,11 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_advertised_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "No such neighbor or address family");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% No such neighbor or address family%s", VTY_NEWLINE);
vty_outln (vty, "%% No such neighbor or address family");
return CMD_WARNING;
}
@ -1148,11 +1149,11 @@ DEFUN (show_ip_bgp_vpn_rd_neighbor_advertised_routes,
json_object *json_no = NULL;
json_no = json_object_new_object();
json_object_string_add(json_no, "warning", "Malformed Route Distinguisher");
vty_out (vty, "%s%s", json_object_to_json_string(json_no), VTY_NEWLINE);
vty_outln (vty, "%s", json_object_to_json_string(json_no));
json_object_free(json_no);
}
else
vty_out (vty, "%% Malformed Route Distinguisher%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed Route Distinguisher");
return CMD_WARNING;
}

View File

@ -67,6 +67,13 @@ typedef enum {
"Address Family\n" \
"Address Family\n"
#define V4_HEADER \
" Network Next Hop Metric LocPrf Weight Path"
#define V4_HEADER_TAG \
" Network Next Hop In tag/Out tag"
#define V4_HEADER_OVERLAY \
" Network Next Hop EthTag Overlay Index RouterMac"
struct rd_as
{
u_int16_t type;

View File

@ -387,7 +387,7 @@ bgp_show_nexthops (struct vty *vty, struct bgp *bgp, int detail)
time_t tbuf;
afi_t afi;
vty_out (vty, "Current BGP nexthop cache:%s", VTY_NEWLINE);
vty_outln (vty, "Current BGP nexthop cache:");
for (afi = AFI_IP ; afi < AFI_MAX ; afi++)
{
if (!bgp->nexthop_cache_table[afi])
@ -399,56 +399,52 @@ bgp_show_nexthops (struct vty *vty, struct bgp *bgp, int detail)
{
if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_VALID))
{
vty_out (vty, " %s valid [IGP metric %d], #paths %d%s",
vty_outln (vty, " %s valid [IGP metric %d], #paths %d",
inet_ntop (rn->p.family, &rn->p.u.prefix, buf, sizeof (buf)),
bnc->metric, bnc->path_count, VTY_NEWLINE);
bnc->metric, bnc->path_count);
if (detail)
for (nexthop = bnc->nexthop; nexthop; nexthop = nexthop->next)
switch (nexthop->type)
{
case NEXTHOP_TYPE_IPV6:
vty_out (vty, " gate %s%s",
inet_ntop (AF_INET6, &nexthop->gate.ipv6,
buf, sizeof (buf)), VTY_NEWLINE);
vty_outln (vty, " gate %s",
inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf, sizeof(buf)));
break;
case NEXTHOP_TYPE_IPV6_IFINDEX:
vty_out(vty, " gate %s, if %s%s",
vty_outln (vty, " gate %s, if %s",
inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf,
sizeof (buf)),
ifindex2ifname(nexthop->ifindex, bgp->vrf_id),
VTY_NEWLINE);
ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
break;
case NEXTHOP_TYPE_IPV4:
vty_out (vty, " gate %s%s",
inet_ntop (AF_INET, &nexthop->gate.ipv4, buf,
sizeof (buf)), VTY_NEWLINE);
vty_outln (vty, " gate %s",
inet_ntop(AF_INET, &nexthop->gate.ipv4, buf, sizeof(buf)));
break;
case NEXTHOP_TYPE_IFINDEX:
vty_out (vty, " if %s%s",
ifindex2ifname(nexthop->ifindex, bgp->vrf_id), VTY_NEWLINE);
vty_outln (vty, " if %s",
ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
break;
case NEXTHOP_TYPE_IPV4_IFINDEX:
vty_out (vty, " gate %s, if %s%s",
vty_outln (vty, " gate %s, if %s",
inet_ntop(AF_INET, &nexthop->gate.ipv4, buf,
sizeof (buf)),
ifindex2ifname(nexthop->ifindex, bgp->vrf_id), VTY_NEWLINE);
ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
break;
default:
vty_out (vty, " invalid nexthop type %u%s",
nexthop->type, VTY_NEWLINE);
vty_outln (vty, " invalid nexthop type %u",
nexthop->type);
}
}
else
{
vty_out (vty, " %s invalid%s",
inet_ntop (rn->p.family, &rn->p.u.prefix,
buf, sizeof (buf)), VTY_NEWLINE);
vty_outln (vty, " %s invalid",
inet_ntop(rn->p.family, &rn->p.u.prefix, buf, sizeof(buf)));
if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_CONNECTED))
vty_out (vty, " Must be Connected%s", VTY_NEWLINE);
vty_outln (vty, " Must be Connected");
}
tbuf = time(NULL) - (bgp_clock() - bnc->last_update);
vty_out (vty, " Last update: %s", ctime(&tbuf));
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
}
@ -465,7 +461,7 @@ show_ip_bgp_nexthop_table (struct vty *vty, const char *name, int detail)
bgp = bgp_get_default ();
if (!bgp)
{
vty_out (vty, "%% No such BGP instance exist%s", VTY_NEWLINE);
vty_outln (vty, "%% No such BGP instance exist");
return CMD_WARNING;
}
@ -482,10 +478,9 @@ bgp_show_all_instances_nexthops_vty (struct vty *vty)
for (ALL_LIST_ELEMENTS (bm->bgp, node, nnode, bgp))
{
vty_out (vty, "%sInstance %s:%s",
vty_outln (vty, "%sInstance %s:",
VTY_NEWLINE,
(bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) ? "Default" : bgp->name,
VTY_NEWLINE);
(bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) ? "Default" : bgp->name);
bgp_show_nexthops (vty, bgp, 0);
}
}

View File

@ -167,7 +167,7 @@ bgp_capability_vty_out (struct vty *vty, struct peer *peer, u_char use_json, jso
vty_out (vty, "SAFI Unknown %d ", mpc.safi);
break;
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
else if (hdr->code >= 128)

File diff suppressed because it is too large Load Diff

View File

@ -54,9 +54,9 @@ enum bgp_show_type
#define BGP_SHOW_SCODE_HEADER "Status codes: s suppressed, d damped, "\
"h history, * valid, > best, = multipath,%s"\
" i internal, r RIB-failure, S Stale, R Removed%s"
#define BGP_SHOW_OCODE_HEADER "Origin codes: i - IGP, e - EGP, ? - incomplete%s%s"
#define BGP_SHOW_HEADER " Network Next Hop Metric LocPrf Weight Path%s"
" i internal, r RIB-failure, S Stale, R Removed"
#define BGP_SHOW_OCODE_HEADER "Origin codes: i - IGP, e - EGP, ? - incomplete%s"
#define BGP_SHOW_HEADER " Network Next Hop Metric LocPrf Weight Path"
/* Ancillary information to struct bgp_info,
* used for uncommonly used data (aggregation, MPLS, etc.)

View File

@ -2851,10 +2851,10 @@ bgp_route_match_add (struct vty *vty,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% BGP Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% BGP Can't find rule.");
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% BGP Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% BGP Argument is malformed.");
return CMD_WARNING;
}
}
@ -2900,10 +2900,10 @@ bgp_route_match_delete (struct vty *vty,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% BGP Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% BGP Can't find rule.");
break;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% BGP Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% BGP Argument is malformed.");
break;
}
if (dep_name)
@ -3886,7 +3886,7 @@ DEFUN (set_community,
/* Can't compile user input into communities attribute. */
if (! com)
{
vty_out (vty, "%% Malformed communities attribute%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed communities attribute");
return CMD_WARNING;
}
@ -4210,7 +4210,7 @@ DEFUN (set_aggregator_as,
ret = inet_aton (argv[idx_ipv4]->arg, &address);
if (ret == 0)
{
vty_out (vty, "Aggregator IP address is invalid%s", VTY_NEWLINE);
vty_outln (vty, "Aggregator IP address is invalid");
return CMD_WARNING;
}
@ -4251,7 +4251,7 @@ DEFUN (no_set_aggregator_as,
ret = inet_aton (argv[idx_ip]->arg, &address);
if (ret == 0)
{
vty_out (vty, "Aggregator IP address is invalid%s", VTY_NEWLINE);
vty_outln (vty, "Aggregator IP address is invalid");
return CMD_WARNING;
}
@ -4362,7 +4362,7 @@ DEFUN (set_ipv6_nexthop_global,
ret = inet_pton (AF_INET6, argv[idx_ipv6]->arg, &addr);
if (!ret)
{
vty_out (vty, "%% Malformed nexthop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed nexthop address");
return CMD_WARNING;
}
if (IN6_IS_ADDR_UNSPECIFIED(&addr) ||
@ -4370,7 +4370,7 @@ DEFUN (set_ipv6_nexthop_global,
IN6_IS_ADDR_MULTICAST(&addr) ||
IN6_IS_ADDR_LINKLOCAL(&addr))
{
vty_out (vty, "%% Invalid global nexthop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid global nexthop address");
return CMD_WARNING;
}

View File

@ -564,73 +564,69 @@ update_group_show_walkcb (struct update_group *updgrp, void *arg)
vty = ctx->vty;
vty_out (vty, "Update-group %" PRIu64 ":%s", updgrp->id, VTY_NEWLINE);
vty_outln (vty, "Update-group %" PRIu64 ":", updgrp->id);
vty_out (vty, " Created: %s", timestamp_string (updgrp->uptime));
filter = &updgrp->conf->filter[updgrp->afi][updgrp->safi];
if (filter->map[RMAP_OUT].name)
vty_out (vty, " Outgoing route map: %s%s%s",
vty_outln (vty, " Outgoing route map: %s%s",
filter->map[RMAP_OUT].map ? "X" : "",
filter->map[RMAP_OUT].name, VTY_NEWLINE);
vty_out (vty, " MRAI value (seconds): %d%s",
updgrp->conf->v_routeadv, VTY_NEWLINE);
filter->map[RMAP_OUT].name);
vty_outln (vty, " MRAI value (seconds): %d",
updgrp->conf->v_routeadv);
if (updgrp->conf->change_local_as)
vty_out (vty, " Local AS %u%s%s%s",
vty_outln (vty, " Local AS %u%s%s",
updgrp->conf->change_local_as,
CHECK_FLAG (updgrp->conf->flags,
PEER_FLAG_LOCAL_AS_NO_PREPEND) ? " no-prepend" : "",
CHECK_FLAG (updgrp->conf->flags,
PEER_FLAG_LOCAL_AS_REPLACE_AS) ? " replace-as" : "",
VTY_NEWLINE);
CHECK_FLAG(updgrp->conf->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS) ? " replace-as" : "");
UPDGRP_FOREACH_SUBGRP (updgrp, subgrp)
{
if (ctx->subgrp_id && (ctx->subgrp_id != subgrp->id))
continue;
vty_out (vty, "%s", VTY_NEWLINE);
vty_out (vty, " Update-subgroup %" PRIu64 ":%s", subgrp->id, VTY_NEWLINE);
vty_outln (vty, "");
vty_outln (vty, " Update-subgroup %" PRIu64 ":", subgrp->id);
vty_out (vty, " Created: %s", timestamp_string (subgrp->uptime));
if (subgrp->split_from.update_group_id || subgrp->split_from.subgroup_id)
{
vty_out (vty, " Split from group id: %" PRIu64 "%s",
subgrp->split_from.update_group_id, VTY_NEWLINE);
vty_out (vty, " Split from subgroup id: %" PRIu64 "%s",
subgrp->split_from.subgroup_id, VTY_NEWLINE);
vty_outln (vty, " Split from group id: %" PRIu64 "",
subgrp->split_from.update_group_id);
vty_outln (vty, " Split from subgroup id: %" PRIu64 "",
subgrp->split_from.subgroup_id);
}
vty_out (vty, " Join events: %u%s", subgrp->join_events, VTY_NEWLINE);
vty_out (vty, " Prune events: %u%s",
subgrp->prune_events, VTY_NEWLINE);
vty_out (vty, " Merge events: %u%s",
subgrp->merge_events, VTY_NEWLINE);
vty_out (vty, " Split events: %u%s",
subgrp->split_events, VTY_NEWLINE);
vty_out (vty, " Update group switch events: %u%s",
subgrp->updgrp_switch_events, VTY_NEWLINE);
vty_out (vty, " Peer refreshes combined: %u%s",
subgrp->peer_refreshes_combined, VTY_NEWLINE);
vty_out (vty, " Merge checks triggered: %u%s",
subgrp->merge_checks_triggered, VTY_NEWLINE);
vty_out (vty, " Version: %" PRIu64 "%s", subgrp->version, VTY_NEWLINE);
vty_out (vty, " Packet queue length: %d%s",
bpacket_queue_length (SUBGRP_PKTQ (subgrp)), VTY_NEWLINE);
vty_out (vty, " Total packets enqueued: %u%s",
subgroup_total_packets_enqueued (subgrp), VTY_NEWLINE);
vty_out (vty, " Packet queue high watermark: %d%s",
bpacket_queue_hwm_length (SUBGRP_PKTQ (subgrp)), VTY_NEWLINE);
vty_out (vty, " Adj-out list count: %u%s",
subgrp->adj_count, VTY_NEWLINE);
vty_out (vty, " Advertise list: %s%s",
advertise_list_is_empty (subgrp) ? "empty" : "not empty",
VTY_NEWLINE);
vty_out (vty, " Flags: %s%s",
CHECK_FLAG (subgrp->flags,
SUBGRP_FLAG_NEEDS_REFRESH) ? "R" : "", VTY_NEWLINE);
vty_outln (vty, " Join events: %u", subgrp->join_events);
vty_outln (vty, " Prune events: %u",
subgrp->prune_events);
vty_outln (vty, " Merge events: %u",
subgrp->merge_events);
vty_outln (vty, " Split events: %u",
subgrp->split_events);
vty_outln (vty, " Update group switch events: %u",
subgrp->updgrp_switch_events);
vty_outln (vty, " Peer refreshes combined: %u",
subgrp->peer_refreshes_combined);
vty_outln (vty, " Merge checks triggered: %u",
subgrp->merge_checks_triggered);
vty_outln (vty, " Version: %" PRIu64 "", subgrp->version);
vty_outln (vty, " Packet queue length: %d",
bpacket_queue_length(SUBGRP_PKTQ(subgrp)));
vty_outln (vty, " Total packets enqueued: %u",
subgroup_total_packets_enqueued(subgrp));
vty_outln (vty, " Packet queue high watermark: %d",
bpacket_queue_hwm_length(SUBGRP_PKTQ(subgrp)));
vty_outln (vty, " Adj-out list count: %u",
subgrp->adj_count);
vty_outln (vty, " Advertise list: %s",
advertise_list_is_empty(subgrp) ? "empty" : "not empty");
vty_outln (vty, " Flags: %s",
CHECK_FLAG(subgrp->flags, SUBGRP_FLAG_NEEDS_REFRESH) ? "R" : "");
if (subgrp->peer_count > 0)
{
vty_out (vty, " Peers:%s", VTY_NEWLINE);
vty_outln (vty, " Peers:");
SUBGRP_FOREACH_PEER (subgrp, paf)
vty_out (vty, " - %s%s", paf->peer->host, VTY_NEWLINE);
vty_outln (vty, " - %s", paf->peer->host);
}
}
return UPDWALK_CONTINUE;
@ -652,8 +648,8 @@ updgrp_show_packet_queue_walkcb (struct update_group *updgrp, void *arg)
{
if (ctx->subgrp_id && (ctx->subgrp_id != subgrp->id))
continue;
vty_out (vty, "update group %" PRIu64 ", subgroup %" PRIu64 "%s", updgrp->id,
subgrp->id, VTY_NEWLINE);
vty_outln (vty, "update group %" PRIu64 ", subgroup %" PRIu64 "", updgrp->id,
subgrp->id);
bpacket_queue_show_vty (SUBGRP_PKTQ (subgrp), vty);
}
return UPDWALK_CONTINUE;
@ -1601,28 +1597,28 @@ update_group_show (struct bgp *bgp, afi_t afi, safi_t safi, struct vty *vty,
void
update_group_show_stats (struct bgp *bgp, struct vty *vty)
{
vty_out (vty, "Update groups created: %u%s",
bgp->update_group_stats.updgrps_created, VTY_NEWLINE);
vty_out (vty, "Update groups deleted: %u%s",
bgp->update_group_stats.updgrps_deleted, VTY_NEWLINE);
vty_out (vty, "Update subgroups created: %u%s",
bgp->update_group_stats.subgrps_created, VTY_NEWLINE);
vty_out (vty, "Update subgroups deleted: %u%s",
bgp->update_group_stats.subgrps_deleted, VTY_NEWLINE);
vty_out (vty, "Join events: %u%s",
bgp->update_group_stats.join_events, VTY_NEWLINE);
vty_out (vty, "Prune events: %u%s",
bgp->update_group_stats.prune_events, VTY_NEWLINE);
vty_out (vty, "Merge events: %u%s",
bgp->update_group_stats.merge_events, VTY_NEWLINE);
vty_out (vty, "Split events: %u%s",
bgp->update_group_stats.split_events, VTY_NEWLINE);
vty_out (vty, "Update group switch events: %u%s",
bgp->update_group_stats.updgrp_switch_events, VTY_NEWLINE);
vty_out (vty, "Peer route refreshes combined: %u%s",
bgp->update_group_stats.peer_refreshes_combined, VTY_NEWLINE);
vty_out (vty, "Merge checks triggered: %u%s",
bgp->update_group_stats.merge_checks_triggered, VTY_NEWLINE);
vty_outln (vty, "Update groups created: %u",
bgp->update_group_stats.updgrps_created);
vty_outln (vty, "Update groups deleted: %u",
bgp->update_group_stats.updgrps_deleted);
vty_outln (vty, "Update subgroups created: %u",
bgp->update_group_stats.subgrps_created);
vty_outln (vty, "Update subgroups deleted: %u",
bgp->update_group_stats.subgrps_deleted);
vty_outln (vty, "Join events: %u",
bgp->update_group_stats.join_events);
vty_outln (vty, "Prune events: %u",
bgp->update_group_stats.prune_events);
vty_outln (vty, "Merge events: %u",
bgp->update_group_stats.merge_events);
vty_outln (vty, "Split events: %u",
bgp->update_group_stats.split_events);
vty_outln (vty, "Update group switch events: %u",
bgp->update_group_stats.updgrp_switch_events);
vty_outln (vty, "Peer route refreshes combined: %u",
bgp->update_group_stats.peer_refreshes_combined);
vty_outln (vty, "Merge checks triggered: %u",
bgp->update_group_stats.merge_checks_triggered);
}
/*

View File

@ -226,17 +226,16 @@ subgrp_show_adjq_vty (struct update_subgroup *subgrp, struct vty *vty,
{
if (header1)
{
vty_out (vty,
"BGP table version is %" PRIu64 ", local router ID is %s%s",
table->version, inet_ntoa (bgp->router_id),
VTY_NEWLINE);
vty_out (vty, BGP_SHOW_SCODE_HEADER, VTY_NEWLINE, VTY_NEWLINE);
vty_out (vty, BGP_SHOW_OCODE_HEADER, VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty,
"BGP table version is %" PRIu64 ", local router ID is %s",
table->version,inet_ntoa(bgp->router_id));
vty_outln (vty, BGP_SHOW_SCODE_HEADER, VTY_NEWLINE);
vty_outln (vty, BGP_SHOW_OCODE_HEADER, VTY_NEWLINE);
header1 = 0;
}
if (header2)
{
vty_out (vty, BGP_SHOW_HEADER, VTY_NEWLINE);
vty_outln (vty, BGP_SHOW_HEADER);
header2 = 0;
}
if ((flags & UPDWALK_FLAGS_ADVQUEUE) && adj->adv && adj->adv->baa)
@ -251,8 +250,8 @@ subgrp_show_adjq_vty (struct update_subgroup *subgrp, struct vty *vty,
}
}
if (output_count != 0)
vty_out (vty, "%sTotal number of prefixes %ld%s",
VTY_NEWLINE, output_count, VTY_NEWLINE);
vty_outln (vty, "%sTotal number of prefixes %ld",
VTY_NEWLINE, output_count);
}
static int
@ -267,8 +266,8 @@ updgrp_show_adj_walkcb (struct update_group *updgrp, void *arg)
{
if (ctx->subgrp_id && (ctx->subgrp_id != subgrp->id))
continue;
vty_out (vty, "update group %" PRIu64 ", subgroup %" PRIu64 "%s", updgrp->id,
subgrp->id, VTY_NEWLINE);
vty_outln (vty, "update group %" PRIu64 ", subgroup %" PRIu64 "", updgrp->id,
subgrp->id);
subgrp_show_adjq_vty (subgrp, vty, ctx->flags);
}
return UPDWALK_CONTINUE;

View File

@ -392,12 +392,12 @@ bpacket_queue_show_vty (struct bpacket_queue *q, struct vty *vty)
pkt = bpacket_queue_first (q);
while (pkt)
{
vty_out (vty, " Packet %p ver %u buffer %p%s", pkt, pkt->ver,
pkt->buffer, VTY_NEWLINE);
vty_outln (vty, " Packet %p ver %u buffer %p", pkt, pkt->ver,
pkt->buffer);
LIST_FOREACH (paf, &(pkt->peers), pkt_train)
{
vty_out (vty, " - %s%s", paf->peer->host, VTY_NEWLINE);
vty_outln (vty, " - %s", paf->peer->host);
}
pkt = bpacket_next (pkt);
}

View File

@ -41,7 +41,6 @@ show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd,
struct attr *attr;
int rd_header;
int header = 1;
char v4_header[] = " Network Next Hop Metric LocPrf Weight Path%s";
json_object *json = NULL;
json_object *json_scode = NULL;
json_object *json_ocode = NULL;
@ -52,7 +51,7 @@ show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd,
if (bgp == NULL)
{
if (!use_json)
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
@ -105,13 +104,13 @@ show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd,
}
else
{
vty_out (vty, "BGP table version is 0, local router ID is %s%s",
inet_ntoa (bgp->router_id), VTY_NEWLINE);
vty_out (vty, "Status codes: s suppressed, d damped, h history, * valid, > best, i - internal%s",
vty_outln (vty, "BGP table version is 0, local router ID is %s",
inet_ntoa(bgp->router_id));
vty_outln (vty,
"Status codes: s suppressed, d damped, h history, * valid, > best, i - internal");
vty_outln (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s",
VTY_NEWLINE);
vty_out (vty, "Origin codes: i - IGP, e - EGP, ? - incomplete%s%s",
VTY_NEWLINE, VTY_NEWLINE);
vty_out (vty, v4_header, VTY_NEWLINE);
vty_outln (vty, V4_HEADER);
}
header = 0;
}
@ -171,7 +170,7 @@ show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd,
rd_vnc_eth.macaddr.octet[5]);
#endif
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
rd_header = 0;
}
@ -192,7 +191,8 @@ show_adj_route_vpn (struct vty *vty, struct peer *peer, struct prefix_rd *prd,
if (use_json)
{
json_object_object_add(json, "routes", json_routes);
vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
}
return CMD_SUCCESS;

View File

@ -6584,7 +6584,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if_ras_printed = TRUE;
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* remote-as and peer-group */
@ -6597,24 +6597,23 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
{
if (peer->as_type == AS_SPECIFIED)
{
vty_out (vty, " neighbor %s remote-as %u%s", addr, peer->as,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as %u", addr,peer->as);
}
else if (peer->as_type == AS_INTERNAL)
{
vty_out (vty, " neighbor %s remote-as internal%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as internal", addr);
}
else if (peer->as_type == AS_EXTERNAL)
{
vty_out (vty, " neighbor %s remote-as external%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as external", addr);
}
}
/* For swpX peers we displayed the peer-group
* via 'neighbor swpX interface peer-group WORD' */
if (!if_pg_printed)
vty_out (vty, " neighbor %s peer-group %s%s", addr,
peer->group->name, VTY_NEWLINE);
vty_outln (vty, " neighbor %s peer-group %s", addr,
peer->group->name);
}
/* peer is NOT a member of a peer-group */
@ -6623,24 +6622,22 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
/* peer is a peer-group, declare the peer-group */
if (CHECK_FLAG (peer->sflags, PEER_STATUS_GROUP))
{
vty_out (vty, " neighbor %s peer-group%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s peer-group",addr);
}
if (!if_ras_printed)
{
if (peer->as_type == AS_SPECIFIED)
{
vty_out (vty, " neighbor %s remote-as %u%s", addr, peer->as,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as %u", addr,peer->as);
}
else if (peer->as_type == AS_INTERNAL)
{
vty_out (vty, " neighbor %s remote-as internal%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as internal", addr);
}
else if (peer->as_type == AS_EXTERNAL)
{
vty_out (vty, " neighbor %s remote-as external%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s remote-as external", addr);
}
}
}
@ -6655,20 +6652,18 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
|| (CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS) !=
CHECK_FLAG (g_peer->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS)))
{
vty_out (vty, " neighbor %s local-as %u%s%s%s", addr,
vty_outln (vty, " neighbor %s local-as %u%s%s", addr,
peer->change_local_as,
CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_NO_PREPEND) ?
" no-prepend" : "",
CHECK_FLAG (peer->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS) ?
" replace-as" : "", VTY_NEWLINE);
CHECK_FLAG(peer->flags, PEER_FLAG_LOCAL_AS_REPLACE_AS) ? " replace-as" : "");
}
}
/* description */
if (peer->desc)
{
vty_out (vty, " neighbor %s description %s%s", addr, peer->desc,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s description %s", addr,peer->desc);
}
/* shutdown */
@ -6679,10 +6674,10 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
peer->tx_shutdown_message)
{
if (peer->tx_shutdown_message)
vty_out (vty, " neighbor %s shutdown message %s%s", addr,
peer->tx_shutdown_message, VTY_NEWLINE);
vty_outln (vty, " neighbor %s shutdown message %s", addr,
peer->tx_shutdown_message);
else
vty_out (vty, " neighbor %s shutdown%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s shutdown", addr);
}
}
@ -6702,8 +6697,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
|| ! g_peer->password
|| strcmp (peer->password, g_peer->password) != 0)
{
vty_out (vty, " neighbor %s password %s%s", addr, peer->password,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s password %s", addr,peer->password);
}
}
@ -6712,22 +6706,20 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
{
if (!peer_group_active (peer))
{
vty_out (vty, " neighbor %s solo%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s solo", addr);
}
}
/* BGP port */
if (peer->port != BGP_PORT_DEFAULT)
{
vty_out (vty, " neighbor %s port %d%s", addr, peer->port,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s port %d", addr,peer->port);
}
/* Local interface name */
if (peer->ifname)
{
vty_out (vty, " neighbor %s interface %s%s", addr, peer->ifname,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s interface %s", addr,peer->ifname);
}
/* passive */
@ -6736,7 +6728,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_PASSIVE))
{
vty_out (vty, " neighbor %s passive%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s passive", addr);
}
}
@ -6746,8 +6738,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
{
if (! peer_group_active (peer) || g_peer->ttl != peer->ttl)
{
vty_out (vty, " neighbor %s ebgp-multihop %d%s", addr, peer->ttl,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s ebgp-multihop %d", addr,peer->ttl);
}
}
@ -6756,8 +6747,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
{
if (! peer_group_active (peer) || g_peer->gtsm_hops != peer->gtsm_hops)
{
vty_out (vty, " neighbor %s ttl-security hops %d%s", addr,
peer->gtsm_hops, VTY_NEWLINE);
vty_outln (vty, " neighbor %s ttl-security hops %d", addr,
peer->gtsm_hops);
}
}
@ -6767,7 +6758,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_DISABLE_CONNECTED_CHECK))
{
vty_out (vty, " neighbor %s disable-connected-check%s", addr, VTY_NEWLINE);
vty_outln (vty, " neighbor %s disable-connected-check", addr);
}
}
@ -6777,8 +6768,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) || ! g_peer->update_if
|| strcmp (g_peer->update_if, peer->update_if) != 0)
{
vty_out (vty, " neighbor %s update-source %s%s", addr,
peer->update_if, VTY_NEWLINE);
vty_outln (vty, " neighbor %s update-source %s", addr,
peer->update_if);
}
}
if (peer->update_source)
@ -6787,9 +6778,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
|| sockunion_cmp (g_peer->update_source,
peer->update_source) != 0)
{
vty_out (vty, " neighbor %s update-source %s%s", addr,
sockunion2str (peer->update_source, buf, SU_ADDRSTRLEN),
VTY_NEWLINE);
vty_outln (vty, " neighbor %s update-source %s", addr,
sockunion2str(peer->update_source, buf, SU_ADDRSTRLEN));
}
}
@ -6798,8 +6788,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
((! peer_group_active (peer) && peer->v_routeadv != BGP_DEFAULT_EBGP_ROUTEADV) ||
(peer_group_active (peer) && peer->v_routeadv != g_peer->v_routeadv)))
{
vty_out (vty, " neighbor %s advertisement-interval %u%s",
addr, peer->v_routeadv, VTY_NEWLINE);
vty_outln (vty, " neighbor %s advertisement-interval %u",
addr, peer->v_routeadv);
}
/* timers */
@ -6807,8 +6797,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
((! peer_group_active (peer) && (peer->keepalive != BGP_DEFAULT_KEEPALIVE || peer->holdtime != BGP_DEFAULT_HOLDTIME)) ||
(peer_group_active (peer) && (peer->keepalive != g_peer->keepalive || peer->holdtime != g_peer->holdtime))))
{
vty_out (vty, " neighbor %s timers %u %u%s", addr,
peer->keepalive, peer->holdtime, VTY_NEWLINE);
vty_outln (vty, " neighbor %s timers %u %u", addr,
peer->keepalive, peer->holdtime);
}
if (CHECK_FLAG (peer->config, PEER_CONFIG_CONNECT) &&
@ -6816,8 +6806,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
(peer_group_active (peer) && peer->connect != g_peer->connect)))
{
vty_out (vty, " neighbor %s timers connect %u%s", addr,
peer->connect, VTY_NEWLINE);
vty_outln (vty, " neighbor %s timers connect %u", addr,
peer->connect);
}
/* capability dynamic */
@ -6826,8 +6816,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_DYNAMIC_CAPABILITY))
{
vty_out (vty, " neighbor %s capability dynamic%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s capability dynamic",addr);
}
}
@ -6837,8 +6826,8 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_CAPABILITY_ENHE))
{
vty_out (vty, " no neighbor %s capability extended-nexthop%s", addr,
VTY_NEWLINE);
vty_outln (vty, " no neighbor %s capability extended-nexthop",
addr);
}
}
@ -6847,8 +6836,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_CAPABILITY_ENHE))
{
vty_out (vty, " neighbor %s capability extended-nexthop%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s capability extended-nexthop",addr);
}
}
@ -6858,8 +6846,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_DONT_CAPABILITY))
{
vty_out (vty, " neighbor %s dont-capability-negotiate%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s dont-capability-negotiate",addr);
}
}
@ -6869,8 +6856,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_OVERRIDE_CAPABILITY))
{
vty_out (vty, " neighbor %s override-capability%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s override-capability",addr);
}
}
@ -6880,8 +6866,7 @@ bgp_config_write_peer_global (struct vty *vty, struct bgp *bgp,
if (! peer_group_active (peer) ||
! CHECK_FLAG (g_peer->flags, PEER_FLAG_STRICT_CAP_MATCH))
{
vty_out (vty, " neighbor %s strict-capability-match%s", addr,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s strict-capability-match",addr);
}
}
}
@ -6989,7 +6974,7 @@ bgp_config_write_peer_af (struct vty *vty, struct bgp *bgp,
vty_out (vty, " send");
else
vty_out (vty, " receive");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* Route reflector client. */
@ -7136,7 +7121,7 @@ bgp_config_write_peer_af (struct vty *vty, struct bgp *bgp,
" neighbor %s default-originate", addr);
if (peer->default_rmap[afi][safi].name)
vty_out (vty, " route-map %s", peer->default_rmap[afi][safi].name);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* Soft reconfiguration inbound. */
@ -7164,7 +7149,7 @@ bgp_config_write_peer_af (struct vty *vty, struct bgp *bgp,
vty_out (vty, " warning-only");
if (peer->pmax_restart[afi][safi])
vty_out (vty, " restart %u", peer->pmax_restart[afi][safi]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* Route server client. */
@ -7269,7 +7254,7 @@ bgp_config_write_family_header (struct vty *vty, afi_t afi, safi_t safi,
if (*write)
return;
vty_out (vty, " !%s address-family ", VTY_NEWLINE);
vty_outln (vty, " !%s address-family ", VTY_NEWLINE);
if (afi == AFI_IP)
{
@ -7302,7 +7287,7 @@ bgp_config_write_family_header (struct vty *vty, afi_t afi, safi_t safi,
if (safi == SAFI_EVPN)
vty_out (vty, "l2vpn evpn");
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
*write = 1;
}
@ -7341,7 +7326,7 @@ bgp_config_write_family (struct vty *vty, struct bgp *bgp, afi_t afi,
bgp_config_write_table_map (vty, bgp, afi, safi, &write);
if (write)
vty_out (vty, " exit-address-family%s", VTY_NEWLINE);
vty_outln (vty, " exit-address-family");
return write;
}
@ -7359,26 +7344,25 @@ bgp_config_write (struct vty *vty)
/* BGP Multiple instance. */
if (!bgp_option_check (BGP_OPT_MULTIPLE_INSTANCE))
{
vty_out (vty, "no bgp multiple-instance%s", VTY_NEWLINE);
vty_outln (vty, "no bgp multiple-instance");
write++;
}
/* BGP Config type. */
if (bgp_option_check (BGP_OPT_CONFIG_CISCO))
{
vty_out (vty, "bgp config-type cisco%s", VTY_NEWLINE);
vty_outln (vty, "bgp config-type cisco");
write++;
}
if (bm->rmap_update_timer != RMAP_DEFAULT_UPDATE_TIMER)
vty_out (vty, "bgp route-map delay-timer %u%s", bm->rmap_update_timer,
VTY_NEWLINE);
vty_outln (vty, "bgp route-map delay-timer %u",bm->rmap_update_timer);
/* BGP configuration. */
for (ALL_LIST_ELEMENTS (bm->bgp, mnode, mnnode, bgp))
{
if (write)
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
/* Router bgp ASN */
vty_out (vty, "router bgp %u", bgp->as);
@ -7390,70 +7374,66 @@ bgp_config_write (struct vty *vty)
(bgp->inst_type == BGP_INSTANCE_TYPE_VIEW) ?
"view" : "vrf", bgp->name);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
/* No Synchronization */
if (bgp_option_check (BGP_OPT_CONFIG_CISCO))
vty_out (vty, " no synchronization%s", VTY_NEWLINE);
vty_outln (vty, " no synchronization");
/* BGP fast-external-failover. */
if (CHECK_FLAG (bgp->flags, BGP_FLAG_NO_FAST_EXT_FAILOVER))
vty_out (vty, " no bgp fast-external-failover%s", VTY_NEWLINE);
vty_outln (vty, " no bgp fast-external-failover");
/* BGP router ID. */
if (bgp->router_id_static.s_addr != 0)
vty_out (vty, " bgp router-id %s%s",
inet_ntoa (bgp->router_id_static), VTY_NEWLINE);
vty_outln (vty, " bgp router-id %s",
inet_ntoa(bgp->router_id_static));
/* BGP log-neighbor-changes. */
if (!!bgp_flag_check (bgp, BGP_FLAG_LOG_NEIGHBOR_CHANGES)
!= DFLT_BGP_LOG_NEIGHBOR_CHANGES)
vty_out (vty, " %sbgp log-neighbor-changes%s",
bgp_flag_check (bgp, BGP_FLAG_LOG_NEIGHBOR_CHANGES) ? "" : "no ",
VTY_NEWLINE);
vty_outln (vty, " %sbgp log-neighbor-changes",
bgp_flag_check(bgp, BGP_FLAG_LOG_NEIGHBOR_CHANGES) ? "" : "no ");
/* BGP configuration. */
if (bgp_flag_check (bgp, BGP_FLAG_ALWAYS_COMPARE_MED))
vty_out (vty, " bgp always-compare-med%s", VTY_NEWLINE);
vty_outln (vty, " bgp always-compare-med");
/* BGP default ipv4-unicast. */
if (bgp_flag_check (bgp, BGP_FLAG_NO_DEFAULT_IPV4))
vty_out (vty, " no bgp default ipv4-unicast%s", VTY_NEWLINE);
vty_outln (vty, " no bgp default ipv4-unicast");
/* BGP default local-preference. */
if (bgp->default_local_pref != BGP_DEFAULT_LOCAL_PREF)
vty_out (vty, " bgp default local-preference %u%s",
bgp->default_local_pref, VTY_NEWLINE);
vty_outln (vty, " bgp default local-preference %u",
bgp->default_local_pref);
/* BGP default show-hostname */
if (!!bgp_flag_check(bgp, BGP_FLAG_SHOW_HOSTNAME)
!= DFLT_BGP_SHOW_HOSTNAME)
vty_out (vty, " %sbgp default show-hostname%s",
bgp_flag_check (bgp, BGP_FLAG_SHOW_HOSTNAME) ? "" : "no ",
VTY_NEWLINE);
vty_outln (vty, " %sbgp default show-hostname",
bgp_flag_check(bgp, BGP_FLAG_SHOW_HOSTNAME) ? "" : "no ");
/* BGP default subgroup-pkt-queue-max. */
if (bgp->default_subgroup_pkt_queue_max != BGP_DEFAULT_SUBGROUP_PKT_QUEUE_MAX)
vty_out (vty, " bgp default subgroup-pkt-queue-max %u%s",
bgp->default_subgroup_pkt_queue_max, VTY_NEWLINE);
vty_outln (vty, " bgp default subgroup-pkt-queue-max %u",
bgp->default_subgroup_pkt_queue_max);
/* BGP client-to-client reflection. */
if (bgp_flag_check (bgp, BGP_FLAG_NO_CLIENT_TO_CLIENT))
vty_out (vty, " no bgp client-to-client reflection%s", VTY_NEWLINE);
vty_outln (vty, " no bgp client-to-client reflection");
/* BGP cluster ID. */
if (CHECK_FLAG (bgp->config, BGP_CONFIG_CLUSTER_ID))
vty_out (vty, " bgp cluster-id %s%s", inet_ntoa (bgp->cluster_id),
VTY_NEWLINE);
vty_outln (vty, " bgp cluster-id %s",inet_ntoa(bgp->cluster_id));
/* Disable ebgp connected nexthop check */
if (bgp_flag_check (bgp, BGP_FLAG_DISABLE_NH_CONNECTED_CHK))
vty_out (vty, " bgp disable-ebgp-connected-route-check%s", VTY_NEWLINE);
vty_outln (vty, " bgp disable-ebgp-connected-route-check");
/* Confederation identifier*/
if (CHECK_FLAG (bgp->config, BGP_CONFIG_CONFEDERATION))
vty_out (vty, " bgp confederation identifier %i%s", bgp->confed_id,
VTY_NEWLINE);
vty_outln (vty, " bgp confederation identifier %i",bgp->confed_id);
/* Confederation peer */
if (bgp->confed_peers_cnt > 0)
@ -7465,19 +7445,18 @@ bgp_config_write (struct vty *vty)
for (i = 0; i < bgp->confed_peers_cnt; i++)
vty_out(vty, " %u", bgp->confed_peers[i]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* BGP enforce-first-as. */
if (bgp_flag_check (bgp, BGP_FLAG_ENFORCE_FIRST_AS))
vty_out (vty, " bgp enforce-first-as%s", VTY_NEWLINE);
vty_outln (vty, " bgp enforce-first-as");
/* BGP deterministic-med. */
if (!!bgp_flag_check (bgp, BGP_FLAG_DETERMINISTIC_MED)
!= DFLT_BGP_DETERMINISTIC_MED)
vty_out (vty, " %sbgp deterministic-med%s",
bgp_flag_check (bgp, BGP_FLAG_DETERMINISTIC_MED) ? "" : "no ",
VTY_NEWLINE);
vty_outln (vty, " %sbgp deterministic-med",
bgp_flag_check(bgp, BGP_FLAG_DETERMINISTIC_MED) ? "" : "no ");
/* BGP update-delay. */
bgp_config_write_update_delay (vty, bgp);
@ -7487,14 +7466,14 @@ bgp_config_write (struct vty *vty)
vty_out (vty, " bgp max-med on-startup %u", bgp->v_maxmed_onstartup);
if (bgp->maxmed_onstartup_value != BGP_MAXMED_VALUE_DEFAULT)
vty_out (vty, " %u", bgp->maxmed_onstartup_value);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (bgp->v_maxmed_admin != BGP_MAXMED_ADMIN_UNCONFIGURED)
{
vty_out (vty, " bgp max-med administrative");
if (bgp->maxmed_admin_value != BGP_MAXMED_VALUE_DEFAULT)
vty_out (vty, " %u", bgp->maxmed_admin_value);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* write quanta */
@ -7505,42 +7484,42 @@ bgp_config_write (struct vty *vty)
/* BGP graceful-restart. */
if (bgp->stalepath_time != BGP_DEFAULT_STALEPATH_TIME)
vty_out (vty, " bgp graceful-restart stalepath-time %u%s",
bgp->stalepath_time, VTY_NEWLINE);
vty_outln (vty, " bgp graceful-restart stalepath-time %u",
bgp->stalepath_time);
if (bgp->restart_time != BGP_DEFAULT_RESTART_TIME)
vty_out (vty, " bgp graceful-restart restart-time %u%s",
bgp->restart_time, VTY_NEWLINE);
vty_outln (vty, " bgp graceful-restart restart-time %u",
bgp->restart_time);
if (bgp_flag_check (bgp, BGP_FLAG_GRACEFUL_RESTART))
vty_out (vty, " bgp graceful-restart%s", VTY_NEWLINE);
vty_outln (vty, " bgp graceful-restart");
/* BGP graceful-restart Preserve State F bit. */
if (bgp_flag_check (bgp, BGP_FLAG_GR_PRESERVE_FWD))
vty_out (vty, " bgp graceful-restart preserve-fw-state%s", VTY_NEWLINE);
vty_outln (vty, " bgp graceful-restart preserve-fw-state");
/* BGP bestpath method. */
if (bgp_flag_check (bgp, BGP_FLAG_ASPATH_IGNORE))
vty_out (vty, " bgp bestpath as-path ignore%s", VTY_NEWLINE);
vty_outln (vty, " bgp bestpath as-path ignore");
if (bgp_flag_check (bgp, BGP_FLAG_ASPATH_CONFED))
vty_out (vty, " bgp bestpath as-path confed%s", VTY_NEWLINE);
vty_outln (vty, " bgp bestpath as-path confed");
if (bgp_flag_check (bgp, BGP_FLAG_ASPATH_MULTIPATH_RELAX))
{
if (bgp_flag_check (bgp, BGP_FLAG_MULTIPATH_RELAX_AS_SET))
{
vty_out (vty, " bgp bestpath as-path multipath-relax as-set%s", VTY_NEWLINE);
vty_outln (vty,
" bgp bestpath as-path multipath-relax as-set");
}
else
{
vty_out (vty, " bgp bestpath as-path multipath-relax%s", VTY_NEWLINE);
vty_outln (vty, " bgp bestpath as-path multipath-relax");
}
}
if (bgp_flag_check (bgp, BGP_FLAG_RR_ALLOW_OUTBOUND_POLICY)) {
vty_out (vty, " bgp route-reflector allow-outbound-policy%s",
VTY_NEWLINE);
vty_outln (vty," bgp route-reflector allow-outbound-policy");
}
if (bgp_flag_check (bgp, BGP_FLAG_COMPARE_ROUTER_ID))
vty_out (vty, " bgp bestpath compare-routerid%s", VTY_NEWLINE);
vty_outln (vty, " bgp bestpath compare-routerid");
if (bgp_flag_check (bgp, BGP_FLAG_MED_CONFED)
|| bgp_flag_check (bgp, BGP_FLAG_MED_MISSING_AS_WORST))
{
@ -7549,15 +7528,14 @@ bgp_config_write (struct vty *vty)
vty_out (vty, " confed");
if (bgp_flag_check (bgp, BGP_FLAG_MED_MISSING_AS_WORST))
vty_out (vty, " missing-as-worst");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* BGP network import check. */
if (!!bgp_flag_check (bgp, BGP_FLAG_IMPORT_CHECK)
!= DFLT_BGP_IMPORT_CHECK)
vty_out (vty, " %sbgp network import-check%s",
bgp_flag_check (bgp, BGP_FLAG_IMPORT_CHECK) ? "" : "no ",
VTY_NEWLINE);
vty_outln (vty, " %sbgp network import-check",
bgp_flag_check(bgp, BGP_FLAG_IMPORT_CHECK) ? "" : "no ");
/* BGP flag dampening. */
if (CHECK_FLAG (bgp->af_flags[AFI_IP][SAFI_UNICAST],
@ -7567,8 +7545,8 @@ bgp_config_write (struct vty *vty)
/* BGP timers configuration. */
if (bgp->default_keepalive != BGP_DEFAULT_KEEPALIVE
&& bgp->default_holdtime != BGP_DEFAULT_HOLDTIME)
vty_out (vty, " timers bgp %u %u%s", bgp->default_keepalive,
bgp->default_holdtime, VTY_NEWLINE);
vty_outln (vty, " timers bgp %u %u", bgp->default_keepalive,
bgp->default_holdtime);
/* peer-group */
for (ALL_LIST_ELEMENTS (bgp->group, node, nnode, group))
@ -7588,7 +7566,7 @@ bgp_config_write (struct vty *vty)
/* No auto-summary */
if (bgp_option_check (BGP_OPT_CONFIG_CISCO))
vty_out (vty, " no auto-summary%s", VTY_NEWLINE);
vty_outln (vty, " no auto-summary");
/* IPv4 unicast configuration. */
write += bgp_config_write_family (vty, bgp, AFI_IP, SAFI_UNICAST);

File diff suppressed because it is too large Load Diff

View File

@ -3101,12 +3101,12 @@ DEFUN (
if (!str2prefix (argv[5]->arg, &pfx))
{
vty_out (vty, "Malformed address \"%s\"%s", argv[5]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address \"%s\"", argv[5]->arg);
return CMD_WARNING;
}
if (pfx.family != AF_INET && pfx.family != AF_INET6)
{
vty_out (vty, "Invalid address \"%s\"%s", argv[5]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid address \"%s\"", argv[5]->arg);
return CMD_WARNING;
}
@ -3185,12 +3185,12 @@ DEFUN (debug_rfapi_open,
rc = rfapi_open (rfapi_get_rfp_start_val_by_bgp (bgp_get_default ()),
&vn, &un, /*&uo */ NULL, &lifetime, NULL, &handle);
vty_out (vty, "rfapi_open: status %d, handle %p, lifetime %d%s",
rc, handle, lifetime, VTY_NEWLINE);
vty_outln (vty, "rfapi_open: status %d, handle %p, lifetime %d",
rc, handle, lifetime);
rc = rfapi_set_response_cb (handle, test_nexthops_callback);
vty_out (vty, "rfapi_set_response_cb: status %d%s", rc, VTY_NEWLINE);
vty_outln (vty, "rfapi_set_response_cb: status %d", rc);
return CMD_SUCCESS;
}
@ -3230,15 +3230,14 @@ DEFUN (debug_rfapi_close_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
rc = rfapi_close (handle);
vty_out (vty, "rfapi_close(handle=%p): status %d%s", handle, rc,
VTY_NEWLINE);
vty_outln (vty, "rfapi_close(handle=%p): status %d", handle,rc);
return CMD_SUCCESS;
}
@ -3259,14 +3258,13 @@ DEFUN (debug_rfapi_close_rfd,
if (*endptr != '\0' || (uintptr_t) handle == UINTPTR_MAX)
{
vty_out (vty, "Invalid value: %s%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid value: %s", argv[4]->arg);
return CMD_WARNING;
}
rc = rfapi_close (handle);
vty_out (vty, "rfapi_close(handle=%p): status %d%s", handle, rc,
VTY_NEWLINE);
vty_outln (vty, "rfapi_close(handle=%p): status %d", handle,rc);
return CMD_SUCCESS;
}
@ -3313,8 +3311,8 @@ DEFUN (debug_rfapi_register_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
@ -3323,12 +3321,12 @@ DEFUN (debug_rfapi_register_vn_un,
*/
if (!str2prefix (argv[8]->arg, &pfx))
{
vty_out (vty, "Malformed prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
if (pfx.family != AF_INET && pfx.family != AF_INET6)
{
vty_out (vty, "Bad family for prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Bad family for prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
rfapiQprefix2Rprefix (&pfx, &hpfx);
@ -3346,8 +3344,8 @@ DEFUN (debug_rfapi_register_vn_un,
rc = rfapi_register (handle, &hpfx, lifetime, NULL, NULL, 0);
if (rc)
{
vty_out (vty, "rfapi_register failed with rc=%d (%s)%s", rc,
strerror (rc), VTY_NEWLINE);
vty_outln (vty, "rfapi_register failed with rc=%d (%s)", rc,
strerror(rc));
}
return CMD_SUCCESS;
@ -3402,8 +3400,8 @@ DEFUN (debug_rfapi_register_vn_un_l2o,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
@ -3412,12 +3410,12 @@ DEFUN (debug_rfapi_register_vn_un_l2o,
*/
if (!str2prefix (argv[8]->arg, &pfx))
{
vty_out (vty, "Malformed prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
if (pfx.family != AF_INET && pfx.family != AF_INET6)
{
vty_out (vty, "Bad family for prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Bad family for prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
rfapiQprefix2Rprefix (&pfx, &hpfx);
@ -3436,7 +3434,7 @@ DEFUN (debug_rfapi_register_vn_un_l2o,
optary[opt_next].v.l2addr.logical_net_id = strtoul(argv[14]->arg, NULL, 10);
if ((rc = rfapiStr2EthAddr (argv[12]->arg, &optary[opt_next].v.l2addr.macaddr)))
{
vty_out (vty, "Bad mac address \"%s\"%s", argv[12]->arg, VTY_NEWLINE);
vty_outln (vty, "Bad mac address \"%s\"", argv[12]->arg);
return CMD_WARNING;
}
optary[opt_next].type = RFAPI_VN_OPTION_TYPE_L2ADDR;
@ -3455,8 +3453,8 @@ DEFUN (debug_rfapi_register_vn_un_l2o,
rc = rfapi_register (handle, &hpfx, lifetime, NULL /* &uo */ , opt, 0);
if (rc)
{
vty_out (vty, "rfapi_register failed with rc=%d (%s)%s", rc,
strerror (rc), VTY_NEWLINE);
vty_outln (vty, "rfapi_register failed with rc=%d (%s)", rc,
strerror(rc));
}
return CMD_SUCCESS;
@ -3498,8 +3496,8 @@ DEFUN (debug_rfapi_unregister_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
@ -3508,12 +3506,12 @@ DEFUN (debug_rfapi_unregister_vn_un,
*/
if (!str2prefix (argv[8]->arg, &pfx))
{
vty_out (vty, "Malformed prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
if (pfx.family != AF_INET && pfx.family != AF_INET6)
{
vty_out (vty, "Bad family for prefix \"%s\"%s", argv[8]->arg, VTY_NEWLINE);
vty_outln (vty, "Bad family for prefix \"%s\"", argv[8]->arg);
return CMD_WARNING;
}
rfapiQprefix2Rprefix (&pfx, &hpfx);
@ -3569,8 +3567,8 @@ DEFUN (debug_rfapi_query_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
@ -3581,8 +3579,8 @@ DEFUN (debug_rfapi_query_vn_un,
if (rc)
{
vty_out (vty, "rfapi_query failed with rc=%d (%s)%s", rc,
strerror (rc), VTY_NEWLINE);
vty_outln (vty, "rfapi_query failed with rc=%d (%s)", rc,
strerror(rc));
}
else
{
@ -3644,14 +3642,14 @@ DEFUN (debug_rfapi_query_vn_un_l2o,
if ((rc = rfapiCliGetRfapiIpAddr (vty, argv[2], &target)))
return rc;
#else
vty_out (vty, "%% This command is broken.%s", VTY_NEWLINE);
vty_outln (vty, "%% This command is broken.");
return CMD_WARNING;
#endif
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[4]->arg, argv[6]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[4]->arg, argv[6]->arg);
return CMD_WARNING;
}
@ -3661,7 +3659,7 @@ DEFUN (debug_rfapi_query_vn_un_l2o,
memset (&l2o_buf, 0, sizeof (l2o_buf));
if (rfapiStr2EthAddr (argv[10]->arg, &l2o_buf.macaddr))
{
vty_out (vty, "Bad mac address \"%s\"%s", argv[10]->arg, VTY_NEWLINE);
vty_outln (vty, "Bad mac address \"%s\"", argv[10]->arg);
return CMD_WARNING;
}
@ -3690,8 +3688,8 @@ DEFUN (debug_rfapi_query_vn_un_l2o,
if (rc)
{
vty_out (vty, "rfapi_query failed with rc=%d (%s)%s", rc,
strerror (rc), VTY_NEWLINE);
vty_outln (vty, "rfapi_query failed with rc=%d (%s)", rc,
strerror(rc));
}
else
{
@ -3752,8 +3750,8 @@ DEFUN (debug_rfapi_query_done_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[5]->arg, argv[7]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[5]->arg, argv[7]->arg);
return CMD_WARNING;
}
@ -3762,7 +3760,7 @@ DEFUN (debug_rfapi_query_done_vn_un,
*/
rc = rfapi_query_done (handle, &target);
vty_out (vty, "rfapi_query_done returned %d%s", rc, VTY_NEWLINE);
vty_outln (vty, "rfapi_query_done returned %d", rc);
return CMD_SUCCESS;
}
@ -3788,14 +3786,14 @@ DEFUN (debug_rfapi_show_import,
bgp = bgp_get_default (); /* assume 1 instance for now */
if (!bgp)
{
vty_out (vty, "No BGP instance%s", VTY_NEWLINE);
vty_outln (vty, "No BGP instance");
return CMD_WARNING;
}
h = bgp->rfapi;
if (!h)
{
vty_out (vty, "No RFAPI instance%s", VTY_NEWLINE);
vty_outln (vty, "No RFAPI instance");
return CMD_WARNING;
}
@ -3809,7 +3807,7 @@ DEFUN (debug_rfapi_show_import,
{
s = ecommunity_ecom2str (it->rt_import_list,
ECOMMUNITY_FORMAT_ROUTE_MAP, 0);
vty_out (vty, "Import Table %p, RTs: %s%s", it, s, VTY_NEWLINE);
vty_outln (vty, "Import Table %p, RTs: %s", it, s);
XFREE (MTYPE_ECOMMUNITY_STR, s);
rfapiShowImportTable (vty, "IP VPN", it->imported_vpn[AFI_IP], 1);
@ -3839,8 +3837,8 @@ DEFUN (debug_rfapi_show_import,
lni = lni_as_ptr;
if (first_l2)
{
vty_out (vty, "%sLNI-based Ethernet Tables:%s",
VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "%sLNI-based Ethernet Tables:",
VTY_NEWLINE);
first_l2 = 0;
}
snprintf (buf, BUFSIZ, "L2VPN LNI=%u", lni);
@ -3891,8 +3889,8 @@ DEFUN (debug_rfapi_show_import_vn_un,
if (rfapi_find_handle_vty (vty, &vn, &un, &handle))
{
vty_out (vty, "can't locate handle matching vn=%s, un=%s%s",
argv[5]->arg, argv[7]->arg, VTY_NEWLINE);
vty_outln (vty, "can't locate handle matching vn=%s, un=%s",
argv[5]->arg, argv[7]->arg);
return CMD_WARNING;
}
@ -3922,12 +3920,12 @@ DEFUN (debug_rfapi_response_omit_self,
if (!bgp)
{
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
if (!bgp->rfapi_cfg)
{
vty_out (vty, "VNC not configured%s", VTY_NEWLINE);
vty_outln (vty, "VNC not configured");
return CMD_WARNING;
}
@ -4193,7 +4191,7 @@ rfapi_rfp_get_or_init_group_config_nve (
if (!rfg || !listnode_lookup (rfc->nve_groups_sequential, rfg))
{
/* Not in list anymore */
vty_out (vty, "Current NVE group no longer exists%s", VTY_NEWLINE);
vty_outln (vty, "Current NVE group no longer exists");
return NULL;
}
@ -4218,7 +4216,7 @@ rfapi_rfp_get_or_init_group_config_l2 (
if (!rfg || !listnode_lookup (rfc->l2_groups, rfg))
{
/* Not in list anymore */
vty_out (vty, "Current L2 group no longer exists%s", VTY_NEWLINE);
vty_outln (vty, "Current L2 group no longer exists");
return NULL;
}
if (rfg->rfp_cfg == NULL && size > 0)

View File

@ -939,14 +939,14 @@ rfapiShowVncQueries (void *stream, struct prefix *pfx_match)
bgp = bgp_get_default (); /* assume 1 instance for now */
if (!bgp)
{
vty_out (vty, "No BGP instance%s", VTY_NEWLINE);
vty_outln (vty, "No BGP instance");
return CMD_WARNING;
}
h = bgp->rfapi;
if (!h)
{
vty_out (vty, "No RFAPI instance%s", VTY_NEWLINE);
vty_outln (vty, "No RFAPI instance");
return CMD_WARNING;
}
@ -2221,7 +2221,7 @@ register_add (
if (!bgp)
{
if (vty)
vty_out (vty, "BGP not configured%s", VTY_NEWLINE);
vty_outln (vty, "BGP not configured");
return CMD_WARNING;
}
@ -2230,7 +2230,7 @@ register_add (
if (!h || !rfapi_cfg)
{
if (vty)
vty_out (vty, "RFAPI not configured%s", VTY_NEWLINE);
vty_outln (vty, "RFAPI not configured");
return CMD_WARNING;
}
@ -2240,14 +2240,12 @@ register_add (
{
if (arg_lnh)
{
vty_out (vty, "local-next-hop specified more than once%s",
VTY_NEWLINE);
vty_outln (vty,"local-next-hop specified more than once");
return CMD_WARNING;
}
if (argc <= 1)
{
vty_out (vty, "Missing parameter for local-next-hop%s",
VTY_NEWLINE);
vty_outln (vty,"Missing parameter for local-next-hop");
return CMD_WARNING;
}
++argv, --argc;
@ -2257,14 +2255,12 @@ register_add (
{
if (arg_lnh_cost)
{
vty_out (vty, "local-cost specified more than once%s",
VTY_NEWLINE);
vty_outln (vty,"local-cost specified more than once");
return CMD_WARNING;
}
if (argc <= 1)
{
vty_out (vty, "Missing parameter for local-cost%s",
VTY_NEWLINE);
vty_outln (vty,"Missing parameter for local-cost");
return CMD_WARNING;
}
++argv, --argc;
@ -2292,8 +2288,7 @@ register_add (
arg_prefix = "0::0/128";
break;
default:
vty_out (vty, "Internal error, unknown VN address family%s",
VTY_NEWLINE);
vty_outln (vty,"Internal error, unknown VN address family");
return CMD_WARNING;
}
@ -2301,15 +2296,14 @@ register_add (
if (!str2prefix (arg_prefix, &pfx))
{
vty_out (vty, "Malformed prefix \"%s\"%s", arg_prefix,
VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"",arg_prefix);
goto fail;
}
if (pfx.family != AF_INET
&& pfx.family != AF_INET6)
{
vty_out (vty, "prefix \"%s\" has invalid address family%s",
arg_prefix, VTY_NEWLINE);
vty_outln (vty, "prefix \"%s\" has invalid address family",
arg_prefix);
goto fail;
}
@ -2322,7 +2316,7 @@ register_add (
cost = strtoul (arg_cost, &endptr, 10);
if (*endptr != '\0' || cost > 255)
{
vty_out (vty, "%% Invalid %s value%s", "cost", VTY_NEWLINE);
vty_outln (vty, "%% Invalid %s value", "cost");
goto fail;
}
}
@ -2343,8 +2337,7 @@ register_add (
lifetime = strtoul (arg_lifetime, &endptr, 10);
if (*endptr != '\0')
{
vty_out (vty, "%% Invalid %s value%s", "lifetime",
VTY_NEWLINE);
vty_outln (vty, "%% Invalid %s value","lifetime");
goto fail;
}
}
@ -2358,17 +2351,16 @@ register_add (
{
if (!arg_lnh)
{
vty_out (vty,
"%% %s may only be specified with local-next-hop%s",
"local-cost", VTY_NEWLINE);
vty_outln (vty,
"%% %s may only be specified with local-next-hop",
"local-cost");
goto fail;
}
endptr = NULL;
lnh_cost = strtoul (arg_lnh_cost, &endptr, 10);
if (*endptr != '\0' || lnh_cost > 255)
{
vty_out (vty, "%% Invalid %s value%s", "local-cost",
VTY_NEWLINE);
vty_outln (vty, "%% Invalid %s value","local-cost");
goto fail;
}
}
@ -2381,8 +2373,8 @@ register_add (
{
if (!arg_prefix)
{
vty_out (vty, "%% %s may only be specified with prefix%s",
"local-next-hop", VTY_NEWLINE);
vty_outln (vty, "%% %s may only be specified with prefix",
"local-next-hop");
goto fail;
}
if ((rc = rfapiCliGetPrefixAddr (vty, arg_lnh,
@ -2409,8 +2401,8 @@ register_add (
if (arg_vni && !arg_macaddr)
{
vty_out (vty, "%% %s may only be specified with mac address%s",
"virtual-network-identifier", VTY_NEWLINE);
vty_outln (vty, "%% %s may only be specified with mac address",
"virtual-network-identifier");
goto fail;
}
@ -2418,9 +2410,8 @@ register_add (
{
if (!arg_vni)
{
vty_out (vty,
"Missing \"vni\" parameter (mandatory with mac)%s",
VTY_NEWLINE);
vty_outln (vty,
"Missing \"vni\" parameter (mandatory with mac)");
return CMD_WARNING;
}
optary[opt_next].v.l2addr.logical_net_id = strtoul(arg_vni, NULL,
@ -2429,8 +2420,7 @@ register_add (
if ((rc = rfapiStr2EthAddr (arg_macaddr,
&optary[opt_next].v.l2addr.macaddr)))
{
vty_out (vty, "Invalid %s value%s", "mac address",
VTY_NEWLINE);
vty_outln (vty, "Invalid %s value","mac address");
goto fail;
}
/* TBD label, NVE ID */
@ -2482,16 +2472,16 @@ register_add (
&rfd);
if (rc)
{
vty_out (vty, "Can't open session for this NVE: %s%s",
rfapi_error_str (rc), VTY_NEWLINE);
vty_outln (vty, "Can't open session for this NVE: %s",
rfapi_error_str(rc));
rc = CMD_WARNING;
goto fail;
}
}
else
{
vty_out (vty, "Can't find session for this NVE: %s%s",
rfapi_error_str (rc), VTY_NEWLINE);
vty_outln (vty, "Can't find session for this NVE: %s",
rfapi_error_str(rc));
goto fail;
}
}
@ -2526,11 +2516,10 @@ register_add (
}
vnc_zlog_debug_verbose ("%s: rfapi_register failed", __func__);
vty_out (vty, "%s", VTY_NEWLINE);
vty_out (vty, "Registration failed.%s", VTY_NEWLINE);
vty_out (vty,
"Confirm that either the VN or UN address matches a configured NVE group.%s",
VTY_NEWLINE);
vty_outln (vty, "");
vty_outln (vty, "Registration failed.");
vty_outln (vty,
"Confirm that either the VN or UN address matches a configured NVE group.");
return CMD_WARNING;
fail:
@ -3145,7 +3134,7 @@ parse_deleter_args (
if (!str2prefix (arg_prefix, &rcdarg->prefix))
{
vty_out (vty, "Malformed prefix \"%s\"%s", arg_prefix, VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"", arg_prefix);
return rc;
}
}
@ -3154,15 +3143,15 @@ parse_deleter_args (
{
if (!arg_vni)
{
vty_out (vty, "Missing VNI%s", VTY_NEWLINE);
vty_outln (vty, "Missing VNI");
return rc;
}
if (strcmp (arg_l2addr, "*"))
{
if ((rc = rfapiStr2EthAddr (arg_l2addr, &rcdarg->l2o.o.macaddr)))
{
vty_out (vty, "Malformed L2 Address \"%s\"%s",
arg_l2addr, VTY_NEWLINE);
vty_outln (vty, "Malformed L2 Address \"%s\"",
arg_l2addr);
return rc;
}
rcdarg->l2o.flags |= RFAPI_L2O_MACADDR;
@ -3177,8 +3166,8 @@ parse_deleter_args (
{
if (!str2prefix_rd (arg_rd, &rcdarg->rd))
{
vty_out (vty, "Malformed RD \"%s\"%s",
arg_rd, VTY_NEWLINE);
vty_outln (vty, "Malformed RD \"%s\"",
arg_rd);
return rc;
}
}
@ -3721,23 +3710,21 @@ print_cleared_stats (struct rfapi_local_reg_delete_arg *cda)
cda->nves = NULL;
}
if (cda->failed_pfx_count)
vty_out (vty, "Failed to delete %d prefixes%s",
cda->failed_pfx_count, VTY_NEWLINE);
vty_outln (vty, "Failed to delete %d prefixes",
cda->failed_pfx_count);
/* left as "prefixes" even in single case for ease of machine parsing */
vty_out (vty,
"[Local] Cleared %u registrations, %u prefixes, %u responses from %d NVEs%s",
cda->reg_count, cda->pfx_count, cda->query_count, cda->nve_count,
VTY_NEWLINE);
vty_outln (vty,
"[Local] Cleared %u registrations, %u prefixes, %u responses from %d NVEs",
cda->reg_count, cda->pfx_count, cda->query_count,cda->nve_count);
/*
* We don't currently allow deletion of active remote prefixes from
* the command line
*/
vty_out (vty, "[Holddown] Cleared %u prefixes from %u NVEs%s",
cda->remote_holddown_pfx_count, cda->remote_holddown_nve_count,
VTY_NEWLINE);
vty_outln (vty, "[Holddown] Cleared %u prefixes from %u NVEs",
cda->remote_holddown_pfx_count,cda->remote_holddown_nve_count);
}
/*
@ -4414,9 +4401,8 @@ check_and_display_is_vnc_running (struct vty *vty)
if (vty)
{
vty_out (vty,
"VNC is not configured. (There are no configured BGP VPN SAFI peers.)%s",
VTY_NEWLINE);
vty_outln (vty,
"VNC is not configured. (There are no configured BGP VPN SAFI peers.)");
}
return 0; /* not running */
}
@ -4479,10 +4465,10 @@ rfapi_vty_show_nve_summary (struct vty *vty, show_nve_summary_t show_type)
h->stat.count_registrations_failed);
vty_out (vty, "%-8s %-8u", "Total:",
h->stat.count_registrations);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
vty_out (vty, "%-24s ", "Prefixes registered:");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
rfapiCountAllItRoutes (&active_local_routes,
&active_remote_routes,
@ -4494,16 +4480,16 @@ rfapi_vty_show_nve_summary (struct vty *vty, show_nve_summary_t show_type)
{
vty_out (vty, " %-20s ", "Locally:");
vty_out (vty, "%-8s %-8u ", "Active:", active_local_routes);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
vty_out (vty, " %-20s ", "Remotely:");
vty_out (vty, "%-8s %-8u", "Active:", active_remote_routes);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " %-20s ", "In Holddown:");
vty_out (vty, "%-8s %-8u", "Active:", holddown_remote_routes);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " %-20s ", "Imported:");
vty_out (vty, "%-8s %-8u", "Active:", imported_remote_routes);
break;
@ -4522,12 +4508,12 @@ rfapi_vty_show_nve_summary (struct vty *vty, show_nve_summary_t show_type)
default:
break;
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
return 0;
notcfg:
vty_out (vty, "VNC is not configured.%s", VTY_NEWLINE);
vty_outln (vty, "VNC is not configured.");
return CMD_WARNING;
}
@ -4594,34 +4580,34 @@ rfapi_show_nves (
if (!printed)
{
/* print out a header */
vty_out (vty, " "
"Active Next Hops%s", VTY_NEWLINE);
vty_out (vty, "%-15s %-15s %-5s %-5s %-6s %-6s %s%s",
vty_outln (vty,
" " "Active Next Hops");
vty_outln (vty, "%-15s %-15s %-5s %-5s %-6s %-6s %s",
"VN Address",
"UN Address",
"Regis", "Resps", "Reach", "Remove", "Age", VTY_NEWLINE);
"Regis", "Resps", "Reach", "Remove", "Age");
}
++printed;
vty_out (vty, "%-15s %-15s %-5u %-5u %-6u %-6u %s%s",
vty_outln (vty, "%-15s %-15s %-5u %-5u %-6u %-6u %s",
vn_addr_buf,
un_addr_buf,
rfapiApCount (rfd),
rfapi_monitor_count (rfd),
rfd->stat_count_nh_reachable,
rfd->stat_count_nh_removal,
rfapiFormatAge (rfd->open_time, age, 10), VTY_NEWLINE);
rfapiFormatAge(rfd->open_time, age, 10));
}
if (printed > 0 || vn_prefix || un_prefix)
vty_out (vty, "Displayed %d out of %d active NVEs%s",
printed, total, VTY_NEWLINE);
vty_outln (vty, "Displayed %d out of %d active NVEs",
printed, total);
return 0;
notcfg:
vty_out (vty, "VNC is not configured.%s", VTY_NEWLINE);
vty_outln (vty, "VNC is not configured.");
return CMD_WARNING;
}
@ -4636,7 +4622,7 @@ DEFUN (vnc_show_summary,
if (!check_and_display_is_vnc_running (vty))
return CMD_SUCCESS;
bgp_rfapi_show_summary (bgp_get_default (), vty);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
rfapi_vty_show_nve_summary (vty, SHOW_NVE_SUMMARY_ACTIVE_NVES);
rfapi_vty_show_nve_summary (vty, SHOW_NVE_SUMMARY_QUERIES);
rfapi_vty_show_nve_summary (vty, SHOW_NVE_SUMMARY_RESPONSES);
@ -4673,12 +4659,12 @@ DEFUN (vnc_show_nves_ptct,
if (!str2prefix (argv[4]->arg, &pfx))
{
vty_out (vty, "Malformed address \"%s\"%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, "Malformed address \"%s\"", argv[4]->arg);
return CMD_WARNING;
}
if (pfx.family != AF_INET && pfx.family != AF_INET6)
{
vty_out (vty, "Invalid address \"%s\"%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid address \"%s\"", argv[4]->arg);
return CMD_WARNING;
}
@ -4733,7 +4719,7 @@ rfapi_show_registrations (
}
if (!printed)
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
@ -4754,7 +4740,7 @@ DEFUN (vnc_show_registrations_pfx,
{
if (!str2prefix (argv[3]->arg, &p))
{
vty_out (vty, "Invalid prefix: %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid prefix: %s", argv[3]->arg);
return CMD_SUCCESS;
}
else
@ -4794,7 +4780,7 @@ DEFUN (vnc_show_registrations_some_pfx,
{
if (!str2prefix (argv[4]->arg, &p))
{
vty_out (vty, "Invalid prefix: %s%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid prefix: %s", argv[4]->arg);
return CMD_SUCCESS;
}
else
@ -4851,7 +4837,7 @@ DEFUN (vnc_show_responses_pfx,
{
if (!str2prefix (argv[3]->arg, &p))
{
vty_out (vty, "Invalid prefix: %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid prefix: %s", argv[3]->arg);
return CMD_SUCCESS;
}
else
@ -4894,7 +4880,7 @@ DEFUN (vnc_show_responses_some_pfx,
{
if (!str2prefix (argv[4]->arg, &p))
{
vty_out (vty, "Invalid prefix: %s%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid prefix: %s", argv[4]->arg);
return CMD_SUCCESS;
}
else
@ -4943,7 +4929,7 @@ DEFUN (show_vnc_queries_pfx,
{
if (!str2prefix (argv[3]->arg, &pfx))
{
vty_out (vty, "Invalid prefix: %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid prefix: %s", argv[3]->arg);
return CMD_WARNING;
}
p = &pfx;
@ -4996,7 +4982,7 @@ DEFUN (vnc_clear_counters,
return CMD_SUCCESS;
notcfg:
vty_out (vty, "VNC is not configured.%s", VTY_NEWLINE);
vty_outln (vty, "VNC is not configured.");
return CMD_WARNING;
}
@ -5026,12 +5012,12 @@ vnc_add_vrf_prefix (struct vty *vty,
bgp = bgp_get_default (); /* assume main instance for now */
if (!bgp)
{
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
if (!bgp->rfapi || !bgp->rfapi_cfg)
{
vty_out (vty, "VRF support not configured%s", VTY_NEWLINE);
vty_outln (vty, "VRF support not configured");
return CMD_WARNING;
}
@ -5039,32 +5025,32 @@ vnc_add_vrf_prefix (struct vty *vty,
/* arg checks */
if (!rfg)
{
vty_out (vty, "VRF \"%s\" appears not to be configured.%s",
arg_vrf, VTY_NEWLINE);
vty_outln (vty, "VRF \"%s\" appears not to be configured.",
arg_vrf);
return CMD_WARNING;
}
if (!rfg->rt_export_list || !rfg->rfapi_import_table)
{
vty_out (vty, "VRF \"%s\" is missing RT import/export RT configuration.%s",
arg_vrf, VTY_NEWLINE);
vty_outln (vty, "VRF \"%s\" is missing RT import/export RT configuration.",
arg_vrf);
return CMD_WARNING;
}
if (!rfg->rd.family && !arg_rd)
{
vty_out (vty, "VRF \"%s\" isn't configured with an RD, so RD must be provided.%s",
arg_vrf, VTY_NEWLINE);
vty_outln (vty, "VRF \"%s\" isn't configured with an RD, so RD must be provided.",
arg_vrf);
return CMD_WARNING;
}
if (rfg->label > MPLS_LABEL_MAX && !arg_label)
{
vty_out (vty, "VRF \"%s\" isn't configured with a default labels, so a label must be provided.%s",
arg_vrf, VTY_NEWLINE);
vty_outln (vty, "VRF \"%s\" isn't configured with a default labels, so a label must be provided.",
arg_vrf);
return CMD_WARNING;
}
if (!str2prefix (arg_prefix, &pfx))
{
vty_out (vty, "Malformed prefix \"%s\"%s",
arg_prefix, VTY_NEWLINE);
vty_outln (vty, "Malformed prefix \"%s\"",
arg_prefix);
return CMD_WARNING;
}
rfapiQprefix2Rprefix (&pfx, &rpfx);
@ -5077,8 +5063,8 @@ vnc_add_vrf_prefix (struct vty *vty,
opt->type = RFAPI_VN_OPTION_TYPE_INTERNAL_RD;
if (!str2prefix_rd (arg_rd, &opt->v.internal_rd))
{
vty_out (vty, "Malformed RD \"%s\"%s",
arg_rd, VTY_NEWLINE);
vty_outln (vty, "Malformed RD \"%s\"",
arg_rd);
return CMD_WARNING;
}
}
@ -5105,7 +5091,8 @@ vnc_add_vrf_prefix (struct vty *vty,
pref = strtoul (arg_pref, &endptr, 10);
if (*endptr != '\0')
{
vty_out (vty, "%% Invalid local-preference value \"%s\"%s", arg_pref, VTY_NEWLINE);
vty_outln (vty, "%% Invalid local-preference value \"%s\"",
arg_pref);
return CMD_WARNING;
}
}
@ -5169,7 +5156,7 @@ vnc_add_vrf_prefix (struct vty *vty,
}
vnc_zlog_debug_verbose ("%s: rfapi_register failed", __func__);
vty_out (vty, "Add failed.%s", VTY_NEWLINE);
vty_outln (vty, "Add failed.");
return CMD_WARNING;
}
@ -5279,20 +5266,20 @@ vnc_clear_vrf (struct vty *vty,
bgp = bgp_get_default (); /* assume main instance for now */
if (!bgp)
{
vty_out (vty, "No BGP process is configured%s", VTY_NEWLINE);
vty_outln (vty, "No BGP process is configured");
return CMD_WARNING;
}
if (!bgp->rfapi || !bgp->rfapi_cfg)
{
vty_out (vty, "VRF support not configured%s", VTY_NEWLINE);
vty_outln (vty, "VRF support not configured");
return CMD_WARNING;
}
rfg = bgp_rfapi_cfg_match_byname (bgp, arg_vrf, RFAPI_GROUP_CFG_VRF);
/* arg checks */
if (!rfg)
{
vty_out (vty, "VRF \"%s\" appears not to be configured.%s",
arg_vrf, VTY_NEWLINE);
vty_outln (vty, "VRF \"%s\" appears not to be configured.",
arg_vrf);
return CMD_WARNING;
}
rc = parse_deleter_args (vty, bgp, arg_prefix, NULL, NULL, NULL, NULL,
@ -5303,8 +5290,8 @@ vnc_clear_vrf (struct vty *vty,
start_count = rfapi_cfg_group_it_count(rfg);
clear_vnc_prefix (&cda);
clear_vnc_vrf_closer (rfg);
vty_out (vty, "Cleared %u out of %d prefixes.%s",
cda.pfx_count, start_count, VTY_NEWLINE);
vty_outln (vty, "Cleared %u out of %d prefixes.",
cda.pfx_count, start_count);
return CMD_SUCCESS;
}

View File

@ -79,13 +79,13 @@ DEFUN (debug_bgp_vnc,
else
{
term_vnc_debug |= vncdebug[i].bit;
vty_out (vty, "BGP vnc %s debugging is on%s",
vncdebug[i].name, VTY_NEWLINE);
vty_outln (vty, "BGP vnc %s debugging is on",
vncdebug[i].name);
}
return CMD_SUCCESS;
}
}
vty_out (vty, "Unknown debug flag: %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Unknown debug flag: %s", argv[3]->arg);
return CMD_WARNING;
}
@ -118,13 +118,13 @@ DEFUN (no_debug_bgp_vnc,
else
{
term_vnc_debug &= ~vncdebug[i].bit;
vty_out (vty, "BGP vnc %s debugging is off%s",
vncdebug[i].name, VTY_NEWLINE);
vty_outln (vty, "BGP vnc %s debugging is off",
vncdebug[i].name);
}
return CMD_SUCCESS;
}
}
vty_out (vty, "Unknown debug flag: %s%s", argv[3]->arg, VTY_NEWLINE);
vty_outln (vty, "Unknown debug flag: %s", argv[3]->arg);
return CMD_WARNING;
}
@ -144,7 +144,7 @@ DEFUN (no_debug_bgp_vnc_all,
VNC_STR)
{
term_vnc_debug = 0;
vty_out (vty, "All possible VNC debugging has been turned off%s", VTY_NEWLINE);
vty_outln (vty, "All possible VNC debugging has been turned off");
return CMD_SUCCESS;
}
@ -163,17 +163,17 @@ DEFUN (show_debugging_bgp_vnc,
{
size_t i;
vty_out (vty, "BGP VNC debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "BGP VNC debugging status:");
for (i = 0; i < (sizeof(vncdebug) / sizeof(struct vnc_debug)); ++i)
{
if (term_vnc_debug & vncdebug[i].bit)
{
vty_out (vty, " BGP VNC %s debugging is on%s",
vncdebug[i].name, VTY_NEWLINE);
vty_outln (vty, " BGP VNC %s debugging is on",
vncdebug[i].name);
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return CMD_SUCCESS;
}
@ -187,7 +187,7 @@ bgp_vnc_config_write_debug (struct vty *vty)
{
if (conf_vnc_debug & vncdebug[i].bit)
{
vty_out (vty, "debug bgp vnc %s%s", vncdebug[i].name, VTY_NEWLINE);
vty_outln (vty, "debug bgp vnc %s", vncdebug[i].name);
write++;
}
}

View File

@ -197,7 +197,7 @@ rfp_cfg_write_cb (struct vty *vty, void *rfp_start_val)
if (rfi->config_var != 0)
{
vty_out (vty, " rfp example-config-value %u", rfi->config_var);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}

View File

@ -84,9 +84,8 @@ config_write_debug (struct vty *vty)
if (conf_debug_eigrp_packet[i] == 0 && term_debug_eigrp_packet[i] == 0 )
continue;
vty_out (vty, "debug eigrp packet %s%s%s",
type_str[i], detail_str[conf_debug_eigrp_packet[i]],
VTY_NEWLINE);
vty_outln (vty, "debug eigrp packet %s%s",
type_str[i],detail_str[conf_debug_eigrp_packet[i]]);
write = 1;
}
@ -211,13 +210,13 @@ void
show_ip_eigrp_interface_header (struct vty *vty, struct eigrp *eigrp)
{
vty_out (vty, "%s%s%d%s%s%s %-10s %-10s %-10s %-6s %-12s %-7s %-14s %-12s %-8s %-8s %-8s%s %-39s %-12s %-7s %-14s %-12s %-8s%s",
vty_outln (vty, "%s%s%d%s%s%s %-10s %-10s %-10s %-6s %-12s %-7s %-14s %-12s %-8s %-8s %-8s%s %-39s %-12s %-7s %-14s %-12s %-8s",
VTY_NEWLINE,
"EIGRP interfaces for AS(",eigrp->AS,")",VTY_NEWLINE,VTY_NEWLINE,
"Interface", "Bandwidth", "Delay", "Peers", "Xmit Queue", "Mean",
"Pacing Time", "Multicast", "Pending", "Hello", "Holdtime",
VTY_NEWLINE,"","Un/Reliable","SRTT","Un/Reliable","Flow Timer","Routes",
VTY_NEWLINE);
VTY_NEWLINE,"","Un/Reliable","SRTT","Un/Reliable","Flow Timer",
"Routes");
}
void
@ -230,40 +229,40 @@ show_ip_eigrp_interface_sub (struct vty *vty, struct eigrp *eigrp,
vty_out (vty, "%-7u", ei->nbrs->count);
vty_out (vty, "%u %c %-10u",0,'/', eigrp_neighbor_packet_queue_sum (ei));
vty_out (vty, "%-7u %-14u %-12u %-8u", 0, 0, 0, 0);
vty_out (vty, "%-8u %-8u %s",
vty_outln (vty, "%-8u %-8u ",
IF_DEF_PARAMS (ei->ifp)->v_hello,
IF_DEF_PARAMS (ei->ifp)->v_wait,VTY_NEWLINE);
IF_DEF_PARAMS(ei->ifp)->v_wait);
}
void
show_ip_eigrp_interface_detail (struct vty *vty, struct eigrp *eigrp,
struct eigrp_interface *ei)
{
vty_out (vty, "%-2s %s %d %-3s %s","","Hello interval is ", 0, " sec", VTY_NEWLINE);
vty_out (vty, "%-2s %s %s %s","", "Next xmit serial","<none>", VTY_NEWLINE);
vty_out (vty, "%-2s %s %d %s %d %s %d %s %d %s",
vty_outln (vty, "%-2s %s %d %-3s ","","Hello interval is ", 0, " sec");
vty_outln (vty, "%-2s %s %s ","", "Next xmit serial","<none>");
vty_outln (vty, "%-2s %s %d %s %d %s %d %s %d ",
"", "Un/reliable mcasts: ", 0, "/", 0, "Un/reliable ucasts: ",
0, "/", 0, VTY_NEWLINE);
vty_out (vty, "%-2s %s %d %s %d %s %d %s",
0, "/", 0);
vty_outln (vty, "%-2s %s %d %s %d %s %d ",
"", "Mcast exceptions: ", 0, " CR packets: ",
0, " ACKs supressed: ", 0, VTY_NEWLINE);
vty_out (vty, "%-2s %s %d %s %d %s",
0, " ACKs supressed: ", 0);
vty_outln (vty, "%-2s %s %d %s %d ",
"", "Retransmissions sent: ", 0, "Out-of-sequence rcvd: ",
0 ,VTY_NEWLINE);
vty_out (vty, "%-2s %s %s %s %s",
"", "Authentication mode is ", "not","set", VTY_NEWLINE);
vty_out (vty, "%-2s %s %s", "", "Use multicast", VTY_NEWLINE);
0);
vty_outln (vty, "%-2s %s %s %s ",
"", "Authentication mode is ", "not","set");
vty_outln (vty, "%-2s %s ", "", "Use multicast");
}
void
show_ip_eigrp_neighbor_header (struct vty *vty, struct eigrp *eigrp)
{
vty_out (vty, "%s%s%d%s%s%s%-3s %-17s %-20s %-6s %-8s %-6s %-5s %-5s %-5s%s %-41s %-6s %-8s %-6s %-4s %-6s %-5s %s",
vty_outln (vty, "%s%s%d%s%s%s%-3s %-17s %-20s %-6s %-8s %-6s %-5s %-5s %-5s%s %-41s %-6s %-8s %-6s %-4s %-6s %-5s ",
VTY_NEWLINE,
"EIGRP neighbors for AS(",eigrp->AS,")",VTY_NEWLINE,VTY_NEWLINE,
"H", "Address", "Interface", "Hold", "Uptime",
"SRTT", "RTO", "Q", "Seq", VTY_NEWLINE
,"","(sec)","","(ms)","","Cnt","Num", VTY_NEWLINE);
,"","(sec)","","(ms)","","Cnt","Num");
}
void
@ -276,7 +275,7 @@ show_ip_eigrp_neighbor_sub (struct vty *vty, struct eigrp_neighbor *nbr,
vty_out (vty,"%-7lu", thread_timer_remain_second (nbr->t_holddown));
vty_out (vty,"%-8u %-6u %-5u", 0, 0, EIGRP_PACKET_RETRANS_TIME);
vty_out (vty,"%-7lu", nbr->retrans_queue->count);
vty_out (vty,"%u%s", nbr->recv_sequence_number, VTY_NEWLINE);
vty_outln (vty,"%u", nbr->recv_sequence_number);
if (detail)
@ -286,7 +285,7 @@ show_ip_eigrp_neighbor_sub (struct vty *vty, struct eigrp_neighbor *nbr,
nbr->tlv_rel_major, nbr->tlv_rel_minor);
vty_out(vty,", Retrans: %lu, Retries: %lu",
nbr->retrans_queue->count, 0UL);
vty_out(vty,", %s%s", eigrp_nbr_state_str(nbr), VTY_NEWLINE);
vty_outln (vty,", %s", eigrp_nbr_state_str(nbr));
}
}
@ -299,11 +298,11 @@ show_ip_eigrp_topology_header (struct vty *vty, struct eigrp *eigrp)
struct in_addr router_id;
router_id.s_addr = eigrp->router_id;
vty_out (vty, "%sEIGRP Topology Table for AS(%d)/ID(%s)%s%s",
VTY_NEWLINE, eigrp->AS, inet_ntoa(router_id), VTY_NEWLINE, VTY_NEWLINE);
vty_out (vty, "Codes: P - Passive, A - Active, U - Update, Q - Query, "
"R - Reply%s r - reply Status, s - sia Status%s%s",
VTY_NEWLINE, VTY_NEWLINE,VTY_NEWLINE);
vty_outln (vty, "%sEIGRP Topology Table for AS(%d)/ID(%s)%s",
VTY_NEWLINE, eigrp->AS, inet_ntoa(router_id), VTY_NEWLINE);
vty_outln (vty, "Codes: P - Passive, A - Active, U - Update, Q - Query, "
"R - Reply%s r - reply Status, s - sia Status%s",
VTY_NEWLINE, VTY_NEWLINE);
}
void
@ -316,7 +315,7 @@ show_ip_eigrp_prefix_entry (struct vty *vty, struct eigrp_prefix_entry *tn)
vty_out (vty, "%s/%u, ",
inet_ntoa (tn->destination_ipv4->prefix), tn->destination_ipv4->prefixlen);
vty_out (vty, "%u successors, ", successors->count);
vty_out (vty, "FD is %u, serno: %" PRIu64 " %s", tn->fdistance, tn->serno, VTY_NEWLINE);
vty_outln (vty, "FD is %u, serno: %" PRIu64 " ", tn->fdistance, tn->serno);
list_delete(successors);
}
@ -335,15 +334,15 @@ show_ip_eigrp_neighbor_entry (struct vty *vty, struct eigrp *eigrp,
}
if (te->adv_router == eigrp->neighbor_self)
vty_out (vty, "%-7s%s, %s%s", " ", "via Connected",
eigrp_if_name_string (te->ei), VTY_NEWLINE);
else
{
vty_out (vty, "%-7s%s%s (%u/%u), %s%s",
" ", "via ", inet_ntoa (te->adv_router->src),
te->distance, te->reported_distance,
eigrp_if_name_string (te->ei), VTY_NEWLINE);
}
vty_outln (vty, "%-7s%s, %s", " ", "via Connected",
eigrp_if_name_string(te->ei));
else
{
vty_outln (vty, "%-7s%s%s (%u/%u), %s",
" ", "via ", inet_ntoa (te->adv_router->src),
te->distance, te->reported_distance,
eigrp_if_name_string(te->ei));
}
}
@ -356,11 +355,11 @@ DEFUN (show_debugging_eigrp,
{
int i;
vty_out (vty, "EIGRP debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP debugging status:");
/* Show debug status for events. */
if (IS_DEBUG_EIGRP(event,EVENT))
vty_out (vty, " EIGRP event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP event debugging is on");
/* Show debug status for EIGRP Packets. */
for (i = 0; i < 11 ; i++)
@ -370,23 +369,20 @@ DEFUN (show_debugging_eigrp,
if (IS_DEBUG_EIGRP_PACKET (i, SEND) && IS_DEBUG_EIGRP_PACKET (i, RECV))
{
vty_out (vty, " EIGRP packet %s%s debugging is on%s",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " EIGRP packet %s%s debugging is on",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "");
}
else
{
if (IS_DEBUG_EIGRP_PACKET (i, SEND))
vty_out (vty, " EIGRP packet %s send%s debugging is on%s",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " EIGRP packet %s send%s debugging is on",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "");
if (IS_DEBUG_EIGRP_PACKET (i, RECV))
vty_out (vty, " EIGRP packet %s receive%s debugging is on%s",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " EIGRP packet %s receive%s debugging is on%s",
lookup_msg(eigrp_packet_type_str, i + 1, NULL),
IS_DEBUG_EIGRP_PACKET (i, PACKET_DETAIL) ? " detail" : "");
}
}

View File

@ -366,10 +366,9 @@ void eigrp_nbr_hard_restart(struct eigrp_neighbor *nbr, struct vty *vty)
if(vty != NULL)
{
vty_time_print (vty, 0);
vty_out (vty, "Neighbor %s (%s) is down: manually cleared%s",
vty_outln (vty, "Neighbor %s (%s) is down: manually cleared",
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT),
VTY_NEWLINE);
ifindex2ifname(nbr->ei->ifp->ifindex, VRF_DEFAULT));
}
/* send Hello with Peer Termination TLV */

View File

@ -154,10 +154,10 @@ eigrp_route_match_add (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find rule.");
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% Argument is malformed.");
return CMD_WARNING;
}
}
@ -176,10 +176,10 @@ eigrp_route_match_delete (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find rule.");
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% Argument is malformed.");
return CMD_WARNING;
}
}
@ -199,7 +199,7 @@ eigrp_route_set_add (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find rule.");
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
/* rip, ripng and other protocols share the set metric command
@ -207,7 +207,7 @@ eigrp_route_set_add (struct vty *vty, struct route_map_index *index,
if metric is out of range for rip and ripng, it is not for
other protocols. Do not return an error */
if (strcmp(command, "metric")) {
vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% Argument is malformed.");
return CMD_WARNING;
}
}
@ -228,10 +228,10 @@ eigrp_route_set_delete (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% Can't find rule.%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find rule.");
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% Argument is malformed.%s", VTY_NEWLINE);
vty_outln (vty, "%% Argument is malformed.");
return CMD_WARNING;
}
}
@ -1124,7 +1124,7 @@ DEFUN (set_ip_nexthop,
ret = str2sockunion (argv[0], &su);
if (ret < 0)
{
vty_out (vty, "%% Malformed next-hop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed next-hop address");
return CMD_WARNING;
}

View File

@ -1047,10 +1047,9 @@ eigrp_update_send_GR (struct eigrp_neighbor *nbr, enum GR_type gr_type, struct v
if(vty != NULL)
{
vty_time_print (vty, 0);
vty_out (vty, "Neighbor %s (%s) is resync: manually cleared%s",
vty_outln (vty, "Neighbor %s (%s) is resync: manually cleared",
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT),
VTY_NEWLINE);
ifindex2ifname(nbr->ei->ifp->ifindex, VRF_DEFAULT));
}
}

View File

@ -65,18 +65,18 @@ config_write_network (struct vty *vty, struct eigrp *eigrp)
if (rn->info)
{
/* Network print. */
vty_out (vty, " network %s/%d %s",
inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen, VTY_NEWLINE);
vty_outln (vty, " network %s/%d ",
inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
}
if (eigrp->max_paths != EIGRP_MAX_PATHS_DEFAULT)
vty_out (vty, " maximum-paths %d%s", eigrp->max_paths, VTY_NEWLINE);
vty_outln (vty, " maximum-paths %d", eigrp->max_paths);
if (eigrp->variance != EIGRP_VARIANCE_DEFAULT)
vty_out (vty, " variance %d%s", eigrp->variance, VTY_NEWLINE);
vty_outln (vty, " variance %d", eigrp->variance);
/*Separate EIGRP configuration from the rest of the config*/
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
return 0;
}
@ -89,35 +89,39 @@ config_write_interfaces (struct vty *vty, struct eigrp *eigrp)
for (ALL_LIST_ELEMENTS_RO (eigrp->eiflist, node, ei))
{
vty_out (vty, "interface %s%s", ei->ifp->name, VTY_NEWLINE);
vty_outln (vty, "interface %s", ei->ifp->name);
if ((IF_DEF_PARAMS (ei->ifp)->auth_type) == EIGRP_AUTH_TYPE_MD5)
{
vty_out (vty, " ip authentication mode eigrp %d md5%s", eigrp->AS, VTY_NEWLINE);
vty_outln (vty, " ip authentication mode eigrp %d md5", eigrp->AS);
}
if ((IF_DEF_PARAMS (ei->ifp)->auth_type) == EIGRP_AUTH_TYPE_SHA256)
{
vty_out (vty, " ip authentication mode eigrp %d hmac-sha-256%s", eigrp->AS, VTY_NEWLINE);
vty_outln (vty, " ip authentication mode eigrp %d hmac-sha-256",
eigrp->AS);
}
if(IF_DEF_PARAMS (ei->ifp)->auth_keychain)
{
vty_out (vty, " ip authentication key-chain eigrp %d %s%s",eigrp->AS,IF_DEF_PARAMS (ei->ifp)->auth_keychain, VTY_NEWLINE);
vty_outln (vty, " ip authentication key-chain eigrp %d %s",eigrp->AS,
IF_DEF_PARAMS(ei->ifp)->auth_keychain);
}
if ((IF_DEF_PARAMS (ei->ifp)->v_hello) != EIGRP_HELLO_INTERVAL_DEFAULT)
{
vty_out (vty, " ip hello-interval eigrp %d%s", IF_DEF_PARAMS (ei->ifp)->v_hello, VTY_NEWLINE);
vty_outln (vty, " ip hello-interval eigrp %d",
IF_DEF_PARAMS(ei->ifp)->v_hello);
}
if ((IF_DEF_PARAMS (ei->ifp)->v_wait) != EIGRP_HOLD_INTERVAL_DEFAULT)
{
vty_out (vty, " ip hold-time eigrp %d%s", IF_DEF_PARAMS (ei->ifp)->v_wait, VTY_NEWLINE);
vty_outln (vty, " ip hold-time eigrp %d",
IF_DEF_PARAMS(ei->ifp)->v_wait);
}
/*Separate this EIGRP interface configuration from the others*/
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return 0;
@ -130,26 +134,23 @@ eigrp_write_interface (struct vty *vty)
struct interface *ifp;
for (ALL_LIST_ELEMENTS_RO (vrf_iflist(VRF_DEFAULT), node, ifp)) {
vty_out (vty, "interface %s%s", ifp->name,
VTY_NEWLINE);
vty_outln (vty, "interface %s",ifp->name);
if (ifp->desc)
vty_out (vty, " description %s%s", ifp->desc,
VTY_NEWLINE);
vty_outln (vty, " description %s",ifp->desc);
if (IF_DEF_PARAMS (ifp)->bandwidth != EIGRP_BANDWIDTH_DEFAULT)
vty_out (vty, " bandwidth %u%s", IF_DEF_PARAMS (ifp)->bandwidth,
VTY_NEWLINE);
vty_outln (vty, " bandwidth %u",IF_DEF_PARAMS(ifp)->bandwidth);
if (IF_DEF_PARAMS (ifp)->delay != EIGRP_DELAY_DEFAULT)
vty_out (vty, " delay %u%s", IF_DEF_PARAMS (ifp)->delay, VTY_NEWLINE);
vty_outln (vty, " delay %u", IF_DEF_PARAMS(ifp)->delay);
if (IF_DEF_PARAMS (ifp)->v_hello != EIGRP_HELLO_INTERVAL_DEFAULT)
vty_out (vty, " ip hello-interval eigrp %u%s",
IF_DEF_PARAMS (ifp)->v_hello, VTY_NEWLINE);
vty_outln (vty, " ip hello-interval eigrp %u",
IF_DEF_PARAMS(ifp)->v_hello);
if (IF_DEF_PARAMS (ifp)->v_wait != EIGRP_HOLD_INTERVAL_DEFAULT)
vty_out (vty, " ip hold-time eigrp %u%s",
IF_DEF_PARAMS (ifp)->v_wait, VTY_NEWLINE);
vty_outln (vty, " ip hold-time eigrp %u",
IF_DEF_PARAMS(ifp)->v_wait);
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return 0;
@ -178,7 +179,7 @@ config_write_eigrp_router (struct vty *vty, struct eigrp *eigrp)
int write=0;
/* `router eigrp' print. */
vty_out (vty, "router eigrp %d%s", eigrp->AS, VTY_NEWLINE);
vty_outln (vty, "router eigrp %d", eigrp->AS);
write++;
@ -190,8 +191,8 @@ config_write_eigrp_router (struct vty *vty, struct eigrp *eigrp)
{
struct in_addr router_id_static;
router_id_static.s_addr = htonl(eigrp->router_id_static);
vty_out (vty, " eigrp router-id %s%s",
inet_ntoa (router_id_static), VTY_NEWLINE);
vty_outln (vty, " eigrp router-id %s",
inet_ntoa(router_id_static));
}
/* Network area print. */
@ -201,7 +202,7 @@ config_write_eigrp_router (struct vty *vty, struct eigrp *eigrp)
config_write_eigrp_distribute (vty, eigrp);
/*Separate EIGRP configuration from the rest of the config*/
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
return write;
}
@ -234,8 +235,7 @@ DEFUN (no_router_eigrp,
eigrp = eigrp_lookup ();
if (eigrp->AS != atoi (argv[3]->arg))
{
vty_out (vty, "%% Attempting to deconfigure non-existent AS%s",
VTY_NEWLINE);
vty_outln (vty,"%% Attempting to deconfigure non-existent AS");
return CMD_WARNING;
}
@ -393,7 +393,7 @@ DEFUN (eigrp_network,
if (ret == 0)
{
vty_out (vty, "There is already same network statement.%s", VTY_NEWLINE);
vty_outln (vty, "There is already same network statement.");
return CMD_WARNING;
}
@ -417,7 +417,7 @@ DEFUN (no_eigrp_network,
if (ret == 0)
{
vty_out (vty,"Can't find specified network configuration.%s", VTY_NEWLINE);
vty_outln (vty,"Can't find specified network configuration.");
return CMD_WARNING;
}
@ -465,7 +465,7 @@ DEFUN (show_ip_eigrp_topology,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -521,7 +521,7 @@ DEFUN (show_ip_eigrp_interfaces,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -568,7 +568,7 @@ DEFUN (show_ip_eigrp_neighbors,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -607,7 +607,7 @@ DEFUN (eigrp_if_delay,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -633,7 +633,7 @@ DEFUN (no_eigrp_if_delay,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -658,7 +658,7 @@ DEFUN (eigrp_if_bandwidth,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -684,7 +684,7 @@ DEFUN (no_eigrp_if_bandwidth,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -709,7 +709,7 @@ DEFUN (eigrp_if_ip_hellointerval,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -737,7 +737,7 @@ DEFUN (no_eigrp_if_ip_hellointerval,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -771,7 +771,7 @@ DEFUN (eigrp_if_ip_holdinterval,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -798,7 +798,7 @@ DEFUN (eigrp_ip_summary_address,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -826,7 +826,7 @@ DEFUN (no_eigrp_ip_summary_address,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -852,7 +852,7 @@ DEFUN (no_eigrp_if_ip_holdinterval,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -899,7 +899,7 @@ DEFUN (eigrp_authentication_mode,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -929,7 +929,7 @@ DEFUN (no_eigrp_authentication_mode,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -955,7 +955,7 @@ DEFUN (eigrp_authentication_keychain,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -971,7 +971,7 @@ DEFUN (eigrp_authentication_keychain,
IF_DEF_PARAMS (ifp)->auth_keychain = strdup(keychain->name);
}
else
vty_out(vty,"Key chain with specified name not found%s", VTY_NEWLINE);
vty_outln (vty,"Key chain with specified name not found");
return CMD_SUCCESS;
}
@ -993,7 +993,7 @@ DEFUN (no_eigrp_authentication_keychain,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1004,7 +1004,8 @@ DEFUN (no_eigrp_authentication_keychain,
IF_DEF_PARAMS (ifp)->auth_keychain = NULL;
}
else
vty_out(vty,"Key chain with specified name not configured on interface%s", VTY_NEWLINE);
vty_outln (vty,
"Key chain with specified name not configured on interface");
return CMD_SUCCESS;
}
@ -1079,7 +1080,7 @@ DEFUN (eigrp_variance,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
variance = atoi(argv[1]->arg);
@ -1102,7 +1103,7 @@ DEFUN (no_eigrp_variance,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1125,7 +1126,7 @@ DEFUN (eigrp_maximum_paths,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1150,7 +1151,7 @@ DEFUN (no_eigrp_maximum_paths,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, "EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1181,7 +1182,7 @@ DEFUN (clear_ip_eigrp_neighbors,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1200,10 +1201,9 @@ DEFUN (clear_ip_eigrp_neighbors,
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT));
vty_time_print (vty, 0);
vty_out (vty, "Neighbor %s (%s) is down: manually cleared%s",
vty_outln (vty, "Neighbor %s (%s) is down: manually cleared",
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT),
VTY_NEWLINE);
ifindex2ifname(nbr->ei->ifp->ifindex, VRF_DEFAULT));
/* set neighbor to DOWN */
nbr->state = EIGRP_NEIGHBOR_DOWN;
@ -1238,7 +1238,7 @@ DEFUN (clear_ip_eigrp_neighbors_int,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1247,7 +1247,7 @@ DEFUN (clear_ip_eigrp_neighbors_int,
ei = eigrp_if_lookup_by_name(eigrp, argv[idx]->arg);
if(ei == NULL)
{
vty_out (vty, " Interface (%s) doesn't exist%s", argv[idx]->arg, VTY_NEWLINE);
vty_outln (vty, " Interface (%s) doesn't exist", argv[idx]->arg);
return CMD_WARNING;
}
@ -1263,10 +1263,9 @@ DEFUN (clear_ip_eigrp_neighbors_int,
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT));
vty_time_print (vty, 0);
vty_out (vty, "Neighbor %s (%s) is down: manually cleared%s",
vty_outln (vty, "Neighbor %s (%s) is down: manually cleared",
inet_ntoa (nbr->src),
ifindex2ifname (nbr->ei->ifp->ifindex, VRF_DEFAULT),
VTY_NEWLINE);
ifindex2ifname(nbr->ei->ifp->ifindex, VRF_DEFAULT));
/* set neighbor to DOWN */
nbr->state = EIGRP_NEIGHBOR_DOWN;
@ -1300,7 +1299,7 @@ DEFUN (clear_ip_eigrp_neighbors_IP,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1310,7 +1309,7 @@ DEFUN (clear_ip_eigrp_neighbors_IP,
/* if neighbor doesn't exists, notify user and exit */
if(nbr == NULL)
{
vty_out (vty, "Neighbor with entered address doesn't exists.%s", VTY_NEWLINE);
vty_outln (vty, "Neighbor with entered address doesn't exists.");
return CMD_WARNING;
}
@ -1338,7 +1337,7 @@ DEFUN (clear_ip_eigrp_neighbors_soft,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1368,7 +1367,7 @@ DEFUN (clear_ip_eigrp_neighbors_int_soft,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1376,7 +1375,7 @@ DEFUN (clear_ip_eigrp_neighbors_int_soft,
ei = eigrp_if_lookup_by_name(eigrp, argv[4]->arg);
if(ei == NULL)
{
vty_out (vty, " Interface (%s) doesn't exist%s", argv[4]->arg, VTY_NEWLINE);
vty_outln (vty, " Interface (%s) doesn't exist", argv[4]->arg);
return CMD_WARNING;
}
@ -1408,7 +1407,7 @@ DEFUN (clear_ip_eigrp_neighbors_IP_soft,
eigrp = eigrp_lookup ();
if (eigrp == NULL)
{
vty_out (vty, " EIGRP Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, " EIGRP Routing Process not enabled");
return CMD_SUCCESS;
}
@ -1418,7 +1417,7 @@ DEFUN (clear_ip_eigrp_neighbors_IP_soft,
/* if neighbor doesn't exists, notify user and exit */
if(nbr == NULL)
{
vty_out (vty, "Neighbor with entered address doesn't exists.%s", VTY_NEWLINE);
vty_outln (vty, "Neighbor with entered address doesn't exists.");
return CMD_WARNING;
}

View File

@ -402,13 +402,13 @@ isis_adj_print_vty (struct isis_adjacency *adj, struct vty *vty, char detail)
else
vty_out (vty, "- ");
vty_out (vty, "%-10s", snpa_print (adj->snpa));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (detail == ISIS_UI_LEVEL_DETAIL)
{
level = adj->level;
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (adj->circuit)
vty_out (vty, " Interface: %s", adj->circuit->interface->name);
else
@ -421,18 +421,18 @@ isis_adj_print_vty (struct isis_adjacency *adj, struct vty *vty, char detail)
time2string (adj->last_upd + adj->hold_time - now));
else
vty_out (vty, ", Expires in %s", time2string (adj->hold_time));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " Adjacency flaps: %u", adj->flaps);
vty_out (vty, ", Last: %s ago", time2string (now - adj->last_flap));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " Circuit type: %s", circuit_t2string (adj->circuit_t));
vty_out (vty, ", Speaks: %s", nlpid2string (&adj->nlpids));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (adj->mt_count != 1 || adj->mt_set[0] != ISIS_MT_IPV4_UNICAST)
{
vty_out (vty, " Topologies:%s", VTY_NEWLINE);
vty_outln (vty, " Topologies:");
for (unsigned int i = 0; i < adj->mt_count; i++)
vty_out (vty, " %s%s", isis_mtid2str(adj->mt_set[i]), VTY_NEWLINE);
vty_outln (vty, " %s", isis_mtid2str(adj->mt_set[i]));
}
vty_out (vty, " SNPA: %s", snpa_print (adj->snpa));
if (adj->circuit && (adj->circuit->circ_type == CIRCUIT_T_BROADCAST))
@ -445,7 +445,7 @@ isis_adj_print_vty (struct isis_adjacency *adj, struct vty *vty, char detail)
vty_out (vty, ", LAN id: %s.%02x",
sysid_print (adj->lanid), adj->lanid[ISIS_SYS_ID_LEN]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " LAN Priority: %u", adj->prio[adj->level - 1]);
vty_out (vty, ", %s, DIS flaps: %u, Last: %s ago",
@ -455,32 +455,32 @@ isis_adj_print_vty (struct isis_adjacency *adj, struct vty *vty, char detail)
(adj->dis_record[ISIS_LEVELS + level - 1].
last_dis_change)));
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (adj->area_addrs && listcount (adj->area_addrs) > 0)
{
struct area_addr *area_addr;
vty_out (vty, " Area Address(es):%s", VTY_NEWLINE);
vty_outln (vty, " Area Address(es):");
for (ALL_LIST_ELEMENTS_RO (adj->area_addrs, node, area_addr))
vty_out (vty, " %s%s", isonet_print (area_addr->area_addr,
area_addr->addr_len), VTY_NEWLINE);
vty_outln (vty, " %s",
isonet_print(area_addr->area_addr, area_addr->addr_len));
}
if (adj->ipv4_addrs && listcount (adj->ipv4_addrs) > 0)
{
vty_out (vty, " IPv4 Address(es):%s", VTY_NEWLINE);
vty_outln (vty, " IPv4 Address(es):");
for (ALL_LIST_ELEMENTS_RO (adj->ipv4_addrs, node, ip_addr))
vty_out (vty, " %s%s", inet_ntoa (*ip_addr), VTY_NEWLINE);
vty_outln (vty, " %s", inet_ntoa(*ip_addr));
}
if (adj->ipv6_addrs && listcount (adj->ipv6_addrs) > 0)
{
vty_out (vty, " IPv6 Address(es):%s", VTY_NEWLINE);
vty_outln (vty, " IPv6 Address(es):");
for (ALL_LIST_ELEMENTS_RO (adj->ipv6_addrs, node, ipv6_addr))
{
inet_ntop (AF_INET6, ipv6_addr, (char *)ip6, INET6_ADDRSTRLEN);
vty_out (vty, " %s%s", ip6, VTY_NEWLINE);
vty_outln (vty, " %s", ip6);
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
return;
}

View File

@ -878,7 +878,7 @@ isis_circuit_print_vty (struct isis_circuit *circuit, struct vty *vty,
vty_out (vty, "%-9s", circuit_state2string (circuit->state));
vty_out (vty, "%-9s", circuit_type2string (circuit->circ_type));
vty_out (vty, "%-9s", circuit_t2string (circuit->is_type));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (detail == ISIS_UI_LEVEL_DETAIL)
@ -894,15 +894,15 @@ isis_circuit_print_vty (struct isis_circuit *circuit, struct vty *vty,
else
vty_out (vty, ", Active");
vty_out (vty, ", Circuit Id: 0x%x", circuit->circuit_id);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " Type: %s", circuit_type2string (circuit->circ_type));
vty_out (vty, ", Level: %s", circuit_t2string (circuit->is_type));
if (circuit->circ_type == CIRCUIT_T_BROADCAST)
vty_out (vty, ", SNPA: %-10s", snpa_print (circuit->u.bc.snpa));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (circuit->is_type & IS_LEVEL_1)
{
vty_out (vty, " Level-1 Information:%s", VTY_NEWLINE);
vty_outln (vty, " Level-1 Information:");
if (circuit->area->newmetric)
vty_out (vty, " Metric: %d", circuit->te_metric[0]);
else
@ -910,32 +910,30 @@ isis_circuit_print_vty (struct isis_circuit *circuit, struct vty *vty,
circuit->metric[0]);
if (!circuit->is_passive)
{
vty_out (vty, ", Active neighbors: %u%s",
circuit->upadjcount[0], VTY_NEWLINE);
vty_out (vty, " Hello interval: %u, "
"Holddown count: %u %s%s",
vty_outln (vty, ", Active neighbors: %u",
circuit->upadjcount[0]);
vty_outln (vty, " Hello interval: %u, "
"Holddown count: %u %s",
circuit->hello_interval[0],
circuit->hello_multiplier[0],
(circuit->pad_hellos ? "(pad)" : "(no-pad)"),
VTY_NEWLINE);
vty_out (vty, " CNSP interval: %u, "
"PSNP interval: %u%s",
(circuit->pad_hellos ? "(pad)" : "(no-pad)"));
vty_outln (vty, " CNSP interval: %u, "
"PSNP interval: %u",
circuit->csnp_interval[0],
circuit->psnp_interval[0], VTY_NEWLINE);
circuit->psnp_interval[0]);
if (circuit->circ_type == CIRCUIT_T_BROADCAST)
vty_out (vty, " LAN Priority: %u, %s%s",
vty_outln (vty, " LAN Priority: %u, %s",
circuit->priority[0],
(circuit->u.bc.is_dr[0] ? \
"is DIS" : "is not DIS"), VTY_NEWLINE);
(circuit->u.bc.is_dr[0] ? "is DIS" : "is not DIS"));
}
else
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
if (circuit->is_type & IS_LEVEL_2)
{
vty_out (vty, " Level-2 Information:%s", VTY_NEWLINE);
vty_outln (vty, " Level-2 Information:");
if (circuit->area->newmetric)
vty_out (vty, " Metric: %d", circuit->te_metric[1]);
else
@ -943,58 +941,56 @@ isis_circuit_print_vty (struct isis_circuit *circuit, struct vty *vty,
circuit->metric[1]);
if (!circuit->is_passive)
{
vty_out (vty, ", Active neighbors: %u%s",
circuit->upadjcount[1], VTY_NEWLINE);
vty_out (vty, " Hello interval: %u, "
"Holddown count: %u %s%s",
vty_outln (vty, ", Active neighbors: %u",
circuit->upadjcount[1]);
vty_outln (vty, " Hello interval: %u, "
"Holddown count: %u %s",
circuit->hello_interval[1],
circuit->hello_multiplier[1],
(circuit->pad_hellos ? "(pad)" : "(no-pad)"),
VTY_NEWLINE);
vty_out (vty, " CNSP interval: %u, "
"PSNP interval: %u%s",
(circuit->pad_hellos ? "(pad)" : "(no-pad)"));
vty_outln (vty, " CNSP interval: %u, "
"PSNP interval: %u",
circuit->csnp_interval[1],
circuit->psnp_interval[1], VTY_NEWLINE);
circuit->psnp_interval[1]);
if (circuit->circ_type == CIRCUIT_T_BROADCAST)
vty_out (vty, " LAN Priority: %u, %s%s",
vty_outln (vty, " LAN Priority: %u, %s",
circuit->priority[1],
(circuit->u.bc.is_dr[1] ? \
"is DIS" : "is not DIS"), VTY_NEWLINE);
(circuit->u.bc.is_dr[1] ? "is DIS" : "is not DIS"));
}
else
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
if (circuit->ip_addrs && listcount (circuit->ip_addrs) > 0)
{
vty_out (vty, " IP Prefix(es):%s", VTY_NEWLINE);
vty_outln (vty, " IP Prefix(es):");
for (ALL_LIST_ELEMENTS_RO (circuit->ip_addrs, node, ip_addr))
{
prefix2str (ip_addr, buf, sizeof (buf)),
vty_out (vty, " %s%s", buf, VTY_NEWLINE);
vty_outln (vty, " %s", buf);
}
}
if (circuit->ipv6_link && listcount(circuit->ipv6_link) > 0)
{
vty_out(vty, " IPv6 Link-Locals:%s", VTY_NEWLINE);
vty_outln (vty, " IPv6 Link-Locals:");
for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_link, node, ip_addr))
{
prefix2str(ip_addr, (char*)buf, BUFSIZ),
vty_out(vty, " %s%s", buf, VTY_NEWLINE);
vty_outln (vty, " %s", buf);
}
}
if (circuit->ipv6_non_link && listcount(circuit->ipv6_non_link) > 0)
{
vty_out(vty, " IPv6 Prefixes:%s", VTY_NEWLINE);
vty_outln (vty, " IPv6 Prefixes:");
for (ALL_LIST_ELEMENTS_RO(circuit->ipv6_non_link, node, ip_addr))
{
prefix2str(ip_addr, (char*)buf, BUFSIZ),
vty_out(vty, " %s%s", buf, VTY_NEWLINE);
vty_outln (vty, " %s", buf);
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
return;
}
@ -1015,12 +1011,12 @@ isis_interface_config_write (struct vty *vty)
continue;
/* IF name */
vty_out (vty, "interface %s%s", ifp->name, VTY_NEWLINE);
vty_outln (vty, "interface %s", ifp->name);
write++;
/* IF desc */
if (ifp->desc)
{
vty_out (vty, " description %s%s", ifp->desc, VTY_NEWLINE);
vty_outln (vty, " description %s", ifp->desc);
write++;
}
/* ISIS Circuit */
@ -1031,39 +1027,36 @@ isis_interface_config_write (struct vty *vty)
continue;
if (circuit->ip_router)
{
vty_out (vty, " ip router isis %s%s", area->area_tag,
VTY_NEWLINE);
vty_outln (vty, " ip router isis %s",area->area_tag);
write++;
}
if (circuit->is_passive)
{
vty_out (vty, " isis passive%s", VTY_NEWLINE);
vty_outln (vty, " isis passive");
write++;
}
if (circuit->circ_type_config == CIRCUIT_T_P2P)
{
vty_out (vty, " isis network point-to-point%s", VTY_NEWLINE);
vty_outln (vty, " isis network point-to-point");
write++;
}
if (circuit->ipv6_router)
{
vty_out (vty, " ipv6 router isis %s%s", area->area_tag,
VTY_NEWLINE);
vty_outln (vty, " ipv6 router isis %s",area->area_tag);
write++;
}
/* ISIS - circuit type */
if (circuit->is_type == IS_LEVEL_1)
{
vty_out (vty, " isis circuit-type level-1%s", VTY_NEWLINE);
vty_outln (vty, " isis circuit-type level-1");
write++;
}
else
{
if (circuit->is_type == IS_LEVEL_2)
{
vty_out (vty, " isis circuit-type level-2-only%s",
VTY_NEWLINE);
vty_outln (vty," isis circuit-type level-2-only");
write++;
}
}
@ -1073,8 +1066,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->csnp_interval[0] != DEFAULT_CSNP_INTERVAL)
{
vty_out (vty, " isis csnp-interval %d%s",
circuit->csnp_interval[0], VTY_NEWLINE);
vty_outln (vty, " isis csnp-interval %d",
circuit->csnp_interval[0]);
write++;
}
}
@ -1084,8 +1077,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->csnp_interval[i] != DEFAULT_CSNP_INTERVAL)
{
vty_out (vty, " isis csnp-interval %d level-%d%s",
circuit->csnp_interval[i], i + 1, VTY_NEWLINE);
vty_outln (vty, " isis csnp-interval %d level-%d",
circuit->csnp_interval[i], i + 1);
write++;
}
}
@ -1096,8 +1089,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->psnp_interval[0] != DEFAULT_PSNP_INTERVAL)
{
vty_out (vty, " isis psnp-interval %d%s",
circuit->psnp_interval[0], VTY_NEWLINE);
vty_outln (vty, " isis psnp-interval %d",
circuit->psnp_interval[0]);
write++;
}
}
@ -1107,8 +1100,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->psnp_interval[i] != DEFAULT_PSNP_INTERVAL)
{
vty_out (vty, " isis psnp-interval %d level-%d%s",
circuit->psnp_interval[i], i + 1, VTY_NEWLINE);
vty_outln (vty, " isis psnp-interval %d level-%d",
circuit->psnp_interval[i], i + 1);
write++;
}
}
@ -1117,7 +1110,7 @@ isis_interface_config_write (struct vty *vty)
/* ISIS - Hello padding - Defaults to true so only display if false */
if (circuit->pad_hellos == 0)
{
vty_out (vty, " no isis hello padding%s", VTY_NEWLINE);
vty_outln (vty, " no isis hello padding");
write++;
}
@ -1126,8 +1119,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->hello_interval[0] != DEFAULT_HELLO_INTERVAL)
{
vty_out (vty, " isis hello-interval %d%s",
circuit->hello_interval[0], VTY_NEWLINE);
vty_outln (vty, " isis hello-interval %d",
circuit->hello_interval[0]);
write++;
}
}
@ -1137,8 +1130,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->hello_interval[i] != DEFAULT_HELLO_INTERVAL)
{
vty_out (vty, " isis hello-interval %d level-%d%s",
circuit->hello_interval[i], i + 1, VTY_NEWLINE);
vty_outln (vty, " isis hello-interval %d level-%d",
circuit->hello_interval[i], i + 1);
write++;
}
}
@ -1149,8 +1142,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->hello_multiplier[0] != DEFAULT_HELLO_MULTIPLIER)
{
vty_out (vty, " isis hello-multiplier %d%s",
circuit->hello_multiplier[0], VTY_NEWLINE);
vty_outln (vty, " isis hello-multiplier %d",
circuit->hello_multiplier[0]);
write++;
}
}
@ -1160,9 +1153,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->hello_multiplier[i] != DEFAULT_HELLO_MULTIPLIER)
{
vty_out (vty, " isis hello-multiplier %d level-%d%s",
circuit->hello_multiplier[i], i + 1,
VTY_NEWLINE);
vty_outln (vty, " isis hello-multiplier %d level-%d",
circuit->hello_multiplier[i],i + 1);
write++;
}
}
@ -1173,8 +1165,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->priority[0] != DEFAULT_PRIORITY)
{
vty_out (vty, " isis priority %d%s",
circuit->priority[0], VTY_NEWLINE);
vty_outln (vty, " isis priority %d",
circuit->priority[0]);
write++;
}
}
@ -1184,8 +1176,8 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->priority[i] != DEFAULT_PRIORITY)
{
vty_out (vty, " isis priority %d level-%d%s",
circuit->priority[i], i + 1, VTY_NEWLINE);
vty_outln (vty, " isis priority %d level-%d",
circuit->priority[i], i + 1);
write++;
}
}
@ -1196,8 +1188,7 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->te_metric[0] != DEFAULT_CIRCUIT_METRIC)
{
vty_out (vty, " isis metric %d%s", circuit->te_metric[0],
VTY_NEWLINE);
vty_outln (vty, " isis metric %d",circuit->te_metric[0]);
write++;
}
}
@ -1207,27 +1198,27 @@ isis_interface_config_write (struct vty *vty)
{
if (circuit->te_metric[i] != DEFAULT_CIRCUIT_METRIC)
{
vty_out (vty, " isis metric %d level-%d%s",
circuit->te_metric[i], i + 1, VTY_NEWLINE);
vty_outln (vty, " isis metric %d level-%d",
circuit->te_metric[i], i + 1);
write++;
}
}
}
if (circuit->passwd.type == ISIS_PASSWD_TYPE_HMAC_MD5)
{
vty_out (vty, " isis password md5 %s%s", circuit->passwd.passwd,
VTY_NEWLINE);
vty_outln (vty, " isis password md5 %s",
circuit->passwd.passwd);
write++;
}
else if (circuit->passwd.type == ISIS_PASSWD_TYPE_CLEARTXT)
{
vty_out (vty, " isis password clear %s%s", circuit->passwd.passwd,
VTY_NEWLINE);
vty_outln (vty, " isis password clear %s",
circuit->passwd.passwd);
write++;
}
write += circuit_write_mt_settings(circuit, vty);
}
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return write;

View File

@ -159,15 +159,13 @@ dynhn_print_all (struct vty *vty)
struct listnode *node;
struct isis_dynhn *dyn;
vty_out (vty, "Level System ID Dynamic Hostname%s", VTY_NEWLINE);
vty_outln (vty, "Level System ID Dynamic Hostname");
for (ALL_LIST_ELEMENTS_RO (dyn_cache, node, dyn))
{
vty_out (vty, "%-7d", dyn->level);
vty_out (vty, "%-15s%-15s%s", sysid_print (dyn->id), dyn->name.name,
VTY_NEWLINE);
vty_outln (vty, "%-15s%-15s", sysid_print (dyn->id),dyn->name.name);
}
vty_out (vty, " * %s %s%s", sysid_print (isis->sysid), unix_hostname (),
VTY_NEWLINE);
vty_outln (vty, " * %s %s", sysid_print (isis->sysid),unix_hostname());
return;
}

View File

@ -824,8 +824,8 @@ lsp_print (struct isis_lsp *lsp, struct vty *vty, char dynhost)
}
else
vty_out (vty, " %5u ", ntohs (lsp->lsp_header->rem_lifetime));
vty_out (vty, "%s%s",
lsp_bits2string (&lsp->lsp_header->lsp_bits), VTY_NEWLINE);
vty_outln (vty, "%s",
lsp_bits2string(&lsp->lsp_header->lsp_bits));
}
static void
@ -842,14 +842,14 @@ lsp_print_mt_reach(struct list *list, struct vty *vty,
lspid_print(neigh->neigh_id, lspid, dynhost, 0);
if (mtid == ISIS_MT_IPV4_UNICAST)
{
vty_out(vty, " Metric : %-8u IS-Extended : %s%s",
GET_TE_METRIC(neigh), lspid, VTY_NEWLINE);
vty_outln(vty, " Metric : %-8u IS-Extended : %s",
GET_TE_METRIC(neigh), lspid);
}
else
{
vty_out(vty, " Metric : %-8u MT-Reach : %s %s%s",
GET_TE_METRIC(neigh), lspid,
isis_mtid2str(mtid), VTY_NEWLINE);
vty_outln(vty, " Metric : %-8u MT-Reach : %s %s",
GET_TE_METRIC(neigh), lspid,
isis_mtid2str(mtid));
}
if (IS_MPLS_TE(isisMplsTE))
mpls_te_print_detail(vty, neigh);
@ -874,27 +874,27 @@ lsp_print_mt_ipv6_reach(struct list *list, struct vty *vty, uint16_t mtid)
{
if ((ipv6_reach->control_info &
CTRL_INFO_DISTRIBUTION) == DISTRIBUTION_INTERNAL)
vty_out (vty, " Metric : %-8" PRIu32 " IPv6-Internal : %s/%d%s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv6-Internal : %s/%d",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len);
else
vty_out (vty, " Metric : %-8" PRIu32 " IPv6-External : %s/%d%s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv6-External : %s/%d",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len);
}
else
{
if ((ipv6_reach->control_info &
CTRL_INFO_DISTRIBUTION) == DISTRIBUTION_INTERNAL)
vty_out (vty, " Metric : %-8" PRIu32 " IPv6-MT-Int : %s/%d %s%s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len,
isis_mtid2str(mtid), VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv6-MT-Int : %s/%d %s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len,
isis_mtid2str(mtid));
else
vty_out (vty, " Metric : %-8" PRIu32 " IPv6-MT-Ext : %s/%d %s%s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len,
isis_mtid2str(mtid), VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv6-MT-Ext : %s/%d %s",
ntohl (ipv6_reach->metric),
buff, ipv6_reach->prefix_len,
isis_mtid2str(mtid));
}
}
}
@ -910,21 +910,21 @@ lsp_print_mt_ipv4_reach(struct list *list, struct vty *vty, uint16_t mtid)
if (mtid == ISIS_MT_IPV4_UNICAST)
{
/* FIXME: There should be better way to output this stuff. */
vty_out (vty, " Metric : %-8" PRIu32 " IPv4-Extended : %s/%d%s",
ntohl (te_ipv4_reach->te_metric),
inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
te_ipv4_reach->control)),
te_ipv4_reach->control & 0x3F, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv4-Extended : %s/%d",
ntohl (te_ipv4_reach->te_metric),
inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
te_ipv4_reach->control)),
te_ipv4_reach->control & 0x3F);
}
else
{
/* FIXME: There should be better way to output this stuff. */
vty_out (vty, " Metric : %-8" PRIu32 " IPv4-MT : %s/%d %s%s",
ntohl (te_ipv4_reach->te_metric),
inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
te_ipv4_reach->control)),
te_ipv4_reach->control & 0x3F,
isis_mtid2str(mtid), VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu32 " IPv4-MT : %s/%d %s",
ntohl (te_ipv4_reach->te_metric),
inet_ntoa (newprefix2inaddr (&te_ipv4_reach->prefix_start,
te_ipv4_reach->control)),
te_ipv4_reach->control & 0x3F,
isis_mtid2str(mtid));
}
}
}
@ -955,9 +955,8 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
if (lsp->tlv_data.area_addrs)
for (ALL_LIST_ELEMENTS_RO (lsp->tlv_data.area_addrs, lnode, area_addr))
{
vty_out (vty, " Area Address: %s%s",
isonet_print (area_addr->area_addr, area_addr->addr_len),
VTY_NEWLINE);
vty_outln (vty, " Area Address: %s",
isonet_print(area_addr->area_addr, area_addr->addr_len));
}
/* for the nlpid tlv */
@ -969,11 +968,11 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
{
case NLPID_IP:
case NLPID_IPV6:
vty_out (vty, " NLPID : 0x%X%s",
lsp->tlv_data.nlpids->nlpids[i], VTY_NEWLINE);
vty_outln (vty, " NLPID : 0x%X",
lsp->tlv_data.nlpids->nlpids[i]);
break;
default:
vty_out (vty, " NLPID : %s%s", "unknown", VTY_NEWLINE);
vty_outln (vty, " NLPID : %s", "unknown");
break;
}
}
@ -981,10 +980,9 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
for (ALL_LIST_ELEMENTS_RO(lsp->tlv_data.mt_router_info, lnode, mt_router_info))
{
vty_out (vty, " MT : %s%s%s",
vty_outln (vty, " MT : %s%s",
isis_mtid2str(mt_router_info->mtid),
mt_router_info->overload ? " (overload)" : "",
VTY_NEWLINE);
mt_router_info->overload ? " (overload)" : "");
}
/* for the hostname tlv */
@ -993,16 +991,16 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
bzero (hostname, sizeof (hostname));
memcpy (hostname, lsp->tlv_data.hostname->name,
lsp->tlv_data.hostname->namelen);
vty_out (vty, " Hostname : %s%s", hostname, VTY_NEWLINE);
vty_outln (vty, " Hostname : %s", hostname);
}
/* authentication tlv */
if (lsp->tlv_data.auth_info.type != ISIS_PASSWD_TYPE_UNUSED)
{
if (lsp->tlv_data.auth_info.type == ISIS_PASSWD_TYPE_HMAC_MD5)
vty_out (vty, " Auth type : md5%s", VTY_NEWLINE);
vty_outln (vty, " Auth type : md5");
else if (lsp->tlv_data.auth_info.type == ISIS_PASSWD_TYPE_CLEARTXT)
vty_out (vty, " Auth type : clear text%s", VTY_NEWLINE);
vty_outln (vty, " Auth type : clear text");
}
/* TE router id */
@ -1010,14 +1008,14 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
{
memcpy (ipv4_address, inet_ntoa (lsp->tlv_data.router_id->id),
sizeof (ipv4_address));
vty_out (vty, " Router ID : %s%s", ipv4_address, VTY_NEWLINE);
vty_outln (vty, " Router ID : %s", ipv4_address);
}
if (lsp->tlv_data.ipv4_addrs)
for (ALL_LIST_ELEMENTS_RO (lsp->tlv_data.ipv4_addrs, lnode, ipv4_addr))
{
memcpy (ipv4_address, inet_ntoa (*ipv4_addr), sizeof (ipv4_address));
vty_out (vty, " IPv4 Address: %s%s", ipv4_address, VTY_NEWLINE);
vty_outln (vty, " IPv4 Address: %s", ipv4_address);
}
/* for the IS neighbor tlv */
@ -1025,8 +1023,8 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
for (ALL_LIST_ELEMENTS_RO (lsp->tlv_data.is_neighs, lnode, is_neigh))
{
lspid_print (is_neigh->neigh_id, LSPid, dynhost, 0);
vty_out (vty, " Metric : %-8" PRIu8 " IS : %s%s",
is_neigh->metrics.metric_default, LSPid, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu8 " IS : %s",
is_neigh->metrics.metric_default, LSPid);
}
/* for the internal reachable tlv */
@ -1038,9 +1036,9 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
sizeof (ipv4_reach_prefix));
memcpy (ipv4_reach_mask, inet_ntoa (ipv4_reach->mask),
sizeof (ipv4_reach_mask));
vty_out (vty, " Metric : %-8" PRIu8 " IPv4-Internal : %s %s%s",
ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
ipv4_reach_mask, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu8 " IPv4-Internal : %s %s",
ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
ipv4_reach_mask);
}
/* for the external reachable tlv */
@ -1052,9 +1050,9 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
sizeof (ipv4_reach_prefix));
memcpy (ipv4_reach_mask, inet_ntoa (ipv4_reach->mask),
sizeof (ipv4_reach_mask));
vty_out (vty, " Metric : %-8" PRIu8 " IPv4-External : %s %s%s",
ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
ipv4_reach_mask, VTY_NEWLINE);
vty_outln (vty, " Metric : %-8" PRIu8 " IPv4-External : %s %s",
ipv4_reach->metrics.metric_default, ipv4_reach_prefix,
ipv4_reach_mask);
}
/* IPv6 tlv */
@ -1081,7 +1079,7 @@ lsp_print_detail (struct isis_lsp *lsp, struct vty *vty, char dynhost)
for (ALL_LIST_ELEMENTS_RO (lsp->tlv_data.mt_ipv4_reachs, lnode, mt_ipv4_reachs))
lsp_print_mt_ipv4_reach(mt_ipv4_reachs->list, vty, mt_ipv4_reachs->mtid);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return;
}

View File

@ -193,9 +193,8 @@ area_write_mt_settings(struct isis_area *area, struct vty *vty)
{
if (setting->mtid == ISIS_MT_IPV4_UNICAST)
continue; /* always enabled, no need to write out config */
vty_out (vty, " topology %s%s%s", name,
setting->overload ? " overload" : "",
VTY_NEWLINE);
vty_outln (vty, " topology %s%s", name,
setting->overload ? " overload" : "");
written++;
}
}
@ -326,7 +325,7 @@ circuit_write_mt_settings(struct isis_circuit *circuit, struct vty *vty)
const char *name = isis_mtid2str(setting->mtid);
if (name && !setting->enabled)
{
vty_out (vty, " no isis topology %s%s", name, VTY_NEWLINE);
vty_outln (vty, " no isis topology %s", name);
written++;
}
}

View File

@ -600,7 +600,7 @@ DEFUN (isis_redistribute,
if ((area->is_type & level) != level)
{
vty_out(vty, "Node is not a level-%d IS%s", level, VTY_NEWLINE);
vty_outln (vty, "Node is not a level-%d IS", level);
return CMD_WARNING;
}
@ -702,7 +702,7 @@ DEFUN (isis_default_originate,
if ((area->is_type & level) != level)
{
vty_out(vty, "Node is not a level-%d IS%s", level, VTY_NEWLINE);
vty_outln (vty, "Node is not a level-%d IS", level);
return CMD_WARNING;
}
@ -722,8 +722,9 @@ DEFUN (isis_default_originate,
if (family == AF_INET6 && originate_type != DEFAULT_ORIGINATE_ALWAYS)
{
vty_out(vty, "Zebra doesn't implement default-originate for IPv6 yet%s", VTY_NEWLINE);
vty_out(vty, "so use with care or use default-originate always.%s", VTY_NEWLINE);
vty_outln (vty,
"Zebra doesn't implement default-originate for IPv6 yet");
vty_outln (vty, "so use with care or use default-originate always.");
}
isis_redist_set(area, level, family, DEFAULT_ROUTE, metric, routemap, originate_type);
@ -795,7 +796,7 @@ isis_redist_config_write(struct vty *vty, struct isis_area *area,
vty_out(vty, " metric %u", redist->metric);
if (redist->map_name)
vty_out(vty, " route-map %s", redist->map_name);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
}
@ -813,7 +814,7 @@ isis_redist_config_write(struct vty *vty, struct isis_area *area,
vty_out(vty, " metric %u", redist->metric);
if (redist->map_name)
vty_out(vty, " route-map %s", redist->map_name);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}

View File

@ -1321,8 +1321,8 @@ isis_print_paths (struct vty *vty, struct list *paths, u_char *root_sysid)
struct isis_adjacency *adj;
char buff[PREFIX2STR_BUFFER];
vty_out (vty, "Vertex Type Metric "
"Next-Hop Interface Parent%s", VTY_NEWLINE);
vty_outln (vty,
"Vertex Type Metric " "Next-Hop Interface Parent");
for (ALL_LIST_ELEMENTS_RO (paths, node, vertex)) {
if (memcmp (vertex->N.id, root_sysid, ISIS_SYS_ID_LEN) == 0) {
@ -1336,7 +1336,7 @@ isis_print_paths (struct vty *vty, struct list *paths, u_char *root_sysid)
for (ALL_LIST_ELEMENTS_RO (vertex->Adj_N, anode, adj)) {
if (adj) {
if (rows) {
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "%-20s %-12s %-6s ", "", "", "");
}
vty_out (vty, "%-20s %-9s ",
@ -1356,7 +1356,7 @@ isis_print_paths (struct vty *vty, struct list *paths, u_char *root_sysid)
int rows = 0;
for (ALL_LIST_ELEMENTS_RO (vertex->parents, pnode, pvertex)) {
if (rows) {
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "%-72s", "");
}
vty_out (vty, "%s(%d)",
@ -1367,7 +1367,7 @@ isis_print_paths (struct vty *vty, struct list *paths, u_char *root_sysid)
vty_out (vty, " NULL ");
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
@ -1396,8 +1396,7 @@ DEFUN (show_isis_topology,
for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area))
{
vty_out (vty, "Area %s:%s", area->area_tag ? area->area_tag : "null",
VTY_NEWLINE);
vty_outln (vty, "Area %s:",area->area_tag ? area->area_tag : "null");
for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++)
{
@ -1407,23 +1406,23 @@ DEFUN (show_isis_topology,
if (area->ip_circuits > 0 && area->spftree[level-1]
&& area->spftree[level-1]->paths->count > 0)
{
vty_out (vty, "IS-IS paths to level-%d routers that speak IP%s",
level, VTY_NEWLINE);
vty_outln (vty, "IS-IS paths to level-%d routers that speak IP",
level);
isis_print_paths (vty, area->spftree[level-1]->paths, isis->sysid);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (area->ipv6_circuits > 0 && area->spftree6[level-1]
&& area->spftree6[level-1]->paths->count > 0)
{
vty_out (vty,
"IS-IS paths to level-%d routers that speak IPv6%s",
level, VTY_NEWLINE);
vty_outln (vty,
"IS-IS paths to level-%d routers that speak IPv6",
level);
isis_print_paths (vty, area->spftree6[level-1]->paths, isis->sysid);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
return CMD_SUCCESS;

View File

@ -685,11 +685,11 @@ show_vty_subtlv_admin_grp (struct vty *vty, struct te_subtlv_admin_grp *tlv)
{
if (vty != NULL)
vty_out (vty, " Administrative Group: 0x%x%s",
(u_int32_t) ntohl (tlv->value), VTY_NEWLINE);
else
zlog_debug (" Administrative Group: 0x%x",
(u_int32_t) ntohl (tlv->value));
vty_outln (vty, " Administrative Group: 0x%x",
(u_int32_t)ntohl(tlv->value));
else
zlog_debug (" Administrative Group: 0x%x",
(u_int32_t) ntohl (tlv->value));
return (SUBTLV_HDR_SIZE + SUBTLV_DEF_SIZE);
}
@ -699,10 +699,9 @@ show_vty_subtlv_llri (struct vty *vty, struct te_subtlv_llri *tlv)
{
if (vty != NULL)
{
vty_out (vty, " Link Local ID: %d%s", (u_int32_t) ntohl (tlv->local),
VTY_NEWLINE);
vty_out (vty, " Link Remote ID: %d%s", (u_int32_t) ntohl (tlv->remote),
VTY_NEWLINE);
vty_outln (vty, " Link Local ID: %d",(u_int32_t)ntohl(tlv->local));
vty_outln (vty, " Link Remote ID: %d",
(u_int32_t)ntohl(tlv->remote));
}
else
{
@ -717,9 +716,10 @@ static u_char
show_vty_subtlv_local_ipaddr (struct vty *vty, struct te_subtlv_local_ipaddr *tlv)
{
if (vty != NULL)
vty_out (vty, " Local Interface IP Address(es): %s%s", inet_ntoa (tlv->value), VTY_NEWLINE);
else
zlog_debug (" Local Interface IP Address(es): %s", inet_ntoa (tlv->value));
vty_outln (vty, " Local Interface IP Address(es): %s",
inet_ntoa(tlv->value));
else
zlog_debug (" Local Interface IP Address(es): %s", inet_ntoa (tlv->value));
return (SUBTLV_HDR_SIZE + SUBTLV_DEF_SIZE);
}
@ -728,9 +728,10 @@ static u_char
show_vty_subtlv_rmt_ipaddr (struct vty *vty, struct te_subtlv_rmt_ipaddr *tlv)
{
if (vty != NULL)
vty_out (vty, " Remote Interface IP Address(es): %s%s", inet_ntoa (tlv->value), VTY_NEWLINE);
else
zlog_debug (" Remote Interface IP Address(es): %s", inet_ntoa (tlv->value));
vty_outln (vty, " Remote Interface IP Address(es): %s",
inet_ntoa(tlv->value));
else
zlog_debug (" Remote Interface IP Address(es): %s", inet_ntoa (tlv->value));
return (SUBTLV_HDR_SIZE + SUBTLV_DEF_SIZE);
}
@ -743,7 +744,7 @@ show_vty_subtlv_max_bw (struct vty *vty, struct te_subtlv_max_bw *tlv)
fval = ntohf (tlv->value);
if (vty != NULL)
vty_out (vty, " Maximum Bandwidth: %g (Bytes/sec)%s", fval, VTY_NEWLINE);
vty_outln (vty, " Maximum Bandwidth: %g (Bytes/sec)", fval);
else
zlog_debug (" Maximum Bandwidth: %g (Bytes/sec)", fval);
@ -758,8 +759,7 @@ show_vty_subtlv_max_rsv_bw (struct vty *vty, struct te_subtlv_max_rsv_bw *tlv)
fval = ntohf (tlv->value);
if (vty != NULL)
vty_out (vty, " Maximum Reservable Bandwidth: %g (Bytes/sec)%s", fval,
VTY_NEWLINE);
vty_outln (vty, " Maximum Reservable Bandwidth: %g (Bytes/sec)",fval);
else
zlog_debug (" Maximum Reservable Bandwidth: %g (Bytes/sec)", fval);
@ -773,7 +773,7 @@ show_vty_subtlv_unrsv_bw (struct vty *vty, struct te_subtlv_unrsv_bw *tlv)
int i;
if (vty != NULL)
vty_out (vty, " Unreserved Bandwidth:%s",VTY_NEWLINE);
vty_outln (vty, " Unreserved Bandwidth:");
else
zlog_debug (" Unreserved Bandwidth:");
@ -782,7 +782,8 @@ show_vty_subtlv_unrsv_bw (struct vty *vty, struct te_subtlv_unrsv_bw *tlv)
fval1 = ntohf (tlv->value[i]);
fval2 = ntohf (tlv->value[i+1]);
if (vty != NULL)
vty_out (vty, " [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)%s", i, fval1, i+1, fval2, VTY_NEWLINE);
vty_outln (vty, " [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)", i, fval1, i+1,
fval2);
else
zlog_debug (" [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)", i, fval1, i+1, fval2);
}
@ -797,7 +798,7 @@ show_vty_subtlv_te_metric (struct vty *vty, struct te_subtlv_te_metric *tlv)
te_metric = tlv->value[2] | tlv->value[1] << 8 | tlv->value[0] << 16;
if (vty != NULL)
vty_out (vty, " Traffic Engineering Metric: %u%s", te_metric, VTY_NEWLINE);
vty_outln (vty, " Traffic Engineering Metric: %u", te_metric);
else
zlog_debug (" Traffic Engineering Metric: %u", te_metric);
@ -808,9 +809,10 @@ static u_char
show_vty_subtlv_ras (struct vty *vty, struct te_subtlv_ras *tlv)
{
if (vty != NULL)
vty_out (vty, " Inter-AS TE Remote AS number: %u%s", ntohl (tlv->value), VTY_NEWLINE);
else
zlog_debug (" Inter-AS TE Remote AS number: %u", ntohl (tlv->value));
vty_outln (vty, " Inter-AS TE Remote AS number: %u",
ntohl(tlv->value));
else
zlog_debug (" Inter-AS TE Remote AS number: %u", ntohl (tlv->value));
return (SUBTLV_HDR_SIZE + SUBTLV_DEF_SIZE);
}
@ -819,9 +821,10 @@ static u_char
show_vty_subtlv_rip (struct vty *vty, struct te_subtlv_rip *tlv)
{
if (vty != NULL)
vty_out (vty, " Inter-AS TE Remote ASBR IP address: %s%s", inet_ntoa (tlv->value), VTY_NEWLINE);
else
zlog_debug (" Inter-AS TE Remote ASBR IP address: %s", inet_ntoa (tlv->value));
vty_outln (vty, " Inter-AS TE Remote ASBR IP address: %s",
inet_ntoa(tlv->value));
else
zlog_debug (" Inter-AS TE Remote ASBR IP address: %s", inet_ntoa (tlv->value));
return (SUBTLV_HDR_SIZE + SUBTLV_DEF_SIZE);
}
@ -836,7 +839,8 @@ show_vty_subtlv_av_delay (struct vty *vty, struct te_subtlv_av_delay *tlv)
A = (u_int32_t) ntohl (tlv->value) & TE_EXT_ANORMAL;
if (vty != NULL)
vty_out (vty, " %s Average Link Delay: %d (micro-sec)%s", A ? "Anomalous" : "Normal", delay, VTY_NEWLINE);
vty_outln (vty, " %s Average Link Delay: %d (micro-sec)", A ? "Anomalous" : "Normal",
delay);
else
zlog_debug (" %s Average Link Delay: %d (micro-sec)", A ? "Anomalous" : "Normal", delay);
@ -854,7 +858,8 @@ show_vty_subtlv_mm_delay (struct vty *vty, struct te_subtlv_mm_delay *tlv)
high = (u_int32_t) ntohl (tlv->high) & TE_EXT_MASK;
if (vty != NULL)
vty_out (vty, " %s Min/Max Link Delay: %d / %d (micro-sec)%s", A ? "Anomalous" : "Normal", low, high, VTY_NEWLINE);
vty_outln (vty, " %s Min/Max Link Delay: %d / %d (micro-sec)", A ? "Anomalous" : "Normal", low,
high);
else
zlog_debug (" %s Min/Max Link Delay: %d / %d (micro-sec)", A ? "Anomalous" : "Normal", low, high);
@ -869,7 +874,7 @@ show_vty_subtlv_delay_var (struct vty *vty, struct te_subtlv_delay_var *tlv)
jitter = (u_int32_t) ntohl (tlv->value) & TE_EXT_MASK;
if (vty != NULL)
vty_out (vty, " Delay Variation: %d (micro-sec)%s", jitter, VTY_NEWLINE);
vty_outln (vty, " Delay Variation: %d (micro-sec)", jitter);
else
zlog_debug (" Delay Variation: %d (micro-sec)", jitter);
@ -888,7 +893,8 @@ show_vty_subtlv_pkt_loss (struct vty *vty, struct te_subtlv_pkt_loss *tlv)
A = (u_int32_t) ntohl (tlv->value) & TE_EXT_ANORMAL;
if (vty != NULL)
vty_out (vty, " %s Link Packet Loss: %g (%%)%s", A ? "Anomalous" : "Normal", fval, VTY_NEWLINE);
vty_outln (vty, " %s Link Packet Loss: %g (%%)", A ? "Anomalous" : "Normal",
fval);
else
zlog_debug (" %s Link Packet Loss: %g (%%)", A ? "Anomalous" : "Normal", fval);
@ -903,7 +909,8 @@ show_vty_subtlv_res_bw (struct vty *vty, struct te_subtlv_res_bw *tlv)
fval = ntohf(tlv->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Residual Bandwidth: %g (Bytes/sec)%s", fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Residual Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Residual Bandwidth: %g (Bytes/sec)", fval);
@ -918,7 +925,8 @@ show_vty_subtlv_ava_bw (struct vty *vty, struct te_subtlv_ava_bw *tlv)
fval = ntohf (tlv->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Available Bandwidth: %g (Bytes/sec)%s", fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Available Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Available Bandwidth: %g (Bytes/sec)", fval);
@ -933,7 +941,8 @@ show_vty_subtlv_use_bw (struct vty *vty, struct te_subtlv_use_bw *tlv)
fval = ntohf (tlv->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Utilized Bandwidth: %g (Bytes/sec)%s", fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Utilized Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Utilized Bandwidth: %g (Bytes/sec)", fval);
@ -950,8 +959,8 @@ show_vty_unknown_tlv (struct vty *vty, struct subtlv_header *tlvh)
{
if (tlvh->length != 0)
{
vty_out (vty, " Unknown TLV: [type(%#.2x), length(%#.2x)]%s",
tlvh->type, tlvh->length, VTY_NEWLINE);
vty_outln (vty, " Unknown TLV: [type(%#.2x), length(%#.2x)]",
tlvh->type, tlvh->length);
vty_out(vty, " Dump: [00]");
rtn = 1; /* initialize end of line counter */
for (i = 0; i < tlvh->length; i++)
@ -965,11 +974,11 @@ show_vty_unknown_tlv (struct vty *vty, struct subtlv_header *tlvh)
else
rtn++;
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
else
vty_out (vty, " Unknown TLV: [type(%#.2x), length(%#.2x)]%s",
tlvh->type, tlvh->length, VTY_NEWLINE);
vty_outln (vty, " Unknown TLV: [type(%#.2x), length(%#.2x)]",
tlvh->type, tlvh->length);
}
else
{
@ -1060,9 +1069,9 @@ isis_mpls_te_config_write_router (struct vty *vty)
{
if (IS_MPLS_TE(isisMplsTE))
{
vty_out (vty, " mpls-te on%s", VTY_NEWLINE);
vty_out (vty, " mpls-te router-address %s%s",
inet_ntoa (isisMplsTE.router_id), VTY_NEWLINE);
vty_outln (vty, " mpls-te on");
vty_outln (vty, " mpls-te router-address %s",
inet_ntoa(isisMplsTE.router_id));
}
return;
@ -1164,7 +1173,7 @@ DEFUN (isis_mpls_te_router_addr,
if (! inet_aton (argv[idx_ipv4]->arg, &value))
{
vty_out (vty, "Please specify Router-Addr by A.B.C.D%s", VTY_NEWLINE);
vty_outln (vty, "Please specify Router-Addr by A.B.C.D");
return CMD_WARNING;
}
@ -1192,7 +1201,7 @@ DEFUN (isis_mpls_te_inter_as,
"AREA native mode self originate INTER-AS LSP with L1 and L2 flooding scope)\n"
"AS native mode self originate INTER-AS LSP with L2 only flooding scope\n")
{
vty_out (vty, "Not yet supported%s", VTY_NEWLINE);
vty_outln (vty, "Not yet supported");
return CMD_SUCCESS;
}
@ -1204,7 +1213,7 @@ DEFUN (no_isis_mpls_te_inter_as,
"Disable MPLS-TE Inter-AS support\n")
{
vty_out (vty, "Not yet supported%s", VTY_NEWLINE);
vty_outln (vty, "Not yet supported");
return CMD_SUCCESS;
}
@ -1218,15 +1227,16 @@ DEFUN (show_isis_mpls_te_router,
{
if (IS_MPLS_TE(isisMplsTE))
{
vty_out (vty, "--- MPLS-TE router parameters ---%s", VTY_NEWLINE);
vty_outln (vty, "--- MPLS-TE router parameters ---");
if (ntohs (isisMplsTE.router_id.s_addr) != 0)
vty_out (vty, " Router-Address: %s%s", inet_ntoa (isisMplsTE.router_id), VTY_NEWLINE);
else
vty_out (vty, " N/A%s", VTY_NEWLINE);
vty_outln (vty, " Router-Address: %s",
inet_ntoa(isisMplsTE.router_id));
else
vty_outln (vty, " N/A");
}
else
vty_out (vty, " MPLS-TE is disable on this router%s", VTY_NEWLINE);
vty_outln (vty, " MPLS-TE is disable on this router");
return CMD_SUCCESS;
}
@ -1244,22 +1254,22 @@ show_mpls_te_sub (struct vty *vty, struct interface *ifp)
{
if (IS_INTER_AS(mtc->type))
{
vty_out (vty, "-- Inter-AS TEv2 link parameters for %s --%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "-- Inter-AS TEv2 link parameters for %s --",
ifp->name);
}
else
{
/* MPLS-TE is not activate on this interface */
/* or this interface is passive and Inter-AS TEv2 is not activate */
vty_out (vty, " %s: MPLS-TE is disabled on this interface%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, " %s: MPLS-TE is disabled on this interface",
ifp->name);
return;
}
}
else
{
vty_out (vty, "-- MPLS-TE link parameters for %s --%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "-- MPLS-TE link parameters for %s --",
ifp->name);
}
show_vty_subtlv_admin_grp (vty, &mtc->admin_grp);
@ -1289,12 +1299,12 @@ show_mpls_te_sub (struct vty *vty, struct interface *ifp)
show_vty_subtlv_res_bw (vty, &mtc->res_bw);
show_vty_subtlv_ava_bw (vty, &mtc->ava_bw);
show_vty_subtlv_use_bw (vty, &mtc->use_bw);
vty_out (vty, "---------------%s%s", VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "---------------%s", VTY_NEWLINE);
}
else
{
vty_out (vty, " %s: MPLS-TE is disabled on this interface%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, " %s: MPLS-TE is disabled on this interface",
ifp->name);
}
return;
@ -1323,7 +1333,7 @@ DEFUN (show_isis_mpls_te_interface,
else
{
if ((ifp = if_lookup_by_name (argv[idx_interface]->arg, VRF_DEFAULT)) == NULL)
vty_out (vty, "No such interface name%s", VTY_NEWLINE);
vty_outln (vty, "No such interface name");
else
show_mpls_te_sub (vty, ifp);
}

View File

@ -40,15 +40,15 @@ isis_circuit_lookup (struct vty *vty)
if (!ifp)
{
vty_out (vty, "Invalid interface %s", VTY_NEWLINE);
vty_outln (vty, "Invalid interface ");
return NULL;
}
circuit = circuit_scan_by_ifp (ifp);
if (!circuit)
{
vty_out (vty, "ISIS is not enabled on circuit %s%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "ISIS is not enabled on circuit %s",
ifp->name);
return NULL;
}
@ -77,8 +77,8 @@ DEFUN (ip_router_isis,
{
if (strcmp (circuit->area->area_tag, area_tag))
{
vty_out (vty, "ISIS circuit is already defined on %s%s",
circuit->area->area_tag, VTY_NEWLINE);
vty_outln (vty, "ISIS circuit is already defined on %s",
circuit->area->area_tag);
return CMD_ERR_NOTHING_TODO;
}
}
@ -92,7 +92,7 @@ DEFUN (ip_router_isis,
if (circuit->state != C_STATE_CONF && circuit->state != C_STATE_UP)
{
vty_out(vty, "Couldn't bring up interface, please check log.%s", VTY_NEWLINE);
vty_outln (vty, "Couldn't bring up interface, please check log.");
return CMD_WARNING;
}
}
@ -139,16 +139,16 @@ DEFUN (no_ip_router_isis,
area = isis_area_lookup (area_tag);
if (!area)
{
vty_out (vty, "Can't find ISIS instance %s%s",
argv[idx_afi]->arg, VTY_NEWLINE);
vty_outln (vty, "Can't find ISIS instance %s",
argv[idx_afi]->arg);
return CMD_ERR_NO_MATCH;
}
circuit = circuit_lookup_by_ifp (ifp, area->circuit_list);
if (!circuit)
{
vty_out (vty, "ISIS is not enabled on circuit %s%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "ISIS is not enabled on circuit %s",
ifp->name);
return CMD_ERR_NO_MATCH;
}
@ -189,8 +189,7 @@ DEFUN (no_isis_passive,
if (if_is_loopback (circuit->interface))
{
vty_out (vty, "Can't set no passive for loopback interface%s",
VTY_NEWLINE);
vty_outln (vty,"Can't set no passive for loopback interface");
return CMD_ERR_AMBIGUOUS;
}
@ -216,7 +215,7 @@ DEFUN (isis_circuit_type,
is_type = string2circuit_t (argv[idx_level]->arg);
if (!is_type)
{
vty_out (vty, "Unknown circuit-type %s", VTY_NEWLINE);
vty_outln (vty, "Unknown circuit-type ");
return CMD_ERR_AMBIGUOUS;
}
@ -224,8 +223,8 @@ DEFUN (isis_circuit_type,
circuit->area->is_type != IS_LEVEL_1_AND_2 &&
circuit->area->is_type != is_type)
{
vty_out (vty, "Invalid circuit level for area %s.%s",
circuit->area->area_tag, VTY_NEWLINE);
vty_outln (vty, "Invalid circuit level for area %s.",
circuit->area->area_tag);
return CMD_ERR_AMBIGUOUS;
}
isis_circuit_is_type_set (circuit, is_type);
@ -273,9 +272,8 @@ DEFUN (isis_network,
if (isis_circuit_circ_type_set(circuit, CIRCUIT_T_P2P))
{
vty_out (vty, "isis network point-to-point "
"is valid only on broadcast interfaces%s",
VTY_NEWLINE);
vty_outln (vty,
"isis network point-to-point " "is valid only on broadcast interfaces");
return CMD_ERR_AMBIGUOUS;
}
@ -296,9 +294,8 @@ DEFUN (no_isis_network,
if (isis_circuit_circ_type_set(circuit, CIRCUIT_T_BROADCAST))
{
vty_out (vty, "isis network point-to-point "
"is valid only on broadcast interfaces%s",
VTY_NEWLINE);
vty_outln (vty,
"isis network point-to-point " "is valid only on broadcast interfaces");
return CMD_ERR_AMBIGUOUS;
}
@ -327,7 +324,7 @@ DEFUN (isis_passwd,
rv = isis_circuit_passwd_cleartext_set(circuit, argv[idx_word]->arg);
if (rv)
{
vty_out (vty, "Too long circuit password (>254)%s", VTY_NEWLINE);
vty_outln (vty, "Too long circuit password (>254)");
return CMD_ERR_AMBIGUOUS;
}
@ -370,8 +367,8 @@ DEFUN (isis_priority,
prio = atoi (argv[idx_number]->arg);
if (prio < MIN_PRIORITY || prio > MAX_PRIORITY)
{
vty_out (vty, "Invalid priority %d - should be <0-127>%s",
prio, VTY_NEWLINE);
vty_outln (vty, "Invalid priority %d - should be <0-127>",
prio);
return CMD_ERR_AMBIGUOUS;
}
@ -417,8 +414,8 @@ DEFUN (isis_priority_l1,
prio = atoi (argv[idx_number]->arg);
if (prio < MIN_PRIORITY || prio > MAX_PRIORITY)
{
vty_out (vty, "Invalid priority %d - should be <0-127>%s",
prio, VTY_NEWLINE);
vty_outln (vty, "Invalid priority %d - should be <0-127>",
prio);
return CMD_ERR_AMBIGUOUS;
}
@ -463,8 +460,8 @@ DEFUN (isis_priority_l2,
prio = atoi (argv[idx_number]->arg);
if (prio < MIN_PRIORITY || prio > MAX_PRIORITY)
{
vty_out (vty, "Invalid priority %d - should be <0-127>%s",
prio, VTY_NEWLINE);
vty_outln (vty, "Invalid priority %d - should be <0-127>",
prio);
return CMD_ERR_AMBIGUOUS;
}
@ -512,9 +509,9 @@ DEFUN (isis_metric,
if (circuit->area && circuit->area->oldmetric == 1 &&
met > MAX_NARROW_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -522,9 +519,9 @@ DEFUN (isis_metric,
if (circuit->area && circuit->area->newmetric == 1 &&
met > MAX_WIDE_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -572,9 +569,9 @@ DEFUN (isis_metric_l1,
if (circuit->area && circuit->area->oldmetric == 1 &&
met > MAX_NARROW_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -582,9 +579,9 @@ DEFUN (isis_metric_l1,
if (circuit->area && circuit->area->newmetric == 1 &&
met > MAX_WIDE_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -631,9 +628,9 @@ DEFUN (isis_metric_l2,
if (circuit->area && circuit->area->oldmetric == 1 &&
met > MAX_NARROW_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-63> "
"when narrow metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -641,9 +638,9 @@ DEFUN (isis_metric_l2,
if (circuit->area && circuit->area->newmetric == 1 &&
met > MAX_WIDE_LINK_METRIC)
{
vty_out (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled%s",
met, VTY_NEWLINE);
vty_outln (vty, "Invalid metric %d - should be <0-16777215> "
"when wide metric type enabled",
met);
return CMD_ERR_AMBIGUOUS;
}
@ -688,8 +685,8 @@ DEFUN (isis_hello_interval,
interval = atoi (argv[idx_number]->arg);
if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL)
{
vty_out (vty, "Invalid hello-interval %d - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-interval %d - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -737,8 +734,8 @@ DEFUN (isis_hello_interval_l1,
interval = atoi (argv[idx_number]->arg);
if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL)
{
vty_out (vty, "Invalid hello-interval %ld - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-interval %ld - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -785,8 +782,8 @@ DEFUN (isis_hello_interval_l2,
interval = atoi (argv[idx_number]->arg);
if (interval < MIN_HELLO_INTERVAL || interval > MAX_HELLO_INTERVAL)
{
vty_out (vty, "Invalid hello-interval %ld - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-interval %ld - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -831,8 +828,8 @@ DEFUN (isis_hello_multiplier,
mult = atoi (argv[idx_number]->arg);
if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER)
{
vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s",
mult, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-multiplier %d - should be <2-100>",
mult);
return CMD_ERR_AMBIGUOUS;
}
@ -879,8 +876,8 @@ DEFUN (isis_hello_multiplier_l1,
mult = atoi (argv[idx_number]->arg);
if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER)
{
vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s",
mult, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-multiplier %d - should be <2-100>",
mult);
return CMD_ERR_AMBIGUOUS;
}
@ -926,8 +923,8 @@ DEFUN (isis_hello_multiplier_l2,
mult = atoi (argv[idx_number]->arg);
if (mult < MIN_HELLO_MULTIPLIER || mult > MAX_HELLO_MULTIPLIER)
{
vty_out (vty, "Invalid hello-multiplier %d - should be <2-100>%s",
mult, VTY_NEWLINE);
vty_outln (vty, "Invalid hello-multiplier %d - should be <2-100>",
mult);
return CMD_ERR_AMBIGUOUS;
}
@ -1007,8 +1004,8 @@ DEFUN (csnp_interval,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL)
{
vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid csnp-interval %lu - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1055,8 +1052,8 @@ DEFUN (csnp_interval_l1,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL)
{
vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid csnp-interval %lu - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1102,8 +1099,8 @@ DEFUN (csnp_interval_l2,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_CSNP_INTERVAL || interval > MAX_CSNP_INTERVAL)
{
vty_out (vty, "Invalid csnp-interval %lu - should be <1-600>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid csnp-interval %lu - should be <1-600>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1148,8 +1145,8 @@ DEFUN (psnp_interval,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL)
{
vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid psnp-interval %lu - should be <1-120>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1196,8 +1193,8 @@ DEFUN (psnp_interval_l1,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL)
{
vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid psnp-interval %lu - should be <1-120>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1243,8 +1240,8 @@ DEFUN (psnp_interval_l2,
interval = atol (argv[idx_number]->arg);
if (interval < MIN_PSNP_INTERVAL || interval > MAX_PSNP_INTERVAL)
{
vty_out (vty, "Invalid psnp-interval %lu - should be <1-120>%s",
interval, VTY_NEWLINE);
vty_outln (vty, "Invalid psnp-interval %lu - should be <1-120>",
interval);
return CMD_ERR_AMBIGUOUS;
}
@ -1287,13 +1284,14 @@ DEFUN (circuit_topology,
if (circuit->area && circuit->area->oldmetric)
{
vty_out (vty, "Multi topology IS-IS can only be used with wide metrics%s", VTY_NEWLINE);
vty_outln (vty,
"Multi topology IS-IS can only be used with wide metrics");
return CMD_ERR_AMBIGUOUS;
}
if (mtid == (uint16_t)-1)
{
vty_out (vty, "Don't know topology '%s'%s", arg, VTY_NEWLINE);
vty_outln (vty, "Don't know topology '%s'", arg);
return CMD_ERR_AMBIGUOUS;
}
@ -1316,13 +1314,14 @@ DEFUN (no_circuit_topology,
if (circuit->area && circuit->area->oldmetric)
{
vty_out (vty, "Multi topology IS-IS can only be used with wide metrics%s", VTY_NEWLINE);
vty_outln (vty,
"Multi topology IS-IS can only be used with wide metrics");
return CMD_ERR_AMBIGUOUS;
}
if (mtid == (uint16_t)-1)
{
vty_out (vty, "Don't know topology '%s'%s", arg, VTY_NEWLINE);
vty_outln (vty, "Don't know topology '%s'", arg);
return CMD_ERR_AMBIGUOUS;
}
@ -1340,7 +1339,7 @@ validate_metric_style_narrow (struct vty *vty, struct isis_area *area)
if (! area)
{
vty_out (vty, "ISIS area is invalid%s", VTY_NEWLINE);
vty_outln (vty, "ISIS area is invalid");
return CMD_ERR_AMBIGUOUS;
}
@ -1350,16 +1349,16 @@ validate_metric_style_narrow (struct vty *vty, struct isis_area *area)
(circuit->is_type & IS_LEVEL_1) &&
(circuit->te_metric[0] > MAX_NARROW_LINK_METRIC))
{
vty_out (vty, "ISIS circuit %s metric is invalid%s",
circuit->interface->name, VTY_NEWLINE);
vty_outln (vty, "ISIS circuit %s metric is invalid",
circuit->interface->name);
return CMD_ERR_AMBIGUOUS;
}
if ((area->is_type & IS_LEVEL_2) &&
(circuit->is_type & IS_LEVEL_2) &&
(circuit->te_metric[1] > MAX_NARROW_LINK_METRIC))
{
vty_out (vty, "ISIS circuit %s metric is invalid%s",
circuit->interface->name, VTY_NEWLINE);
vty_outln (vty, "ISIS circuit %s metric is invalid",
circuit->interface->name);
return CMD_ERR_AMBIGUOUS;
}
}
@ -1387,7 +1386,8 @@ DEFUN (metric_style,
if (area_is_mt(area))
{
vty_out (vty, "Narrow metrics cannot be used while multi topology IS-IS is active%s", VTY_NEWLINE);
vty_outln (vty,
"Narrow metrics cannot be used while multi topology IS-IS is active");
return CMD_ERR_AMBIGUOUS;
}
@ -1415,7 +1415,8 @@ DEFUN (no_metric_style,
if (area_is_mt(area))
{
vty_out (vty, "Narrow metrics cannot be used while multi topology IS-IS is active%s", VTY_NEWLINE);
vty_outln (vty,
"Narrow metrics cannot be used while multi topology IS-IS is active");
return CMD_ERR_AMBIGUOUS;
}
@ -1512,9 +1513,8 @@ static int area_lsp_mtu_set(struct vty *vty, unsigned int lsp_mtu)
continue;
if(lsp_mtu > isis_circuit_pdu_size(circuit))
{
vty_out(vty, "ISIS area contains circuit %s, which has a maximum PDU size of %zu.%s",
circuit->interface->name, isis_circuit_pdu_size(circuit),
VTY_NEWLINE);
vty_outln (vty, "ISIS area contains circuit %s, which has a maximum PDU size of %zu.",
circuit->interface->name,isis_circuit_pdu_size(circuit));
return CMD_ERR_AMBIGUOUS;
}
}
@ -1564,7 +1564,7 @@ DEFUN (is_type,
type = string2circuit_t (argv[idx_level]->arg);
if (!type)
{
vty_out (vty, "Unknown IS level %s", VTY_NEWLINE);
vty_outln (vty, "Unknown IS level ");
return CMD_SUCCESS;
}
@ -1613,9 +1613,9 @@ set_lsp_gen_interval (struct vty *vty, struct isis_area *area,
if (interval >= area->lsp_refresh[lvl-1])
{
vty_out (vty, "LSP gen interval %us must be less than "
"the LSP refresh interval %us%s",
interval, area->lsp_refresh[lvl-1], VTY_NEWLINE);
vty_outln (vty, "LSP gen interval %us must be less than "
"the LSP refresh interval %us",
interval, area->lsp_refresh[lvl - 1]);
return CMD_ERR_AMBIGUOUS;
}
}
@ -1852,19 +1852,18 @@ area_max_lsp_lifetime_set(struct vty *vty, int level,
if (refresh_interval < area->lsp_refresh[lvl-1])
{
vty_out (vty, "Level %d Max LSP lifetime %us must be 300s greater than "
"the configured LSP refresh interval %us%s",
lvl, interval, area->lsp_refresh[lvl-1], VTY_NEWLINE);
vty_out (vty, "Automatically reducing level %d LSP refresh interval "
"to %us%s", lvl, refresh_interval, VTY_NEWLINE);
vty_outln (vty, "Level %d Max LSP lifetime %us must be 300s greater than "
"the configured LSP refresh interval %us",
lvl, interval, area->lsp_refresh[lvl - 1]);
vty_outln (vty, "Automatically reducing level %d LSP refresh interval "
"to %us", lvl, refresh_interval);
set_refresh_interval[lvl-1] = 1;
if (refresh_interval <= area->lsp_gen_interval[lvl-1])
{
vty_out (vty, "LSP refresh interval %us must be greater than "
"the configured LSP gen interval %us%s",
refresh_interval, area->lsp_gen_interval[lvl-1],
VTY_NEWLINE);
vty_outln (vty, "LSP refresh interval %us must be greater than "
"the configured LSP gen interval %us",
refresh_interval,area->lsp_gen_interval[lvl - 1]);
return CMD_ERR_AMBIGUOUS;
}
}
@ -1937,18 +1936,16 @@ area_lsp_refresh_interval_set(struct vty *vty, int level, uint16_t interval)
continue;
if (interval <= area->lsp_gen_interval[lvl-1])
{
vty_out (vty, "LSP refresh interval %us must be greater than "
"the configured LSP gen interval %us%s",
interval, area->lsp_gen_interval[lvl-1],
VTY_NEWLINE);
vty_outln (vty, "LSP refresh interval %us must be greater than "
"the configured LSP gen interval %us",
interval,area->lsp_gen_interval[lvl - 1]);
return CMD_ERR_AMBIGUOUS;
}
if (interval > (area->max_lsp_lifetime[lvl-1] - 300))
{
vty_out (vty, "LSP refresh interval %us must be less than "
"the configured LSP lifetime %us less 300%s",
interval, area->max_lsp_lifetime[lvl-1],
VTY_NEWLINE);
vty_outln (vty, "LSP refresh interval %us must be less than "
"the configured LSP lifetime %us less 300",
interval,area->max_lsp_lifetime[lvl - 1]);
return CMD_ERR_AMBIGUOUS;
}
}
@ -2014,7 +2011,7 @@ area_passwd_set(struct vty *vty, int level,
if (passwd && strlen(passwd) > 254)
{
vty_out (vty, "Too long area password (>254)%s", VTY_NEWLINE);
vty_outln (vty, "Too long area password (>254)");
return CMD_ERR_AMBIGUOUS;
}

View File

@ -218,7 +218,7 @@ isis_area_destroy (struct vty *vty, const char *area_tag)
if (area == NULL)
{
vty_out (vty, "Can't find ISIS instance %s", VTY_NEWLINE);
vty_outln (vty, "Can't find ISIS instance ");
return CMD_ERR_NO_MATCH;
}
@ -352,8 +352,8 @@ area_net_title (struct vty *vty, const char *net_title)
/* We check that we are not over the maximal number of addresses */
if (listcount (area->area_addrs) >= isis->max_area_addrs)
{
vty_out (vty, "Maximum of area addresses (%d) already reached %s",
isis->max_area_addrs, VTY_NEWLINE);
vty_outln (vty, "Maximum of area addresses (%d) already reached ",
isis->max_area_addrs);
return CMD_ERR_NOTHING_TODO;
}
@ -366,16 +366,15 @@ area_net_title (struct vty *vty, const char *net_title)
#endif /* EXTREME_DEBUG */
if (addr->addr_len < 8 || addr->addr_len > 20)
{
vty_out (vty, "area address must be at least 8..20 octets long (%d)%s",
addr->addr_len, VTY_NEWLINE);
vty_outln (vty, "area address must be at least 8..20 octets long (%d)",
addr->addr_len);
XFREE (MTYPE_ISIS_AREA_ADDR, addr);
return CMD_ERR_AMBIGUOUS;
}
if (addr->area_addr[addr->addr_len-1] != 0)
{
vty_out (vty, "nsel byte (last byte) in area address must be 0%s",
VTY_NEWLINE);
vty_outln (vty,"nsel byte (last byte) in area address must be 0");
XFREE (MTYPE_ISIS_AREA_ADDR, addr);
return CMD_ERR_AMBIGUOUS;
}
@ -397,9 +396,8 @@ area_net_title (struct vty *vty, const char *net_title)
*/
if (memcmp (isis->sysid, GETSYSID (addr), ISIS_SYS_ID_LEN))
{
vty_out (vty,
"System ID must not change when defining additional area"
" addresses%s", VTY_NEWLINE);
vty_outln (vty,
"System ID must not change when defining additional area" " addresses");
XFREE (MTYPE_ISIS_AREA_ADDR, addr);
return CMD_ERR_AMBIGUOUS;
}
@ -446,8 +444,8 @@ area_clear_net_title (struct vty *vty, const char *net_title)
addr.addr_len = dotformat2buff (buff, net_title);
if (addr.addr_len < 8 || addr.addr_len > 20)
{
vty_out (vty, "Unsupported area address length %d, should be 8...20 %s",
addr.addr_len, VTY_NEWLINE);
vty_outln (vty, "Unsupported area address length %d, should be 8...20 ",
addr.addr_len);
return CMD_ERR_AMBIGUOUS;
}
@ -460,8 +458,8 @@ area_clear_net_title (struct vty *vty, const char *net_title)
if (!addrp)
{
vty_out (vty, "No area address %s for area %s %s", net_title,
area->area_tag, VTY_NEWLINE);
vty_outln (vty, "No area address %s for area %s ", net_title,
area->area_tag);
return CMD_ERR_NO_MATCH;
}
@ -495,17 +493,16 @@ show_isis_interface_common (struct vty *vty, const char *ifname, char detail)
if (!isis)
{
vty_out (vty, "IS-IS Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "IS-IS Routing Process not enabled");
return CMD_SUCCESS;
}
for (ALL_LIST_ELEMENTS_RO (isis->area_list, anode, area))
{
vty_out (vty, "Area %s:%s", area->area_tag, VTY_NEWLINE);
vty_outln (vty, "Area %s:", area->area_tag);
if (detail == ISIS_UI_LEVEL_BRIEF)
vty_out (vty, " Interface CircId State Type Level%s",
VTY_NEWLINE);
vty_outln (vty," Interface CircId State Type Level");
for (ALL_LIST_ELEMENTS_RO (area->circuit_list, cnode, circuit))
if (!ifname)
@ -568,7 +565,7 @@ show_isis_neighbor_common (struct vty *vty, const char *id, char detail)
if (!isis)
{
vty_out (vty, "IS-IS Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "IS-IS Routing Process not enabled");
return CMD_SUCCESS;
}
@ -580,7 +577,7 @@ show_isis_neighbor_common (struct vty *vty, const char *id, char detail)
dynhn = dynhn_find_by_name (id);
if (dynhn == NULL)
{
vty_out (vty, "Invalid system id %s%s", id, VTY_NEWLINE);
vty_outln (vty, "Invalid system id %s", id);
return CMD_SUCCESS;
}
memcpy (sysid, dynhn->id, ISIS_SYS_ID_LEN);
@ -589,11 +586,11 @@ show_isis_neighbor_common (struct vty *vty, const char *id, char detail)
for (ALL_LIST_ELEMENTS_RO (isis->area_list, anode, area))
{
vty_out (vty, "Area %s:%s", area->area_tag, VTY_NEWLINE);
vty_outln (vty, "Area %s:", area->area_tag);
if (detail == ISIS_UI_LEVEL_BRIEF)
vty_out (vty, " System Id Interface L State"
" Holdtime SNPA%s", VTY_NEWLINE);
vty_outln (vty,
" System Id Interface L State" " Holdtime SNPA");
for (ALL_LIST_ELEMENTS_RO (area->circuit_list, cnode, circuit))
{
@ -641,7 +638,7 @@ clear_isis_neighbor_common (struct vty *vty, const char *id)
if (!isis)
{
vty_out (vty, "IS-IS Routing Process not enabled%s", VTY_NEWLINE);
vty_outln (vty, "IS-IS Routing Process not enabled");
return CMD_SUCCESS;
}
@ -653,7 +650,7 @@ clear_isis_neighbor_common (struct vty *vty, const char *id)
dynhn = dynhn_find_by_name (id);
if (dynhn == NULL)
{
vty_out (vty, "Invalid system id %s%s", id, VTY_NEWLINE);
vty_outln (vty, "Invalid system id %s", id);
return CMD_SUCCESS;
}
memcpy (sysid, dynhn->id, ISIS_SYS_ID_LEN);
@ -760,42 +757,35 @@ print_debug (struct vty *vty, int flags, int onoff)
strcpy (onoffs, "off");
if (flags & DEBUG_ADJ_PACKETS)
vty_out (vty, "IS-IS Adjacency related packets debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS Adjacency related packets debugging is %s",
onoffs);
if (flags & DEBUG_CHECKSUM_ERRORS)
vty_out (vty, "IS-IS checksum errors debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS checksum errors debugging is %s",onoffs);
if (flags & DEBUG_LOCAL_UPDATES)
vty_out (vty, "IS-IS local updates debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS local updates debugging is %s",onoffs);
if (flags & DEBUG_PROTOCOL_ERRORS)
vty_out (vty, "IS-IS protocol errors debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS protocol errors debugging is %s",onoffs);
if (flags & DEBUG_SNP_PACKETS)
vty_out (vty, "IS-IS CSNP/PSNP packets debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS CSNP/PSNP packets debugging is %s",onoffs);
if (flags & DEBUG_SPF_EVENTS)
vty_out (vty, "IS-IS SPF events debugging is %s%s", onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS SPF events debugging is %s", onoffs);
if (flags & DEBUG_SPF_STATS)
vty_out (vty, "IS-IS SPF Timing and Statistics Data debugging is %s%s",
onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS SPF Timing and Statistics Data debugging is %s",
onoffs);
if (flags & DEBUG_SPF_TRIGGERS)
vty_out (vty, "IS-IS SPF triggering events debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS SPF triggering events debugging is %s",onoffs);
if (flags & DEBUG_UPDATE_PACKETS)
vty_out (vty, "IS-IS Update related packet debugging is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS Update related packet debugging is %s",onoffs);
if (flags & DEBUG_RTE_EVENTS)
vty_out (vty, "IS-IS Route related debuggin is %s%s", onoffs,
VTY_NEWLINE);
vty_outln (vty, "IS-IS Route related debuggin is %s",onoffs);
if (flags & DEBUG_EVENTS)
vty_out (vty, "IS-IS Event debugging is %s%s", onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS Event debugging is %s", onoffs);
if (flags & DEBUG_PACKET_DUMP)
vty_out (vty, "IS-IS Packet dump debugging is %s%s", onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS Packet dump debugging is %s", onoffs);
if (flags & DEBUG_LSP_GEN)
vty_out (vty, "IS-IS LSP generation debugging is %s%s", onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS LSP generation debugging is %s", onoffs);
if (flags & DEBUG_LSP_SCHED)
vty_out (vty, "IS-IS LSP scheduling debugging is %s%s", onoffs, VTY_NEWLINE);
vty_outln (vty, "IS-IS LSP scheduling debugging is %s", onoffs);
}
DEFUN (show_debugging,
@ -806,7 +796,7 @@ DEFUN (show_debugging,
ISIS_STR)
{
if (isis->debugs) {
vty_out (vty, "IS-IS:%s", VTY_NEWLINE);
vty_outln (vty, "IS-IS:");
print_debug (vty, isis->debugs, 1);
}
return CMD_SUCCESS;
@ -827,72 +817,72 @@ config_write_debug (struct vty *vty)
if (flags & DEBUG_ADJ_PACKETS)
{
vty_out (vty, "debug isis adj-packets%s", VTY_NEWLINE);
vty_outln (vty, "debug isis adj-packets");
write++;
}
if (flags & DEBUG_CHECKSUM_ERRORS)
{
vty_out (vty, "debug isis checksum-errors%s", VTY_NEWLINE);
vty_outln (vty, "debug isis checksum-errors");
write++;
}
if (flags & DEBUG_LOCAL_UPDATES)
{
vty_out (vty, "debug isis local-updates%s", VTY_NEWLINE);
vty_outln (vty, "debug isis local-updates");
write++;
}
if (flags & DEBUG_PROTOCOL_ERRORS)
{
vty_out (vty, "debug isis protocol-errors%s", VTY_NEWLINE);
vty_outln (vty, "debug isis protocol-errors");
write++;
}
if (flags & DEBUG_SNP_PACKETS)
{
vty_out (vty, "debug isis snp-packets%s", VTY_NEWLINE);
vty_outln (vty, "debug isis snp-packets");
write++;
}
if (flags & DEBUG_SPF_EVENTS)
{
vty_out (vty, "debug isis spf-events%s", VTY_NEWLINE);
vty_outln (vty, "debug isis spf-events");
write++;
}
if (flags & DEBUG_SPF_STATS)
{
vty_out (vty, "debug isis spf-statistics%s", VTY_NEWLINE);
vty_outln (vty, "debug isis spf-statistics");
write++;
}
if (flags & DEBUG_SPF_TRIGGERS)
{
vty_out (vty, "debug isis spf-triggers%s", VTY_NEWLINE);
vty_outln (vty, "debug isis spf-triggers");
write++;
}
if (flags & DEBUG_UPDATE_PACKETS)
{
vty_out (vty, "debug isis update-packets%s", VTY_NEWLINE);
vty_outln (vty, "debug isis update-packets");
write++;
}
if (flags & DEBUG_RTE_EVENTS)
{
vty_out (vty, "debug isis route-events%s", VTY_NEWLINE);
vty_outln (vty, "debug isis route-events");
write++;
}
if (flags & DEBUG_EVENTS)
{
vty_out (vty, "debug isis events%s", VTY_NEWLINE);
vty_outln (vty, "debug isis events");
write++;
}
if (flags & DEBUG_PACKET_DUMP)
{
vty_out (vty, "debug isis packet-dump%s", VTY_NEWLINE);
vty_outln (vty, "debug isis packet-dump");
write++;
}
if (flags & DEBUG_LSP_GEN)
{
vty_out (vty, "debug isis lsp-gen%s", VTY_NEWLINE);
vty_outln (vty, "debug isis lsp-gen");
write++;
}
if (flags & DEBUG_LSP_SCHED)
{
vty_out (vty, "debug isis lsp-sched%s", VTY_NEWLINE);
vty_outln (vty, "debug isis lsp-sched");
write++;
}
write += spf_backoff_write_config(vty);
@ -1322,7 +1312,7 @@ DEFUN (show_isis_spf_ietf,
{
if (!isis)
{
vty_out (vty, "ISIS is not running%s", VTY_NEWLINE);
vty_outln (vty, "ISIS is not running");
return CMD_SUCCESS;
}
@ -1331,33 +1321,31 @@ DEFUN (show_isis_spf_ietf,
for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area))
{
vty_out (vty, "Area %s:%s", area->area_tag ? area->area_tag : "null",
VTY_NEWLINE);
vty_outln (vty, "Area %s:",area->area_tag ? area->area_tag : "null");
for (int level = ISIS_LEVEL1; level <= ISIS_LEVELS; level++)
{
if ((area->is_type & level) == 0)
continue;
vty_out (vty, " Level-%d:%s", level, VTY_NEWLINE);
vty_outln (vty, " Level-%d:", level);
vty_out (vty, " SPF delay status: ");
if (area->spf_timer[level -1])
{
struct timeval remain = thread_timer_remain(area->spf_timer[level - 1]);
vty_out(vty, "Pending, due in %ld msec%s",
remain.tv_sec * 1000 + remain.tv_usec / 1000,
VTY_NEWLINE);
vty_outln (vty, "Pending, due in %ld msec",
remain.tv_sec * 1000 + remain.tv_usec / 1000);
}
else
{
vty_out(vty, "Not scheduled%s", VTY_NEWLINE);
vty_outln (vty, "Not scheduled");
}
if (area->spf_delay_ietf[level - 1]) {
vty_out(vty, " Using draft-ietf-rtgwg-backoff-algo-04%s", VTY_NEWLINE);
vty_outln (vty, " Using draft-ietf-rtgwg-backoff-algo-04");
spf_backoff_show(area->spf_delay_ietf[level - 1], vty, " ");
} else {
vty_out(vty, " Using legacy backoff algo%s", VTY_NEWLINE);
vty_outln (vty, " Using legacy backoff algo");
}
}
}
@ -1376,38 +1364,32 @@ DEFUN (show_isis_summary,
if (isis == NULL)
{
vty_out (vty, "ISIS is not running%s", VTY_NEWLINE);
vty_outln (vty, "ISIS is not running");
return CMD_SUCCESS;
}
vty_out (vty, "Process Id : %ld%s", isis->process_id,
VTY_NEWLINE);
vty_outln (vty, "Process Id : %ld",isis->process_id);
if (isis->sysid_set)
vty_out (vty, "System Id : %s%s", sysid_print (isis->sysid),
VTY_NEWLINE);
vty_outln (vty, "System Id : %s",sysid_print(isis->sysid));
vty_out (vty, "Up time : ");
vty_out_timestr(vty, isis->uptime);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (isis->area_list)
vty_out (vty, "Number of areas : %d%s", isis->area_list->count,
VTY_NEWLINE);
vty_outln (vty, "Number of areas : %d",isis->area_list->count);
for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area))
{
vty_out (vty, "Area %s:%s", area->area_tag ? area->area_tag : "null",
VTY_NEWLINE);
vty_outln (vty, "Area %s:",area->area_tag ? area->area_tag : "null");
if (listcount (area->area_addrs) > 0)
{
struct area_addr *area_addr;
for (ALL_LIST_ELEMENTS_RO (area->area_addrs, node2, area_addr))
{
vty_out (vty, " Net: %s%s",
isonet_print (area_addr->area_addr,
area_addr->addr_len + ISIS_SYS_ID_LEN +
1), VTY_NEWLINE);
vty_outln (vty, " Net: %s",
isonet_print(area_addr->area_addr, area_addr->addr_len + ISIS_SYS_ID_LEN + 1));
}
}
@ -1416,45 +1398,45 @@ DEFUN (show_isis_summary,
if ((area->is_type & level) == 0)
continue;
vty_out (vty, " Level-%d:%s", level, VTY_NEWLINE);
vty_outln (vty, " Level-%d:", level);
spftree = area->spftree[level - 1];
if (area->spf_timer[level - 1])
vty_out (vty, " SPF: (pending)%s", VTY_NEWLINE);
vty_outln (vty, " SPF: (pending)");
else
vty_out (vty, " SPF:%s", VTY_NEWLINE);
vty_outln (vty, " SPF:");
vty_out (vty, " minimum interval : %d",
area->min_spf_interval[level - 1]);
if (area->spf_delay_ietf[level - 1])
vty_out (vty, " (not used, IETF SPF delay activated)");
vty_out (vty, VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " IPv4 route computation:%s", VTY_NEWLINE);
vty_outln (vty, " IPv4 route computation:");
vty_out (vty, " last run elapsed : ");
vty_out_timestr(vty, spftree->last_run_timestamp);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " last run duration : %u usec%s",
(u_int32_t)spftree->last_run_duration, VTY_NEWLINE);
vty_outln (vty, " last run duration : %u usec",
(u_int32_t)spftree->last_run_duration);
vty_out (vty, " run count : %d%s",
spftree->runcount, VTY_NEWLINE);
vty_outln (vty, " run count : %d",
spftree->runcount);
spftree = area->spftree6[level - 1];
vty_out (vty, " IPv6 route computation:%s", VTY_NEWLINE);
vty_outln (vty, " IPv6 route computation:");
vty_out (vty, " last run elapsed : ");
vty_out_timestr(vty, spftree->last_run_timestamp);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " last run duration : %llu msec%s",
(unsigned long long)spftree->last_run_duration, VTY_NEWLINE);
vty_outln (vty, " last run duration : %llu msec",
(unsigned long long)spftree->last_run_duration);
vty_out (vty, " run count : %d%s",
spftree->runcount, VTY_NEWLINE);
vty_outln (vty, " run count : %d",
spftree->runcount);
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return CMD_SUCCESS;
}
@ -1526,8 +1508,7 @@ show_isis_database (struct vty *vty, const char *argv, int ui_level)
for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area))
{
vty_out (vty, "Area %s:%s", area->area_tag ? area->area_tag : "null",
VTY_NEWLINE);
vty_outln (vty, "Area %s:",area->area_tag ? area->area_tag : "null");
for (level = 0; level < ISIS_LEVELS; level++)
{
@ -1558,13 +1539,12 @@ show_isis_database (struct vty *vty, const char *argv, int ui_level)
if (lsp != NULL || argv == NULL)
{
vty_out (vty, "IS-IS Level-%d link-state database:%s",
level + 1, VTY_NEWLINE);
vty_outln (vty, "IS-IS Level-%d link-state database:",
level + 1);
/* print the title in all cases */
vty_out (vty, "LSP ID PduLen "
"SeqNumber Chksum Holdtime ATT/P/OL%s",
VTY_NEWLINE);
vty_outln (vty,
"LSP ID PduLen " "SeqNumber Chksum Holdtime ATT/P/OL");
}
if (lsp)
@ -1580,8 +1560,8 @@ show_isis_database (struct vty *vty, const char *argv, int ui_level)
ui_level,
area->dynhostname);
vty_out (vty, " %u LSPs%s%s",
lsp_count, VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, " %u LSPs%s",
lsp_count, VTY_NEWLINE);
}
}
}
@ -1672,18 +1652,19 @@ DEFUN (isis_topology,
if (area->oldmetric)
{
vty_out (vty, "Multi topology IS-IS can only be used with wide metrics%s", VTY_NEWLINE);
vty_outln (vty,
"Multi topology IS-IS can only be used with wide metrics");
return CMD_ERR_AMBIGUOUS;
}
if (mtid == (uint16_t)-1)
{
vty_out (vty, "Don't know topology '%s'%s", arg, VTY_NEWLINE);
vty_outln (vty, "Don't know topology '%s'", arg);
return CMD_ERR_AMBIGUOUS;
}
if (mtid == ISIS_MT_IPV4_UNICAST)
{
vty_out (vty, "Cannot configure IPv4 unicast topology%s", VTY_NEWLINE);
vty_outln (vty, "Cannot configure IPv4 unicast topology");
return CMD_ERR_AMBIGUOUS;
}
@ -1707,18 +1688,19 @@ DEFUN (no_isis_topology,
if (area->oldmetric)
{
vty_out (vty, "Multi topology IS-IS can only be used with wide metrics%s", VTY_NEWLINE);
vty_outln (vty,
"Multi topology IS-IS can only be used with wide metrics");
return CMD_ERR_AMBIGUOUS;
}
if (mtid == (uint16_t)-1)
{
vty_out (vty, "Don't know topology '%s'%s", arg, VTY_NEWLINE);
vty_outln (vty, "Don't know topology '%s'", arg);
return CMD_ERR_AMBIGUOUS;
}
if (mtid == ISIS_MT_IPV4_UNICAST)
{
vty_out (vty, "Cannot configure IPv4 unicast topology%s", VTY_NEWLINE);
vty_outln (vty, "Cannot configure IPv4 unicast topology");
return CMD_ERR_AMBIGUOUS;
}
@ -2008,7 +1990,7 @@ isis_config_write (struct vty *vty)
for (ALL_LIST_ELEMENTS_RO (isis->area_list, node, area))
{
/* ISIS - Area name */
vty_out (vty, "router isis %s%s", area->area_tag, VTY_NEWLINE);
vty_outln (vty, "router isis %s", area->area_tag);
write++;
/* ISIS - Net */
if (listcount (area->area_addrs) > 0)
@ -2016,10 +1998,8 @@ isis_config_write (struct vty *vty)
struct area_addr *area_addr;
for (ALL_LIST_ELEMENTS_RO (area->area_addrs, node2, area_addr))
{
vty_out (vty, " net %s%s",
isonet_print (area_addr->area_addr,
area_addr->addr_len + ISIS_SYS_ID_LEN +
1), VTY_NEWLINE);
vty_outln (vty, " net %s",
isonet_print(area_addr->area_addr, area_addr->addr_len + ISIS_SYS_ID_LEN + 1));
write++;
}
}
@ -2027,38 +2007,38 @@ isis_config_write (struct vty *vty)
* false. */
if (!area->dynhostname)
{
vty_out (vty, " no hostname dynamic%s", VTY_NEWLINE);
vty_outln (vty, " no hostname dynamic");
write++;
}
/* ISIS - Metric-Style - when true displays wide */
if (area->newmetric)
{
if (!area->oldmetric)
vty_out (vty, " metric-style wide%s", VTY_NEWLINE);
vty_outln (vty, " metric-style wide");
else
vty_out (vty, " metric-style transition%s", VTY_NEWLINE);
vty_outln (vty, " metric-style transition");
write++;
}
else
{
vty_out (vty, " metric-style narrow%s", VTY_NEWLINE);
vty_outln (vty, " metric-style narrow");
write++;
}
/* ISIS - overload-bit */
if (area->overload_bit)
{
vty_out (vty, " set-overload-bit%s", VTY_NEWLINE);
vty_outln (vty, " set-overload-bit");
write++;
}
/* ISIS - Area is-type (level-1-2 is default) */
if (area->is_type == IS_LEVEL_1)
{
vty_out (vty, " is-type level-1%s", VTY_NEWLINE);
vty_outln (vty, " is-type level-1");
write++;
}
else if (area->is_type == IS_LEVEL_2)
{
vty_out (vty, " is-type level-2-only%s", VTY_NEWLINE);
vty_outln (vty, " is-type level-2-only");
write++;
}
write += isis_redist_config_write(vty, area, AF_INET);
@ -2068,8 +2048,8 @@ isis_config_write (struct vty *vty)
{
if (area->lsp_gen_interval[0] != DEFAULT_MIN_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-gen-interval %d%s",
area->lsp_gen_interval[0], VTY_NEWLINE);
vty_outln (vty, " lsp-gen-interval %d",
area->lsp_gen_interval[0]);
write++;
}
}
@ -2077,14 +2057,14 @@ isis_config_write (struct vty *vty)
{
if (area->lsp_gen_interval[0] != DEFAULT_MIN_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-gen-interval level-1 %d%s",
area->lsp_gen_interval[0], VTY_NEWLINE);
vty_outln (vty, " lsp-gen-interval level-1 %d",
area->lsp_gen_interval[0]);
write++;
}
if (area->lsp_gen_interval[1] != DEFAULT_MIN_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-gen-interval level-2 %d%s",
area->lsp_gen_interval[1], VTY_NEWLINE);
vty_outln (vty, " lsp-gen-interval level-2 %d",
area->lsp_gen_interval[1]);
write++;
}
}
@ -2093,8 +2073,8 @@ isis_config_write (struct vty *vty)
{
if (area->max_lsp_lifetime[0] != DEFAULT_LSP_LIFETIME)
{
vty_out (vty, " max-lsp-lifetime %u%s", area->max_lsp_lifetime[0],
VTY_NEWLINE);
vty_outln (vty, " max-lsp-lifetime %u",
area->max_lsp_lifetime[0]);
write++;
}
}
@ -2102,14 +2082,14 @@ isis_config_write (struct vty *vty)
{
if (area->max_lsp_lifetime[0] != DEFAULT_LSP_LIFETIME)
{
vty_out (vty, " max-lsp-lifetime level-1 %u%s",
area->max_lsp_lifetime[0], VTY_NEWLINE);
vty_outln (vty, " max-lsp-lifetime level-1 %u",
area->max_lsp_lifetime[0]);
write++;
}
if (area->max_lsp_lifetime[1] != DEFAULT_LSP_LIFETIME)
{
vty_out (vty, " max-lsp-lifetime level-2 %u%s",
area->max_lsp_lifetime[1], VTY_NEWLINE);
vty_outln (vty, " max-lsp-lifetime level-2 %u",
area->max_lsp_lifetime[1]);
write++;
}
}
@ -2118,8 +2098,8 @@ isis_config_write (struct vty *vty)
{
if (area->lsp_refresh[0] != DEFAULT_MAX_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-refresh-interval %u%s", area->lsp_refresh[0],
VTY_NEWLINE);
vty_outln (vty, " lsp-refresh-interval %u",
area->lsp_refresh[0]);
write++;
}
}
@ -2127,20 +2107,20 @@ isis_config_write (struct vty *vty)
{
if (area->lsp_refresh[0] != DEFAULT_MAX_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-refresh-interval level-1 %u%s",
area->lsp_refresh[0], VTY_NEWLINE);
vty_outln (vty, " lsp-refresh-interval level-1 %u",
area->lsp_refresh[0]);
write++;
}
if (area->lsp_refresh[1] != DEFAULT_MAX_LSP_GEN_INTERVAL)
{
vty_out (vty, " lsp-refresh-interval level-2 %u%s",
area->lsp_refresh[1], VTY_NEWLINE);
vty_outln (vty, " lsp-refresh-interval level-2 %u",
area->lsp_refresh[1]);
write++;
}
}
if (area->lsp_mtu != DEFAULT_LSP_MTU)
{
vty_out(vty, " lsp-mtu %u%s", area->lsp_mtu, VTY_NEWLINE);
vty_outln (vty, " lsp-mtu %u", area->lsp_mtu);
write++;
}
@ -2149,8 +2129,8 @@ isis_config_write (struct vty *vty)
{
if (area->min_spf_interval[0] != MINIMUM_SPF_INTERVAL)
{
vty_out (vty, " spf-interval %d%s",
area->min_spf_interval[0], VTY_NEWLINE);
vty_outln (vty, " spf-interval %d",
area->min_spf_interval[0]);
write++;
}
}
@ -2158,14 +2138,14 @@ isis_config_write (struct vty *vty)
{
if (area->min_spf_interval[0] != MINIMUM_SPF_INTERVAL)
{
vty_out (vty, " spf-interval level-1 %d%s",
area->min_spf_interval[0], VTY_NEWLINE);
vty_outln (vty, " spf-interval level-1 %d",
area->min_spf_interval[0]);
write++;
}
if (area->min_spf_interval[1] != MINIMUM_SPF_INTERVAL)
{
vty_out (vty, " spf-interval level-2 %d%s",
area->min_spf_interval[1], VTY_NEWLINE);
vty_outln (vty, " spf-interval level-2 %d",
area->min_spf_interval[1]);
write++;
}
}
@ -2173,13 +2153,12 @@ isis_config_write (struct vty *vty)
/* IETF SPF interval */
if (area->spf_delay_ietf[0])
{
vty_out (vty, " spf-delay-ietf init-delay %ld short-delay %ld long-delay %ld holddown %ld time-to-learn %ld%s",
vty_outln (vty, " spf-delay-ietf init-delay %ld short-delay %ld long-delay %ld holddown %ld time-to-learn %ld",
spf_backoff_init_delay(area->spf_delay_ietf[0]),
spf_backoff_short_delay(area->spf_delay_ietf[0]),
spf_backoff_long_delay(area->spf_delay_ietf[0]),
spf_backoff_holddown(area->spf_delay_ietf[0]),
spf_backoff_timetolearn(area->spf_delay_ietf[0]),
VTY_NEWLINE);
spf_backoff_timetolearn(area->spf_delay_ietf[0]));
write++;
}
@ -2195,7 +2174,7 @@ isis_config_write (struct vty *vty)
else
vty_out(vty, "send-only");
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
else if (area->area_passwd.type == ISIS_PASSWD_TYPE_CLEARTXT)
@ -2209,7 +2188,7 @@ isis_config_write (struct vty *vty)
else
vty_out(vty, "send-only");
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
if (area->domain_passwd.type == ISIS_PASSWD_TYPE_HMAC_MD5)
@ -2224,7 +2203,7 @@ isis_config_write (struct vty *vty)
else
vty_out(vty, "send-only");
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
else if (area->domain_passwd.type == ISIS_PASSWD_TYPE_CLEARTXT)
@ -2239,13 +2218,13 @@ isis_config_write (struct vty *vty)
else
vty_out(vty, "send-only");
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
if (area->log_adj_changes)
{
vty_out (vty, " log-adjacency-changes%s", VTY_NEWLINE);
vty_outln (vty, " log-adjacency-changes");
write++;
}

View File

@ -105,33 +105,29 @@ ldp_vty_debug(struct vty *vty, int disable, const char *type_str,
int
ldp_vty_show_debugging(struct vty *vty)
{
vty_out(vty, "LDP debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "LDP debugging status:");
if (LDP_DEBUG(hello, HELLO_RECV))
vty_out(vty, " LDP discovery debugging is on (inbound)%s",
VTY_NEWLINE);
vty_outln (vty," LDP discovery debugging is on (inbound)");
if (LDP_DEBUG(hello, HELLO_SEND))
vty_out(vty, " LDP discovery debugging is on (outbound)%s",
VTY_NEWLINE);
vty_outln (vty," LDP discovery debugging is on (outbound)");
if (LDP_DEBUG(errors, ERRORS))
vty_out(vty, " LDP errors debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " LDP errors debugging is on");
if (LDP_DEBUG(event, EVENT))
vty_out(vty, " LDP events debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " LDP events debugging is on");
if (LDP_DEBUG(msg, MSG_RECV_ALL))
vty_out(vty, " LDP detailed messages debugging is on "
"(inbound)%s", VTY_NEWLINE);
vty_outln (vty,
" LDP detailed messages debugging is on " "(inbound)");
else if (LDP_DEBUG(msg, MSG_RECV))
vty_out(vty, " LDP messages debugging is on (inbound)%s",
VTY_NEWLINE);
vty_outln (vty," LDP messages debugging is on (inbound)");
if (LDP_DEBUG(msg, MSG_SEND_ALL))
vty_out(vty, " LDP detailed messages debugging is on "
"(outbound)%s", VTY_NEWLINE);
vty_outln (vty,
" LDP detailed messages debugging is on " "(outbound)");
else if (LDP_DEBUG(msg, MSG_SEND))
vty_out(vty, " LDP messages debugging is on (outbound)%s",
VTY_NEWLINE);
vty_outln (vty," LDP messages debugging is on (outbound)");
if (LDP_DEBUG(zebra, ZEBRA))
vty_out(vty, " LDP zebra debugging is on%s", VTY_NEWLINE);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, " LDP zebra debugging is on");
vty_outln (vty, "");
return (CMD_SUCCESS);
}
@ -142,45 +138,43 @@ ldp_debug_config_write(struct vty *vty)
int write = 0;
if (CONF_LDP_DEBUG(hello, HELLO_RECV)) {
vty_out(vty, "debug mpls ldp discovery hello recv%s",
VTY_NEWLINE);
vty_outln (vty,"debug mpls ldp discovery hello recv");
write = 1;
}
if (CONF_LDP_DEBUG(hello, HELLO_SEND)) {
vty_out(vty, "debug mpls ldp discovery hello sent%s",
VTY_NEWLINE);
vty_outln (vty,"debug mpls ldp discovery hello sent");
write = 1;
}
if (CONF_LDP_DEBUG(errors, ERRORS)) {
vty_out(vty, "debug mpls ldp errors%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp errors");
write = 1;
}
if (CONF_LDP_DEBUG(event, EVENT)) {
vty_out(vty, "debug mpls ldp event%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp event");
write = 1;
}
if (CONF_LDP_DEBUG(msg, MSG_RECV_ALL)) {
vty_out(vty, "debug mpls ldp messages recv all%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp messages recv all");
write = 1;
} else if (CONF_LDP_DEBUG(msg, MSG_RECV)) {
vty_out(vty, "debug mpls ldp messages recv%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp messages recv");
write = 1;
}
if (CONF_LDP_DEBUG(msg, MSG_SEND_ALL)) {
vty_out(vty, "debug mpls ldp messages sent all%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp messages sent all");
write = 1;
} else if (CONF_LDP_DEBUG(msg, MSG_SEND)) {
vty_out(vty, "debug mpls ldp messages sent%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp messages sent");
write = 1;
}
if (CONF_LDP_DEBUG(zebra, ZEBRA)) {
vty_out(vty, "debug mpls ldp zebra%s", VTY_NEWLINE);
vty_outln (vty, "debug mpls ldp zebra");
write = 1;
}

View File

@ -115,17 +115,17 @@ ldp_af_iface_config_write(struct vty *vty, int af)
if (!ia->enabled)
continue;
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, " interface %s%s", iface->name, VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, " interface %s", iface->name);
if (ia->hello_holdtime != LINK_DFLT_HOLDTIME &&
ia->hello_holdtime != 0)
vty_out(vty, " discovery hello holdtime %u%s",
ia->hello_holdtime, VTY_NEWLINE);
vty_outln (vty, " discovery hello holdtime %u",
ia->hello_holdtime);
if (ia->hello_interval != DEFAULT_HELLO_INTERVAL &&
ia->hello_interval != 0)
vty_out(vty, " discovery hello interval %u%s",
ia->hello_interval, VTY_NEWLINE);
vty_outln (vty, " discovery hello interval %u",
ia->hello_interval);
}
}
@ -138,41 +138,41 @@ ldp_af_config_write(struct vty *vty, int af, struct ldpd_conf *conf,
if (!(af_conf->flags & F_LDPD_AF_ENABLED))
return;
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, " address-family %s%s", af_name(af), VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, " address-family %s", af_name(af));
if (af_conf->lhello_holdtime != LINK_DFLT_HOLDTIME &&
af_conf->lhello_holdtime != 0 )
vty_out(vty, " discovery hello holdtime %u%s",
af_conf->lhello_holdtime, VTY_NEWLINE);
vty_outln (vty, " discovery hello holdtime %u",
af_conf->lhello_holdtime);
if (af_conf->lhello_interval != DEFAULT_HELLO_INTERVAL &&
af_conf->lhello_interval != 0)
vty_out(vty, " discovery hello interval %u%s",
af_conf->lhello_interval, VTY_NEWLINE);
vty_outln (vty, " discovery hello interval %u",
af_conf->lhello_interval);
if (af_conf->flags & F_LDPD_AF_THELLO_ACCEPT) {
vty_out(vty, " discovery targeted-hello accept");
if (af_conf->acl_thello_accept_from[0] != '\0')
vty_out(vty, " from %s",
af_conf->acl_thello_accept_from);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (af_conf->thello_holdtime != TARGETED_DFLT_HOLDTIME &&
af_conf->thello_holdtime != 0)
vty_out(vty, " discovery targeted-hello holdtime %u%s",
af_conf->thello_holdtime, VTY_NEWLINE);
vty_outln (vty, " discovery targeted-hello holdtime %u",
af_conf->thello_holdtime);
if (af_conf->thello_interval != DEFAULT_HELLO_INTERVAL &&
af_conf->thello_interval != 0)
vty_out(vty, " discovery targeted-hello interval %u%s",
af_conf->thello_interval, VTY_NEWLINE);
vty_outln (vty, " discovery targeted-hello interval %u",
af_conf->thello_interval);
if (ldp_addrisset(af, &af_conf->trans_addr))
vty_out(vty, " discovery transport-address %s%s",
log_addr(af, &af_conf->trans_addr), VTY_NEWLINE);
else
vty_out(vty, " ! Incomplete config, specify a discovery "
"transport-address%s", VTY_NEWLINE);
vty_outln (vty, " discovery transport-address %s",
log_addr(af, &af_conf->trans_addr));
else
vty_outln (vty,
" ! Incomplete config, specify a discovery " "transport-address");
if ((af_conf->flags & F_LDPD_AF_ALLOCHOSTONLY) ||
af_conf->acl_label_allocate_for[0] != '\0') {
@ -182,7 +182,7 @@ ldp_af_config_write(struct vty *vty, int af, struct ldpd_conf *conf,
else
vty_out(vty, " for %s",
af_conf->acl_label_allocate_for);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (af_conf->acl_label_advertise_for[0] != '\0' ||
@ -194,7 +194,7 @@ ldp_af_config_write(struct vty *vty, int af, struct ldpd_conf *conf,
if (af_conf->acl_label_advertise_for[0] != '\0')
vty_out(vty, " for %s",
af_conf->acl_label_advertise_for);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (af_conf->flags & F_LDPD_AF_EXPNULL) {
@ -202,7 +202,7 @@ ldp_af_config_write(struct vty *vty, int af, struct ldpd_conf *conf,
if (af_conf->acl_label_expnull_for[0] != '\0')
vty_out(vty, " for %s",
af_conf->acl_label_expnull_for);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (af_conf->acl_label_accept_for[0] != '\0' ||
@ -214,27 +214,26 @@ ldp_af_config_write(struct vty *vty, int af, struct ldpd_conf *conf,
if (af_conf->acl_label_accept_for[0] != '\0')
vty_out(vty, " for %s",
af_conf->acl_label_accept_for);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (af_conf->flags & F_LDPD_AF_NO_GTSM)
vty_out(vty, " ttl-security disable%s", VTY_NEWLINE);
vty_outln (vty, " ttl-security disable");
if (af_conf->keepalive != DEFAULT_KEEPALIVE)
vty_out(vty, " session holdtime %u%s", af_conf->keepalive,
VTY_NEWLINE);
vty_outln (vty, " session holdtime %u",af_conf->keepalive);
RB_FOREACH(tnbr, tnbr_head, &ldpd_conf->tnbr_tree) {
if (tnbr->af == af) {
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, " neighbor %s targeted%s",
log_addr(tnbr->af, &tnbr->addr), VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, " neighbor %s targeted",
log_addr(tnbr->af, &tnbr->addr));
}
}
ldp_af_iface_config_write(vty, af);
vty_out(vty, " !%s", VTY_NEWLINE);
vty_outln (vty, " !");
}
int
@ -245,64 +244,61 @@ ldp_config_write(struct vty *vty)
if (!(ldpd_conf->flags & F_LDPD_ENABLED))
return (0);
vty_out(vty, "mpls ldp%s", VTY_NEWLINE);
vty_outln (vty, "mpls ldp");
if (ldpd_conf->rtr_id.s_addr != 0)
vty_out(vty, " router-id %s%s",
inet_ntoa(ldpd_conf->rtr_id), VTY_NEWLINE);
vty_outln (vty, " router-id %s",
inet_ntoa(ldpd_conf->rtr_id));
if (ldpd_conf->lhello_holdtime != LINK_DFLT_HOLDTIME &&
ldpd_conf->lhello_holdtime != 0)
vty_out(vty, " discovery hello holdtime %u%s",
ldpd_conf->lhello_holdtime, VTY_NEWLINE);
vty_outln (vty, " discovery hello holdtime %u",
ldpd_conf->lhello_holdtime);
if (ldpd_conf->lhello_interval != DEFAULT_HELLO_INTERVAL &&
ldpd_conf->lhello_interval != 0)
vty_out(vty, " discovery hello interval %u%s",
ldpd_conf->lhello_interval, VTY_NEWLINE);
vty_outln (vty, " discovery hello interval %u",
ldpd_conf->lhello_interval);
if (ldpd_conf->thello_holdtime != TARGETED_DFLT_HOLDTIME &&
ldpd_conf->thello_holdtime != 0)
vty_out(vty, " discovery targeted-hello holdtime %u%s",
ldpd_conf->thello_holdtime, VTY_NEWLINE);
vty_outln (vty, " discovery targeted-hello holdtime %u",
ldpd_conf->thello_holdtime);
if (ldpd_conf->thello_interval != DEFAULT_HELLO_INTERVAL &&
ldpd_conf->thello_interval != 0)
vty_out(vty, " discovery targeted-hello interval %u%s",
ldpd_conf->thello_interval, VTY_NEWLINE);
vty_outln (vty, " discovery targeted-hello interval %u",
ldpd_conf->thello_interval);
if (ldpd_conf->trans_pref == DUAL_STACK_LDPOV4)
vty_out(vty, " dual-stack transport-connection prefer ipv4%s",
VTY_NEWLINE);
vty_outln (vty,
" dual-stack transport-connection prefer ipv4");
if (ldpd_conf->flags & F_LDPD_DS_CISCO_INTEROP)
vty_out(vty, " dual-stack cisco-interop%s", VTY_NEWLINE);
vty_outln (vty, " dual-stack cisco-interop");
RB_FOREACH(nbrp, nbrp_head, &ldpd_conf->nbrp_tree) {
if (nbrp->flags & F_NBRP_KEEPALIVE)
vty_out(vty, " neighbor %s session holdtime %u%s",
inet_ntoa(nbrp->lsr_id), nbrp->keepalive,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s session holdtime %u",
inet_ntoa(nbrp->lsr_id),nbrp->keepalive);
if (nbrp->flags & F_NBRP_GTSM) {
if (nbrp->gtsm_enabled)
vty_out(vty, " neighbor %s ttl-security hops "
"%u%s", inet_ntoa(nbrp->lsr_id),
nbrp->gtsm_hops, VTY_NEWLINE);
vty_outln (vty, " neighbor %s ttl-security hops "
"%u", inet_ntoa(nbrp->lsr_id),
nbrp->gtsm_hops);
else
vty_out(vty, " neighbor %s ttl-security "
"disable%s", inet_ntoa(nbrp->lsr_id),
VTY_NEWLINE);
vty_outln (vty, " neighbor %s ttl-security "
"disable",inet_ntoa(nbrp->lsr_id));
}
if (nbrp->auth.method == AUTH_MD5SIG)
vty_out(vty, " neighbor %s password %s%s",
inet_ntoa(nbrp->lsr_id), nbrp->auth.md5key,
VTY_NEWLINE);
vty_outln (vty, " neighbor %s password %s",
inet_ntoa(nbrp->lsr_id),nbrp->auth.md5key);
}
ldp_af_config_write(vty, AF_INET, ldpd_conf, &ldpd_conf->ipv4);
ldp_af_config_write(vty, AF_INET6, ldpd_conf, &ldpd_conf->ipv6);
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, "!%s", VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, "!");
return (1);
}
@ -313,36 +309,34 @@ ldp_l2vpn_pw_config_write(struct vty *vty, struct l2vpn_pw *pw)
int missing_lsrid = 0;
int missing_pwid = 0;
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, " member pseudowire %s%s", pw->ifname, VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, " member pseudowire %s", pw->ifname);
if (pw->lsr_id.s_addr != INADDR_ANY)
vty_out(vty, " neighbor lsr-id %s%s", inet_ntoa(pw->lsr_id),
VTY_NEWLINE);
else
missing_lsrid = 1;
vty_outln (vty, " neighbor lsr-id %s",inet_ntoa(pw->lsr_id));
else
missing_lsrid = 1;
if (pw->flags & F_PW_STATIC_NBR_ADDR)
vty_out(vty, " neighbor address %s%s", log_addr(pw->af,
&pw->addr), VTY_NEWLINE);
vty_outln (vty, " neighbor address %s",
log_addr(pw->af, &pw->addr));
if (pw->pwid != 0)
vty_out(vty, " pw-id %u%s", pw->pwid, VTY_NEWLINE);
vty_outln (vty, " pw-id %u", pw->pwid);
else
missing_pwid = 1;
if (!(pw->flags & F_PW_CWORD_CONF))
vty_out(vty, " control-word exclude%s", VTY_NEWLINE);
vty_outln (vty, " control-word exclude");
if (!(pw->flags & F_PW_STATUSTLV_CONF))
vty_out(vty, " pw-status disable%s", VTY_NEWLINE);
vty_outln (vty, " pw-status disable");
if (missing_lsrid)
vty_out(vty, " ! Incomplete config, specify a neighbor "
"lsr-id%s", VTY_NEWLINE);
vty_outln (vty,
" ! Incomplete config, specify a neighbor " "lsr-id");
if (missing_pwid)
vty_out(vty, " ! Incomplete config, specify a pw-id%s",
VTY_NEWLINE);
vty_outln (vty," ! Incomplete config, specify a pw-id");
}
int
@ -353,29 +347,27 @@ ldp_l2vpn_config_write(struct vty *vty)
struct l2vpn_pw *pw;
RB_FOREACH(l2vpn, l2vpn_head, &ldpd_conf->l2vpn_tree) {
vty_out(vty, "l2vpn %s type vpls%s", l2vpn->name, VTY_NEWLINE);
vty_outln (vty, "l2vpn %s type vpls", l2vpn->name);
if (l2vpn->pw_type != DEFAULT_PW_TYPE)
vty_out(vty, " vc type ethernet-tagged%s", VTY_NEWLINE);
vty_outln (vty, " vc type ethernet-tagged");
if (l2vpn->mtu != DEFAULT_L2VPN_MTU)
vty_out(vty, " mtu %u%s", l2vpn->mtu, VTY_NEWLINE);
vty_outln (vty, " mtu %u", l2vpn->mtu);
if (l2vpn->br_ifname[0] != '\0')
vty_out(vty, " bridge %s%s", l2vpn->br_ifname,
VTY_NEWLINE);
vty_outln (vty, " bridge %s",l2vpn->br_ifname);
RB_FOREACH(lif, l2vpn_if_head, &l2vpn->if_tree)
vty_out(vty, " member interface %s%s", lif->ifname,
VTY_NEWLINE);
vty_outln (vty, " member interface %s",lif->ifname);
RB_FOREACH(pw, l2vpn_pw_head, &l2vpn->pw_tree)
ldp_l2vpn_pw_config_write(vty, pw);
RB_FOREACH(pw, l2vpn_pw_head, &l2vpn->pw_inactive_tree)
ldp_l2vpn_pw_config_write(vty, pw);
vty_out(vty, " !%s", VTY_NEWLINE);
vty_out(vty, "!%s", VTY_NEWLINE);
vty_outln (vty, " !");
vty_outln (vty, "!");
}
return (0);
@ -481,7 +473,7 @@ ldp_vty_disc_holdtime(struct vty *vty, int disable, const char *hello_type_str,
secs = strtol(seconds_str, &ep, 10);
if (*ep != '\0' || secs < MIN_HOLDTIME || secs > MAX_HOLDTIME) {
vty_out(vty, "%% Invalid holdtime%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid holdtime");
return (CMD_WARNING);
}
@ -576,7 +568,7 @@ ldp_vty_disc_interval(struct vty *vty, int disable, const char *hello_type_str,
secs = strtol(seconds_str, &ep, 10);
if (*ep != '\0' || secs < MIN_HELLO_INTERVAL ||
secs > MAX_HELLO_INTERVAL) {
vty_out(vty, "%% Invalid interval%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid interval");
return (CMD_WARNING);
}
@ -694,13 +686,13 @@ ldp_vty_nbr_session_holdtime(struct vty *vty, int disable,
if (inet_pton(AF_INET, lsr_id_str, &lsr_id) != 1 ||
bad_addr_v4(lsr_id)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
secs = strtol(seconds_str, &ep, 10);
if (*ep != '\0' || secs < MIN_KEEPALIVE || secs > MAX_KEEPALIVE) {
vty_out(vty, "%% Invalid holdtime%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid holdtime");
return (CMD_SUCCESS);
}
@ -740,7 +732,7 @@ ldp_vty_af_session_holdtime(struct vty *vty, int disable,
secs = strtol(seconds_str, &ep, 10);
if (*ep != '\0' || secs < MIN_KEEPALIVE || secs > MAX_KEEPALIVE) {
vty_out(vty, "%% Invalid holdtime%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid holdtime");
return (CMD_SUCCESS);
}
@ -786,8 +778,7 @@ ldp_vty_interface(struct vty *vty, int disable, const char *ifname)
if (iface == NULL) {
if (ldp_iface_is_configured(vty_conf, ifname)) {
vty_out(vty, "%% Interface is already in use%s",
VTY_NEWLINE);
vty_outln (vty,"%% Interface is already in use");
return (CMD_SUCCESS);
}
@ -834,7 +825,7 @@ ldp_vty_trans_addr(struct vty *vty, int disable, const char *addr_str)
else {
if (inet_pton(af, addr_str, &af_conf->trans_addr) != 1 ||
bad_addr(af, &af_conf->trans_addr)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_SUCCESS);
}
}
@ -855,11 +846,11 @@ ldp_vty_neighbor_targeted(struct vty *vty, int disable, const char *addr_str)
if (inet_pton(af, addr_str, &addr) != 1 ||
bad_addr(af, &addr)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
if (af == AF_INET6 && IN6_IS_SCOPE_EMBED(&addr.v6)) {
vty_out(vty, "%% Address can not be link-local%s", VTY_NEWLINE);
vty_outln (vty, "%% Address can not be link-local");
return (CMD_WARNING);
}
@ -1031,7 +1022,7 @@ ldp_vty_router_id(struct vty *vty, int disable, const char *addr_str)
else {
if (inet_pton(AF_INET, addr_str, &vty_conf->rtr_id) != 1 ||
bad_addr_v4(vty_conf->rtr_id)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_SUCCESS);
}
}
@ -1077,7 +1068,7 @@ ldp_vty_neighbor_password(struct vty *vty, int disable, const char *lsr_id_str,
if (inet_pton(AF_INET, lsr_id_str, &lsr_id) != 1 ||
bad_addr_v4(lsr_id)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
@ -1123,14 +1114,14 @@ ldp_vty_neighbor_ttl_security(struct vty *vty, int disable,
if (inet_pton(AF_INET, lsr_id_str, &lsr_id) != 1 ||
bad_addr_v4(lsr_id)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
if (hops_str) {
hops = strtol(hops_str, &ep, 10);
if (*ep != '\0' || hops < 1 || hops > 254) {
vty_out(vty, "%% Invalid hop count%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid hop count");
return (CMD_SUCCESS);
}
}
@ -1235,7 +1226,7 @@ ldp_vty_l2vpn_mtu(struct vty *vty, int disable, const char *mtu_str)
mtu = strtol(mtu_str, &ep, 10);
if (*ep != '\0' || mtu < MIN_L2VPN_MTU || mtu > MAX_L2VPN_MTU) {
vty_out(vty, "%% Invalid MTU%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid MTU");
return (CMD_WARNING);
}
@ -1295,7 +1286,7 @@ ldp_vty_l2vpn_interface(struct vty *vty, int disable, const char *ifname)
return (CMD_SUCCESS);
if (ldp_iface_is_configured(vty_conf, ifname)) {
vty_out(vty, "%% Interface is already in use%s", VTY_NEWLINE);
vty_outln (vty, "%% Interface is already in use");
return (CMD_SUCCESS);
}
@ -1338,7 +1329,7 @@ ldp_vty_l2vpn_pseudowire(struct vty *vty, int disable, const char *ifname)
}
if (ldp_iface_is_configured(vty_conf, ifname)) {
vty_out(vty, "%% Interface is already in use%s", VTY_NEWLINE);
vty_outln (vty, "%% Interface is already in use");
return (CMD_SUCCESS);
}
@ -1382,7 +1373,7 @@ ldp_vty_l2vpn_pw_nbr_addr(struct vty *vty, int disable, const char *addr_str)
if (ldp_get_address(addr_str, &af, &addr) == -1 ||
bad_addr(af, &addr)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
@ -1409,7 +1400,7 @@ ldp_vty_l2vpn_pw_nbr_id(struct vty *vty, int disable, const char *lsr_id_str)
if (inet_pton(AF_INET, lsr_id_str, &lsr_id) != 1 ||
bad_addr_v4(lsr_id)) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}
@ -1432,7 +1423,7 @@ ldp_vty_l2vpn_pw_pwid(struct vty *vty, int disable, const char *pwid_str)
pwid = strtol(pwid_str, &ep, 10);
if (*ep != '\0' || pwid < MIN_PWID_ID || pwid > MAX_PWID_ID) {
vty_out(vty, "%% Invalid pw-id%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid pw-id");
return (CMD_WARNING);
}

View File

@ -128,14 +128,14 @@ show_interface_msg(struct vty *vty, struct imsg *imsg,
snprintf(timers, sizeof(timers), "%u/%u",
iface->hello_interval, iface->hello_holdtime);
vty_out(vty, "%-4s %-11s %-6s %-8s %-12s %3u%s",
vty_outln (vty, "%-4s %-11s %-6s %-8s %-12s %3u",
af_name(iface->af), iface->name,
if_state_name(iface->state), iface->uptime == 0 ?
"00:00:00" : log_time(iface->uptime), timers,
iface->adj_cnt, VTY_NEWLINE);
iface->adj_cnt);
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -214,10 +214,10 @@ show_discovery_msg(struct vty *vty, struct imsg *imsg,
vty_out(vty, "%s%46s", VTY_NEWLINE, " ");
break;
}
vty_out(vty, "%9u%s", adj->holdtime, VTY_NEWLINE);
vty_outln (vty, "%9u", adj->holdtime);
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -313,23 +313,20 @@ show_discovery_detail_msg(struct vty *vty, struct imsg *imsg,
break;
case IMSG_CTL_END:
rtr_id.s_addr = ldp_rtr_id_get(ldpd_conf);
vty_out(vty, "Local:%s", VTY_NEWLINE);
vty_out(vty, " LSR Id: %s:0%s", inet_ntoa(rtr_id),
VTY_NEWLINE);
vty_outln (vty, "Local:");
vty_outln (vty, " LSR Id: %s:0",inet_ntoa(rtr_id));
if (ldpd_conf->ipv4.flags & F_LDPD_AF_ENABLED)
vty_out(vty, " Transport Address (IPv4): %s%s",
log_addr(AF_INET, &ldpd_conf->ipv4.trans_addr),
VTY_NEWLINE);
vty_outln (vty, " Transport Address (IPv4): %s",
log_addr(AF_INET, &ldpd_conf->ipv4.trans_addr));
if (ldpd_conf->ipv6.flags & F_LDPD_AF_ENABLED)
vty_out(vty, " Transport Address (IPv6): %s%s",
log_addr(AF_INET6, &ldpd_conf->ipv6.trans_addr),
VTY_NEWLINE);
vty_out(vty, "Discovery Sources:%s", VTY_NEWLINE);
vty_out(vty, " Interfaces:%s", VTY_NEWLINE);
vty_outln (vty, " Transport Address (IPv6): %s",
log_addr(AF_INET6, &ldpd_conf->ipv6.trans_addr));
vty_outln (vty, "Discovery Sources:");
vty_outln (vty, " Interfaces:");
vty_out(vty, "%s", ifaces_buffer);
vty_out(vty, " Targeted Hellos:%s", VTY_NEWLINE);
vty_outln (vty, " Targeted Hellos:");
vty_out(vty, "%s", tnbrs_buffer);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -515,7 +512,7 @@ show_nbr_msg(struct vty *vty, struct imsg *imsg, struct show_params *params)
nbr_state_name(nbr->nbr_state), addr);
if (strlen(addr) > 15)
vty_out(vty, "%s%48s", VTY_NEWLINE, " ");
vty_out(vty, " %8s%s", log_time(nbr->uptime), VTY_NEWLINE);
vty_outln (vty, " %8s", log_time(nbr->uptime));
break;
case IMSG_CTL_END:
return (1);
@ -560,45 +557,42 @@ show_nbr_detail_msg(struct vty *vty, struct imsg *imsg,
v4adjs_buffer[0] = '\0';
v6adjs_buffer[0] = '\0';
vty_out(vty, "Peer LDP Identifier: %s:0%s", inet_ntoa(nbr->id),
VTY_NEWLINE);
vty_out(vty, " TCP connection: %s:%u - %s:%u%s",
vty_outln (vty, "Peer LDP Identifier: %s:0",
inet_ntoa(nbr->id));
vty_outln (vty, " TCP connection: %s:%u - %s:%u",
log_addr(nbr->af, &nbr->laddr), ntohs(nbr->lport),
log_addr(nbr->af, &nbr->raddr), ntohs(nbr->rport),
VTY_NEWLINE);
vty_out(vty, " Authentication: %s%s",
(nbr->auth_method == AUTH_MD5SIG) ? "TCP MD5 Signature" :
"none", VTY_NEWLINE);
vty_out(vty, " Session Holdtime: %u secs; "
"KeepAlive interval: %u secs%s", nbr->holdtime,
nbr->holdtime / KEEPALIVE_PER_PERIOD, VTY_NEWLINE);
vty_out(vty, " State: %s; Downstream-Unsolicited%s",
nbr_state_name(nbr->nbr_state), VTY_NEWLINE);
vty_out(vty, " Up time: %s%s", log_time(nbr->uptime),
VTY_NEWLINE);
log_addr(nbr->af, &nbr->raddr),ntohs(nbr->rport));
vty_outln (vty, " Authentication: %s",
(nbr->auth_method == AUTH_MD5SIG) ? "TCP MD5 Signature" : "none");
vty_outln(vty, " Session Holdtime: %u secs; "
"KeepAlive interval: %u secs", nbr->holdtime,
nbr->holdtime / KEEPALIVE_PER_PERIOD);
vty_outln(vty, " State: %s; Downstream-Unsolicited",
nbr_state_name(nbr->nbr_state));
vty_outln (vty, " Up time: %s",log_time(nbr->uptime));
stats = &nbr->stats;
vty_out(vty, " Messages sent/rcvd:%s", VTY_NEWLINE);
vty_out(vty, " - Keepalive Messages: %u/%u%s",
stats->kalive_sent, stats->kalive_rcvd, VTY_NEWLINE);
vty_out(vty, " - Address Messages: %u/%u%s",
stats->addr_sent, stats->addr_rcvd, VTY_NEWLINE);
vty_out(vty, " - Address Withdraw Messages: %u/%u%s",
stats->addrwdraw_sent, stats->addrwdraw_rcvd, VTY_NEWLINE);
vty_out(vty, " - Notification Messages: %u/%u%s",
stats->notif_sent, stats->notif_rcvd, VTY_NEWLINE);
vty_out(vty, " - Capability Messages: %u/%u%s",
stats->capability_sent, stats->capability_rcvd, VTY_NEWLINE);
vty_out(vty, " - Label Mapping Messages: %u/%u%s",
stats->labelmap_sent, stats->labelmap_rcvd, VTY_NEWLINE);
vty_out(vty, " - Label Request Messages: %u/%u%s",
stats->labelreq_sent, stats->labelreq_rcvd, VTY_NEWLINE);
vty_out(vty, " - Label Withdraw Messages: %u/%u%s",
stats->labelwdraw_sent, stats->labelwdraw_rcvd, VTY_NEWLINE);
vty_out(vty, " - Label Release Messages: %u/%u%s",
stats->labelrel_sent, stats->labelrel_rcvd, VTY_NEWLINE);
vty_out(vty, " - Label Abort Request Messages: %u/%u%s",
stats->labelabreq_sent, stats->labelabreq_rcvd, VTY_NEWLINE);
vty_outln (vty, " Messages sent/rcvd:");
vty_outln (vty, " - Keepalive Messages: %u/%u",
stats->kalive_sent, stats->kalive_rcvd);
vty_outln (vty, " - Address Messages: %u/%u",
stats->addr_sent, stats->addr_rcvd);
vty_outln (vty, " - Address Withdraw Messages: %u/%u",
stats->addrwdraw_sent, stats->addrwdraw_rcvd);
vty_outln (vty, " - Notification Messages: %u/%u",
stats->notif_sent, stats->notif_rcvd);
vty_outln (vty, " - Capability Messages: %u/%u",
stats->capability_sent, stats->capability_rcvd);
vty_outln (vty, " - Label Mapping Messages: %u/%u",
stats->labelmap_sent, stats->labelmap_rcvd);
vty_outln (vty, " - Label Request Messages: %u/%u",
stats->labelreq_sent, stats->labelreq_rcvd);
vty_outln (vty, " - Label Withdraw Messages: %u/%u",
stats->labelwdraw_sent, stats->labelwdraw_rcvd);
vty_outln (vty, " - Label Release Messages: %u/%u",
stats->labelrel_sent, stats->labelrel_rcvd);
vty_outln (vty, " - Label Abort Request Messages: %u/%u",
stats->labelabreq_sent, stats->labelabreq_rcvd);
show_nbr_capabilities(vty, nbr);
break;
@ -617,16 +611,16 @@ show_nbr_detail_msg(struct vty *vty, struct imsg *imsg,
}
break;
case IMSG_CTL_SHOW_NBR_END:
vty_out(vty, " LDP Discovery Sources:%s", VTY_NEWLINE);
vty_outln (vty, " LDP Discovery Sources:");
if (v4adjs_buffer[0] != '\0') {
vty_out(vty, " IPv4:%s", VTY_NEWLINE);
vty_outln (vty, " IPv4:");
vty_out(vty, "%s", v4adjs_buffer);
}
if (v6adjs_buffer[0] != '\0') {
vty_out(vty, " IPv6:%s", VTY_NEWLINE);
vty_outln (vty, " IPv6:");
vty_out(vty, "%s", v6adjs_buffer);
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
break;
case IMSG_CTL_END:
return (1);
@ -875,20 +869,18 @@ show_nbr_detail_msg_json(struct imsg *imsg, struct show_params *params,
void
show_nbr_capabilities(struct vty *vty, struct ctl_nbr *nbr)
{
vty_out(vty, " Capabilities Sent:%s"
vty_outln (vty, " Capabilities Sent:%s"
" - Dynamic Announcement (0x0506)%s"
" - Typed Wildcard (0x050B)%s"
" - Unrecognized Notification (0x0603)%s",
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
vty_out(vty, " Capabilities Received:%s", VTY_NEWLINE);
" - Unrecognized Notification (0x0603)",
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, " Capabilities Received:");
if (nbr->flags & F_NBR_CAP_DYNAMIC)
vty_out(vty, " - Dynamic Announcement (0x0506)%s",
VTY_NEWLINE);
vty_outln (vty," - Dynamic Announcement (0x0506)");
if (nbr->flags & F_NBR_CAP_TWCARD)
vty_out(vty, " - Typed Wildcard (0x050B)%s", VTY_NEWLINE);
vty_outln (vty, " - Typed Wildcard (0x050B)");
if (nbr->flags & F_NBR_CAP_UNOTIF)
vty_out(vty, " - Unrecognized Notification (0x0603)%s",
VTY_NEWLINE);
vty_outln (vty," - Unrecognized Notification (0x0603)");
}
static int
@ -903,13 +895,13 @@ show_nbr_capabilities_msg(struct vty *vty, struct imsg *imsg, struct show_params
if (nbr->nbr_state != NBR_STA_OPER)
break;
vty_out(vty, "Peer LDP Identifier: %s:0%s", inet_ntoa(nbr->id),
VTY_NEWLINE);
vty_outln (vty, "Peer LDP Identifier: %s:0",
inet_ntoa(nbr->id));
show_nbr_capabilities(vty, nbr);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -1030,12 +1022,12 @@ show_lib_msg(struct vty *vty, struct imsg *imsg, struct show_params *params)
vty_out(vty, "%-4s %-20s", af_name(rt->af), dstnet);
if (strlen(dstnet) > 20)
vty_out(vty, "%s%25s", VTY_NEWLINE, " ");
vty_out(vty, " %-15s %-11s %-13s %6s%s", inet_ntoa(rt->nexthop),
vty_outln (vty, " %-15s %-11s %-13s %6s", inet_ntoa(rt->nexthop),
log_label(rt->local_label), log_label(rt->remote_label),
rt->in_use ? "yes" : "no", VTY_NEWLINE);
rt->in_use ? "yes" : "no");
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -1077,9 +1069,9 @@ show_lib_detail_msg(struct vty *vty, struct imsg *imsg, struct show_params *para
snprintf(dstnet, sizeof(dstnet), "%s/%d",
log_addr(rt->af, &rt->prefix), rt->prefixlen);
vty_out(vty, "%s%s", dstnet, VTY_NEWLINE);
vty_out(vty, "%-8sLocal binding: label: %s%s", "",
log_label(rt->local_label), VTY_NEWLINE);
vty_outln (vty, "%s", dstnet);
vty_outln (vty, "%-8sLocal binding: label: %s", "",
log_label(rt->local_label));
break;
case IMSG_CTL_SHOW_LIB_SENT:
upstream = 1;
@ -1097,18 +1089,17 @@ show_lib_detail_msg(struct vty *vty, struct imsg *imsg, struct show_params *para
break;
case IMSG_CTL_SHOW_LIB_END:
if (upstream) {
vty_out(vty, "%-8sAdvertised to:%s", "", VTY_NEWLINE);
vty_outln (vty, "%-8sAdvertised to:", "");
vty_out(vty, "%s", sent_buffer);
}
if (downstream) {
vty_out(vty, "%-8sRemote bindings:%s", "", VTY_NEWLINE);
vty_outln (vty, "%-8sRemote bindings:", "");
vty_out(vty, "%s", rcvd_buffer);
} else
vty_out(vty, "%-8sNo remote bindings%s", "",
VTY_NEWLINE);
vty_outln (vty, "%-8sNo remote bindings","");
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -1244,39 +1235,33 @@ show_l2vpn_binding_msg(struct vty *vty, struct imsg *imsg,
case IMSG_CTL_SHOW_L2VPN_BINDING:
pw = imsg->data;
vty_out(vty, " Destination Address: %s, VC ID: %u%s",
inet_ntoa(pw->lsr_id), pw->pwid, VTY_NEWLINE);
vty_outln (vty, " Destination Address: %s, VC ID: %u",
inet_ntoa(pw->lsr_id), pw->pwid);
/* local binding */
if (pw->local_label != NO_LABEL) {
vty_out(vty, " Local Label: %u%s", pw->local_label,
VTY_NEWLINE);
vty_out(vty, "%-8sCbit: %u, VC Type: %s, "
"GroupID: %u%s", "", pw->local_cword,
pw_type_name(pw->type), pw->local_gid,
VTY_NEWLINE);
vty_out(vty, "%-8sMTU: %u%s", "", pw->local_ifmtu,
VTY_NEWLINE);
vty_outln (vty, " Local Label: %u",
pw->local_label);
vty_outln (vty, "%-8sCbit: %u, VC Type: %s, "
"GroupID: %u", "", pw->local_cword,
pw_type_name(pw->type),pw->local_gid);
vty_outln (vty, "%-8sMTU: %u", "",pw->local_ifmtu);
} else
vty_out(vty, " Local Label: unassigned%s",
VTY_NEWLINE);
vty_outln (vty," Local Label: unassigned");
/* remote binding */
if (pw->remote_label != NO_LABEL) {
vty_out(vty, " Remote Label: %u%s",
pw->remote_label, VTY_NEWLINE);
vty_out(vty, "%-8sCbit: %u, VC Type: %s, "
"GroupID: %u%s", "", pw->remote_cword,
pw_type_name(pw->type), pw->remote_gid,
VTY_NEWLINE);
vty_out(vty, "%-8sMTU: %u%s", "", pw->remote_ifmtu,
VTY_NEWLINE);
vty_outln (vty, " Remote Label: %u",
pw->remote_label);
vty_outln (vty, "%-8sCbit: %u, VC Type: %s, "
"GroupID: %u", "", pw->remote_cword,
pw_type_name(pw->type),pw->remote_gid);
vty_outln (vty, "%-8sMTU: %u", "",pw->remote_ifmtu);
} else
vty_out(vty, " Remote Label: unassigned%s",
VTY_NEWLINE);
vty_outln (vty," Remote Label: unassigned");
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -1355,12 +1340,12 @@ show_l2vpn_pw_msg(struct vty *vty, struct imsg *imsg, struct show_params *params
case IMSG_CTL_SHOW_L2VPN_PW:
pw = imsg->data;
vty_out(vty, "%-9s %-15s %-10u %-16s %-10s%s", pw->ifname,
vty_outln (vty, "%-9s %-15s %-10u %-16s %-10s", pw->ifname,
inet_ntoa(pw->lsr_id), pw->pwid, pw->l2vpn_name,
(pw->status ? "UP" : "DOWN"), VTY_NEWLINE);
(pw->status ? "UP" : "DOWN"));
break;
case IMSG_CTL_END:
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return (1);
default:
break;
@ -1555,8 +1540,8 @@ ldp_vty_dispatch(struct vty *vty, struct imsgbuf *ibuf, enum show_command cmd,
done:
close(ibuf->fd);
if (json) {
vty_out(vty, "%s%s", json_object_to_json_string_ext(json,
JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
}
@ -1599,9 +1584,9 @@ ldp_vty_show_binding(struct vty *vty, const char *af_str, int detail, int json)
params.json = json;
if (!params.detail && !params.json)
vty_out(vty, "%-4s %-20s %-15s %-11s %-13s %6s%s", "AF",
vty_outln (vty, "%-4s %-20s %-15s %-11s %-13s %6s", "AF",
"Destination", "Nexthop", "Local Label", "Remote Label",
"In Use", VTY_NEWLINE);
"In Use");
imsg_compose(&ibuf, IMSG_CTL_SHOW_LIB, 0, 0, -1, NULL, 0);
return (ldp_vty_dispatch(vty, &ibuf, SHOW_LIB, &params));
@ -1627,8 +1612,8 @@ ldp_vty_show_discovery(struct vty *vty, const char *af_str, int detail,
params.json = json;
if (!params.detail && !params.json)
vty_out(vty, "%-4s %-15s %-8s %-15s %9s%s",
"AF", "ID", "Type", "Source", "Holdtime", VTY_NEWLINE);
vty_outln (vty, "%-4s %-15s %-8s %-15s %9s",
"AF", "ID", "Type", "Source", "Holdtime");
if (params.detail)
imsg_compose(&ibuf, IMSG_CTL_SHOW_DISCOVERY_DTL, 0, 0, -1,
@ -1658,9 +1643,8 @@ ldp_vty_show_interface(struct vty *vty, const char *af_str, int json)
/* header */
if (!params.json) {
vty_out(vty, "%-4s %-11s %-6s %-8s %-12s %3s%s", "AF",
"Interface", "State", "Uptime", "Hello Timers", "ac",
VTY_NEWLINE);
vty_outln (vty, "%-4s %-11s %-6s %-8s %-12s %3s", "AF",
"Interface", "State", "Uptime", "Hello Timers","ac");
}
imsg_compose(&ibuf, IMSG_CTL_SHOW_INTERFACE, 0, 0, -1, &ifidx,
@ -1704,18 +1688,18 @@ ldp_vty_show_capabilities(struct vty *vty, int json)
"0x0603");
json_object_array_add(json_array, json_cap);
vty_out(vty, "%s%s", json_object_to_json_string_ext(json,
JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
return (0);
}
vty_out(vty,
vty_outln (vty,
"Supported LDP Capabilities%s"
" * Dynamic Announcement (0x0506)%s"
" * Typed Wildcard (0x050B)%s"
" * Unrecognized Notification (0x0603)%s%s", VTY_NEWLINE,
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
" * Unrecognized Notification (0x0603)%s", VTY_NEWLINE,
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
return (0);
}
@ -1738,9 +1722,8 @@ ldp_vty_show_neighbor(struct vty *vty, int capabilities, int detail, int json)
params.detail = 1;
if (!params.detail && !params.json)
vty_out(vty, "%-4s %-15s %-11s %-15s %8s%s",
"AF", "ID", "State", "Remote Address", "Uptime",
VTY_NEWLINE);
vty_outln (vty, "%-4s %-15s %-11s %-15s %8s",
"AF", "ID", "State", "Remote Address","Uptime");
imsg_compose(&ibuf, IMSG_CTL_SHOW_NBR, 0, 0, -1, NULL, 0);
return (ldp_vty_dispatch(vty, &ibuf, SHOW_NBR, &params));
@ -1776,12 +1759,11 @@ ldp_vty_show_atom_vc(struct vty *vty, int json)
if (!params.json) {
/* header */
vty_out(vty, "%-9s %-15s %-10s %-16s %-10s%s",
"Interface", "Peer ID", "VC ID", "Name", "Status",
VTY_NEWLINE);
vty_out(vty, "%-9s %-15s %-10s %-16s %-10s%s",
vty_outln (vty, "%-9s %-15s %-10s %-16s %-10s",
"Interface", "Peer ID", "VC ID", "Name","Status");
vty_outln (vty, "%-9s %-15s %-10s %-16s %-10s",
"---------", "---------------", "----------",
"----------------", "----------", VTY_NEWLINE);
"----------------", "----------");
}
imsg_compose(&ibuf, IMSG_CTL_SHOW_L2VPN_PW, 0, 0, -1, NULL, 0);
@ -1798,7 +1780,7 @@ ldp_vty_clear_nbr(struct vty *vty, const char *addr_str)
if (addr_str &&
(ldp_get_address(addr_str, &nbr.af, &nbr.raddr) == -1 ||
bad_addr(nbr.af, &nbr.raddr))) {
vty_out(vty, "%% Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed address");
return (CMD_WARNING);
}

View File

@ -168,7 +168,7 @@ static int
config_write_agentx (struct vty *vty)
{
if (agentx_enabled)
vty_out (vty, "agentx%s", VTY_NEWLINE);
vty_outln (vty, "agentx");
return 1;
}
@ -186,7 +186,7 @@ DEFUN (agentx_enable,
agentx_enabled = 1;
return CMD_SUCCESS;
}
vty_out (vty, "SNMP AgentX already enabled%s", VTY_NEWLINE);
vty_outln (vty, "SNMP AgentX already enabled");
return CMD_SUCCESS;
}
@ -198,7 +198,7 @@ DEFUN (no_agentx,
"SNMP AgentX settings\n")
{
if (!agentx_enabled) return CMD_SUCCESS;
vty_out (vty, "SNMP AgentX support cannot be disabled once enabled%s", VTY_NEWLINE);
vty_outln (vty, "SNMP AgentX support cannot be disabled once enabled");
return CMD_WARNING;
}

View File

@ -394,11 +394,11 @@ bfd_show_param(struct vty *vty, struct bfd_info *bfd_info, int bfd_tag,
}
else
{
vty_out (vty, " %s%sDetect Mul: %d, Min Rx interval: %d,"
" Min Tx interval: %d%s",
vty_outln (vty, " %s%sDetect Mul: %d, Min Rx interval: %d,"
" Min Tx interval: %d",
(extra_space) ? " ": "", (bfd_tag) ? "BFD: " : " ",
bfd_info->detect_mult, bfd_info->required_min_rx,
bfd_info->desired_min_tx, VTY_NEWLINE);
bfd_info->desired_min_tx);
}
}
@ -423,9 +423,9 @@ bfd_show_status(struct vty *vty, struct bfd_info *bfd_info, int bfd_tag,
}
else
{
vty_out (vty, " %s%sStatus: %s, Last update: %s%s",
vty_outln (vty, " %s%sStatus: %s, Last update: %s",
(extra_space) ? " ": "", (bfd_tag) ? "BFD: " : " ",
bfd_get_status_str(bfd_info->status), time_buf, VTY_NEWLINE);
bfd_get_status_str(bfd_info->status), time_buf);
}
}
@ -451,8 +451,8 @@ bfd_show_info(struct vty *vty, struct bfd_info *bfd_info, int multihop,
}
else
{
vty_out (vty, " %sBFD: Type: %s%s", (extra_space) ? " " : "",
(multihop) ? "multi hop" : "single hop", VTY_NEWLINE);
vty_outln (vty, " %sBFD: Type: %s", (extra_space) ? " " : "",
(multihop) ? "multi hop" : "single hop");
}
bfd_show_param(vty, bfd_info, 0, extra_space, use_json, json_bfd);
@ -461,7 +461,7 @@ bfd_show_info(struct vty *vty, struct bfd_info *bfd_info, int multihop,
if (use_json)
json_object_object_add(json_obj, "peerBfdInfo", json_bfd);
else
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/*

View File

@ -433,29 +433,28 @@ static int
config_write_host (struct vty *vty)
{
if (host.name)
vty_out (vty, "hostname %s%s", host.name, VTY_NEWLINE);
vty_outln (vty, "hostname %s", host.name);
if (host.encrypt)
{
if (host.password_encrypt)
vty_out (vty, "password 8 %s%s", host.password_encrypt, VTY_NEWLINE);
vty_outln (vty, "password 8 %s", host.password_encrypt);
if (host.enable_encrypt)
vty_out (vty, "enable password 8 %s%s", host.enable_encrypt, VTY_NEWLINE);
vty_outln (vty, "enable password 8 %s", host.enable_encrypt);
}
else
{
if (host.password)
vty_out (vty, "password %s%s", host.password, VTY_NEWLINE);
vty_outln (vty, "password %s", host.password);
if (host.enable)
vty_out (vty, "enable password %s%s", host.enable, VTY_NEWLINE);
vty_outln (vty, "enable password %s", host.enable);
}
if (zlog_default->default_lvl != LOG_DEBUG)
{
vty_out (vty, "! N.B. The 'log trap' command is deprecated.%s",
VTY_NEWLINE);
vty_out (vty, "log trap %s%s",
zlog_priority[zlog_default->default_lvl], VTY_NEWLINE);
vty_outln (vty,"! N.B. The 'log trap' command is deprecated.");
vty_outln (vty, "log trap %s",
zlog_priority[zlog_default->default_lvl]);
}
if (host.logfile && (zlog_default->maxlvl[ZLOG_DEST_FILE] != ZLOG_DISABLED))
@ -464,7 +463,7 @@ config_write_host (struct vty *vty)
if (zlog_default->maxlvl[ZLOG_DEST_FILE] != zlog_default->default_lvl)
vty_out (vty, " %s",
zlog_priority[zlog_default->maxlvl[ZLOG_DEST_FILE]]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != ZLOG_DISABLED)
@ -473,14 +472,14 @@ config_write_host (struct vty *vty)
if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != zlog_default->default_lvl)
vty_out (vty, " %s",
zlog_priority[zlog_default->maxlvl[ZLOG_DEST_STDOUT]]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
vty_out(vty,"no log monitor%s",VTY_NEWLINE);
vty_outln (vty,"no log monitor");
else if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] != zlog_default->default_lvl)
vty_out(vty,"log monitor %s%s",
zlog_priority[zlog_default->maxlvl[ZLOG_DEST_MONITOR]],VTY_NEWLINE);
vty_outln (vty,"log monitor %s",
zlog_priority[zlog_default->maxlvl[ZLOG_DEST_MONITOR]]);
if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != ZLOG_DISABLED)
{
@ -488,34 +487,33 @@ config_write_host (struct vty *vty)
if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != zlog_default->default_lvl)
vty_out (vty, " %s",
zlog_priority[zlog_default->maxlvl[ZLOG_DEST_SYSLOG]]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (zlog_default->facility != LOG_DAEMON)
vty_out (vty, "log facility %s%s",
facility_name(zlog_default->facility), VTY_NEWLINE);
vty_outln (vty, "log facility %s",
facility_name(zlog_default->facility));
if (zlog_default->record_priority == 1)
vty_out (vty, "log record-priority%s", VTY_NEWLINE);
vty_outln (vty, "log record-priority");
if (zlog_default->timestamp_precision > 0)
vty_out (vty, "log timestamp precision %d%s",
zlog_default->timestamp_precision, VTY_NEWLINE);
vty_outln (vty, "log timestamp precision %d",
zlog_default->timestamp_precision);
if (host.advanced)
vty_out (vty, "service advanced-vty%s", VTY_NEWLINE);
vty_outln (vty, "service advanced-vty");
if (host.encrypt)
vty_out (vty, "service password-encryption%s", VTY_NEWLINE);
vty_outln (vty, "service password-encryption");
if (host.lines >= 0)
vty_out (vty, "service terminal-length %d%s", host.lines,
VTY_NEWLINE);
vty_outln (vty, "service terminal-length %d",host.lines);
if (host.motdfile)
vty_out (vty, "banner motd file %s%s", host.motdfile, VTY_NEWLINE);
vty_outln (vty, "banner motd file %s", host.motdfile);
else if (! host.motd)
vty_out (vty, "no banner motd%s", VTY_NEWLINE);
vty_outln (vty, "no banner motd");
return 1;
}
@ -1151,7 +1149,7 @@ DEFUN (config_terminal,
vty->node = CONFIG_NODE;
else
{
vty_out (vty, "VTY configuration is locked by other VTY%s", VTY_NEWLINE);
vty_outln (vty, "VTY configuration is locked by other VTY");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -1348,12 +1346,11 @@ DEFUN (show_version,
SHOW_STR
"Displays zebra version\n")
{
vty_out (vty, "%s %s (%s).%s", FRR_FULL_NAME, FRR_VERSION,
host.name ? host.name : "",
VTY_NEWLINE);
vty_out (vty, "%s%s%s", FRR_COPYRIGHT, GIT_INFO, VTY_NEWLINE);
vty_out (vty, "configured with:%s %s%s", VTY_NEWLINE,
FRR_CONFIG_ARGS, VTY_NEWLINE);
vty_outln (vty, "%s %s (%s).", FRR_FULL_NAME, FRR_VERSION,
host.name ? host.name : "");
vty_outln (vty, "%s%s", FRR_COPYRIGHT, GIT_INFO);
vty_outln (vty, "configured with:%s %s", VTY_NEWLINE,
FRR_CONFIG_ARGS);
return CMD_SUCCESS;
}
@ -1376,7 +1373,7 @@ DEFUN (config_help,
"help",
"Description of the interactive help system\n")
{
vty_out (vty,
vty_outln (vty,
"Quagga VTY provides advanced help feature. When you need help,%s\
anytime at the command line please press '?'.%s\
%s\
@ -1388,9 +1385,9 @@ command argument (e.g. 'show ?') and describes each possible%s\
argument.%s\
2. Partial help is provided when an abbreviated argument is entered%s\
and you want to know what arguments match the input%s\
(e.g. 'show me?'.)%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
(e.g. 'show me?'.)%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
return CMD_SUCCESS;
}
@ -1424,7 +1421,7 @@ permute (struct graph_node *start, struct vty *vty)
}
if (gn == start)
vty_out (vty, "...");
vty_out (vty, VTY_NEWLINE);
vty_outln (vty, "");
}
else
{
@ -1458,7 +1455,7 @@ cmd_list_cmds (struct vty *vty, int do_permute)
if ((element = vector_slot (node->cmd_vector, i)) &&
element->attr != CMD_ATTR_DEPRECATED &&
element->attr != CMD_ATTR_HIDDEN)
vty_out (vty, " %s%s", element->string, VTY_NEWLINE);
vty_outln (vty, " %s", element->string);
}
return CMD_SUCCESS;
}
@ -1491,26 +1488,25 @@ vty_write_config (struct vty *vty)
if (vty->type == VTY_TERM)
{
vty_out (vty, "%sCurrent configuration:%s", VTY_NEWLINE,
VTY_NEWLINE);
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "%sCurrent configuration:",VTY_NEWLINE);
vty_outln (vty, "!");
}
vty_out (vty, "frr version %s%s", FRR_VER_SHORT, VTY_NEWLINE);
vty_out (vty, "frr defaults %s%s", DFLT_NAME, VTY_NEWLINE);
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "frr version %s", FRR_VER_SHORT);
vty_outln (vty, "frr defaults %s", DFLT_NAME);
vty_outln (vty, "!");
for (i = 0; i < vector_active (cmdvec); i++)
if ((node = vector_slot (cmdvec, i)) && node->func
&& (node->vtysh || vty->type != VTY_SHELL))
{
if ((*node->func) (vty))
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
if (vty->type == VTY_TERM)
{
vty_out (vty, "end%s",VTY_NEWLINE);
vty_outln (vty, "end");
}
}
@ -1547,8 +1543,7 @@ DEFUN (config_write,
/* Check and see if we are operating under vtysh configuration */
if (host.config == NULL)
{
vty_out (vty, "Can't save to configuration file, using vtysh.%s",
VTY_NEWLINE);
vty_outln (vty,"Can't save to configuration file, using vtysh.");
return CMD_WARNING;
}
@ -1583,14 +1578,13 @@ DEFUN (config_write,
fd = mkstemp (config_file_tmp);
if (fd < 0)
{
vty_out (vty, "Can't open configuration file %s.%s", config_file_tmp,
VTY_NEWLINE);
vty_outln (vty, "Can't open configuration file %s.",config_file_tmp);
goto finished;
}
if (fchmod (fd, CONFIGFILE_MASK) != 0)
{
vty_out (vty, "Can't chmod configuration file %s: %s (%d).%s",
config_file_tmp, safe_strerror(errno), errno, VTY_NEWLINE);
vty_outln (vty, "Can't chmod configuration file %s: %s (%d).",
config_file_tmp, safe_strerror(errno), errno);
goto finished;
}
@ -1611,14 +1605,14 @@ DEFUN (config_write,
if (unlink (config_file_sav) != 0)
if (errno != ENOENT)
{
vty_out (vty, "Can't unlink backup configuration file %s.%s", config_file_sav,
VTY_NEWLINE);
vty_outln (vty, "Can't unlink backup configuration file %s.",
config_file_sav);
goto finished;
}
if (link (config_file, config_file_sav) != 0)
{
vty_out (vty, "Can't backup old configuration file %s.%s", config_file_sav,
VTY_NEWLINE);
vty_outln (vty, "Can't backup old configuration file %s.",
config_file_sav);
goto finished;
}
if (dirfd >= 0)
@ -1626,15 +1620,13 @@ DEFUN (config_write,
}
if (rename (config_file_tmp, config_file) != 0)
{
vty_out (vty, "Can't save configuration file %s.%s", config_file,
VTY_NEWLINE);
vty_outln (vty, "Can't save configuration file %s.",config_file);
goto finished;
}
if (dirfd >= 0)
fsync (dirfd);
vty_out (vty, "Configuration saved to %s%s", config_file,
VTY_NEWLINE);
vty_outln (vty, "Configuration saved to %s",config_file);
ret = CMD_SUCCESS;
finished:
@ -1689,8 +1681,8 @@ DEFUN (show_startup_config,
confp = fopen (host.config, "r");
if (confp == NULL)
{
vty_out (vty, "Can't open configuration file [%s] due to '%s'%s",
host.config, safe_strerror(errno), VTY_NEWLINE);
vty_outln (vty, "Can't open configuration file [%s] due to '%s'",
host.config, safe_strerror(errno));
return CMD_WARNING;
}
@ -1702,7 +1694,7 @@ DEFUN (show_startup_config,
cp++;
*cp = '\0';
vty_out (vty, "%s%s", buf, VTY_NEWLINE);
vty_outln (vty, "%s", buf);
}
fclose (confp);
@ -1729,7 +1721,7 @@ DEFUN (config_hostname,
if (!isalpha((int) word->arg[0]))
{
vty_out (vty, "Please specify string starting with alphabet%s", VTY_NEWLINE);
vty_outln (vty, "Please specify string starting with alphabet");
return CMD_WARNING;
}
@ -1769,8 +1761,8 @@ DEFUN (config_password,
if (!isalnum (argv[idx_8]->arg[0]))
{
vty_out (vty,
"Please specify string starting with alphanumeric%s", VTY_NEWLINE);
vty_outln (vty,
"Please specify string starting with alphanumeric");
return CMD_WARNING;
}
@ -1819,15 +1811,15 @@ DEFUN (config_enable_password,
}
else
{
vty_out (vty, "Unknown encryption type.%s", VTY_NEWLINE);
vty_outln (vty, "Unknown encryption type.");
return CMD_WARNING;
}
}
if (!isalnum (argv[idx_8]->arg[0]))
{
vty_out (vty,
"Please specify string starting with alphanumeric%s", VTY_NEWLINE);
vty_outln (vty,
"Please specify string starting with alphanumeric");
return CMD_WARNING;
}
@ -1976,8 +1968,8 @@ DEFUN_HIDDEN (do_echo,
{
char *message;
vty_out (vty, "%s%s", ((message = argv_concat (argv, argc, 1)) ? message : ""),
VTY_NEWLINE);
vty_outln (vty, "%s",
((message = argv_concat(argv, argc, 1)) ? message : ""));
if (message)
XFREE(MTYPE_TMP, message);
return CMD_SUCCESS;
@ -2020,7 +2012,7 @@ DEFUN (show_logging,
vty_out (vty, "level %s, facility %s, ident %s",
zlog_priority[zl->maxlvl[ZLOG_DEST_SYSLOG]],
facility_name(zl->facility), zl->ident);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "Stdout logging: ");
if (zl->maxlvl[ZLOG_DEST_STDOUT] == ZLOG_DISABLED)
@ -2028,7 +2020,7 @@ DEFUN (show_logging,
else
vty_out (vty, "level %s",
zlog_priority[zl->maxlvl[ZLOG_DEST_STDOUT]]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "Monitor logging: ");
if (zl->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
@ -2036,7 +2028,7 @@ DEFUN (show_logging,
else
vty_out (vty, "level %s",
zlog_priority[zl->maxlvl[ZLOG_DEST_MONITOR]]);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "File logging: ");
if ((zl->maxlvl[ZLOG_DEST_FILE] == ZLOG_DISABLED) ||
@ -2046,14 +2038,14 @@ DEFUN (show_logging,
vty_out (vty, "level %s, filename %s",
zlog_priority[zl->maxlvl[ZLOG_DEST_FILE]],
zl->filename);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "Protocol name: %s%s",
zl->protoname, VTY_NEWLINE);
vty_out (vty, "Record priority: %s%s",
(zl->record_priority ? "enabled" : "disabled"), VTY_NEWLINE);
vty_out (vty, "Timestamp precision: %d%s",
zl->timestamp_precision, VTY_NEWLINE);
vty_outln (vty, "Protocol name: %s",
zl->protoname);
vty_outln (vty, "Record priority: %s",
(zl->record_priority ? "enabled" : "disabled"));
vty_outln (vty, "Timestamp precision: %d",
zl->timestamp_precision);
return CMD_SUCCESS;
}

View File

@ -349,7 +349,7 @@ DEFUN (no_distribute_list,
if (! ret)
{
vty_out (vty, "distribute list doesn't exist%s", VTY_NEWLINE);
vty_outln (vty, "distribute list doesn't exist");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -393,9 +393,9 @@ config_show_distribute (struct vty *vty)
DISTRIBUTE_V6_OUT, has_print);
}
if (has_print)
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
else
vty_out (vty, " not set%s", VTY_NEWLINE);
vty_outln (vty, " not set");
for (i = 0; i < disthash->size; i++)
for (mp = disthash->index[i]; mp; mp = mp->next)
@ -414,9 +414,9 @@ config_show_distribute (struct vty *vty)
has_print = distribute_print(vty, dist->prefix, 1,
DISTRIBUTE_V6_OUT, has_print);
if (has_print)
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
else
vty_out(vty, " nothing%s", VTY_NEWLINE);
vty_outln (vty, " nothing");
}
}
@ -437,9 +437,9 @@ config_show_distribute (struct vty *vty)
DISTRIBUTE_V6_IN, has_print);
}
if (has_print)
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
else
vty_out (vty, " not set%s", VTY_NEWLINE);
vty_outln (vty, " not set");
for (i = 0; i < disthash->size; i++)
for (mp = disthash->index[i]; mp; mp = mp->next)
@ -458,9 +458,9 @@ config_show_distribute (struct vty *vty)
has_print = distribute_print(vty, dist->prefix, 1,
DISTRIBUTE_V6_IN, has_print);
if (has_print)
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
else
vty_out(vty, " nothing%s", VTY_NEWLINE);
vty_outln (vty, " nothing");
}
}
return 0;
@ -487,12 +487,11 @@ config_write_distribute (struct vty *vty)
if (dist->list[j]) {
output = j == DISTRIBUTE_V4_OUT || j == DISTRIBUTE_V6_OUT;
v6 = j == DISTRIBUTE_V6_IN || j == DISTRIBUTE_V6_OUT;
vty_out (vty, " %sdistribute-list %s %s %s%s",
vty_outln (vty, " %sdistribute-list %s %s %s",
v6 ? "ipv6 " : "",
dist->list[j],
output ? "out" : "in",
dist->ifname ? dist->ifname : "",
VTY_NEWLINE);
dist->ifname ? dist->ifname : "");
write++;
}
@ -500,12 +499,11 @@ config_write_distribute (struct vty *vty)
if (dist->prefix[j]) {
output = j == DISTRIBUTE_V4_OUT || j == DISTRIBUTE_V6_OUT;
v6 = j == DISTRIBUTE_V6_IN || j == DISTRIBUTE_V6_OUT;
vty_out (vty, " %sdistribute-list prefix %s %s %s%s",
vty_outln (vty, " %sdistribute-list prefix %s %s %s",
v6 ? "ipv6 " : "",
dist->prefix[j],
output ? "out" : "in",
dist->ifname ? dist->ifname : "",
VTY_NEWLINE);
dist->ifname ? dist->ifname : "");
write++;
}
}

View File

@ -576,8 +576,7 @@ vty_access_list_remark_unset (struct vty *vty, afi_t afi, const char *name)
access = access_list_lookup (afi, name);
if (! access)
{
vty_out (vty, "%% access-list %s doesn't exist%s", name,
VTY_NEWLINE);
vty_outln (vty, "%% access-list %s doesn't exist",name);
return CMD_WARNING;
}
@ -616,23 +615,21 @@ filter_set_cisco (struct vty *vty, const char *name_str, const char *type_str,
type = FILTER_DENY;
else
{
vty_out (vty, "%% filter type must be permit or deny%s", VTY_NEWLINE);
vty_outln (vty, "%% filter type must be permit or deny");
return CMD_WARNING;
}
ret = inet_aton (addr_str, &addr);
if (ret <= 0)
{
vty_out (vty, "%%Inconsistent address and mask%s",
VTY_NEWLINE);
vty_outln (vty,"%%Inconsistent address and mask");
return CMD_WARNING;
}
ret = inet_aton (addr_mask_str, &addr_mask);
if (ret <= 0)
{
vty_out (vty, "%%Inconsistent address and mask%s",
VTY_NEWLINE);
vty_outln (vty,"%%Inconsistent address and mask");
return CMD_WARNING;
}
@ -641,16 +638,14 @@ filter_set_cisco (struct vty *vty, const char *name_str, const char *type_str,
ret = inet_aton (mask_str, &mask);
if (ret <= 0)
{
vty_out (vty, "%%Inconsistent address and mask%s",
VTY_NEWLINE);
vty_outln (vty,"%%Inconsistent address and mask");
return CMD_WARNING;
}
ret = inet_aton (mask_mask_str, &mask_mask);
if (ret <= 0)
{
vty_out (vty, "%%Inconsistent address and mask%s",
VTY_NEWLINE);
vty_outln (vty,"%%Inconsistent address and mask");
return CMD_WARNING;
}
}
@ -1261,9 +1256,9 @@ filter_set_zebra (struct vty *vty, const char *name_str, const char *type_str,
if (strlen(name_str) > ACL_NAMSIZ)
{
vty_out (vty, "%% ACL name %s is invalid: length exceeds "
"%d characters%s",
name_str, ACL_NAMSIZ, VTY_NEWLINE);
vty_outln (vty, "%% ACL name %s is invalid: length exceeds "
"%d characters",
name_str, ACL_NAMSIZ);
return CMD_WARNING;
}
@ -1274,7 +1269,7 @@ filter_set_zebra (struct vty *vty, const char *name_str, const char *type_str,
type = FILTER_DENY;
else
{
vty_out (vty, "filter type must be [permit|deny]%s", VTY_NEWLINE);
vty_outln (vty, "filter type must be [permit|deny]");
return CMD_WARNING;
}
@ -1284,8 +1279,7 @@ filter_set_zebra (struct vty *vty, const char *name_str, const char *type_str,
ret = str2prefix_ipv4 (prefix_str, (struct prefix_ipv4 *)&p);
if (ret <= 0)
{
vty_out (vty, "IP address prefix/prefixlen is malformed%s",
VTY_NEWLINE);
vty_outln (vty,"IP address prefix/prefixlen is malformed");
return CMD_WARNING;
}
}
@ -1294,8 +1288,7 @@ filter_set_zebra (struct vty *vty, const char *name_str, const char *type_str,
ret = str2prefix_ipv6 (prefix_str, (struct prefix_ipv6 *) &p);
if (ret <= 0)
{
vty_out (vty, "IPv6 address prefix/prefixlen is malformed%s",
VTY_NEWLINE);
vty_outln (vty,"IPv6 address prefix/prefixlen is malformed");
return CMD_WARNING;
}
}
@ -1431,8 +1424,7 @@ DEFUN (no_access_list_all,
access = access_list_lookup (AFI_IP, argv[idx_acl]->arg);
if (access == NULL)
{
vty_out (vty, "%% access-list %s doesn't exist%s", argv[idx_acl]->arg,
VTY_NEWLINE);
vty_outln (vty, "%% access-list %s doesn't exist",argv[idx_acl]->arg);
return CMD_WARNING;
}
@ -1609,8 +1601,7 @@ DEFUN (no_ipv6_access_list_all,
access = access_list_lookup (AFI_IP6, argv[idx_word]->arg);
if (access == NULL)
{
vty_out (vty, "%% access-list %s doesn't exist%s", argv[idx_word]->arg,
VTY_NEWLINE);
vty_outln (vty, "%% access-list %s doesn't exist",argv[idx_word]->arg);
return CMD_WARNING;
}
@ -1697,7 +1688,7 @@ filter_show (struct vty *vty, const char *name, afi_t afi)
return 0;
/* Print the name of the protocol */
vty_out(vty, "%s:%s", frr_protoname, VTY_NEWLINE);
vty_outln (vty, "%s:", frr_protoname);
for (access = master->num.head; access; access = access->next)
{
@ -1712,11 +1703,11 @@ filter_show (struct vty *vty, const char *name, afi_t afi)
if (write)
{
vty_out (vty, "%s IP%s access list %s%s",
vty_outln (vty, "%s IP%s access list %s",
mfilter->cisco ?
(filter->extended ? "Extended" : "Standard") : "Zebra",
afi == AFI_IP6 ? "v6" : "",
access->name, VTY_NEWLINE);
access->name);
write = 0;
}
@ -1730,13 +1721,13 @@ filter_show (struct vty *vty, const char *name, afi_t afi)
else
{
if (filter->addr_mask.s_addr == 0xffffffff)
vty_out (vty, " any%s", VTY_NEWLINE);
vty_outln (vty, " any");
else
{
vty_out (vty, " %s", inet_ntoa (filter->addr));
if (filter->addr_mask.s_addr != 0)
vty_out (vty, ", wildcard bits %s", inet_ntoa (filter->addr_mask));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
}
@ -1755,11 +1746,11 @@ filter_show (struct vty *vty, const char *name, afi_t afi)
if (write)
{
vty_out (vty, "%s IP%s access list %s%s",
vty_outln (vty, "%s IP%s access list %s",
mfilter->cisco ?
(filter->extended ? "Extended" : "Standard") : "Zebra",
afi == AFI_IP6 ? "v6" : "",
access->name, VTY_NEWLINE);
access->name);
write = 0;
}
@ -1773,13 +1764,13 @@ filter_show (struct vty *vty, const char *name, afi_t afi)
else
{
if (filter->addr_mask.s_addr == 0xffffffff)
vty_out (vty, " any%s", VTY_NEWLINE);
vty_outln (vty, " any");
else
{
vty_out (vty, " %s", inet_ntoa (filter->addr));
if (filter->addr_mask.s_addr != 0)
vty_out (vty, ", wildcard bits %s", inet_ntoa (filter->addr_mask));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
}
@ -1864,18 +1855,18 @@ config_write_access_cisco (struct vty *vty, struct filter *mfilter)
vty_out (vty, " %s", inet_ntoa (filter->mask));
vty_out (vty, " %s", inet_ntoa (filter->mask_mask));
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
else
{
if (filter->addr_mask.s_addr == 0xffffffff)
vty_out (vty, " any%s", VTY_NEWLINE);
vty_outln (vty, " any");
else
{
vty_out (vty, " %s", inet_ntoa (filter->addr));
if (filter->addr_mask.s_addr != 0)
vty_out (vty, " %s", inet_ntoa (filter->addr_mask));
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
}
@ -1898,7 +1889,7 @@ config_write_access_zebra (struct vty *vty, struct filter *mfilter)
p->prefixlen,
filter->exact ? " exact-match" : "");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
static int
@ -1917,10 +1908,9 @@ config_write_access (struct vty *vty, afi_t afi)
{
if (access->remark)
{
vty_out (vty, "%saccess-list %s remark %s%s",
vty_outln (vty, "%saccess-list %s remark %s",
afi == AFI_IP ? "" : "ipv6 ",
access->name, access->remark,
VTY_NEWLINE);
access->name,access->remark);
write++;
}
@ -1944,10 +1934,9 @@ config_write_access (struct vty *vty, afi_t afi)
{
if (access->remark)
{
vty_out (vty, "%saccess-list %s remark %s%s",
vty_outln (vty, "%saccess-list %s remark %s",
afi == AFI_IP ? "" : "ipv6 ",
access->name, access->remark,
VTY_NEWLINE);
access->name,access->remark);
write++;
}

View File

@ -118,7 +118,7 @@ DEFUN (grammar_test_complete,
// print completions
for (i = 0; i < vector_active (comps); i++) {
tkn = vector_slot (comps, i);
vty_out (vty, " %-*s %s%s", width, tkn->text, tkn->desc, VTY_NEWLINE);
vty_outln (vty, " %-*s %s", width, tkn->text, tkn->desc);
}
for (i = 0; i < vector_active (comps); i++)
@ -126,7 +126,7 @@ DEFUN (grammar_test_complete,
vector_free (comps);
}
else
vty_out (vty, "%% No match%s", VTY_NEWLINE);
vty_outln (vty, "%% No match");
// free resources
list_delete (completions);
@ -164,13 +164,13 @@ DEFUN (grammar_test_match,
// print completions or relevant error message
if (element)
{
vty_out (vty, "Matched: %s%s", element->string, VTY_NEWLINE);
vty_outln (vty, "Matched: %s", element->string);
struct listnode *ln;
struct cmd_token *token;
for (ALL_LIST_ELEMENTS_RO(argvv,ln,token))
vty_out (vty, "%s -- %s%s", token->text, token->arg, VTY_NEWLINE);
vty_outln (vty, "%s -- %s", token->text, token->arg);
vty_out (vty, "func: %p%s", element->func, VTY_NEWLINE);
vty_outln (vty, "func: %p", element->func);
list_delete (argvv);
}
@ -178,16 +178,16 @@ DEFUN (grammar_test_match,
assert(MATCHER_ERROR(result));
switch (result) {
case MATCHER_NO_MATCH:
vty_out (vty, "%% Unknown command%s", VTY_NEWLINE);
vty_outln (vty, "%% Unknown command");
break;
case MATCHER_INCOMPLETE:
vty_out (vty, "%% Incomplete command%s", VTY_NEWLINE);
vty_outln (vty, "%% Incomplete command");
break;
case MATCHER_AMBIGUOUS:
vty_out (vty, "%% Ambiguous command%s", VTY_NEWLINE);
vty_outln (vty, "%% Ambiguous command");
break;
default:
vty_out (vty, "%% Unknown error%s", VTY_NEWLINE);
vty_outln (vty, "%% Unknown error");
break;
}
}
@ -401,7 +401,7 @@ DEFUN (grammar_findambig,
nodegraph = cnode->cmdgraph;
if (!nodegraph)
continue;
vty_out (vty, "scanning node %d%s", scannode - 1, VTY_NEWLINE);
vty_outln (vty, "scanning node %d", scannode - 1);
}
commands = cmd_graph_permutations (nodegraph);
@ -410,23 +410,25 @@ DEFUN (grammar_findambig,
{
int same = prev && !strcmp (prev->cmd, cur->cmd);
if (printall && !same)
vty_out (vty, "'%s' [%x]%s", cur->cmd, cur->el->daemon, VTY_NEWLINE);
vty_outln (vty, "'%s' [%x]", cur->cmd, cur->el->daemon);
if (same)
{
vty_out (vty, "'%s' AMBIGUOUS:%s", cur->cmd, VTY_NEWLINE);
vty_out (vty, " %s%s '%s'%s", prev->el->name, VTY_NEWLINE, prev->el->string, VTY_NEWLINE);
vty_out (vty, " %s%s '%s'%s", cur->el->name, VTY_NEWLINE, cur->el->string, VTY_NEWLINE);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "'%s' AMBIGUOUS:", cur->cmd);
vty_outln (vty, " %s%s '%s'", prev->el->name, VTY_NEWLINE,
prev->el->string);
vty_outln (vty, " %s%s '%s'", cur->el->name, VTY_NEWLINE,
cur->el->string);
vty_outln (vty, "");
ambig++;
}
prev = cur;
}
list_delete (commands);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
} while (scan && scannode < LINK_PARAMS_NODE);
vty_out (vty, "%d ambiguous commands found.%s", ambig, VTY_NEWLINE);
vty_outln (vty, "%d ambiguous commands found.", ambig);
if (scan)
nodegraph = NULL;
@ -463,11 +465,11 @@ DEFUN (grammar_access,
cnode = vector_slot (cmdvec, atoi (argv[2]->arg));
if (!cnode)
{
vty_out (vty, "%% no such node%s", VTY_NEWLINE);
vty_outln (vty, "%% no such node");
return CMD_WARNING;
}
vty_out (vty, "node %d%s", (int)cnode->node, VTY_NEWLINE);
vty_outln (vty, "node %d", (int)cnode->node);
nodegraph = cnode->cmdgraph;
return CMD_SUCCESS;
}
@ -532,7 +534,7 @@ pretty_print_graph (struct vty *vty, struct graph_node *start, int level,
if (stackpos == MAXDEPTH)
{
vty_out(vty, " -aborting! (depth limit)%s", VTY_NEWLINE);
vty_outln (vty, " -aborting! (depth limit)");
return;
}
stack[stackpos++] = start;
@ -541,7 +543,7 @@ pretty_print_graph (struct vty *vty, struct graph_node *start, int level,
if (numto)
{
if (numto > 1)
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
for (unsigned int i = 0; i < vector_active (start->to); i++)
{
struct graph_node *adj = vector_slot (start->to, i);
@ -553,12 +555,12 @@ pretty_print_graph (struct vty *vty, struct graph_node *start, int level,
if (adj == start)
vty_out(vty, "*");
else if (((struct cmd_token *)adj->data)->type == END_TKN)
vty_out(vty, "--END%s", VTY_NEWLINE);
vty_outln (vty, "--END");
else {
size_t k;
for (k = 0; k < stackpos; k++)
if (stack[k] == adj) {
vty_out(vty, "<<loop@%zu %s", k, VTY_NEWLINE);
vty_outln (vty, "<<loop@%zu ", k);
break;
}
if (k == stackpos)
@ -567,7 +569,7 @@ pretty_print_graph (struct vty *vty, struct graph_node *start, int level,
}
}
else
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
static void
@ -650,5 +652,5 @@ init_cmdgraph (struct vty *vty, struct graph **graph)
struct cmd_token *token = cmd_token_new (START_TKN, 0, NULL, NULL);
graph_new_node (*graph, token, (void (*)(void *)) &cmd_token_del);
if (vty)
vty_out (vty, "initialized graph%s", VTY_NEWLINE);
vty_outln (vty, "initialized graph");
}

View File

@ -694,9 +694,9 @@ DEFUN (interface,
if ((sl = strlen(ifname)) > INTERFACE_NAMSIZ)
{
vty_out (vty, "%% Interface name %s is invalid: length exceeds "
"%d characters%s",
ifname, INTERFACE_NAMSIZ, VTY_NEWLINE);
vty_outln (vty, "%% Interface name %s is invalid: length exceeds "
"%d characters",
ifname, INTERFACE_NAMSIZ);
return CMD_WARNING;
}
@ -713,7 +713,7 @@ DEFUN (interface,
if (!ifp)
{
vty_out (vty, "%% interface %s not in %s%s", ifname, vrfname, VTY_NEWLINE);
vty_outln (vty, "%% interface %s not in %s", ifname, vrfname);
return CMD_WARNING;
}
VTY_PUSH_CONTEXT (INTERFACE_NODE, ifp);

View File

@ -228,7 +228,7 @@ DEFUN (if_rmap,
type = IF_RMAP_OUT;
else
{
vty_out (vty, "route-map direction must be [in|out]%s", VTY_NEWLINE);
vty_outln (vty, "route-map direction must be [in|out]");
return CMD_WARNING;
}
@ -259,14 +259,14 @@ DEFUN (no_if_rmap,
type = IF_RMAP_OUT;
else
{
vty_out (vty, "route-map direction must be [in|out]%s", VTY_NEWLINE);
vty_outln (vty, "route-map direction must be [in|out]");
return CMD_WARNING;
}
ret = if_rmap_unset (argv[idx_ifname]->arg, type, argv[idx_routemap_name]->arg);
if (! ret)
{
vty_out (vty, "route-map doesn't exist%s", VTY_NEWLINE);
vty_outln (vty, "route-map doesn't exist");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -290,19 +290,17 @@ config_write_if_rmap (struct vty *vty)
if (if_rmap->routemap[IF_RMAP_IN])
{
vty_out (vty, " route-map %s in %s%s",
vty_outln (vty, " route-map %s in %s",
if_rmap->routemap[IF_RMAP_IN],
if_rmap->ifname,
VTY_NEWLINE);
if_rmap->ifname);
write++;
}
if (if_rmap->routemap[IF_RMAP_OUT])
{
vty_out (vty, " route-map %s out %s%s",
vty_outln (vty, " route-map %s out %s",
if_rmap->routemap[IF_RMAP_OUT],
if_rmap->ifname,
VTY_NEWLINE);
if_rmap->ifname);
write++;
}
}

View File

@ -271,7 +271,7 @@ DEFUN (no_key_chain,
if (! keychain)
{
vty_out (vty, "Can't find keychain %s%s", argv[idx_word]->arg, VTY_NEWLINE);
vty_outln (vty, "Can't find keychain %s", argv[idx_word]->arg);
return CMD_WARNING;
}
@ -314,7 +314,7 @@ DEFUN (no_key,
key = key_lookup (keychain, index);
if (! key)
{
vty_out (vty, "Can't find key %d%s", index, VTY_NEWLINE);
vty_outln (vty, "Can't find key %d", index);
return CMD_WARNING;
}
@ -477,20 +477,20 @@ key_lifetime_set (struct vty *vty, struct key_range *krange,
time_start = key_str2time (stime_str, sday_str, smonth_str, syear_str);
if (time_start < 0)
{
vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
vty_outln (vty, "Malformed time value");
return CMD_WARNING;
}
time_end = key_str2time (etime_str, eday_str, emonth_str, eyear_str);
if (time_end < 0)
{
vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
vty_outln (vty, "Malformed time value");
return CMD_WARNING;
}
if (time_end <= time_start)
{
vty_out (vty, "Expire time is not later than start time%s", VTY_NEWLINE);
vty_outln (vty, "Expire time is not later than start time");
return CMD_WARNING;
}
@ -512,7 +512,7 @@ key_lifetime_duration_set (struct vty *vty, struct key_range *krange,
time_start = key_str2time (stime_str, sday_str, smonth_str, syear_str);
if (time_start < 0)
{
vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
vty_outln (vty, "Malformed time value");
return CMD_WARNING;
}
krange->start = time_start;
@ -534,7 +534,7 @@ key_lifetime_infinite_set (struct vty *vty, struct key_range *krange,
time_start = key_str2time (stime_str, sday_str, smonth_str, syear_str);
if (time_start < 0)
{
vty_out (vty, "Malformed time value%s", VTY_NEWLINE);
vty_outln (vty, "Malformed time value");
return CMD_WARNING;
}
krange->start = time_start;
@ -966,14 +966,14 @@ keychain_config_write (struct vty *vty)
for (ALL_LIST_ELEMENTS_RO (keychain_list, node, keychain))
{
vty_out (vty, "key chain %s%s", keychain->name, VTY_NEWLINE);
vty_outln (vty, "key chain %s", keychain->name);
for (ALL_LIST_ELEMENTS_RO (keychain->key, knode, key))
{
vty_out (vty, " key %d%s", key->index, VTY_NEWLINE);
vty_outln (vty, " key %d", key->index);
if (key->string)
vty_out (vty, " key-string %s%s", key->string, VTY_NEWLINE);
vty_outln (vty, " key-string %s", key->string);
if (key->accept.start)
{
@ -990,7 +990,7 @@ keychain_config_write (struct vty *vty)
keychain_strftime (buf, BUFSIZ, &key->accept.end);
vty_out (vty, " %s", buf);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (key->send.start)
@ -1007,10 +1007,10 @@ keychain_config_write (struct vty *vty)
keychain_strftime (buf, BUFSIZ, &key->send.end);
vty_out (vty, " %s", buf);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return 0;

View File

@ -44,36 +44,26 @@ show_memory_mallinfo (struct vty *vty)
struct mallinfo minfo = mallinfo();
char buf[MTYPE_MEMSTR_LEN];
vty_out (vty, "System allocator statistics:%s", VTY_NEWLINE);
vty_out (vty, " Total heap allocated: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.arena),
VTY_NEWLINE);
vty_out (vty, " Holding block headers: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.hblkhd),
VTY_NEWLINE);
vty_out (vty, " Used small blocks: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.usmblks),
VTY_NEWLINE);
vty_out (vty, " Used ordinary blocks: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.uordblks),
VTY_NEWLINE);
vty_out (vty, " Free small blocks: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.fsmblks),
VTY_NEWLINE);
vty_out (vty, " Free ordinary blocks: %s%s",
mtype_memstr (buf, MTYPE_MEMSTR_LEN, minfo.fordblks),
VTY_NEWLINE);
vty_out (vty, " Ordinary blocks: %ld%s",
(unsigned long)minfo.ordblks,
VTY_NEWLINE);
vty_out (vty, " Small blocks: %ld%s",
(unsigned long)minfo.smblks,
VTY_NEWLINE);
vty_out (vty, " Holding blocks: %ld%s",
(unsigned long)minfo.hblks,
VTY_NEWLINE);
vty_out (vty, "(see system documentation for 'mallinfo' for meaning)%s",
VTY_NEWLINE);
vty_outln (vty, "System allocator statistics:");
vty_outln (vty, " Total heap allocated: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.arena));
vty_outln (vty, " Holding block headers: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.hblkhd));
vty_outln (vty, " Used small blocks: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.usmblks));
vty_outln (vty, " Used ordinary blocks: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.uordblks));
vty_outln (vty, " Free small blocks: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.fsmblks));
vty_outln (vty, " Free ordinary blocks: %s",
mtype_memstr(buf, MTYPE_MEMSTR_LEN, minfo.fordblks));
vty_outln (vty, " Ordinary blocks: %ld",
(unsigned long)minfo.ordblks);
vty_outln (vty, " Small blocks: %ld",
(unsigned long)minfo.smblks);
vty_outln (vty, " Holding blocks: %ld",
(unsigned long)minfo.hblks);
vty_outln (vty,"(see system documentation for 'mallinfo' for meaning)");
return 1;
}
#endif /* HAVE_MALLINFO */
@ -82,16 +72,14 @@ static int qmem_walker(void *arg, struct memgroup *mg, struct memtype *mt)
{
struct vty *vty = arg;
if (!mt)
vty_out (vty, "--- qmem %s ---%s", mg->name, VTY_NEWLINE);
vty_outln (vty, "--- qmem %s ---", mg->name);
else {
if (mt->n_alloc != 0) {
char size[32];
snprintf(size, sizeof(size), "%6zu", mt->size);
vty_out (vty, "%-30s: %10zu %s%s",
vty_outln (vty, "%-30s: %10zu %s",
mt->name, mt->n_alloc,
mt->size == 0 ? "" :
mt->size == SIZE_VAR ? "(variably sized)" :
size, VTY_NEWLINE);
mt->size == 0 ? "" : mt->size == SIZE_VAR ? "(variably sized)" : size);
}
}
return 0;
@ -120,15 +108,14 @@ DEFUN (show_modules,
{
struct frrmod_runtime *plug = frrmod_list;
vty_out (vty, "%-12s %-25s %s%s%s",
vty_outln (vty, "%-12s %-25s %s%s",
"Module Name", "Version", "Description",
VTY_NEWLINE, VTY_NEWLINE);
VTY_NEWLINE);
while (plug)
{
const struct frrmod_info *i = plug->info;
vty_out (vty, "%-12s %-25s %s%s", i->name, i->version, i->description,
VTY_NEWLINE);
vty_outln (vty, "%-12s %-25s %s", i->name, i->version,i->description);
if (plug->dl_handle)
{
#ifdef HAVE_DLINFO_ORIGIN
@ -142,13 +129,13 @@ DEFUN (show_modules,
{
name = strrchr(lm->l_name, '/');
name = name ? name + 1 : lm->l_name;
vty_out (vty, "\tfrom: %s/%s%s", origin, name, VTY_NEWLINE);
vty_outln (vty, "\tfrom: %s/%s", origin, name);
}
# else
vty_out (vty, "\tfrom: %s %s", origin, plug->load_name, VTY_NEWLINE);
vty_outln (vty, "\tfrom: %s ", origin, plug->load_name);
# endif
#else
vty_out (vty, "\tfrom: %s%s", plug->load_name, VTY_NEWLINE);
vty_outln (vty, "\tfrom: %s", plug->load_name);
#endif
}
plug = plug->next;

View File

@ -296,8 +296,7 @@ ns_netns_pathname (struct vty *vty, const char *name)
if (! result)
{
vty_out (vty, "Invalid pathname: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "Invalid pathname: %s",safe_strerror(errno));
return NULL;
}
return pathname;
@ -366,13 +365,13 @@ DEFUN (no_ns_netns,
if (!ns)
{
vty_out (vty, "NS %u is not found%s", ns_id, VTY_NEWLINE);
vty_outln (vty, "NS %u is not found", ns_id);
return CMD_SUCCESS;
}
if (ns->name && strcmp (ns->name, pathname) != 0)
{
vty_out (vty, "Incorrect NETNS file name%s", VTY_NEWLINE);
vty_outln (vty, "Incorrect NETNS file name");
return CMD_WARNING;
}
@ -406,8 +405,7 @@ ns_config_write (struct vty *vty)
if (ns->ns_id == NS_DEFAULT || ns->name == NULL)
continue;
vty_out (vty, "logical-router %u netns %s%s", ns->ns_id, ns->name,
VTY_NEWLINE);
vty_outln (vty, "logical-router %u netns %s", ns->ns_id,ns->name);
write = 1;
}

View File

@ -882,8 +882,8 @@ prefix_entry_dup_check (struct prefix_list *plist,
static int
vty_invalid_prefix_range (struct vty *vty, const char *prefix)
{
vty_out (vty, "%% Invalid prefix range for %s, make sure: len < ge-value <= le-value%s",
prefix, VTY_NEWLINE);
vty_outln (vty, "%% Invalid prefix range for %s, make sure: len < ge-value <= le-value",
prefix);
return CMD_WARNING;
}
@ -920,7 +920,7 @@ vty_prefix_list_install (struct vty *vty, afi_t afi, const char *name,
type = PREFIX_DENY;
else
{
vty_out (vty, "%% prefix type must be permit or deny%s", VTY_NEWLINE);
vty_outln (vty, "%% prefix type must be permit or deny");
return CMD_WARNING;
}
@ -940,7 +940,7 @@ vty_prefix_list_install (struct vty *vty, afi_t afi, const char *name,
if (ret <= 0)
{
vty_out (vty, "%% Malformed IPv4 prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed IPv4 prefix");
return CMD_WARNING;
}
@ -962,7 +962,7 @@ vty_prefix_list_install (struct vty *vty, afi_t afi, const char *name,
if (ret <= 0)
{
vty_out (vty, "%% Malformed IPv6 prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed IPv6 prefix");
return CMD_WARNING;
}
@ -973,7 +973,7 @@ vty_prefix_list_install (struct vty *vty, afi_t afi, const char *name,
break;
case AFI_L2VPN:
default:
vty_out (vty, "%% Unrecognized AFI (%d)%s", afi, VTY_NEWLINE);
vty_outln (vty, "%% Unrecognized AFI (%d)", afi);
return CMD_WARNING;
break;
}
@ -1042,7 +1042,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
plist = prefix_list_lookup (afi, name);
if (! plist)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
@ -1057,7 +1057,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
/* We must have, at a minimum, both the type and prefix here */
if ((typestr == NULL) || (prefix == NULL))
{
vty_out (vty, "%% Both prefix and type required%s", VTY_NEWLINE);
vty_outln (vty, "%% Both prefix and type required");
return CMD_WARNING;
}
@ -1078,7 +1078,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
type = PREFIX_DENY;
else
{
vty_out (vty, "%% prefix type must be permit or deny%s", VTY_NEWLINE);
vty_outln (vty, "%% prefix type must be permit or deny");
return CMD_WARNING;
}
@ -1096,7 +1096,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
if (ret <= 0)
{
vty_out (vty, "%% Malformed IPv4 prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed IPv4 prefix");
return CMD_WARNING;
}
}
@ -1113,7 +1113,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
if (ret <= 0)
{
vty_out (vty, "%% Malformed IPv6 prefix%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed IPv6 prefix");
return CMD_WARNING;
}
}
@ -1123,7 +1123,7 @@ vty_prefix_list_uninstall (struct vty *vty, afi_t afi, const char *name,
if (pentry == NULL)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
@ -1141,7 +1141,7 @@ vty_prefix_list_desc_unset (struct vty *vty, afi_t afi, const char *name)
plist = prefix_list_lookup (afi, name);
if (! plist)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
@ -1179,25 +1179,24 @@ vty_show_prefix_entry (struct vty *vty, afi_t afi, struct prefix_list *plist,
if (dtype == normal_display)
{
vty_out (vty, "ip%s prefix-list %s: %d entries%s",
vty_outln (vty, "ip%s prefix-list %s: %d entries",
afi == AFI_IP ? "" : "v6",
plist->name, plist->count, VTY_NEWLINE);
plist->name, plist->count);
if (plist->desc)
vty_out (vty, " Description: %s%s", plist->desc, VTY_NEWLINE);
vty_outln (vty, " Description: %s", plist->desc);
}
else if (dtype == summary_display || dtype == detail_display)
{
vty_out (vty, "ip%s prefix-list %s:%s",
afi == AFI_IP ? "" : "v6", plist->name, VTY_NEWLINE);
vty_outln (vty, "ip%s prefix-list %s:",
afi == AFI_IP ? "" : "v6", plist->name);
if (plist->desc)
vty_out (vty, " Description: %s%s", plist->desc, VTY_NEWLINE);
vty_outln (vty, " Description: %s", plist->desc);
vty_out (vty, " count: %d, range entries: %d, sequences: %u - %u%s",
vty_outln (vty, " count: %d, range entries: %d, sequences: %u - %u",
plist->count, plist->rangecount,
plist->head ? plist->head->seq : 0,
plist->tail ? plist->tail->seq : 0,
VTY_NEWLINE);
plist->tail ? plist->tail->seq : 0);
}
if (dtype != summary_display)
@ -1235,7 +1234,7 @@ vty_show_prefix_entry (struct vty *vty, afi_t afi, struct prefix_list *plist,
vty_out (vty, " (hit count: %ld, refcount: %ld)",
pentry->hitcnt, pentry->refcnt);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
}
@ -1260,7 +1259,7 @@ vty_show_prefix_list (struct vty *vty, afi_t afi, const char *name,
plist = prefix_list_lookup (afi, name);
if (! plist)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
vty_show_prefix_entry (vty, afi, plist, master, dtype, seqnum);
@ -1270,8 +1269,8 @@ vty_show_prefix_list (struct vty *vty, afi_t afi, const char *name,
if (dtype == detail_display || dtype == summary_display)
{
if (master->recent)
vty_out (vty, "Prefix-list with the last deletion/insertion: %s%s",
master->recent->name, VTY_NEWLINE);
vty_outln (vty, "Prefix-list with the last deletion/insertion: %s",
master->recent->name);
}
for (plist = master->num.head; plist; plist = plist->next)
@ -1297,14 +1296,14 @@ vty_show_prefix_list_prefix (struct vty *vty, afi_t afi, const char *name,
plist = prefix_list_lookup (afi, name);
if (! plist)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
ret = str2prefix (prefix, &p);
if (ret <= 0)
{
vty_out (vty, "%% prefix is malformed%s", VTY_NEWLINE);
vty_outln (vty, "%% prefix is malformed");
return CMD_WARNING;
}
@ -1347,7 +1346,7 @@ vty_show_prefix_list_prefix (struct vty *vty, afi_t afi, const char *name,
vty_out (vty, " (hit count: %ld, refcount: %ld)",
pentry->hitcnt, pentry->refcnt);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
if (type == first_match_display)
return CMD_SUCCESS;
@ -1385,7 +1384,7 @@ vty_clear_prefix_list (struct vty *vty, afi_t afi, const char *name,
plist = prefix_list_lookup (afi, name);
if (! plist)
{
vty_out (vty, "%% Can't find specified prefix-list%s", VTY_NEWLINE);
vty_outln (vty, "%% Can't find specified prefix-list");
return CMD_WARNING;
}
@ -1394,7 +1393,7 @@ vty_clear_prefix_list (struct vty *vty, afi_t afi, const char *name,
ret = str2prefix (prefix, &p);
if (ret <= 0)
{
vty_out (vty, "%% prefix is malformed%s", VTY_NEWLINE);
vty_outln (vty, "%% prefix is malformed");
return CMD_WARNING;
}
}
@ -1819,18 +1818,18 @@ config_write_prefix_afi (afi_t afi, struct vty *vty)
if (! master->seqnum)
{
vty_out (vty, "no ip%s prefix-list sequence-number%s",
afi == AFI_IP ? "" : "v6", VTY_NEWLINE);
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "no ip%s prefix-list sequence-number",
afi == AFI_IP ? "" : "v6");
vty_outln (vty, "!");
}
for (plist = master->num.head; plist; plist = plist->next)
{
if (plist->desc)
{
vty_out (vty, "ip%s prefix-list %s description %s%s",
vty_outln (vty, "ip%s prefix-list %s description %s",
afi == AFI_IP ? "" : "v6",
plist->name, plist->desc, VTY_NEWLINE);
plist->name, plist->desc);
write++;
}
@ -1861,7 +1860,7 @@ config_write_prefix_afi (afi_t afi, struct vty *vty)
if (pentry->le)
vty_out (vty, " le %d", pentry->le);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
/* vty_out (vty, "!%s", VTY_NEWLINE); */
@ -1871,9 +1870,9 @@ config_write_prefix_afi (afi_t afi, struct vty *vty)
{
if (plist->desc)
{
vty_out (vty, "ip%s prefix-list %s description %s%s",
vty_outln (vty, "ip%s prefix-list %s description %s",
afi == AFI_IP ? "" : "v6",
plist->name, plist->desc, VTY_NEWLINE);
plist->name, plist->desc);
write++;
}
@ -1904,7 +1903,7 @@ config_write_prefix_afi (afi_t afi, struct vty *vty)
if (pentry->le)
vty_out (vty, " le %d", pentry->le);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
write++;
}
}
@ -2049,14 +2048,15 @@ prefix_bgp_show_prefix_list (struct vty *vty, afi_t afi, char *name, u_char use_
else
json_object_object_add(json, "ipv6PrefixList", json_prefix);
vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
}
else
{
vty_out (vty, "ip%s prefix-list %s: %d entries%s",
vty_outln (vty, "ip%s prefix-list %s: %d entries",
afi == AFI_IP ? "" : "v6",
plist->name, plist->count, VTY_NEWLINE);
plist->name, plist->count);
for (pentry = plist->head; pentry; pentry = pentry->next)
{
@ -2073,7 +2073,7 @@ prefix_bgp_show_prefix_list (struct vty *vty, afi_t afi, char *name, u_char use_
if (pentry->le)
vty_out (vty, " le %d", pentry->le);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
}
return plist->count;

View File

@ -521,12 +521,11 @@ generic_match_add (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% [%s] Can't find rule.%s", frr_protonameinst,
VTY_NEWLINE);
vty_outln (vty, "%% [%s] Can't find rule.", frr_protonameinst);
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% [%s] Argument form is unsupported or malformed.%s",
frr_protonameinst, VTY_NEWLINE);
vty_outln (vty, "%% [%s] Argument form is unsupported or malformed.",
frr_protonameinst);
return CMD_WARNING;
}
}
@ -569,8 +568,7 @@ generic_match_delete (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% [%s] Can't find rule.%s", frr_protonameinst,
VTY_NEWLINE);
vty_outln (vty, "%% [%s] Can't find rule.%s", frr_protonameinst);
break;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% [%s] Argument form is unsupported or malformed.%s",
@ -607,12 +605,11 @@ generic_set_add (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% [%s] Can't find rule.%s", frr_protonameinst,
VTY_NEWLINE);
vty_outln (vty, "%% [%s] Can't find rule.%s", frr_protonameinst);
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% [%s] Argument form is unsupported or malformed.%s",
frr_protonameinst, VTY_NEWLINE);
vty_outln (vty, "%% [%s] Argument form is unsupported or malformed.",
frr_protonameinst);
return CMD_WARNING;
}
}
@ -631,12 +628,11 @@ generic_set_delete (struct vty *vty, struct route_map_index *index,
switch (ret)
{
case RMAP_RULE_MISSING:
vty_out (vty, "%% [%s] Can't find rule.%s", frr_protonameinst,
VTY_NEWLINE);
vty_outln (vty, "%% [%s] Can't find rule.%s", frr_protonameinst);
return CMD_WARNING;
case RMAP_COMPILE_ERROR:
vty_out (vty, "%% [%s] Argument form is unsupported or malformed.%s",
frr_protonameinst, VTY_NEWLINE);
vty_outln (vty, "%% [%s] Argument form is unsupported or malformed.%s",
frr_protonameinst);
return CMD_WARNING;
}
}
@ -997,43 +993,43 @@ vty_show_route_map_entry (struct vty *vty, struct route_map *map)
struct route_map_index *index;
struct route_map_rule *rule;
vty_out (vty, "%s:%s", frr_protonameinst, VTY_NEWLINE);
vty_outln (vty, "%s:", frr_protonameinst);
for (index = map->head; index; index = index->next)
{
vty_out (vty, "route-map %s, %s, sequence %d%s",
vty_outln (vty, "route-map %s, %s, sequence %d",
map->name, route_map_type_str (index->type),
index->pref, VTY_NEWLINE);
index->pref);
/* Description */
if (index->description)
vty_out (vty, " Description:%s %s%s", VTY_NEWLINE,
index->description, VTY_NEWLINE);
vty_outln (vty, " Description:%s %s", VTY_NEWLINE,
index->description);
/* Match clauses */
vty_out (vty, " Match clauses:%s", VTY_NEWLINE);
vty_outln (vty, " Match clauses:");
for (rule = index->match_list.head; rule; rule = rule->next)
vty_out (vty, " %s %s%s",
rule->cmd->str, rule->rule_str, VTY_NEWLINE);
vty_outln (vty, " %s %s",
rule->cmd->str, rule->rule_str);
vty_out (vty, " Set clauses:%s", VTY_NEWLINE);
vty_outln (vty, " Set clauses:");
for (rule = index->set_list.head; rule; rule = rule->next)
vty_out (vty, " %s %s%s",
rule->cmd->str, rule->rule_str, VTY_NEWLINE);
vty_outln (vty, " %s %s",
rule->cmd->str, rule->rule_str);
/* Call clause */
vty_out (vty, " Call clause:%s", VTY_NEWLINE);
vty_outln (vty, " Call clause:");
if (index->nextrm)
vty_out (vty, " Call %s%s", index->nextrm, VTY_NEWLINE);
vty_outln (vty, " Call %s", index->nextrm);
/* Exit Policy */
vty_out (vty, " Action:%s", VTY_NEWLINE);
vty_outln (vty, " Action:");
if (index->exitpolicy == RMAP_GOTO)
vty_out (vty, " Goto %d%s", index->nextpref, VTY_NEWLINE);
vty_outln (vty, " Goto %d", index->nextpref);
else if (index->exitpolicy == RMAP_NEXT)
vty_out (vty, " Continue to next entry%s", VTY_NEWLINE);
vty_outln (vty, " Continue to next entry");
else if (index->exitpolicy == RMAP_EXIT)
vty_out (vty, " Exit routemap%s", VTY_NEWLINE);
vty_outln (vty, " Exit routemap");
}
}
@ -1053,8 +1049,8 @@ vty_show_route_map (struct vty *vty, const char *name)
}
else
{
vty_out (vty, "%s: 'route-map %s' not found%s", frr_protonameinst,
name, VTY_NEWLINE);
vty_outln (vty, "%s: 'route-map %s' not found", frr_protonameinst,
name);
return CMD_SUCCESS;
}
}
@ -2363,14 +2359,14 @@ DEFUN (set_ip_nexthop,
ret = str2sockunion (argv[idx_ipv4]->arg, &su);
if (ret < 0)
{
vty_out (vty, "%% Malformed nexthop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed nexthop address");
return CMD_WARNING;
}
if (su.sin.sin_addr.s_addr == 0 ||
IPV4_CLASS_DE(su.sin.sin_addr.s_addr))
{
vty_out (vty, "%% nexthop address cannot be 0.0.0.0, multicast "
"or reserved%s", VTY_NEWLINE);
vty_outln (vty,
"%% nexthop address cannot be 0.0.0.0, multicast " "or reserved");
return CMD_WARNING;
}
@ -2420,12 +2416,12 @@ DEFUN (set_ipv6_nexthop_local,
ret = inet_pton (AF_INET6, argv[idx_ipv6]->arg, &addr);
if (!ret)
{
vty_out (vty, "%% Malformed nexthop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Malformed nexthop address");
return CMD_WARNING;
}
if (!IN6_IS_ADDR_LINKLOCAL(&addr))
{
vty_out (vty, "%% Invalid link-local nexthop address%s", VTY_NEWLINE);
vty_outln (vty, "%% Invalid link-local nexthop address");
return CMD_WARNING;
}
@ -2581,7 +2577,7 @@ DEFUN (no_route_map_all,
map = route_map_lookup_by_name (mapname);
if (map == NULL)
{
vty_out (vty, "%% Could not find route-map %s%s", mapname, VTY_NEWLINE);
vty_outln (vty, "%% Could not find route-map %s", mapname);
return CMD_WARNING;
}
@ -2616,7 +2612,7 @@ DEFUN (no_route_map,
map = route_map_lookup_by_name (mapname);
if (map == NULL)
{
vty_out (vty, "%% Could not find route-map %s%s", mapname, VTY_NEWLINE);
vty_outln (vty, "%% Could not find route-map %s", mapname);
return CMD_WARNING;
}
@ -2624,8 +2620,8 @@ DEFUN (no_route_map,
index = route_map_index_lookup (map, permit, pref);
if (index == NULL)
{
vty_out (vty, "%% Could not find route-map entry %s %s%s",
mapname, prefstr, VTY_NEWLINE);
vty_outln (vty, "%% Could not find route-map entry %s %s",
mapname, prefstr);
return CMD_WARNING;
}
@ -2652,8 +2648,7 @@ DEFUN (rmap_onmatch_next,
if (index->type == RMAP_DENY)
{
/* Under a deny clause, match means it's finished. No need to set next */
vty_out (vty, "on-match next not supported under route-map deny%s",
VTY_NEWLINE);
vty_outln (vty,"on-match next not supported under route-map deny");
return CMD_WARNING;
}
index->exitpolicy = RMAP_NEXT;
@ -2694,8 +2689,7 @@ DEFUN (rmap_onmatch_goto,
if (index->type == RMAP_DENY)
{
/* Under a deny clause, match means it's finished. No need to go anywhere */
vty_out (vty, "on-match goto not supported under route-map deny%s",
VTY_NEWLINE);
vty_outln (vty,"on-match goto not supported under route-map deny");
return CMD_WARNING;
}
@ -2707,7 +2701,7 @@ DEFUN (rmap_onmatch_goto,
if (d <= index->pref)
{
/* Can't allow you to do that, Dave */
vty_out (vty, "can't jump backwards in route-maps%s", VTY_NEWLINE);
vty_outln (vty, "can't jump backwards in route-maps");
return CMD_WARNING;
}
else
@ -2866,33 +2860,31 @@ route_map_config_write (struct vty *vty)
for (index = map->head; index; index = index->next)
{
if (!first)
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
else
first = 0;
vty_out (vty, "route-map %s %s %d%s",
vty_outln (vty, "route-map %s %s %d",
map->name,
route_map_type_str (index->type),
index->pref, VTY_NEWLINE);
index->pref);
if (index->description)
vty_out (vty, " description %s%s", index->description, VTY_NEWLINE);
vty_outln (vty, " description %s", index->description);
for (rule = index->match_list.head; rule; rule = rule->next)
vty_out (vty, " match %s %s%s", rule->cmd->str,
rule->rule_str ? rule->rule_str : "",
VTY_NEWLINE);
vty_outln (vty, " match %s %s", rule->cmd->str,
rule->rule_str ? rule->rule_str : "");
for (rule = index->set_list.head; rule; rule = rule->next)
vty_out (vty, " set %s %s%s", rule->cmd->str,
rule->rule_str ? rule->rule_str : "",
VTY_NEWLINE);
vty_outln (vty, " set %s %s", rule->cmd->str,
rule->rule_str ? rule->rule_str : "");
if (index->nextrm)
vty_out (vty, " call %s%s", index->nextrm, VTY_NEWLINE);
vty_outln (vty, " call %s", index->nextrm);
if (index->exitpolicy == RMAP_GOTO)
vty_out (vty, " on-match goto %d%s", index->nextpref, VTY_NEWLINE);
vty_outln (vty, " on-match goto %d", index->nextpref);
if (index->exitpolicy == RMAP_NEXT)
vty_out (vty," on-match next%s", VTY_NEWLINE);
vty_outln (vty," on-match next");
write++;
}

View File

@ -602,11 +602,10 @@ skiplist_debug(struct vty *vty, struct skiplist *l)
if (!l)
l = skiplist_last_created;
vty_out(vty, "Skiplist %p has max level %d%s", l, l->level, VTY_NEWLINE);
vty_outln (vty, "Skiplist %p has max level %d", l, l->level);
for (i = l->level; i >= 0; --i)
vty_out(vty, " @%d: %ld%s",
i, (long)((l->stats->forward[i]) - (struct skiplistnode *)NULL),
VTY_NEWLINE);
vty_outln (vty, " @%d: %ld",
i,(long)((l->stats->forward[i]) - (struct skiplistnode *)NULL));
}
static void *

View File

@ -1387,7 +1387,7 @@ config_write_smux (struct vty *vty)
vty_out (vty, "%s%d", first ? "" : ".", (int) smux_oid[i]);
first = 0;
}
vty_out (vty, " %s%s", smux_passwd, VTY_NEWLINE);
vty_outln (vty, " %s", smux_passwd);
}
return 0;
}

View File

@ -223,44 +223,44 @@ void
spf_backoff_show(struct spf_backoff *backoff, struct vty *vty,
const char *prefix)
{
vty_out(vty, "%sCurrent state: %s%s", prefix,
spf_backoff_state2str(backoff->state), VTY_NEWLINE);
vty_out(vty, "%sInit timer: %ld msec%s", prefix,
backoff->init_delay, VTY_NEWLINE);
vty_out(vty, "%sShort timer: %ld msec%s", prefix,
backoff->short_delay, VTY_NEWLINE);
vty_out(vty, "%sLong timer: %ld msec%s", prefix,
backoff->long_delay, VTY_NEWLINE);
vty_out(vty, "%sHolddown timer: %ld msec%s", prefix,
backoff->holddown, VTY_NEWLINE);
vty_outln (vty, "%sCurrent state: %s", prefix,
spf_backoff_state2str(backoff->state));
vty_outln (vty, "%sInit timer: %ld msec", prefix,
backoff->init_delay);
vty_outln (vty, "%sShort timer: %ld msec", prefix,
backoff->short_delay);
vty_outln (vty, "%sLong timer: %ld msec", prefix,
backoff->long_delay);
vty_outln (vty, "%sHolddown timer: %ld msec", prefix,
backoff->holddown);
if (backoff->t_holddown)
{
struct timeval remain = thread_timer_remain(backoff->t_holddown);
vty_out(vty, "%s Still runs for %ld msec%s",
prefix, remain.tv_sec * 1000 + remain.tv_usec/1000, VTY_NEWLINE);
vty_outln (vty, "%s Still runs for %ld msec",
prefix, remain.tv_sec * 1000 + remain.tv_usec / 1000);
}
else
{
vty_out(vty, "%s Inactive%s", prefix, VTY_NEWLINE);
vty_outln (vty, "%s Inactive", prefix);
}
vty_out(vty, "%sTimeToLearn timer: %ld msec%s", prefix,
backoff->timetolearn, VTY_NEWLINE);
vty_outln (vty, "%sTimeToLearn timer: %ld msec", prefix,
backoff->timetolearn);
if (backoff->t_timetolearn)
{
struct timeval remain = thread_timer_remain(backoff->t_timetolearn);
vty_out(vty, "%s Still runs for %ld msec%s",
prefix, remain.tv_sec * 1000 + remain.tv_usec/1000, VTY_NEWLINE);
vty_outln (vty, "%s Still runs for %ld msec",
prefix, remain.tv_sec * 1000 + remain.tv_usec / 1000);
}
else
{
vty_out(vty, "%s Inactive%s", prefix, VTY_NEWLINE);
vty_outln (vty, "%s Inactive", prefix);
}
vty_out(vty, "%sFirst event: %s%s", prefix,
timeval_format(&backoff->first_event_time), VTY_NEWLINE);
vty_out(vty, "%sLast event: %s%s", prefix,
timeval_format(&backoff->last_event_time), VTY_NEWLINE);
vty_outln (vty, "%sFirst event: %s", prefix,
timeval_format(&backoff->first_event_time));
vty_outln (vty, "%sLast event: %s", prefix,
timeval_format(&backoff->last_event_time));
}
DEFUN(spf_backoff_debug,
@ -291,7 +291,7 @@ spf_backoff_write_config(struct vty *vty)
if (debug_spf_backoff)
{
vty_out(vty, "debug spf-delay-ietf%s", VTY_NEWLINE);
vty_outln (vty, "debug spf-delay-ietf");
written++;
}

View File

@ -96,13 +96,13 @@ vty_out_cpu_thread_history(struct vty* vty,
a->total_active, a->cpu.total/1000, a->cpu.total%1000, a->total_calls,
a->cpu.total/a->total_calls, a->cpu.max,
a->real.total/a->total_calls, a->real.max);
vty_out(vty, " %c%c%c%c%c %s%s",
vty_outln (vty, " %c%c%c%c%c %s",
a->types & (1 << THREAD_READ) ? 'R':' ',
a->types & (1 << THREAD_WRITE) ? 'W':' ',
a->types & (1 << THREAD_TIMER) ? 'T':' ',
a->types & (1 << THREAD_EVENT) ? 'E':' ',
a->types & (1 << THREAD_EXECUTE) ? 'X':' ',
a->funcname, VTY_NEWLINE);
a->funcname);
}
static void
@ -137,11 +137,11 @@ cpu_record_print(struct vty *vty, thread_type filter)
tmp.funcname = "TOTAL";
tmp.types = filter;
vty_out(vty, "%21s %18s %18s%s",
"", "CPU (user+system):", "Real (wall-clock):", VTY_NEWLINE);
vty_outln (vty, "%21s %18s %18s",
"", "CPU (user+system):", "Real (wall-clock):");
vty_out(vty, "Active Runtime(ms) Invoked Avg uSec Max uSecs");
vty_out(vty, " Avg uSec Max uSecs");
vty_out(vty, " Type Thread%s", VTY_NEWLINE);
vty_outln (vty, " Type Thread");
pthread_mutex_lock (&cpu_record_mtx);
{
@ -201,9 +201,9 @@ DEFUN (show_thread_cpu,
}
if (filter == 0)
{
vty_out(vty, "Invalid filter \"%s\" specified,"
" must contain at least one of 'RWTEXB'%s",
argv[idx_filter]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid filter \"%s\" specified,"
" must contain at least one of 'RWTEXB'",
argv[idx_filter]->arg);
return CMD_WARNING;
}
}
@ -289,9 +289,9 @@ DEFUN (clear_thread_cpu,
}
if (filter == 0)
{
vty_out(vty, "Invalid filter \"%s\" specified,"
" must contain at least one of 'RWTEXB'%s",
argv[idx_filter]->arg, VTY_NEWLINE);
vty_outln (vty, "Invalid filter \"%s\" specified,"
" must contain at least one of 'RWTEXB'",
argv[idx_filter]->arg);
return CMD_WARNING;
}
}

View File

@ -555,7 +555,7 @@ static int
vrf_write_host (struct vty *vty)
{
if (debug_vrf)
vty_out (vty, "debug vrf%s", VTY_NEWLINE);
vty_outln (vty, "debug vrf");
return 1;
}

115
lib/vty.c
View File

@ -263,12 +263,12 @@ vty_hello (struct vty *vty)
for (s = buf + strlen (buf); (s > buf) && isspace ((int)*(s - 1));
s--);
*s = '\0';
vty_out (vty, "%s%s", buf, VTY_NEWLINE);
vty_outln (vty, "%s", buf);
}
fclose (f);
}
else
vty_out (vty, "MOTD file not found%s", VTY_NEWLINE);
vty_outln (vty, "MOTD file not found");
}
else if (host.motd)
vty_out (vty, "%s", host.motd);
@ -401,14 +401,14 @@ vty_auth (struct vty *vty, char *buf)
{
if (vty->node == AUTH_NODE)
{
vty_out (vty, "%% Bad passwords, too many failures!%s", VTY_NEWLINE);
vty_outln (vty, "%% Bad passwords, too many failures!");
vty->status = VTY_CLOSE;
}
else
{
/* AUTH_ENABLE_NODE */
vty->fail = 0;
vty_out (vty, "%% Bad enable passwords, too many failures!%s", VTY_NEWLINE);
vty_outln (vty, "%% Bad enable passwords, too many failures!");
vty->status = VTY_CLOSE;
}
}
@ -493,16 +493,16 @@ vty_command (struct vty *vty, char *buf)
{
case CMD_WARNING:
if (vty->type == VTY_FILE)
vty_out (vty, "Warning...%s", VTY_NEWLINE);
vty_outln (vty, "Warning...");
break;
case CMD_ERR_AMBIGUOUS:
vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
vty_outln (vty, "%% Ambiguous command.");
break;
case CMD_ERR_NO_MATCH:
vty_out (vty, "%% [%s] Unknown command: %s%s", protocolname, buf, VTY_NEWLINE);
vty_outln (vty, "%% [%s] Unknown command: %s", protocolname, buf);
break;
case CMD_ERR_INCOMPLETE:
vty_out (vty, "%% Command incomplete.%s", VTY_NEWLINE);
vty_outln (vty, "%% Command incomplete.");
break;
}
cmd_free_strvec (vline);
@ -730,7 +730,7 @@ vty_backward_word (struct vty *vty)
static void
vty_down_level (struct vty *vty)
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
cmd_exit (vty);
vty_prompt (vty);
vty->cp = 0;
@ -740,7 +740,7 @@ vty_down_level (struct vty *vty)
static void
vty_end_config (struct vty *vty)
{
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
switch (vty->node)
{
@ -945,11 +945,11 @@ vty_complete_command (struct vty *vty)
cmd_free_strvec (vline);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
switch (ret)
{
case CMD_ERR_AMBIGUOUS:
vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
vty_outln (vty, "%% Ambiguous command.");
vty_prompt (vty);
vty_redraw_line (vty);
break;
@ -962,7 +962,7 @@ vty_complete_command (struct vty *vty)
if (!matched[0])
{
/* 2016-11-28 equinox -- need to debug, SEGV here */
vty_out (vty, "%% CLI BUG: FULL_MATCH with NULL str%s", VTY_NEWLINE);
vty_outln (vty, "%% CLI BUG: FULL_MATCH with NULL str");
vty_prompt (vty);
vty_redraw_line (vty);
break;
@ -985,11 +985,11 @@ vty_complete_command (struct vty *vty)
for (i = 0; matched[i] != NULL; i++)
{
if (i != 0 && ((i % 6) == 0))
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, "%-10s ", matched[i]);
XFREE (MTYPE_COMPLETION, matched[i]);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_prompt (vty);
vty_redraw_line (vty);
@ -1017,7 +1017,7 @@ vty_describe_fold (struct vty *vty, int cmd_width,
if (desc_width <= 0)
{
vty_out (vty, " %-*s %s%s", cmd_width, cmd, token->desc, VTY_NEWLINE);
vty_outln (vty, " %-*s %s", cmd_width, cmd, token->desc);
return;
}
@ -1034,12 +1034,12 @@ vty_describe_fold (struct vty *vty, int cmd_width,
strncpy (buf, p, pos);
buf[pos] = '\0';
vty_out (vty, " %-*s %s%s", cmd_width, cmd, buf, VTY_NEWLINE);
vty_outln (vty, " %-*s %s", cmd_width, cmd, buf);
cmd = "";
}
vty_out (vty, " %-*s %s%s", cmd_width, cmd, p, VTY_NEWLINE);
vty_outln (vty, " %-*s %s", cmd_width, cmd, p);
XFREE (MTYPE_TMP, buf);
}
@ -1068,17 +1068,17 @@ vty_describe_command (struct vty *vty)
describe = cmd_describe_command (vline, vty, &ret);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
/* Ambiguous error. */
switch (ret)
{
case CMD_ERR_AMBIGUOUS:
vty_out (vty, "%% Ambiguous command.%s", VTY_NEWLINE);
vty_outln (vty, "%% Ambiguous command.");
goto out;
break;
case CMD_ERR_NO_MATCH:
vty_out (vty, "%% There is no matched command.%s", VTY_NEWLINE);
vty_outln (vty, "%% There is no matched command.");
goto out;
break;
}
@ -1116,13 +1116,12 @@ vty_describe_command (struct vty *vty)
}
if (!token->desc)
vty_out (vty, " %-s%s",
token->text,
VTY_NEWLINE);
vty_outln (vty, " %-s",
token->text);
else if (desc_width >= strlen (token->desc))
vty_out (vty, " %-*s %s%s", width,
vty_outln (vty, " %-*s %s", width,
token->text,
token->desc, VTY_NEWLINE);
token->desc);
else
vty_describe_fold (vty, width, desc_width, token);
@ -1142,7 +1141,7 @@ vty_describe_command (struct vty *vty)
vty_out(vty, " %s", item);
XFREE(MTYPE_COMPLETION, item);
}
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
vector_free(varcomps);
}
@ -1156,13 +1155,12 @@ vty_describe_command (struct vty *vty)
if ((token = token_cr))
{
if (!token->desc)
vty_out (vty, " %-s%s",
token->text,
VTY_NEWLINE);
vty_outln (vty, " %-s",
token->text);
else if (desc_width >= strlen (token->desc))
vty_out (vty, " %-*s %s%s", width,
vty_outln (vty, " %-*s %s", width,
token->text,
token->desc, VTY_NEWLINE);
token->desc);
else
vty_describe_fold (vty, width, desc_width, token);
}
@ -1188,7 +1186,7 @@ vty_stop_input (struct vty *vty)
{
vty->cp = vty->length = 0;
vty_clear_buf (vty);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
switch (vty->node)
{
@ -1299,20 +1297,20 @@ vty_telnet_option (struct vty *vty, unsigned char *buf, int nbytes)
vty_out (vty, "SE ");
break;
case TELOPT_ECHO:
vty_out (vty, "TELOPT_ECHO %s", VTY_NEWLINE);
vty_outln (vty, "TELOPT_ECHO ");
break;
case TELOPT_SGA:
vty_out (vty, "TELOPT_SGA %s", VTY_NEWLINE);
vty_outln (vty, "TELOPT_SGA ");
break;
case TELOPT_NAWS:
vty_out (vty, "TELOPT_NAWS %s", VTY_NEWLINE);
vty_outln (vty, "TELOPT_NAWS ");
break;
default:
vty_out (vty, "%x ", buf[i]);
break;
}
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
#endif /* TELNET_OPTION_DEBUG */
@ -1349,9 +1347,9 @@ vty_telnet_option (struct vty *vty, unsigned char *buf, int nbytes)
vty->width = ((vty->sb_buf[1] << 8)|vty->sb_buf[2]);
vty->height = ((vty->sb_buf[3] << 8)|vty->sb_buf[4]);
#ifdef TELNET_OPTION_DEBUG
vty_out(vty, "TELNET NAWS window size negotiation completed: "
"width %d, height %d%s",
vty->width, vty->height, VTY_NEWLINE);
vty_outln (vty, "TELNET NAWS window size negotiation completed: "
"width %d, height %d",
vty->width, vty->height);
#endif
}
break;
@ -1608,7 +1606,7 @@ vty_read (struct thread *thread)
break;
case '\n':
case '\r':
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_execute (vty);
break;
case '\t':
@ -1767,7 +1765,7 @@ vty_create (int vty_sock, union sockunion *su)
/* Vty is not available if password isn't set. */
if (host.password == NULL && host.password_encrypt == NULL)
{
vty_out (vty, "Vty password is not set.%s", VTY_NEWLINE);
vty_outln (vty, "Vty password is not set.");
vty->status = VTY_CLOSE;
vty_close (vty);
return NULL;
@ -1777,7 +1775,8 @@ vty_create (int vty_sock, union sockunion *su)
/* Say hello to the world. */
vty_hello (vty);
if (! no_password_check)
vty_out (vty, "%sUser Access Verification%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "%sUser Access Verification%s", VTY_NEWLINE,
VTY_NEWLINE);
/* Setting up terminal. */
vty_will_echo (vty);
@ -2194,7 +2193,7 @@ vtysh_read (struct thread *thread)
/* Clear command line buffer. */
vty->cp = vty->length = 0;
vty_clear_buf (vty);
vty_out (vty, "%% Command is too long.%s", VTY_NEWLINE);
vty_outln (vty, "%% Command is too long.");
}
else
{
@ -2337,7 +2336,7 @@ vty_timeout (struct thread *thread)
/* Clear buffer*/
buffer_reset (vty->obuf);
vty_out (vty, "%sVty connection is timed out.%s", VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "%sVty connection is timed out.", VTY_NEWLINE);
/* Close connection. */
vty->status = VTY_CLOSE;
@ -2818,8 +2817,7 @@ DEFUN (no_vty_access_class,
const char *accesslist = (argc == 3) ? argv[idx_word]->arg : NULL;
if (! vty_accesslist_name || (argc == 3 && strcmp(vty_accesslist_name, accesslist)))
{
vty_out (vty, "Access-class is not currently applied to vty%s",
VTY_NEWLINE);
vty_outln (vty,"Access-class is not currently applied to vty");
return CMD_WARNING;
}
@ -2862,8 +2860,7 @@ DEFUN (no_vty_ipv6_access_class,
if (! vty_ipv6_accesslist_name ||
(argc == 4 && strcmp(vty_ipv6_accesslist_name, accesslist)))
{
vty_out (vty, "IPv6 access-class is not currently applied to vty%s",
VTY_NEWLINE);
vty_outln (vty,"IPv6 access-class is not currently applied to vty");
return CMD_WARNING;
}
@ -2987,30 +2984,30 @@ DEFUN (log_commands,
static int
vty_config_write (struct vty *vty)
{
vty_out (vty, "line vty%s", VTY_NEWLINE);
vty_outln (vty, "line vty");
if (vty_accesslist_name)
vty_out (vty, " access-class %s%s",
vty_accesslist_name, VTY_NEWLINE);
vty_outln (vty, " access-class %s",
vty_accesslist_name);
if (vty_ipv6_accesslist_name)
vty_out (vty, " ipv6 access-class %s%s",
vty_ipv6_accesslist_name, VTY_NEWLINE);
vty_outln (vty, " ipv6 access-class %s",
vty_ipv6_accesslist_name);
/* exec-timeout */
if (vty_timeout_val != VTY_TIMEOUT_DEFAULT)
vty_out (vty, " exec-timeout %ld %ld%s",
vty_outln (vty, " exec-timeout %ld %ld",
vty_timeout_val / 60,
vty_timeout_val % 60, VTY_NEWLINE);
vty_timeout_val % 60);
/* login */
if (no_password_check)
vty_out (vty, " no login%s", VTY_NEWLINE);
vty_outln (vty, " no login");
if (do_log_commands)
vty_out (vty, "log commands%s", VTY_NEWLINE);
vty_outln (vty, "log commands");
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
return CMD_SUCCESS;
}

View File

@ -191,23 +191,21 @@ DEFUN (show_work_queues,
struct listnode *node;
struct work_queue *wq;
vty_out (vty,
"%c %8s %5s %8s %8s %21s%s",
' ', "List","(ms) ","Q. Runs","Yields","Cycle Counts ",
VTY_NEWLINE);
vty_out (vty,
"%c %8s %5s %8s %8s %7s %6s %8s %6s %s%s",
vty_outln (vty,
"%c %8s %5s %8s %8s %21s",
' ', "List","(ms) ","Q. Runs","Yields","Cycle Counts ");
vty_outln (vty,
"%c %8s %5s %8s %8s %7s %6s %8s %6s %s",
'P',
"Items",
"Hold",
"Total","Total",
"Best","Gran.","Total","Avg.",
"Name",
VTY_NEWLINE);
"Name");
for (ALL_LIST_ELEMENTS_RO (work_queues, node, wq))
{
vty_out (vty,"%c %8d %5d %8ld %8ld %7d %6d %8ld %6u %s%s",
vty_outln (vty,"%c %8d %5d %8ld %8ld %7d %6d %8ld %6u %s",
(CHECK_FLAG (wq->flags, WQ_UNPLUGGED) ? ' ' : 'P'),
listcount (wq->items),
wq->spec.hold,
@ -215,8 +213,7 @@ DEFUN (show_work_queues,
wq->cycles.best, wq->cycles.granularity, wq->cycles.total,
(wq->runs) ?
(unsigned int) (wq->cycles.total / wq->runs) : 0,
wq->name,
VTY_NEWLINE);
wq->name);
}
return CMD_SUCCESS;

View File

@ -83,7 +83,7 @@ static int nhrp_vty_return(struct vty *vty, int ret)
snprintf(buf, sizeof(buf), "Unknown error %d", ret);
}
vty_out (vty, "%% %s%s", str, VTY_NEWLINE);
vty_outln (vty, "%% %s", str);
return CMD_WARNING;
}
@ -104,7 +104,7 @@ static int toggle_flag(
return CMD_SUCCESS;
}
vty_out(vty, "%% Invalid value %s%s", name, VTY_NEWLINE);
vty_outln (vty, "%% Invalid value %s", name);
return CMD_WARNING;
}
@ -118,7 +118,7 @@ DEFUN(show_debugging_nhrp, show_debugging_nhrp_cmd,
{
int i;
vty_out(vty, "NHRP debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "NHRP debugging status:");
for (i = 0; debug_flags_desc[i].str != NULL; i++) {
if (debug_flags_desc[i].key == NHRP_DEBUG_ALL)
@ -126,8 +126,8 @@ DEFUN(show_debugging_nhrp, show_debugging_nhrp_cmd,
if (!(debug_flags_desc[i].key & debug_flags))
continue;
vty_out(vty, " NHRP %s debugging is on%s",
debug_flags_desc[i].str, VTY_NEWLINE);
vty_outln (vty, " NHRP %s debugging is on",
debug_flags_desc[i].str);
}
return CMD_SUCCESS;
@ -158,7 +158,7 @@ static int nhrp_config_write(struct vty *vty)
{
#ifndef NO_DEBUG
if (debug_flags == NHRP_DEBUG_ALL) {
vty_out(vty, "debug nhrp all%s", VTY_NEWLINE);
vty_outln (vty, "debug nhrp all");
} else {
int i;
@ -167,19 +167,20 @@ static int nhrp_config_write(struct vty *vty)
continue;
if (!(debug_flags & debug_flags_desc[i].key))
continue;
vty_out(vty, "debug nhrp %s%s", debug_flags_desc[i].str, VTY_NEWLINE);
vty_outln (vty, "debug nhrp %s",
debug_flags_desc[i].str);
}
}
vty_out(vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
#endif /* NO_DEBUG */
if (nhrp_event_socket_path) {
vty_out(vty, "nhrp event socket %s%s",
nhrp_event_socket_path, VTY_NEWLINE);
vty_outln (vty, "nhrp event socket %s",
nhrp_event_socket_path);
}
if (netlink_nflog_group) {
vty_out(vty, "nhrp nflog-group %d%s",
netlink_nflog_group, VTY_NEWLINE);
vty_outln (vty, "nhrp nflog-group %d",
netlink_nflog_group);
}
return 0;
@ -597,18 +598,17 @@ static void show_ip_nhrp_cache(struct nhrp_cache *c, void *pctx)
return;
if (!ctx->count) {
vty_out(vty, "%-8s %-8s %-24s %-24s %-6s %s%s",
vty_outln (vty, "%-8s %-8s %-24s %-24s %-6s %s",
"Iface",
"Type",
"Protocol",
"NBMA",
"Flags",
"Identity",
VTY_NEWLINE);
"Identity");
}
ctx->count++;
vty_out(ctx->vty, "%-8s %-8s %-24s %-24s %c%c%c %s%s",
vty_outln(ctx->vty, "%-8s %-8s %-24s %-24s %c%c%c %s",
c->ifp->name,
nhrp_cache_type_str[c->cur.type],
sockunion2str(&c->remote_addr, buf[0], sizeof buf[0]),
@ -616,8 +616,7 @@ static void show_ip_nhrp_cache(struct nhrp_cache *c, void *pctx)
c->used ? 'U' : ' ',
c->t_timeout ? 'T' : ' ',
c->t_auth ? 'A' : ' ',
c->cur.peer ? c->cur.peer->vc->remote.id : "-",
VTY_NEWLINE);
c->cur.peer ? c->cur.peer->vc->remote.id : "-");
}
static void show_ip_nhrp_nhs(struct nhrp_nhs *n, struct nhrp_registration *reg, void *pctx)
@ -627,21 +626,22 @@ static void show_ip_nhrp_nhs(struct nhrp_nhs *n, struct nhrp_registration *reg,
char buf[2][SU_ADDRSTRLEN];
if (!ctx->count) {
vty_out(vty, "%-8s %-24s %-16s %-16s%s",
vty_outln (vty, "%-8s %-24s %-16s %-16s",
"Iface",
"FQDN",
"NBMA",
"Protocol",
VTY_NEWLINE);
"Protocol");
}
ctx->count++;
vty_out(vty, "%-8s %-24s %-16s %-16s%s",
n->ifp->name,
n->nbma_fqdn,
(reg && reg->peer) ? sockunion2str(&reg->peer->vc->remote.nbma, buf[0], sizeof buf[0]) : "-",
sockunion2str(reg ? &reg->proto_addr : &n->proto_addr, buf[1], sizeof buf[1]),
VTY_NEWLINE);
vty_outln (vty, "%-8s %-24s %-16s %-16s",
n->ifp->name,
n->nbma_fqdn,
(reg && reg->peer) ? sockunion2str(&reg->peer->vc->remote.nbma,
buf[0], sizeof buf[0])
: "-",
sockunion2str(reg ? &reg->proto_addr : &n->proto_addr,
buf[1], sizeof buf[1]));
}
static void show_ip_nhrp_shortcut(struct nhrp_shortcut *s, void *pctx)
@ -652,22 +652,20 @@ static void show_ip_nhrp_shortcut(struct nhrp_shortcut *s, void *pctx)
char buf1[PREFIX_STRLEN], buf2[SU_ADDRSTRLEN];
if (!ctx->count) {
vty_out(vty, "%-8s %-24s %-24s %s%s",
vty_outln (vty, "%-8s %-24s %-24s %s",
"Type",
"Prefix",
"Via",
"Identity",
VTY_NEWLINE);
"Identity");
}
ctx->count++;
c = s->cache;
vty_out(ctx->vty, "%-8s %-24s %-24s %s%s",
vty_outln(ctx->vty, "%-8s %-24s %-24s %s",
nhrp_cache_type_str[s->type],
prefix2str(s->p, buf1, sizeof buf1),
c ? sockunion2str(&c->remote_addr, buf2, sizeof buf2) : "",
(c && c->cur.peer) ? c->cur.peer->vc->remote.id : "",
VTY_NEWLINE);
(c && c->cur.peer) ? c->cur.peer->vc->remote.id : "");
}
static void show_ip_opennhrp_cache(struct nhrp_cache *c, void *pctx)
@ -679,34 +677,32 @@ static void show_ip_opennhrp_cache(struct nhrp_cache *c, void *pctx)
if (ctx->afi != family2afi(sockunion_family(&c->remote_addr)))
return;
vty_out(ctx->vty,
"Type: %s%s"
"Flags:%s%s%s"
"Protocol-Address: %s/%zu%s",
nhrp_cache_type_str[c->cur.type],
VTY_NEWLINE,
(c->cur.peer && c->cur.peer->online) ? " up": "",
c->used ? " used": "",
VTY_NEWLINE,
sockunion2str(&c->remote_addr, buf, sizeof buf),
8 * family2addrsize(sockunion_family(&c->remote_addr)),
VTY_NEWLINE);
vty_outln(ctx->vty,
"Type: %s%s"
"Flags:%s%s%s"
"Protocol-Address: %s/%zu",
nhrp_cache_type_str[c->cur.type],
VTY_NEWLINE,
(c->cur.peer && c->cur.peer->online) ? " up": "",
c->used ? " used": "",
VTY_NEWLINE,
sockunion2str(&c->remote_addr, buf, sizeof buf),
8 * family2addrsize(sockunion_family(&c->remote_addr)));
if (c->cur.peer) {
vty_out(ctx->vty,
"NBMA-Address: %s%s",
sockunion2str(&c->cur.peer->vc->remote.nbma, buf, sizeof buf),
VTY_NEWLINE);
vty_outln(ctx->vty,
"NBMA-Address: %s",
sockunion2str(&c->cur.peer->vc->remote.nbma,
buf, sizeof buf));
}
if (sockunion_family(&c->cur.remote_nbma_natoa) != AF_UNSPEC) {
vty_out(ctx->vty,
"NBMA-NAT-OA-Address: %s%s",
sockunion2str(&c->cur.remote_nbma_natoa, buf, sizeof buf),
VTY_NEWLINE);
vty_outln(ctx->vty,
"NBMA-NAT-OA-Address: %s",
sockunion2str(&c->cur.remote_nbma_natoa, buf, sizeof buf));
}
vty_out(ctx->vty, "%s", VTY_NEWLINE);
vty_outln(ctx->vty, VTYNL);
}
DEFUN(show_ip_nhrp, show_ip_nhrp_cmd,
@ -735,14 +731,14 @@ DEFUN(show_ip_nhrp, show_ip_nhrp_cmd,
} else if (argv[3]->text[0] == 's') {
nhrp_shortcut_foreach(ctx.afi, show_ip_nhrp_shortcut, &ctx);
} else {
vty_out(vty, "Status: ok%s%s", VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "Status: ok%s", VTY_NEWLINE);
ctx.count++;
for (ALL_LIST_ELEMENTS_RO(vrf_iflist(VRF_DEFAULT), node, ifp))
nhrp_cache_foreach(ifp, show_ip_opennhrp_cache, &ctx);
}
if (!ctx.count) {
vty_out(vty, "%% No entries%s", VTY_NEWLINE);
vty_outln (vty, "%% No entries");
return CMD_WARNING;
}
@ -754,13 +750,12 @@ static void show_dmvpn_entry(struct nhrp_vc *vc, void *ctx)
struct vty *vty = ctx;
char buf[2][SU_ADDRSTRLEN];
vty_out(vty, "%-24s %-24s %c %-4d %-24s%s",
vty_outln (vty, "%-24s %-24s %c %-4d %-24s",
sockunion2str(&vc->local.nbma, buf[0], sizeof buf[0]),
sockunion2str(&vc->remote.nbma, buf[1], sizeof buf[1]),
notifier_active(&vc->notifier_list) ? 'n' : ' ',
vc->ipsec,
vc->remote.id,
VTY_NEWLINE);
vc->remote.id);
}
DEFUN(show_dmvpn, show_dmvpn_cmd,
@ -768,13 +763,12 @@ DEFUN(show_dmvpn, show_dmvpn_cmd,
SHOW_STR
"DMVPN information\n")
{
vty_out(vty, "%-24s %-24s %-6s %-4s %-24s%s",
vty_outln (vty, "%-24s %-24s %-6s %-4s %-24s",
"Src",
"Dst",
"Flags",
"SAs",
"Identity",
VTY_NEWLINE);
"Identity");
nhrp_vc_foreach(show_dmvpn_entry, vty);
@ -821,11 +815,11 @@ DEFUN(clear_nhrp, clear_nhrp_cmd,
}
if (!ctx.count) {
vty_out(vty, "%% No entries%s", VTY_NEWLINE);
vty_outln (vty, "%% No entries");
return CMD_WARNING;
}
vty_out(vty, "%% %d entries cleared%s", ctx.count, VTY_NEWLINE);
vty_outln (vty, "%% %d entries cleared", ctx.count);
return CMD_SUCCESS;
}
@ -844,12 +838,10 @@ static void interface_config_write_nhrp_map(struct nhrp_cache *c, void *data)
if (!c->map) return;
if (sockunion_family(&c->remote_addr) != ctx->family) return;
vty_out(vty, " %s nhrp map %s %s%s",
vty_outln (vty, " %s nhrp map %s %s",
ctx->aficmd,
sockunion2str(&c->remote_addr, buf[0], sizeof buf[0]),
c->cur.type == NHRP_CACHE_LOCAL ? "local" :
sockunion2str(&c->cur.peer->vc->remote.nbma, buf[1], sizeof buf[1]),
VTY_NEWLINE);
c->cur.type == NHRP_CACHE_LOCAL ? "local" : sockunion2str(&c->cur.peer->vc->remote.nbma, buf[1], sizeof buf[1]));
}
static int interface_config_write(struct vty *vty)
@ -865,9 +857,9 @@ static int interface_config_write(struct vty *vty)
int i;
for (ALL_LIST_ELEMENTS_RO(vrf_iflist(VRF_DEFAULT), node, ifp)) {
vty_out(vty, "interface %s%s", ifp->name, VTY_NEWLINE);
vty_outln (vty, "interface %s", ifp->name);
if (ifp->desc)
vty_out(vty, " description %s%s", ifp->desc, VTY_NEWLINE);
vty_outln (vty, " description %s", ifp->desc);
nifp = ifp->info;
if (nifp->ipsec_profile) {
@ -876,11 +868,11 @@ static int interface_config_write(struct vty *vty)
if (nifp->ipsec_fallback_profile)
vty_out(vty, " fallback-profile %s",
nifp->ipsec_fallback_profile);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (nifp->source)
vty_out(vty, " tunnel source %s%s",
nifp->source, VTY_NEWLINE);
vty_outln (vty, " tunnel source %s",
nifp->source);
for (afi = 0; afi < AFI_MAX; afi++) {
struct nhrp_afi_data *ad = &nifp->afi[afi];
@ -888,28 +880,25 @@ static int interface_config_write(struct vty *vty)
aficmd = afi_to_cmd(afi);
if (ad->network_id)
vty_out(vty, " %s nhrp network-id %u%s",
aficmd, ad->network_id,
VTY_NEWLINE);
vty_outln (vty, " %s nhrp network-id %u",
aficmd,ad->network_id);
if (ad->holdtime != NHRPD_DEFAULT_HOLDTIME)
vty_out(vty, " %s nhrp holdtime %u%s",
aficmd, ad->holdtime,
VTY_NEWLINE);
vty_outln (vty, " %s nhrp holdtime %u",
aficmd,ad->holdtime);
if (ad->configured_mtu < 0)
vty_out(vty, " %s nhrp mtu opennhrp%s",
aficmd, VTY_NEWLINE);
vty_outln (vty, " %s nhrp mtu opennhrp",
aficmd);
else if (ad->configured_mtu)
vty_out(vty, " %s nhrp mtu %u%s",
aficmd, ad->configured_mtu,
VTY_NEWLINE);
vty_outln (vty, " %s nhrp mtu %u",
aficmd,ad->configured_mtu);
for (i = 0; interface_flags_desc[i].str != NULL; i++) {
if (!(ad->flags & interface_flags_desc[i].key))
continue;
vty_out(vty, " %s nhrp %s%s",
aficmd, interface_flags_desc[i].str, VTY_NEWLINE);
vty_outln (vty, " %s nhrp %s",
aficmd, interface_flags_desc[i].str);
}
mapctx = (struct write_map_ctx) {
@ -920,15 +909,14 @@ static int interface_config_write(struct vty *vty)
nhrp_cache_foreach(ifp, interface_config_write_nhrp_map, &mapctx);
list_for_each_entry(nhs, &ad->nhslist_head, nhslist_entry) {
vty_out(vty, " %s nhrp nhs %s nbma %s%s",
vty_outln (vty, " %s nhrp nhs %s nbma %s",
aficmd,
sockunion_family(&nhs->proto_addr) == AF_UNSPEC ? "dynamic" : sockunion2str(&nhs->proto_addr, buf, sizeof buf),
nhs->nbma_fqdn,
VTY_NEWLINE);
nhs->nbma_fqdn);
}
}
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return 0;

View File

@ -396,18 +396,18 @@ ospf6_area_show (struct vty *vty, struct ospf6_area *oa)
result = monotime_since(&oa->ts_spf, NULL);
if (result/TIMER_SECOND_MICRO > 0)
{
vty_out (vty, "SPF last executed %ld.%lds ago%s",
vty_outln (vty, "SPF last executed %ld.%lds ago",
result/TIMER_SECOND_MICRO,
result%TIMER_SECOND_MICRO, VTY_NEWLINE);
result % TIMER_SECOND_MICRO);
}
else
{
vty_out (vty, "SPF last executed %ldus ago%s",
result, VTY_NEWLINE);
vty_outln (vty, "SPF last executed %ldus ago",
result);
}
}
else
vty_out (vty, "SPF has not been run%s", VTY_NEWLINE);
vty_outln (vty, "SPF has not been run");
}
@ -968,8 +968,7 @@ DEFUN (ospf6_area_stub,
if (!ospf6_area_stub_set (ospf6, area))
{
vty_out (vty, "First deconfigure all virtual link through this area%s",
VTY_NEWLINE);
vty_outln (vty,"First deconfigure all virtual link through this area");
return CMD_WARNING;
}
@ -994,8 +993,7 @@ DEFUN (ospf6_area_stub_no_summary,
if (!ospf6_area_stub_set (ospf6, area))
{
vty_out (vty, "First deconfigure all virtual link through this area%s",
VTY_NEWLINE);
vty_outln (vty,"First deconfigure all virtual link through this area");
return CMD_WARNING;
}

View File

@ -295,11 +295,11 @@ ospf6_bfd_write_config(struct vty *vty, struct ospf6_interface *oi)
bfd_info = (struct bfd_info *)oi->bfd_info;
if (CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG))
vty_out (vty, " ipv6 ospf6 bfd %d %d %d%s",
vty_outln (vty, " ipv6 ospf6 bfd %d %d %d",
bfd_info->detect_mult, bfd_info->required_min_rx,
bfd_info->desired_min_tx, VTY_NEWLINE);
bfd_info->desired_min_tx);
else
vty_out (vty, " ipv6 ospf6 bfd%s", VTY_NEWLINE);
vty_outln (vty, " ipv6 ospf6 bfd");
}
/*

View File

@ -1307,7 +1307,7 @@ DEFUN (auto_cost_reference_bandwidth,
refbw = strtol (argv[idx_number]->arg, NULL, 10);
if (refbw < 1 || refbw > 4294967)
{
vty_out (vty, "reference-bandwidth value is invalid%s", VTY_NEWLINE);
vty_outln (vty, "reference-bandwidth value is invalid");
return CMD_WARNING;
}

View File

@ -929,9 +929,9 @@ ospf6_spf_config_write (struct vty *vty)
if (ospf6->spf_delay != OSPF_SPF_DELAY_DEFAULT ||
ospf6->spf_holdtime != OSPF_SPF_HOLDTIME_DEFAULT ||
ospf6->spf_max_holdtime != OSPF_SPF_MAX_HOLDTIME_DEFAULT)
vty_out (vty, " timers throttle spf %d %d %d%s",
vty_outln (vty, " timers throttle spf %d %d %d",
ospf6->spf_delay, ospf6->spf_holdtime,
ospf6->spf_max_holdtime, VTY_NEWLINE);
ospf6->spf_max_holdtime);
}

View File

@ -813,8 +813,7 @@ ospf6_show (struct vty *vty, struct ospf6 *o)
/* Redistribute configuration */
/* XXX */
vty_out (vty, " LSA minimum arrival %d msecs%s", o->lsa_minarrival,
VTY_NEWLINE);
vty_outln (vty, " LSA minimum arrival %d msecs",o->lsa_minarrival);
/* Show SPF parameters */
vty_out(vty, " Initial SPF scheduling delay %d millisec(s)%s"
@ -857,12 +856,12 @@ ospf6_show (struct vty *vty, struct ospf6 *o)
if (CHECK_FLAG(o->config_flags, OSPF6_LOG_ADJACENCY_CHANGES))
{
if (CHECK_FLAG(o->config_flags, OSPF6_LOG_ADJACENCY_DETAIL))
vty_out(vty, " All adjacency changes are logged%s",VTY_NEWLINE);
vty_outln (vty, " All adjacency changes are logged");
else
vty_out(vty, " Adjacency changes are logged%s",VTY_NEWLINE);
vty_outln (vty, " Adjacency changes are logged");
}
vty_out (vty, "%s",VTY_NEWLINE);
vty_outln (vty, "");
for (ALL_LIST_ELEMENTS_RO (o->area_list, n, oa))
ospf6_area_show (vty, oa);
@ -978,7 +977,7 @@ ospf6_distance_config_write (struct vty *vty)
struct ospf6_distance *odistance;
if (ospf6->distance_all)
vty_out (vty, " distance %u%s", ospf6->distance_all, VTY_NEWLINE);
vty_outln (vty, " distance %u", ospf6->distance_all);
if (ospf6->distance_intra
|| ospf6->distance_inter
@ -993,7 +992,7 @@ ospf6_distance_config_write (struct vty *vty)
if (ospf6->distance_external)
vty_out (vty, " external %u", ospf6->distance_external);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
for (rn = route_top (ospf6->distance_table); rn; rn = route_next (rn))
@ -1001,10 +1000,9 @@ ospf6_distance_config_write (struct vty *vty)
{
char buf[PREFIX_STRLEN];
vty_out (vty, " distance %u %s %s%s", odistance->distance,
vty_outln (vty, " distance %u %s %s", odistance->distance,
prefix2str (&rn->p, buf, sizeof (buf)),
odistance->access_list ? odistance->access_list : "",
VTY_NEWLINE);
odistance->access_list ? odistance->access_list : "");
}
return 0;
}
@ -1031,13 +1029,13 @@ config_write_ospf6 (struct vty *vty)
if (CHECK_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_CHANGES))
{
if (CHECK_FLAG(ospf6->config_flags, OSPF6_LOG_ADJACENCY_DETAIL))
vty_out(vty, " log-adjacency-changes detail%s", VTY_NEWLINE);
vty_outln (vty, " log-adjacency-changes detail");
else if (!DFLT_OSPF6_LOG_ADJACENCY_CHANGES)
vty_out(vty, " log-adjacency-changes%s", VTY_NEWLINE);
vty_outln (vty, " log-adjacency-changes");
}
else if (DFLT_OSPF6_LOG_ADJACENCY_CHANGES)
{
vty_out(vty, " no log-adjacency-changes%s", VTY_NEWLINE);
vty_outln (vty, " no log-adjacency-changes");
}
if (ospf6->ref_bandwidth != OSPF6_REFERENCE_BANDWIDTH)
@ -1046,8 +1044,7 @@ config_write_ospf6 (struct vty *vty)
/* LSA timers print. */
if (ospf6->lsa_minarrival != OSPF_MIN_LS_ARRIVAL)
vty_out (vty, " timers lsa min-arrival %d%s", ospf6->lsa_minarrival,
VTY_NEWLINE);
vty_outln (vty, " timers lsa min-arrival %d",ospf6->lsa_minarrival);
ospf6_stub_router_config_write (vty);
ospf6_redistribute_config_write (vty);

View File

@ -683,7 +683,7 @@ ospf6_distance_set (struct vty *vty, struct ospf6 *o,
ret = str2prefix_ipv6 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
@ -731,14 +731,14 @@ ospf6_distance_unset (struct vty *vty, struct ospf6 *o,
ret = str2prefix_ipv6 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
rn = route_node_lookup (o->distance_table, (struct prefix *) &p);
if (!rn)
{
vty_out (vty, "Cant't find specified prefix%s", VTY_NEWLINE);
vty_outln (vty, "Cant't find specified prefix");
return CMD_WARNING;
}

View File

@ -2192,17 +2192,16 @@ ospf_apiserver_show_info (struct vty *vty, struct ospf_lsa *lsa)
if (vty != NULL)
{
int i;
vty_out (vty, " Added using OSPF API: %u octets of opaque data %s%s",
vty_outln (vty, " Added using OSPF API: %u octets of opaque data %s",
opaquelen,
VALID_OPAQUE_INFO_LEN (lsa->data) ? "" : "(Invalid length?)",
VTY_NEWLINE);
VALID_OPAQUE_INFO_LEN(lsa->data) ? "" : "(Invalid length?)");
vty_out (vty, " Opaque data: ");
for (i = 0; i < opaquelen; i++)
{
vty_out (vty, "0x%x ", olsa->data[i]);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
else
{

View File

@ -307,11 +307,11 @@ ospf_bfd_write_config(struct vty *vty, struct ospf_if_params *params)
bfd_info = (struct bfd_info *)params->bfd_info;
if (CHECK_FLAG(bfd_info->flags, BFD_FLAG_PARAM_CFG))
vty_out (vty, " ip ospf bfd %d %d %d%s",
vty_outln (vty, " ip ospf bfd %d %d %d",
bfd_info->detect_mult, bfd_info->required_min_rx,
bfd_info->desired_min_tx, VTY_NEWLINE);
bfd_info->desired_min_tx);
else
vty_out (vty, " ip ospf bfd%s", VTY_NEWLINE);
vty_outln (vty, " ip ospf bfd");
}
/*

View File

@ -1568,95 +1568,92 @@ show_debugging_ospf_common (struct vty *vty, struct ospf *ospf)
int i;
if (ospf->instance)
vty_out (vty, "%sOSPF Instance: %d%s%s", VTY_NEWLINE, ospf->instance,
VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "%sOSPF Instance: %d%s", VTY_NEWLINE, ospf->instance,
VTY_NEWLINE);
vty_out (vty, "OSPF debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "OSPF debugging status:");
/* Show debug status for events. */
if (IS_DEBUG_OSPF(event,EVENT))
vty_out (vty, " OSPF event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF event debugging is on");
/* Show debug status for ISM. */
if (IS_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM)
vty_out (vty, " OSPF ISM debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF ISM debugging is on");
else
{
if (IS_DEBUG_OSPF (ism, ISM_STATUS))
vty_out (vty, " OSPF ISM status debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF ISM status debugging is on");
if (IS_DEBUG_OSPF (ism, ISM_EVENTS))
vty_out (vty, " OSPF ISM event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF ISM event debugging is on");
if (IS_DEBUG_OSPF (ism, ISM_TIMERS))
vty_out (vty, " OSPF ISM timer debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF ISM timer debugging is on");
}
/* Show debug status for NSM. */
if (IS_DEBUG_OSPF (nsm, NSM) == OSPF_DEBUG_NSM)
vty_out (vty, " OSPF NSM debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF NSM debugging is on");
else
{
if (IS_DEBUG_OSPF (nsm, NSM_STATUS))
vty_out (vty, " OSPF NSM status debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF NSM status debugging is on");
if (IS_DEBUG_OSPF (nsm, NSM_EVENTS))
vty_out (vty, " OSPF NSM event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF NSM event debugging is on");
if (IS_DEBUG_OSPF (nsm, NSM_TIMERS))
vty_out (vty, " OSPF NSM timer debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF NSM timer debugging is on");
}
/* Show debug status for OSPF Packets. */
for (i = 0; i < 5; i++)
if (IS_DEBUG_OSPF_PACKET (i, SEND) && IS_DEBUG_OSPF_PACKET (i, RECV))
{
vty_out (vty, " OSPF packet %s%s debugging is on%s",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " OSPF packet %s%s debugging is on",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "");
}
else
{
if (IS_DEBUG_OSPF_PACKET (i, SEND))
vty_out (vty, " OSPF packet %s send%s debugging is on%s",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " OSPF packet %s send%s debugging is on",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "");
if (IS_DEBUG_OSPF_PACKET (i, RECV))
vty_out (vty, " OSPF packet %s receive%s debugging is on%s",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "",
VTY_NEWLINE);
vty_outln (vty, " OSPF packet %s receive%s debugging is on",
lookup_msg(ospf_packet_type_str, i + 1, NULL),
IS_DEBUG_OSPF_PACKET (i, DETAIL) ? " detail" : "");
}
/* Show debug status for OSPF LSAs. */
if (IS_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
vty_out (vty, " OSPF LSA debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF LSA debugging is on");
else
{
if (IS_DEBUG_OSPF (lsa, LSA_GENERATE))
vty_out (vty, " OSPF LSA generation debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF LSA generation debugging is on");
if (IS_DEBUG_OSPF (lsa, LSA_FLOODING))
vty_out (vty, " OSPF LSA flooding debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF LSA flooding debugging is on");
if (IS_DEBUG_OSPF (lsa, LSA_INSTALL))
vty_out (vty, " OSPF LSA install debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF LSA install debugging is on");
if (IS_DEBUG_OSPF (lsa, LSA_REFRESH))
vty_out (vty, " OSPF LSA refresh debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF LSA refresh debugging is on");
}
/* Show debug status for Zebra. */
if (IS_DEBUG_OSPF (zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
vty_out (vty, " OSPF Zebra debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF Zebra debugging is on");
else
{
if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
vty_out (vty, " OSPF Zebra interface debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF Zebra interface debugging is on");
if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
vty_out (vty, " OSPF Zebra redistribute debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF Zebra redistribute debugging is on");
}
/* Show debug status for NSSA. */
if (IS_DEBUG_OSPF (nssa, NSSA) == OSPF_DEBUG_NSSA)
vty_out (vty, " OSPF NSSA debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " OSPF NSSA debugging is on");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
return CMD_SUCCESS;
}
@ -1725,56 +1722,56 @@ config_write_debug (struct vty *vty)
/* debug ospf ism (status|events|timers). */
if (IS_CONF_DEBUG_OSPF (ism, ISM) == OSPF_DEBUG_ISM)
vty_out (vty, "debug ospf%s ism%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s ism", str);
else
{
if (IS_CONF_DEBUG_OSPF (ism, ISM_STATUS))
vty_out (vty, "debug ospf%s ism status%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s ism status", str);
if (IS_CONF_DEBUG_OSPF (ism, ISM_EVENTS))
vty_out (vty, "debug ospf%s ism event%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s ism event", str);
if (IS_CONF_DEBUG_OSPF (ism, ISM_TIMERS))
vty_out (vty, "debug ospf%s ism timer%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s ism timer", str);
}
/* debug ospf nsm (status|events|timers). */
if (IS_CONF_DEBUG_OSPF (nsm, NSM) == OSPF_DEBUG_NSM)
vty_out (vty, "debug ospf%s nsm%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s nsm", str);
else
{
if (IS_CONF_DEBUG_OSPF (nsm, NSM_STATUS))
vty_out (vty, "debug ospf%s nsm status%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s nsm status", str);
if (IS_CONF_DEBUG_OSPF (nsm, NSM_EVENTS))
vty_out (vty, "debug ospf%s nsm event%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s nsm event", str);
if (IS_CONF_DEBUG_OSPF (nsm, NSM_TIMERS))
vty_out (vty, "debug ospf%s nsm timer%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s nsm timer", str);
}
/* debug ospf lsa (generate|flooding|install|refresh). */
if (IS_CONF_DEBUG_OSPF (lsa, LSA) == OSPF_DEBUG_LSA)
vty_out (vty, "debug ospf%s lsa%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s lsa", str);
else
{
if (IS_CONF_DEBUG_OSPF (lsa, LSA_GENERATE))
vty_out (vty, "debug ospf%s lsa generate%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s lsa generate", str);
if (IS_CONF_DEBUG_OSPF (lsa, LSA_FLOODING))
vty_out (vty, "debug ospf%s lsa flooding%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s lsa flooding", str);
if (IS_CONF_DEBUG_OSPF (lsa, LSA_INSTALL))
vty_out (vty, "debug ospf%s lsa install%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s lsa install", str);
if (IS_CONF_DEBUG_OSPF (lsa, LSA_REFRESH))
vty_out (vty, "debug ospf%s lsa refresh%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s lsa refresh", str);
write = 1;
}
/* debug ospf zebra (interface|redistribute). */
if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA) == OSPF_DEBUG_ZEBRA)
vty_out (vty, "debug ospf%s zebra%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s zebra", str);
else
{
if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA_INTERFACE))
vty_out (vty, "debug ospf%s zebra interface%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s zebra interface", str);
if (IS_CONF_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE))
vty_out (vty, "debug ospf%s zebra redistribute%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s zebra redistribute", str);
write = 1;
}
@ -1782,14 +1779,14 @@ config_write_debug (struct vty *vty)
/* debug ospf event. */
if (IS_CONF_DEBUG_OSPF (event, EVENT) == OSPF_DEBUG_EVENT)
{
vty_out (vty, "debug ospf%s event%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s event", str);
write = 1;
}
/* debug ospf nssa. */
if (IS_CONF_DEBUG_OSPF (nssa, NSSA) == OSPF_DEBUG_NSSA)
{
vty_out (vty, "debug ospf%s nssa%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s nssa", str);
write = 1;
}
@ -1799,7 +1796,7 @@ config_write_debug (struct vty *vty)
r &= conf_debug_ospf_packet[i] & (OSPF_DEBUG_SEND_RECV|OSPF_DEBUG_DETAIL);
if (r == (OSPF_DEBUG_SEND_RECV|OSPF_DEBUG_DETAIL))
{
vty_out (vty, "debug ospf%s packet all detail%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s packet all detail", str);
return 1;
}
@ -1809,12 +1806,11 @@ config_write_debug (struct vty *vty)
r &= conf_debug_ospf_packet[i] & OSPF_DEBUG_SEND_RECV;
if (r == OSPF_DEBUG_SEND_RECV)
{
vty_out (vty, "debug ospf%s packet all%s", str, VTY_NEWLINE);
vty_outln (vty, "debug ospf%s packet all", str);
for (i = 0; i < 5; i++)
if (conf_debug_ospf_packet[i] & OSPF_DEBUG_DETAIL)
vty_out (vty, "debug ospf%s packet %s detail%s", str,
type_str[i],
VTY_NEWLINE);
vty_outln (vty, "debug ospf%s packet %s detail", str,
type_str[i]);
return 1;
}
@ -1825,9 +1821,8 @@ config_write_debug (struct vty *vty)
if (conf_debug_ospf_packet[i] == 0)
continue;
vty_out (vty, "debug ospf%s packet %s%s%s", str,
type_str[i], detail_str[conf_debug_ospf_packet[i]],
VTY_NEWLINE);
vty_outln (vty, "debug ospf%s packet %s%s", str,
type_str[i],detail_str[conf_debug_ospf_packet[i]]);
write = 1;
}

View File

@ -1120,7 +1120,7 @@ ospf_opaque_config_write_router (struct vty *vty, struct ospf *ospf)
struct list *funclist;
if (CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE))
vty_out (vty, " capability opaque%s", VTY_NEWLINE);
vty_outln (vty, " capability opaque");
funclist = ospf_opaque_wildcard_funclist;
opaque_lsa_config_write_router_callback (funclist, vty);
@ -1189,14 +1189,13 @@ show_opaque_info_detail (struct vty *vty, struct ospf_lsa *lsa)
/* Switch output functionality by vty address. */
if (vty != NULL)
{
vty_out (vty, " Opaque-Type %u (%s)%s", opaque_type,
ospf_opaque_type_name (opaque_type), VTY_NEWLINE);
vty_out (vty, " Opaque-ID 0x%x%s", opaque_id, VTY_NEWLINE);
vty_outln (vty, " Opaque-Type %u (%s)", opaque_type,
ospf_opaque_type_name(opaque_type));
vty_outln (vty, " Opaque-ID 0x%x", opaque_id);
vty_out (vty, " Opaque-Info: %u octets of data%s%s",
vty_outln (vty, " Opaque-Info: %u octets of data%s",
ntohs (lsah->length) - OSPF_LSA_HEADER_SIZE,
VALID_OPAQUE_INFO_LEN(lsah) ? "" : "(Invalid length?)",
VTY_NEWLINE);
VALID_OPAQUE_INFO_LEN(lsah) ? "" : "(Invalid length?)");
}
else
{

View File

@ -906,10 +906,9 @@ show_vty_router_cap (struct vty *vty, struct ri_tlv_header *tlvh)
struct ri_tlv_router_cap *top = (struct ri_tlv_router_cap *) tlvh;
if (vty != NULL)
vty_out (vty, " Router Capabilities: 0x%x%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" Router Capabilities: 0x%x", ntohl (top->value));
vty_outln (vty, " Router Capabilities: 0x%x",ntohl(top->value));
else
zlog_debug (" Router Capabilities: 0x%x", ntohl (top->value));
return RI_TLV_SIZE (tlvh);
}
@ -922,20 +921,19 @@ show_vty_pce_subtlv_address (struct vty *vty, struct ri_tlv_header *tlvh)
if (ntohs (top->address.type) == PCE_ADDRESS_TYPE_IPV4)
{
if (vty != NULL)
vty_out (vty, " PCE Address: %s%s", inet_ntoa (top->address.value),
VTY_NEWLINE);
else
zlog_debug (" PCE Address: %s", inet_ntoa (top->address.value));
vty_outln (vty, " PCE Address: %s",inet_ntoa(top->address.value));
else
zlog_debug (" PCE Address: %s", inet_ntoa (top->address.value));
}
else
{
/* TODO: Add support to IPv6 with inet_ntop() */
if (vty != NULL)
vty_out (vty, " PCE Address: 0x%x%s",
ntohl (top->address.value.s_addr), VTY_NEWLINE);
else
zlog_debug (" PCE Address: 0x%x",
ntohl (top->address.value.s_addr));
vty_outln (vty, " PCE Address: 0x%x",
ntohl(top->address.value.s_addr));
else
zlog_debug (" PCE Address: 0x%x",
ntohl (top->address.value.s_addr));
}
return RI_TLV_SIZE (tlvh);
@ -948,10 +946,9 @@ show_vty_pce_subtlv_path_scope (struct vty *vty, struct ri_tlv_header *tlvh)
(struct ri_pce_subtlv_path_scope *) tlvh;
if (vty != NULL)
vty_out (vty, " PCE Path Scope: 0x%x%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" PCE Path Scope: 0x%x", ntohl (top->value));
vty_outln (vty, " PCE Path Scope: 0x%x",ntohl(top->value));
else
zlog_debug (" PCE Path Scope: 0x%x", ntohl (top->value));
return RI_TLV_SIZE (tlvh);
}
@ -966,18 +963,16 @@ show_vty_pce_subtlv_domain (struct vty *vty, struct ri_tlv_header *tlvh)
{
tmp.s_addr = top->value;
if (vty != NULL)
vty_out (vty, " PCE domain Area: %s%s", inet_ntoa (tmp),
VTY_NEWLINE);
else
zlog_debug (" PCE domain Area: %s", inet_ntoa (tmp));
vty_outln (vty, " PCE domain Area: %s",inet_ntoa(tmp));
else
zlog_debug (" PCE domain Area: %s", inet_ntoa (tmp));
}
else
{
if (vty != NULL)
vty_out (vty, " PCE domain AS: %d%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" PCE domain AS: %d", ntohl (top->value));
vty_outln (vty, " PCE domain AS: %d",ntohl(top->value));
else
zlog_debug (" PCE domain AS: %d", ntohl (top->value));
}
return RI_TLV_SIZE (tlvh);
}
@ -993,18 +988,16 @@ show_vty_pce_subtlv_neighbor (struct vty *vty, struct ri_tlv_header *tlvh)
{
tmp.s_addr = top->value;
if (vty != NULL)
vty_out (vty, " PCE neighbor Area: %s%s", inet_ntoa (tmp),
VTY_NEWLINE);
else
zlog_debug (" PCE neighbor Area: %s", inet_ntoa (tmp));
vty_outln (vty, " PCE neighbor Area: %s",inet_ntoa(tmp));
else
zlog_debug (" PCE neighbor Area: %s", inet_ntoa (tmp));
}
else
{
if (vty != NULL)
vty_out (vty, " PCE neighbor AS: %d%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" PCE neighbor AS: %d", ntohl (top->value));
vty_outln (vty, " PCE neighbor AS: %d",ntohl(top->value));
else
zlog_debug (" PCE neighbor AS: %d", ntohl (top->value));
}
return RI_TLV_SIZE (tlvh);
}
@ -1015,10 +1008,9 @@ show_vty_pce_subtlv_cap_flag (struct vty *vty, struct ri_tlv_header *tlvh)
struct ri_pce_subtlv_cap_flag *top = (struct ri_pce_subtlv_cap_flag *) tlvh;
if (vty != NULL)
vty_out (vty, " PCE Capabilities Flag: 0x%x%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" PCE Capabilities Flag: 0x%x", ntohl (top->value));
vty_outln (vty, " PCE Capabilities Flag: 0x%x",ntohl(top->value));
else
zlog_debug (" PCE Capabilities Flag: 0x%x", ntohl (top->value));
return RI_TLV_SIZE (tlvh);
}
@ -1027,11 +1019,11 @@ static u_int16_t
show_vty_unknown_tlv (struct vty *vty, struct ri_tlv_header *tlvh)
{
if (vty != NULL)
vty_out (vty, " Unknown TLV: [type(0x%x), length(0x%x)]%s",
ntohs (tlvh->type), ntohs (tlvh->length), VTY_NEWLINE);
else
zlog_debug (" Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs (tlvh->length));
vty_outln (vty, " Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs(tlvh->length));
else
zlog_debug (" Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs (tlvh->length));
return RI_TLV_SIZE (tlvh);
}
@ -1113,18 +1105,16 @@ ospf_router_info_config_write_router (struct vty *vty)
if (OspfRI.status == enabled)
{
if (OspfRI.scope == OSPF_OPAQUE_AS_LSA)
vty_out (vty, " router-info as%s", VTY_NEWLINE);
vty_outln (vty, " router-info as");
else
vty_out (vty, " router-info area %s%s", inet_ntoa (OspfRI.area_id),
VTY_NEWLINE);
vty_outln (vty, " router-info area %s",inet_ntoa(OspfRI.area_id));
if (pce->pce_address.header.type != 0)
vty_out (vty, " pce address %s%s",
inet_ntoa (pce->pce_address.address.value), VTY_NEWLINE);
vty_outln (vty, " pce address %s",
inet_ntoa(pce->pce_address.address.value));
if (pce->pce_cap_flag.header.type != 0)
vty_out (vty, " pce flag 0x%x%s", ntohl (pce->pce_cap_flag.value),
VTY_NEWLINE);
vty_outln (vty, " pce flag 0x%x",ntohl(pce->pce_cap_flag.value));
for (ALL_LIST_ELEMENTS_RO (pce->pce_domain, node, domain))
{
@ -1133,13 +1123,11 @@ ospf_router_info_config_write_router (struct vty *vty)
if (domain->type == PCE_DOMAIN_TYPE_AREA)
{
tmp.s_addr = domain->value;
vty_out (vty, " pce domain area %s%s", inet_ntoa (tmp),
VTY_NEWLINE);
vty_outln (vty, " pce domain area %s",inet_ntoa(tmp));
}
else
{
vty_out (vty, " pce domain as %d%s", ntohl (domain->value),
VTY_NEWLINE);
vty_outln (vty, " pce domain as %d",ntohl(domain->value));
}
}
}
@ -1151,20 +1139,19 @@ ospf_router_info_config_write_router (struct vty *vty)
if (neighbor->type == PCE_DOMAIN_TYPE_AREA)
{
tmp.s_addr = neighbor->value;
vty_out (vty, " pce neighbor area %s%s", inet_ntoa (tmp),
VTY_NEWLINE);
vty_outln (vty, " pce neighbor area %s",inet_ntoa(tmp));
}
else
{
vty_out (vty, " pce neighbor as %d%s",
ntohl (neighbor->value), VTY_NEWLINE);
vty_outln (vty, " pce neighbor as %d",
ntohl(neighbor->value));
}
}
}
if (pce->pce_scope.header.type != 0)
vty_out (vty, " pce scope 0x%x%s",
ntohl (OspfRI.pce_info.pce_scope.value), VTY_NEWLINE);
vty_outln (vty, " pce scope 0x%x",
ntohl(OspfRI.pce_info.pce_scope.value));
}
return;
}
@ -1194,8 +1181,8 @@ DEFUN (router_info,
{
if (!inet_aton (area, &OspfRI.area_id))
{
vty_out (vty, "%% specified Area ID %s is invalid%s",
area, VTY_NEWLINE);
vty_outln (vty, "%% specified Area ID %s is invalid",
area);
return CMD_WARNING;
}
scope = OSPF_OPAQUE_AREA_LSA;
@ -1270,7 +1257,7 @@ ospf_ri_enabled (struct vty *vty)
return 1;
if (vty)
vty_out (vty, "%% OSPF RI is not turned on%s", VTY_NEWLINE);
vty_outln (vty, "%% OSPF RI is not turned on");
return 0;
}
@ -1291,7 +1278,7 @@ DEFUN (pce_address,
if (!inet_aton (argv[idx_ipv4]->arg, &value))
{
vty_out (vty, "Please specify PCE Address by A.B.C.D%s", VTY_NEWLINE);
vty_outln (vty, "Please specify PCE Address by A.B.C.D");
return CMD_WARNING;
}
@ -1343,8 +1330,7 @@ DEFUN (pce_path_scope,
if (sscanf (argv[idx_bitpattern]->arg, "0x%x", &scope) != 1)
{
vty_out (vty, "pce_path_scope: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "pce_path_scope: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1398,8 +1384,7 @@ DEFUN (pce_domain,
if (sscanf (argv[idx_number]->arg, "%d", &as) != 1)
{
vty_out (vty, "pce_domain: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "pce_domain: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1436,8 +1421,7 @@ DEFUN (no_pce_domain,
if (sscanf (argv[idx_number]->arg, "%d", &as) != 1)
{
vty_out (vty, "no_pce_domain: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "no_pce_domain: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1471,8 +1455,7 @@ DEFUN (pce_neigbhor,
if (sscanf (argv[idx_number]->arg, "%d", &as) != 1)
{
vty_out (vty, "pce_neighbor: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "pce_neighbor: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1509,8 +1492,7 @@ DEFUN (no_pce_neighbor,
if (sscanf (argv[idx_number]->arg, "%d", &as) != 1)
{
vty_out (vty, "no_pce_neighbor: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "no_pce_neighbor: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1541,8 +1523,7 @@ DEFUN (pce_cap_flag,
if (sscanf (argv[idx_bitpattern]->arg, "0x%x", &cap) != 1)
{
vty_out (vty, "pce_cap_flag: fscanf: %s%s", safe_strerror (errno),
VTY_NEWLINE);
vty_outln (vty, "pce_cap_flag: fscanf: %s",safe_strerror(errno));
return CMD_WARNING;
}
@ -1587,13 +1568,13 @@ DEFUN (show_ip_ospf_router_info,
if (OspfRI.status == enabled)
{
vty_out (vty, "--- Router Information parameters ---%s", VTY_NEWLINE);
vty_outln (vty, "--- Router Information parameters ---");
show_vty_router_cap (vty, &OspfRI.router_cap.header);
}
else
{
if (vty != NULL)
vty_out (vty, " Router Information is disabled on this router%s", VTY_NEWLINE);
vty_outln (vty, " Router Information is disabled on this router");
}
return CMD_SUCCESS;
}
@ -1615,7 +1596,7 @@ DEFUN (show_ip_opsf_router_info_pce,
if (OspfRI.status == enabled)
{
vty_out (vty, "--- PCE parameters ---%s", VTY_NEWLINE);
vty_outln (vty, "--- PCE parameters ---");
if (pce->pce_address.header.type != 0)
show_vty_pce_subtlv_address (vty, &pce->pce_address.header);
@ -1641,8 +1622,7 @@ DEFUN (show_ip_opsf_router_info_pce,
}
else
{
vty_out (vty, " Router Information is disabled on this router%s",
VTY_NEWLINE);
vty_outln (vty," Router Information is disabled on this router");
}
return CMD_SUCCESS;

View File

@ -1671,10 +1671,9 @@ show_vty_router_addr (struct vty *vty, struct te_tlv_header *tlvh)
struct te_tlv_router_addr *top = (struct te_tlv_router_addr *) tlvh;
if (vty != NULL)
vty_out (vty, " Router-Address: %s%s", inet_ntoa (top->value),
VTY_NEWLINE);
else
zlog_debug (" Router-Address: %s", inet_ntoa (top->value));
vty_outln (vty, " Router-Address: %s",inet_ntoa(top->value));
else
zlog_debug (" Router-Address: %s", inet_ntoa (top->value));
return TLV_SIZE (tlvh);
}
@ -1685,10 +1684,9 @@ show_vty_link_header (struct vty *vty, struct te_tlv_header *tlvh)
struct te_tlv_link *top = (struct te_tlv_link *) tlvh;
if (vty != NULL)
vty_out (vty, " Link: %u octets of data%s", ntohs (top->header.length),
VTY_NEWLINE);
else
zlog_debug (" Link: %u octets of data", ntohs (top->header.length));
vty_outln (vty, " Link: %u octets of data",ntohs(top->header.length));
else
zlog_debug (" Link: %u octets of data", ntohs (top->header.length));
return TLV_HDR_SIZE; /* Here is special, not "TLV_SIZE". */
}
@ -1713,8 +1711,7 @@ show_vty_link_subtlv_link_type (struct vty *vty, struct te_tlv_header *tlvh)
}
if (vty != NULL)
vty_out (vty, " Link-Type: %s (%u)%s", cp, top->link_type.value,
VTY_NEWLINE);
vty_outln (vty, " Link-Type: %s (%u)", cp,top->link_type.value);
else
zlog_debug (" Link-Type: %s (%u)", cp, top->link_type.value);
@ -1728,9 +1725,9 @@ show_vty_link_subtlv_link_id (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_link_id *) tlvh;
if (vty != NULL)
vty_out (vty, " Link-ID: %s%s", inet_ntoa (top->value), VTY_NEWLINE);
else
zlog_debug (" Link-ID: %s", inet_ntoa (top->value));
vty_outln (vty, " Link-ID: %s", inet_ntoa(top->value));
else
zlog_debug (" Link-ID: %s", inet_ntoa (top->value));
return TLV_SIZE (tlvh);
}
@ -1746,17 +1743,16 @@ show_vty_link_subtlv_lclif_ipaddr (struct vty *vty,
n = ntohs (tlvh->length) / sizeof (top->value[0]);
if (vty != NULL)
vty_out (vty, " Local Interface IP Address(es): %d%s", n, VTY_NEWLINE);
vty_outln (vty, " Local Interface IP Address(es): %d", n);
else
zlog_debug (" Local Interface IP Address(es): %d", n);
for (i = 0; i < n; i++)
{
if (vty != NULL)
vty_out (vty, " #%d: %s%s", i, inet_ntoa (top->value[i]),
VTY_NEWLINE);
else
zlog_debug (" #%d: %s", i, inet_ntoa (top->value[i]));
vty_outln (vty, " #%d: %s", i,inet_ntoa(top->value[i]));
else
zlog_debug (" #%d: %s", i, inet_ntoa (top->value[i]));
}
return TLV_SIZE (tlvh);
}
@ -1771,17 +1767,16 @@ show_vty_link_subtlv_rmtif_ipaddr (struct vty *vty,
top = (struct te_link_subtlv_rmtif_ipaddr *) tlvh;
n = ntohs (tlvh->length) / sizeof (top->value[0]);
if (vty != NULL)
vty_out (vty, " Remote Interface IP Address(es): %d%s", n, VTY_NEWLINE);
vty_outln (vty, " Remote Interface IP Address(es): %d", n);
else
zlog_debug (" Remote Interface IP Address(es): %d", n);
for (i = 0; i < n; i++)
{
if (vty != NULL)
vty_out (vty, " #%d: %s%s", i, inet_ntoa (top->value[i]),
VTY_NEWLINE);
else
zlog_debug (" #%d: %s", i, inet_ntoa (top->value[i]));
vty_outln (vty, " #%d: %s", i,inet_ntoa(top->value[i]));
else
zlog_debug (" #%d: %s", i, inet_ntoa (top->value[i]));
}
return TLV_SIZE (tlvh);
}
@ -1793,11 +1788,11 @@ show_vty_link_subtlv_te_metric (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_te_metric *) tlvh;
if (vty != NULL)
vty_out (vty, " Traffic Engineering Metric: %u%s",
(u_int32_t) ntohl (top->value), VTY_NEWLINE);
else
zlog_debug (" Traffic Engineering Metric: %u",
(u_int32_t) ntohl (top->value));
vty_outln (vty, " Traffic Engineering Metric: %u",
(u_int32_t)ntohl(top->value));
else
zlog_debug (" Traffic Engineering Metric: %u",
(u_int32_t) ntohl (top->value));
return TLV_SIZE (tlvh);
}
@ -1812,7 +1807,7 @@ show_vty_link_subtlv_max_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval = ntohf (top->value);
if (vty != NULL)
vty_out (vty, " Maximum Bandwidth: %g (Bytes/sec)%s", fval, VTY_NEWLINE);
vty_outln (vty, " Maximum Bandwidth: %g (Bytes/sec)", fval);
else
zlog_debug (" Maximum Bandwidth: %g (Bytes/sec)", fval);
@ -1829,8 +1824,7 @@ show_vty_link_subtlv_max_rsv_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval = ntohf (top->value);
if (vty != NULL)
vty_out (vty, " Maximum Reservable Bandwidth: %g (Bytes/sec)%s", fval,
VTY_NEWLINE);
vty_outln (vty, " Maximum Reservable Bandwidth: %g (Bytes/sec)",fval);
else
zlog_debug (" Maximum Reservable Bandwidth: %g (Bytes/sec)", fval);
@ -1846,7 +1840,7 @@ show_vty_link_subtlv_unrsv_bw (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_unrsv_bw *) tlvh;
if (vty != NULL)
vty_out (vty, " Unreserved Bandwidth per Class Type in Byte/s:%s", VTY_NEWLINE);
vty_outln (vty, " Unreserved Bandwidth per Class Type in Byte/s:");
else
zlog_debug (" Unreserved Bandwidth per Class Type in Byte/s:");
for (i = 0; i < MAX_CLASS_TYPE; i+=2)
@ -1855,8 +1849,8 @@ show_vty_link_subtlv_unrsv_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval2 = ntohf (top->value[i+1]);
if (vty != NULL)
vty_out(vty, " [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)%s",
i, fval1, i+1, fval2, VTY_NEWLINE);
vty_outln (vty, " [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)",
i, fval1, i+1, fval2);
else
zlog_debug (" [%d]: %g (Bytes/sec),\t[%d]: %g (Bytes/sec)",
i, fval1, i+1, fval2);
@ -1872,11 +1866,11 @@ show_vty_link_subtlv_rsc_clsclr (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_rsc_clsclr *) tlvh;
if (vty != NULL)
vty_out (vty, " Resource class/color: 0x%x%s",
(u_int32_t) ntohl (top->value), VTY_NEWLINE);
else
zlog_debug (" Resource Class/Color: 0x%x",
(u_int32_t) ntohl (top->value));
vty_outln (vty, " Resource class/color: 0x%x",
(u_int32_t)ntohl(top->value));
else
zlog_debug (" Resource Class/Color: 0x%x",
(u_int32_t) ntohl (top->value));
return TLV_SIZE (tlvh);
}
@ -1890,10 +1884,8 @@ show_vty_link_subtlv_lrrid (struct vty *vty, struct te_tlv_header *tlvh)
if (vty != NULL)
{
vty_out (vty, " Local TE Router ID: %s%s", inet_ntoa (top->local),
VTY_NEWLINE);
vty_out (vty, " Remote TE Router ID: %s%s", inet_ntoa (top->remote),
VTY_NEWLINE);
vty_outln (vty, " Local TE Router ID: %s",inet_ntoa(top->local));
vty_outln (vty, " Remote TE Router ID: %s",inet_ntoa(top->remote));
}
else
{
@ -1913,10 +1905,8 @@ show_vty_link_subtlv_llri (struct vty *vty, struct te_tlv_header *tlvh)
if (vty != NULL)
{
vty_out (vty, " Link Local ID: %d%s", (u_int32_t) ntohl (top->local),
VTY_NEWLINE);
vty_out (vty, " Link Remote ID: %d%s", (u_int32_t) ntohl (top->remote),
VTY_NEWLINE);
vty_outln (vty, " Link Local ID: %d",(u_int32_t)ntohl(top->local));
vty_outln (vty, " Link Remote ID: %d",(u_int32_t)ntohl(top->remote));
}
else
{
@ -1935,11 +1925,11 @@ show_vty_link_subtlv_rip (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_rip *) tlvh;
if (vty != NULL)
vty_out (vty, " Inter-AS TE Remote ASBR IP address: %s%s",
inet_ntoa (top->value), VTY_NEWLINE);
else
zlog_debug (" Inter-AS TE Remote ASBR IP address: %s",
inet_ntoa (top->value));
vty_outln (vty, " Inter-AS TE Remote ASBR IP address: %s",
inet_ntoa(top->value));
else
zlog_debug (" Inter-AS TE Remote ASBR IP address: %s",
inet_ntoa (top->value));
return TLV_SIZE (tlvh);
}
@ -1952,10 +1942,9 @@ show_vty_link_subtlv_ras (struct vty *vty, struct te_tlv_header *tlvh)
top = (struct te_link_subtlv_ras *) tlvh;
if (vty != NULL)
vty_out (vty, " Inter-AS TE Remote AS number: %u%s", ntohl (top->value),
VTY_NEWLINE);
else
zlog_debug (" Inter-AS TE Remote AS number: %u", ntohl (top->value));
vty_outln (vty, " Inter-AS TE Remote AS number: %u",ntohl(top->value));
else
zlog_debug (" Inter-AS TE Remote AS number: %u", ntohl (top->value));
return TLV_SIZE (tlvh);
}
@ -1972,8 +1961,8 @@ show_vty_link_subtlv_av_delay (struct vty *vty, struct te_tlv_header *tlvh)
anomalous = (u_int32_t) ntohl (top->value) & TE_EXT_ANORMAL;
if (vty != NULL)
vty_out (vty, " %s Average Link Delay: %d (micro-sec)%s",
anomalous ? "Anomalous" : "Normal", delay, VTY_NEWLINE);
vty_outln (vty, " %s Average Link Delay: %d (micro-sec)",
anomalous ? "Anomalous" : "Normal", delay);
else
zlog_debug (" %s Average Link Delay: %d (micro-sec)",
anomalous ? "Anomalous" : "Normal", delay);
@ -1994,8 +1983,8 @@ show_vty_link_subtlv_mm_delay (struct vty *vty, struct te_tlv_header *tlvh)
high = (u_int32_t) ntohl (top->high);
if (vty != NULL)
vty_out (vty, " %s Min/Max Link Delay: %d/%d (micro-sec)%s",
anomalous ? "Anomalous" : "Normal", low, high, VTY_NEWLINE);
vty_outln (vty, " %s Min/Max Link Delay: %d/%d (micro-sec)",
anomalous ? "Anomalous" : "Normal", low, high);
else
zlog_debug (" %s Min/Max Link Delay: %d/%d (micro-sec)",
anomalous ? "Anomalous" : "Normal", low, high);
@ -2013,7 +2002,7 @@ show_vty_link_subtlv_delay_var (struct vty *vty, struct te_tlv_header *tlvh)
jitter = (u_int32_t) ntohl (top->value) & TE_EXT_MASK;
if (vty != NULL)
vty_out (vty, " Delay Variation: %d (micro-sec)%s", jitter, VTY_NEWLINE);
vty_outln (vty, " Delay Variation: %d (micro-sec)", jitter);
else
zlog_debug (" Delay Variation: %d (micro-sec)", jitter);
@ -2034,8 +2023,8 @@ show_vty_link_subtlv_pkt_loss (struct vty *vty, struct te_tlv_header *tlvh)
anomalous = (u_int32_t) ntohl (top->value) & TE_EXT_ANORMAL;
if (vty != NULL)
vty_out (vty, " %s Link Loss: %g (%%)%s", anomalous ? "Anomalous" : "Normal",
fval, VTY_NEWLINE);
vty_outln (vty, " %s Link Loss: %g (%%)", anomalous ? "Anomalous" : "Normal",
fval);
else
zlog_debug (" %s Link Loss: %g (%%)", anomalous ? "Anomalous" : "Normal",
fval);
@ -2053,8 +2042,8 @@ show_vty_link_subtlv_res_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval = ntohf (top->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Residual Bandwidth: %g (Bytes/sec)%s",
fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Residual Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Residual Bandwidth: %g (Bytes/sec)",
fval);
@ -2072,8 +2061,8 @@ show_vty_link_subtlv_ava_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval = ntohf (top->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Available Bandwidth: %g (Bytes/sec)%s",
fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Available Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Available Bandwidth: %g (Bytes/sec)",
fval);
@ -2091,8 +2080,8 @@ show_vty_link_subtlv_use_bw (struct vty *vty, struct te_tlv_header *tlvh)
fval = ntohf (top->value);
if (vty != NULL)
vty_out (vty, " Unidirectional Utilized Bandwidth: %g (Bytes/sec)%s",
fval, VTY_NEWLINE);
vty_outln (vty, " Unidirectional Utilized Bandwidth: %g (Bytes/sec)",
fval);
else
zlog_debug (" Unidirectional Utilized Bandwidth: %g (Bytes/sec)",
fval);
@ -2104,11 +2093,11 @@ static u_int16_t
show_vty_unknown_tlv (struct vty *vty, struct te_tlv_header *tlvh)
{
if (vty != NULL)
vty_out (vty, " Unknown TLV: [type(0x%x), length(0x%x)]%s",
ntohs (tlvh->type), ntohs (tlvh->length), VTY_NEWLINE);
else
zlog_debug (" Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs (tlvh->length));
vty_outln (vty, " Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs(tlvh->length));
else
zlog_debug (" Unknown TLV: [type(0x%x), length(0x%x)]",
ntohs (tlvh->type), ntohs (tlvh->length));
return TLV_SIZE (tlvh);
}
@ -2241,16 +2230,16 @@ ospf_mpls_te_config_write_router (struct vty *vty)
if (OspfMplsTE.status == enabled)
{
vty_out (vty, " mpls-te on%s", VTY_NEWLINE);
vty_out (vty, " mpls-te router-address %s%s",
inet_ntoa (OspfMplsTE.router_addr.value), VTY_NEWLINE);
vty_outln (vty, " mpls-te on");
vty_outln (vty, " mpls-te router-address %s",
inet_ntoa(OspfMplsTE.router_addr.value));
}
if (OspfMplsTE.inter_as == AS)
vty_out (vty, " mpls-te inter-as as%s", VTY_NEWLINE);
vty_outln (vty, " mpls-te inter-as as");
if (OspfMplsTE.inter_as == Area)
vty_out (vty, " mpls-te inter-as area %s %s",
inet_ntoa (OspfMplsTE.interas_areaid), VTY_NEWLINE);
vty_outln (vty, " mpls-te inter-as area %s ",
inet_ntoa(OspfMplsTE.interas_areaid));
return;
}
@ -2336,7 +2325,7 @@ DEFUN (ospf_mpls_te_router_addr,
if (! inet_aton (argv[idx_ipv4]->arg, &value))
{
vty_out (vty, "Please specify Router-Addr by A.B.C.D%s", VTY_NEWLINE);
vty_outln (vty, "Please specify Router-Addr by A.B.C.D");
return CMD_WARNING;
}
@ -2404,8 +2393,7 @@ set_inter_as_mode (struct vty *vty, const char *mode_name,
}
else
{
vty_out (vty, "Unknown mode. Please choose between as or area%s",
VTY_NEWLINE);
vty_outln (vty,"Unknown mode. Please choose between as or area");
return CMD_WARNING;
}
@ -2416,8 +2404,8 @@ set_inter_as_mode (struct vty *vty, const char *mode_name,
/* Register new callbacks regarding the flooding scope (AS or Area) */
if (ospf_mpls_te_register (mode) < 0)
{
vty_out (vty, "Internal error: Unable to register Inter-AS functions%s",
VTY_NEWLINE);
vty_outln (vty,
"Internal error: Unable to register Inter-AS functions");
return CMD_WARNING;
}
@ -2440,14 +2428,14 @@ set_inter_as_mode (struct vty *vty, const char *mode_name,
}
else
{
vty_out (vty, "Please change Inter-AS support to disable first before going to mode %s%s",
mode2text[mode], VTY_NEWLINE);
vty_outln (vty, "Please change Inter-AS support to disable first before going to mode %s",
mode2text[mode]);
return CMD_WARNING;
}
}
else
{
vty_out (vty, "mpls-te has not been turned on%s", VTY_NEWLINE);
vty_outln (vty, "mpls-te has not been turned on");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -2517,12 +2505,12 @@ DEFUN (show_ip_ospf_mpls_te_router,
{
if (OspfMplsTE.status == enabled)
{
vty_out (vty, "--- MPLS-TE router parameters ---%s", VTY_NEWLINE);
vty_outln (vty, "--- MPLS-TE router parameters ---");
if (ntohs (OspfMplsTE.router_addr.header.type) != 0)
show_vty_router_addr (vty, &OspfMplsTE.router_addr.header);
else if (vty != NULL)
vty_out (vty, " N/A%s", VTY_NEWLINE);
vty_outln (vty, " N/A");
}
return CMD_SUCCESS;
}
@ -2543,22 +2531,22 @@ show_mpls_te_link_sub (struct vty *vty, struct interface *ifp)
{
if (IS_INTER_AS (lp->type))
{
vty_out (vty, "-- Inter-AS TEv2 link parameters for %s --%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "-- Inter-AS TEv2 link parameters for %s --",
ifp->name);
}
else
{
/* MPLS-TE is not activate on this interface */
/* or this interface is passive and Inter-AS TEv2 is not activate */
vty_out (vty, " %s: MPLS-TE is disabled on this interface%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, " %s: MPLS-TE is disabled on this interface",
ifp->name);
return;
}
}
else
{
vty_out (vty, "-- MPLS-TE link parameters for %s --%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, "-- MPLS-TE link parameters for %s --",
ifp->name);
}
if (TLV_TYPE(lp->link_type) != 0)
@ -2597,12 +2585,12 @@ show_mpls_te_link_sub (struct vty *vty, struct interface *ifp)
show_vty_link_subtlv_ava_bw (vty, &lp->ava_bw.header);
if (TLV_TYPE(lp->use_bw) != 0)
show_vty_link_subtlv_use_bw (vty, &lp->use_bw.header);
vty_out (vty, "---------------%s%s", VTY_NEWLINE, VTY_NEWLINE);
vty_outln (vty, "---------------%s", VTY_NEWLINE);
}
else
{
vty_out (vty, " %s: MPLS-TE is disabled on this interface%s",
ifp->name, VTY_NEWLINE);
vty_outln (vty, " %s: MPLS-TE is disabled on this interface",
ifp->name);
}
return;
@ -2632,7 +2620,7 @@ DEFUN (show_ip_ospf_mpls_te_link,
else
{
if ((ifp = if_lookup_by_name (argv[idx_interface]->arg, VRF_DEFAULT)) == NULL)
vty_out (vty, "No such interface name%s", VTY_NEWLINE);
vty_outln (vty, "No such interface name");
else
show_mpls_te_link_sub (vty, ifp);
}

View File

@ -3404,8 +3404,7 @@ show_ip_ospf_interface_sub (struct vty *vty, struct ospf *ospf, struct interface
if (nbr == NULL)
{
if (!use_json)
vty_out (vty, " No backup designated router on this network%s",
VTY_NEWLINE);
vty_outln (vty, " No backup designated router on this network");
}
else
{

View File

@ -1445,7 +1445,7 @@ ospf_distance_set (struct vty *vty, struct ospf *ospf,
ret = str2prefix_ipv4 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
@ -1493,14 +1493,14 @@ ospf_distance_unset (struct vty *vty, struct ospf *ospf,
ret = str2prefix_ipv4 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
rn = route_node_lookup (ospf->distance_table, (struct prefix *) &p);
if (!rn)
{
vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE);
vty_outln (vty, "Can't find specified prefix");
return CMD_WARNING;
}

View File

@ -52,11 +52,11 @@ pim_bfd_write_config (struct vty *vty, struct interface *ifp)
return;
if (CHECK_FLAG (bfd_info->flags, BFD_FLAG_PARAM_CFG))
vty_out (vty, " ip pim bfd %d %d %d%s",
vty_outln (vty, " ip pim bfd %d %d %d",
bfd_info->detect_mult, bfd_info->required_min_rx,
bfd_info->desired_min_tx, VTY_NEWLINE);
bfd_info->desired_min_tx);
else
vty_out (vty, " ip pim bfd%s", VTY_NEWLINE);
vty_outln (vty, " ip pim bfd");
}
/*

File diff suppressed because it is too large Load Diff

View File

@ -1533,15 +1533,15 @@ pim_msdp_config_write(struct vty *vty)
if (mg->src_ip.s_addr != INADDR_ANY) {
pim_inet4_dump("<src?>", mg->src_ip, src_str, sizeof(src_str));
vty_out(vty, "ip msdp mesh-group %s source %s%s",
mg->mesh_group_name, src_str, VTY_NEWLINE);
vty_outln (vty, "ip msdp mesh-group %s source %s",
mg->mesh_group_name, src_str);
++count;
}
for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbrnode, mbr)) {
pim_inet4_dump("<mbr?>", mbr->mbr_ip, mbr_str, sizeof(mbr_str));
vty_out(vty, "ip msdp mesh-group %s member %s%s",
mg->mesh_group_name, mbr_str, VTY_NEWLINE);
vty_outln (vty, "ip msdp mesh-group %s member %s",
mg->mesh_group_name, mbr_str);
++count;
}
return count;

View File

@ -821,13 +821,13 @@ pim_rp_config_write (struct vty *vty)
continue;
if (rp_info->plist)
vty_out(vty, "ip pim rp %s prefix-list %s%s",
vty_outln (vty, "ip pim rp %s prefix-list %s",
inet_ntop(AF_INET, &rp_info->rp.rpf_addr.u.prefix4, rp_buffer, 32),
rp_info->plist, VTY_NEWLINE);
rp_info->plist);
else
vty_out(vty, "ip pim rp %s %s%s",
vty_outln (vty, "ip pim rp %s %s",
inet_ntop(AF_INET, &rp_info->rp.rpf_addr.u.prefix4, rp_buffer, 32),
prefix2str(&rp_info->group, group_buffer, 32), VTY_NEWLINE);
prefix2str(&rp_info->group, group_buffer, 32));
count++;
}
@ -878,7 +878,8 @@ pim_rp_show_information (struct vty *vty, u_char uj)
if (uj)
json = json_object_new_object();
else
vty_out (vty, "RP address group/prefix-list OIF I am RP%s", VTY_NEWLINE);
vty_outln (vty,
"RP address group/prefix-list OIF I am RP");
for (ALL_LIST_ELEMENTS_RO (qpim_rp_list, node, rp_info))
{
@ -930,9 +931,9 @@ pim_rp_show_information (struct vty *vty, u_char uj)
vty_out (vty, "%-10s ", "(Unknown)");
if (rp_info->i_am_rp)
vty_out (vty, "yes%s", VTY_NEWLINE);
vty_outln (vty, "yes");
else
vty_out (vty, "no%s", VTY_NEWLINE);
vty_outln (vty, "no");
}
prev_rp_info = rp_info;
@ -943,7 +944,8 @@ pim_rp_show_information (struct vty *vty, u_char uj)
if (prev_rp_info && json_rp_rows)
json_object_object_add(json, inet_ntoa (prev_rp_info->rp.rpf_addr.u.prefix4), json_rp_rows);
vty_out (vty, "%s%s", json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY), VTY_NEWLINE);
vty_outln (vty, "%s",
json_object_to_json_string_ext(json, JSON_C_TO_STRING_PRETTY));
json_object_free(json);
}
}

View File

@ -337,9 +337,10 @@ pim_static_write_mroute (struct vty *vty, struct interface *ifp)
{
struct interface *oifp = pim_if_find_by_vif_index (i);
if (sroute->source.s_addr == 0)
vty_out (vty, " ip mroute %s %s%s", oifp->name, gbuf, VTY_NEWLINE);
vty_outln (vty, " ip mroute %s %s", oifp->name, gbuf);
else
vty_out (vty, " ip mroute %s %s %s%s", oifp->name, gbuf, sbuf, VTY_NEWLINE);
vty_outln (vty, " ip mroute %s %s %s", oifp->name, gbuf,
sbuf);
count ++;
}
}

View File

@ -46,97 +46,97 @@ pim_debug_config_write (struct vty *vty)
int writes = 0;
if (PIM_DEBUG_MSDP_EVENTS) {
vty_out(vty, "debug msdp events%s", VTY_NEWLINE);
vty_outln (vty, "debug msdp events");
++writes;
}
if (PIM_DEBUG_MSDP_PACKETS) {
vty_out(vty, "debug msdp packets%s", VTY_NEWLINE);
vty_outln (vty, "debug msdp packets");
++writes;
}
if (PIM_DEBUG_MSDP_INTERNAL) {
vty_out(vty, "debug msdp internal%s", VTY_NEWLINE);
vty_outln (vty, "debug msdp internal");
++writes;
}
if (PIM_DEBUG_IGMP_EVENTS) {
vty_out(vty, "debug igmp events%s", VTY_NEWLINE);
vty_outln (vty, "debug igmp events");
++writes;
}
if (PIM_DEBUG_IGMP_PACKETS) {
vty_out(vty, "debug igmp packets%s", VTY_NEWLINE);
vty_outln (vty, "debug igmp packets");
++writes;
}
if (PIM_DEBUG_IGMP_TRACE) {
vty_out(vty, "debug igmp trace%s", VTY_NEWLINE);
vty_outln (vty, "debug igmp trace");
++writes;
}
if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
vty_out(vty, "debug igmp trace detail%s", VTY_NEWLINE);
vty_outln (vty, "debug igmp trace detail");
++writes;
}
if (PIM_DEBUG_MROUTE) {
vty_out(vty, "debug mroute%s", VTY_NEWLINE);
vty_outln (vty, "debug mroute");
++writes;
}
if (PIM_DEBUG_MROUTE_DETAIL) {
vty_out (vty, "debug mroute detail%s", VTY_NEWLINE);
vty_outln (vty, "debug mroute detail");
++writes;
}
if (PIM_DEBUG_PIM_EVENTS) {
vty_out(vty, "debug pim events%s", VTY_NEWLINE);
vty_outln (vty, "debug pim events");
++writes;
}
if (PIM_DEBUG_PIM_PACKETS) {
vty_out(vty, "debug pim packets%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packets");
++writes;
}
if (PIM_DEBUG_PIM_PACKETDUMP_SEND) {
vty_out(vty, "debug pim packet-dump send%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packet-dump send");
++writes;
}
if (PIM_DEBUG_PIM_PACKETDUMP_RECV) {
vty_out(vty, "debug pim packet-dump receive%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packet-dump receive");
++writes;
}
if (PIM_DEBUG_PIM_TRACE) {
vty_out(vty, "debug pim trace%s", VTY_NEWLINE);
vty_outln (vty, "debug pim trace");
++writes;
}
if (PIM_DEBUG_PIM_TRACE_DETAIL) {
vty_out(vty, "debug pim trace detail%s", VTY_NEWLINE);
vty_outln (vty, "debug pim trace detail");
++writes;
}
if (PIM_DEBUG_ZEBRA) {
vty_out(vty, "debug pim zebra%s", VTY_NEWLINE);
vty_outln (vty, "debug pim zebra");
++writes;
}
if (PIM_DEBUG_SSMPINGD) {
vty_out(vty, "debug ssmpingd%s", VTY_NEWLINE);
vty_outln (vty, "debug ssmpingd");
++writes;
}
if (PIM_DEBUG_PIM_HELLO) {
vty_out (vty, "debug pim packets hello%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packets hello");
++writes;
}
if (PIM_DEBUG_PIM_J_P) {
vty_out (vty, "debug pim packets joins%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packets joins");
++writes;
}
if (PIM_DEBUG_PIM_REG) {
vty_out (vty, "debug pim packets register%s", VTY_NEWLINE);
vty_outln (vty, "debug pim packets register");
++writes;
}
if (PIM_DEBUG_STATIC) {
vty_out (vty, "debug pim static%s", VTY_NEWLINE);
vty_outln (vty, "debug pim static");
++writes;
}
@ -152,7 +152,7 @@ int pim_global_config_write(struct vty *vty)
if (!pimg->send_v6_secondary)
{
vty_out (vty, "no ip pim send-v6-secondary%s", VTY_NEWLINE);
vty_outln (vty, "no ip pim send-v6-secondary");
++writes;
}
@ -160,63 +160,62 @@ int pim_global_config_write(struct vty *vty)
if (qpim_register_suppress_time != PIM_REGISTER_SUPPRESSION_TIME_DEFAULT)
{
vty_out (vty, "ip pim register-suppress-time %d%s",
qpim_register_suppress_time, VTY_NEWLINE);
vty_outln (vty, "ip pim register-suppress-time %d",
qpim_register_suppress_time);
++writes;
}
if (qpim_t_periodic != PIM_DEFAULT_T_PERIODIC)
{
vty_out (vty, "ip pim join-prune-interval %d%s",
qpim_t_periodic, VTY_NEWLINE);
vty_outln (vty, "ip pim join-prune-interval %d",
qpim_t_periodic);
++writes;
}
if (qpim_keep_alive_time != PIM_KEEPALIVE_PERIOD)
{
vty_out (vty, "ip pim keep-alive-timer %d%s",
qpim_keep_alive_time, VTY_NEWLINE);
vty_outln (vty, "ip pim keep-alive-timer %d",
qpim_keep_alive_time);
++writes;
}
if (qpim_packet_process != PIM_DEFAULT_PACKET_PROCESS)
{
vty_out (vty, "ip pim packets %d%s",
qpim_packet_process, VTY_NEWLINE);
vty_outln (vty, "ip pim packets %d",
qpim_packet_process);
++writes;
}
if (ssm->plist_name)
{
vty_out (vty, "ip pim ssm prefix-list %s%s",
ssm->plist_name, VTY_NEWLINE);
vty_outln (vty, "ip pim ssm prefix-list %s",
ssm->plist_name);
++writes;
}
if (pimg->spt.switchover == PIM_SPT_INFINITY)
{
if (pimg->spt.plist)
vty_out (vty, "ip pim spt-switchover infinity-and-beyond prefix-list %s%s",
pimg->spt.plist, VTY_NEWLINE);
vty_outln (vty, "ip pim spt-switchover infinity-and-beyond prefix-list %s",
pimg->spt.plist);
else
vty_out (vty, "ip pim spt-switchover infinity-and-beyond%s",
VTY_NEWLINE);
vty_outln (vty,"ip pim spt-switchover infinity-and-beyond");
++writes;
}
if (qpim_ecmp_rebalance_enable)
{
vty_out (vty, "ip pim ecmp rebalance%s", VTY_NEWLINE);
vty_outln (vty, "ip pim ecmp rebalance");
++writes;
}
else if (qpim_ecmp_enable)
{
vty_out (vty, "ip pim ecmp%s", VTY_NEWLINE);
vty_outln (vty, "ip pim ecmp");
++writes;
}
if (qpim_ssmpingd_list) {
struct listnode *node;
struct ssmpingd_sock *ss;
vty_out(vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
++writes;
for (ALL_LIST_ELEMENTS_RO(qpim_ssmpingd_list, node, ss)) {
char source_str[INET_ADDRSTRLEN];
pim_inet4_dump("<src?>", ss->source_addr, source_str, sizeof(source_str));
vty_out(vty, "ip ssmpingd %s%s", source_str, VTY_NEWLINE);
vty_outln (vty, "ip ssmpingd %s", source_str);
++writes;
}
}
@ -233,21 +232,20 @@ int pim_interface_config_write(struct vty *vty)
for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp)) {
/* IF name */
vty_out(vty, "interface %s%s", ifp->name, VTY_NEWLINE);
vty_outln (vty, "interface %s", ifp->name);
++writes;
if (ifp->info) {
struct pim_interface *pim_ifp = ifp->info;
if (PIM_IF_TEST_PIM(pim_ifp->options)) {
vty_out(vty, " ip pim sm%s", VTY_NEWLINE);
vty_outln (vty, " ip pim sm");
++writes;
}
/* IF ip pim drpriority */
if (pim_ifp->pim_dr_priority != PIM_DEFAULT_DR_PRIORITY) {
vty_out(vty, " ip pim drpriority %u%s", pim_ifp->pim_dr_priority,
VTY_NEWLINE);
vty_outln (vty, " ip pim drpriority %u",pim_ifp->pim_dr_priority);
++writes;
}
@ -256,7 +254,7 @@ int pim_interface_config_write(struct vty *vty)
vty_out(vty, " ip pim hello %d", pim_ifp->pim_hello_period);
if (pim_ifp->pim_default_holdtime != -1)
vty_out(vty, " %d", pim_ifp->pim_default_holdtime);
vty_out(vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
/* update source */
@ -264,40 +262,37 @@ int pim_interface_config_write(struct vty *vty)
char src_str[INET_ADDRSTRLEN];
pim_inet4_dump("<src?>", pim_ifp->update_source, src_str,
sizeof(src_str));
vty_out(vty, " ip pim use-source %s%s", src_str, VTY_NEWLINE);
vty_outln (vty, " ip pim use-source %s", src_str);
++writes;
}
/* IF ip igmp */
if (PIM_IF_TEST_IGMP(pim_ifp->options)) {
vty_out(vty, " ip igmp%s", VTY_NEWLINE);
vty_outln (vty, " ip igmp");
++writes;
}
/* ip igmp version */
if (pim_ifp->igmp_version != IGMP_DEFAULT_VERSION)
{
vty_out(vty, " ip igmp version %d%s",
pim_ifp->igmp_version,
VTY_NEWLINE);
vty_outln (vty, " ip igmp version %d",
pim_ifp->igmp_version);
++writes;
}
/* IF ip igmp query-interval */
if (pim_ifp->igmp_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL)
{
vty_out(vty, " ip igmp query-interval %d%s",
pim_ifp->igmp_default_query_interval,
VTY_NEWLINE);
vty_outln (vty, " ip igmp query-interval %d",
pim_ifp->igmp_default_query_interval);
++writes;
}
/* IF ip igmp query-max-response-time */
if (pim_ifp->igmp_query_max_response_time_dsec != IGMP_QUERY_MAX_RESPONSE_TIME_DSEC)
{
vty_out(vty, " ip igmp query-max-response-time %d%s",
pim_ifp->igmp_query_max_response_time_dsec,
VTY_NEWLINE);
vty_outln (vty, " ip igmp query-max-response-time %d",
pim_ifp->igmp_query_max_response_time_dsec);
++writes;
}
@ -310,16 +305,15 @@ int pim_interface_config_write(struct vty *vty)
char source_str[INET_ADDRSTRLEN];
pim_inet4_dump("<grp?>", ij->group_addr, group_str, sizeof(group_str));
inet_ntop(AF_INET, &ij->source_addr, source_str, sizeof(source_str));
vty_out(vty, " ip igmp join %s %s%s",
group_str, source_str,
VTY_NEWLINE);
vty_outln (vty, " ip igmp join %s %s",
group_str,source_str);
++writes;
}
}
writes += pim_static_write_mroute (vty, ifp);
}
vty_out(vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
++writes;
/* PIM BFD write */
pim_bfd_write_config (vty, ifp);

View File

@ -1151,11 +1151,11 @@ pim_zebra_zclient_update (struct vty *vty)
vty_out(vty, "Zclient update socket: ");
if (zclient) {
vty_out(vty, "%d failures=%d%s", zclient->sock,
zclient->fail, VTY_NEWLINE);
vty_outln (vty, "%d failures=%d", zclient->sock,
zclient->fail);
}
else {
vty_out(vty, "<null zclient>%s", VTY_NEWLINE);
vty_outln (vty, "<null zclient>");
}
}

View File

@ -438,11 +438,11 @@ pim_zlookup_show_ip_multicast (struct vty *vty)
{
vty_out(vty, "Zclient lookup socket: ");
if (zlookup) {
vty_out(vty, "%d failures=%d%s", zlookup->sock,
zlookup->fail, VTY_NEWLINE);
vty_outln (vty, "%d failures=%d", zlookup->sock,
zlookup->fail);
}
else {
vty_out(vty, "<null zclient>%s", VTY_NEWLINE);
vty_outln (vty, "<null zclient>");
}
}

View File

@ -34,31 +34,28 @@ DEFUN (show_debugging_rip,
DEBUG_STR
RIP_STR)
{
vty_out (vty, "RIP debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "RIP debugging status:");
if (IS_RIP_DEBUG_EVENT)
vty_out (vty, " RIP event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " RIP event debugging is on");
if (IS_RIP_DEBUG_PACKET)
{
if (IS_RIP_DEBUG_SEND && IS_RIP_DEBUG_RECV)
{
vty_out (vty, " RIP packet debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIP packet debugging is on");
}
else
{
if (IS_RIP_DEBUG_SEND)
vty_out (vty, " RIP packet send debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIP packet send debugging is on");
else
vty_out (vty, " RIP packet receive debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIP packet receive debugging is on");
}
}
if (IS_RIP_DEBUG_ZEBRA)
vty_out (vty, " RIP zebra debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " RIP zebra debugging is on");
return CMD_SUCCESS;
}
@ -195,31 +192,28 @@ config_write_debug (struct vty *vty)
if (IS_RIP_DEBUG_EVENT)
{
vty_out (vty, "debug rip events%s", VTY_NEWLINE);
vty_outln (vty, "debug rip events");
write++;
}
if (IS_RIP_DEBUG_PACKET)
{
if (IS_RIP_DEBUG_SEND && IS_RIP_DEBUG_RECV)
{
vty_out (vty, "debug rip packet%s",
VTY_NEWLINE);
vty_outln (vty,"debug rip packet");
write++;
}
else
{
if (IS_RIP_DEBUG_SEND)
vty_out (vty, "debug rip packet send%s",
VTY_NEWLINE);
vty_outln (vty,"debug rip packet send");
else
vty_out (vty, "debug rip packet recv%s",
VTY_NEWLINE);
vty_outln (vty,"debug rip packet recv");
write++;
}
}
if (IS_RIP_DEBUG_ZEBRA)
{
vty_out (vty, "debug rip zebra%s", VTY_NEWLINE);
vty_outln (vty, "debug rip zebra");
write++;
}
return write;

View File

@ -1233,8 +1233,8 @@ DEFUN (rip_network,
if (ret < 0)
{
vty_out (vty, "There is a same network configuration %s%s", argv[idx_ipv4_word]->arg,
VTY_NEWLINE);
vty_outln (vty, "There is a same network configuration %s",
argv[idx_ipv4_word]->arg);
return CMD_WARNING;
}
@ -1263,8 +1263,8 @@ DEFUN (no_rip_network,
if (ret < 0)
{
vty_out (vty, "Can't find network configuration %s%s", argv[idx_ipv4_word]->arg,
VTY_NEWLINE);
vty_outln (vty, "Can't find network configuration %s",
argv[idx_ipv4_word]->arg);
return CMD_WARNING;
}
@ -1286,7 +1286,7 @@ DEFUN (rip_neighbor,
if (ret <= 0)
{
vty_out (vty, "Please specify address by A.B.C.D%s", VTY_NEWLINE);
vty_outln (vty, "Please specify address by A.B.C.D");
return CMD_WARNING;
}
@ -1311,7 +1311,7 @@ DEFUN (no_rip_neighbor,
if (ret <= 0)
{
vty_out (vty, "Please specify address by A.B.C.D%s", VTY_NEWLINE);
vty_outln (vty, "Please specify address by A.B.C.D");
return CMD_WARNING;
}
@ -1574,7 +1574,7 @@ DEFUN (ip_rip_authentication_mode,
{
if (auth_type != RIP_AUTH_MD5)
{
vty_out (vty, "auth length argument only valid for md5%s", VTY_NEWLINE);
vty_outln (vty, "auth length argument only valid for md5");
return CMD_WARNING;
}
if (strmatch ("rfc", authlen))
@ -1631,14 +1631,14 @@ DEFUN (ip_rip_authentication_string,
if (strlen (argv[idx_line]->arg) > 16)
{
vty_out (vty, "%% RIPv2 authentication string must be shorter than 16%s",
VTY_NEWLINE);
vty_outln (vty,
"%% RIPv2 authentication string must be shorter than 16");
return CMD_WARNING;
}
if (ri->key_chain)
{
vty_out (vty, "%% key-chain configuration exists%s", VTY_NEWLINE);
vty_outln (vty, "%% key-chain configuration exists");
return CMD_WARNING;
}
@ -1691,8 +1691,7 @@ DEFUN (ip_rip_authentication_key_chain,
if (ri->auth_str)
{
vty_out (vty, "%% authentication string configuration exists%s",
VTY_NEWLINE);
vty_outln (vty,"%% authentication string configuration exists");
return CMD_WARNING;
}
@ -1878,48 +1877,43 @@ rip_interface_config_write (struct vty *vty)
(!ri->key_chain) )
continue;
vty_out (vty, "interface %s%s", ifp->name,
VTY_NEWLINE);
vty_outln (vty, "interface %s",ifp->name);
if (ifp->desc)
vty_out (vty, " description %s%s", ifp->desc,
VTY_NEWLINE);
vty_outln (vty, " description %s",ifp->desc);
/* Split horizon. */
if (ri->split_horizon != ri->split_horizon_default)
{
switch (ri->split_horizon) {
case RIP_SPLIT_HORIZON:
vty_out (vty, " ip rip split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " ip rip split-horizon");
break;
case RIP_SPLIT_HORIZON_POISONED_REVERSE:
vty_out (vty, " ip rip split-horizon poisoned-reverse%s",
VTY_NEWLINE);
vty_outln (vty," ip rip split-horizon poisoned-reverse");
break;
case RIP_NO_SPLIT_HORIZON:
default:
vty_out (vty, " no ip rip split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " no ip rip split-horizon");
break;
}
}
/* RIP version setting. */
if (ri->ri_send != RI_RIP_UNSPEC)
vty_out (vty, " ip rip send version %s%s",
lookup_msg(ri_version_msg, ri->ri_send, NULL),
VTY_NEWLINE);
vty_outln (vty, " ip rip send version %s",
lookup_msg(ri_version_msg, ri->ri_send, NULL));
if (ri->ri_receive != RI_RIP_UNSPEC)
vty_out (vty, " ip rip receive version %s%s",
lookup_msg(ri_version_msg, ri->ri_receive, NULL),
VTY_NEWLINE);
vty_outln (vty, " ip rip receive version %s ",
lookup_msg(ri_version_msg, ri->ri_receive, NULL));
if (ri->v2_broadcast)
vty_out (vty, " ip rip v2-broadcast%s", VTY_NEWLINE);
vty_outln (vty, " ip rip v2-broadcast");
/* RIP authentication. */
if (ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD)
vty_out (vty, " ip rip authentication mode text%s", VTY_NEWLINE);
vty_outln (vty, " ip rip authentication mode text");
if (ri->auth_type == RIP_AUTH_MD5)
{
@ -1928,18 +1922,18 @@ rip_interface_config_write (struct vty *vty)
vty_out (vty, " auth-length old-ripd");
else
vty_out (vty, " auth-length rfc");
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
if (ri->auth_str)
vty_out (vty, " ip rip authentication string %s%s",
ri->auth_str, VTY_NEWLINE);
vty_outln (vty, " ip rip authentication string %s",
ri->auth_str);
if (ri->key_chain)
vty_out (vty, " ip rip authentication key-chain %s%s",
ri->key_chain, VTY_NEWLINE);
vty_outln (vty, " ip rip authentication key-chain %s",
ri->key_chain);
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
}
return 0;
}
@ -1954,36 +1948,33 @@ config_write_rip_network (struct vty *vty, int config_mode)
/* Network type RIP enable interface statement. */
for (node = route_top (rip_enable_network); node; node = route_next (node))
if (node->info)
vty_out (vty, "%s%s/%d%s",
vty_outln (vty, "%s%s/%d",
config_mode ? " network " : " ",
inet_ntoa (node->p.u.prefix4),
node->p.prefixlen,
VTY_NEWLINE);
node->p.prefixlen);
/* Interface name RIP enable statement. */
for (i = 0; i < vector_active (rip_enable_interface); i++)
if ((ifname = vector_slot (rip_enable_interface, i)) != NULL)
vty_out (vty, "%s%s%s",
vty_outln (vty, "%s%s",
config_mode ? " network " : " ",
ifname,
VTY_NEWLINE);
ifname);
/* RIP neighbors listing. */
for (node = route_top (rip->neighbor); node; node = route_next (node))
if (node->info)
vty_out (vty, "%s%s%s",
vty_outln (vty, "%s%s",
config_mode ? " neighbor " : " ",
inet_ntoa (node->p.u.prefix4),
VTY_NEWLINE);
inet_ntoa(node->p.u.prefix4));
/* RIP passive interface listing. */
if (config_mode) {
if (passive_default)
vty_out (vty, " passive-interface default%s", VTY_NEWLINE);
vty_outln (vty, " passive-interface default");
for (i = 0; i < vector_active (Vrip_passive_nondefault); i++)
if ((ifname = vector_slot (Vrip_passive_nondefault, i)) != NULL)
vty_out (vty, " %spassive-interface %s%s",
(passive_default ? "no " : ""), ifname, VTY_NEWLINE);
vty_outln (vty, " %spassive-interface %s",
(passive_default ? "no " : ""), ifname);
}
return 0;

View File

@ -117,7 +117,7 @@ rip_offset_list_set (struct vty *vty, const char *alist, const char *direct_str,
direct = RIP_OFFSET_LIST_OUT;
else
{
vty_out (vty, "Invalid direction: %s%s", direct_str, VTY_NEWLINE);
vty_outln (vty, "Invalid direction: %s", direct_str);
return CMD_WARNING;
}
@ -125,7 +125,7 @@ rip_offset_list_set (struct vty *vty, const char *alist, const char *direct_str,
metric = atoi (metric_str);
if (metric < 0 || metric > 16)
{
vty_out (vty, "Invalid metric: %s%s", metric_str, VTY_NEWLINE);
vty_outln (vty, "Invalid metric: %s", metric_str);
return CMD_WARNING;
}
@ -156,7 +156,7 @@ rip_offset_list_unset (struct vty *vty, const char *alist,
direct = RIP_OFFSET_LIST_OUT;
else
{
vty_out (vty, "Invalid direction: %s%s", direct_str, VTY_NEWLINE);
vty_outln (vty, "Invalid direction: %s", direct_str);
return CMD_WARNING;
}
@ -164,7 +164,7 @@ rip_offset_list_unset (struct vty *vty, const char *alist,
metric = atoi (metric_str);
if (metric < 0 || metric > 16)
{
vty_out (vty, "Invalid metric: %s%s", metric_str, VTY_NEWLINE);
vty_outln (vty, "Invalid metric: %s", metric_str);
return CMD_WARNING;
}
@ -188,7 +188,7 @@ rip_offset_list_unset (struct vty *vty, const char *alist,
}
else
{
vty_out (vty, "Can't find offset-list%s", VTY_NEWLINE);
vty_outln (vty, "Can't find offset-list");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -397,28 +397,26 @@ config_write_rip_offset_list (struct vty *vty)
if (! offset->ifname)
{
if (offset->direct[RIP_OFFSET_LIST_IN].alist_name)
vty_out (vty, " offset-list %s in %d%s",
vty_outln (vty, " offset-list %s in %d",
offset->direct[RIP_OFFSET_LIST_IN].alist_name,
offset->direct[RIP_OFFSET_LIST_IN].metric,
VTY_NEWLINE);
offset->direct[RIP_OFFSET_LIST_IN].metric);
if (offset->direct[RIP_OFFSET_LIST_OUT].alist_name)
vty_out (vty, " offset-list %s out %d%s",
vty_outln (vty, " offset-list %s out %d",
offset->direct[RIP_OFFSET_LIST_OUT].alist_name,
offset->direct[RIP_OFFSET_LIST_OUT].metric,
VTY_NEWLINE);
offset->direct[RIP_OFFSET_LIST_OUT].metric);
}
else
{
if (offset->direct[RIP_OFFSET_LIST_IN].alist_name)
vty_out (vty, " offset-list %s in %d %s%s",
vty_outln (vty, " offset-list %s in %d %s",
offset->direct[RIP_OFFSET_LIST_IN].alist_name,
offset->direct[RIP_OFFSET_LIST_IN].metric,
offset->ifname, VTY_NEWLINE);
offset->ifname);
if (offset->direct[RIP_OFFSET_LIST_OUT].alist_name)
vty_out (vty, " offset-list %s out %d %s%s",
vty_outln (vty, " offset-list %s out %d %s",
offset->direct[RIP_OFFSET_LIST_OUT].alist_name,
offset->direct[RIP_OFFSET_LIST_OUT].metric,
offset->ifname, VTY_NEWLINE);
offset->ifname);
}
}

View File

@ -185,11 +185,10 @@ rip_peer_display (struct vty *vty)
for (ALL_LIST_ELEMENTS (peer_list, node, nnode, peer))
{
vty_out (vty, " %-16s %9d %9d %9d %s%s", inet_ntoa (peer->addr),
vty_outln (vty, " %-16s %9d %9d %9d %s", inet_ntoa (peer->addr),
peer->recv_badpackets, peer->recv_badroutes,
ZEBRA_RIP_DISTANCE_DEFAULT,
rip_peer_uptime (peer, timebuf, RIP_UPTIME_LEN),
VTY_NEWLINE);
rip_peer_uptime(peer, timebuf, RIP_UPTIME_LEN));
}
}

View File

@ -347,8 +347,7 @@ DEFUN (rip_redistribute_type,
}
}
vty_out(vty, "Invalid type %s%s", argv[1]->arg,
VTY_NEWLINE);
vty_outln (vty, "Invalid type %s",argv[1]->arg);
return CMD_WARNING;
}
@ -374,8 +373,7 @@ DEFUN (no_rip_redistribute_type,
}
}
vty_out(vty, "Invalid type %s%s", argv[2]->arg,
VTY_NEWLINE);
vty_outln (vty, "Invalid type %s",argv[2]->arg);
return CMD_WARNING;
}
@ -402,7 +400,7 @@ DEFUN (rip_redistribute_type_routemap,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -430,7 +428,7 @@ DEFUN (no_rip_redistribute_type_routemap,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -460,7 +458,7 @@ DEFUN (rip_redistribute_type_metric,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -488,7 +486,7 @@ DEFUN (no_rip_redistribute_type_metric,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -522,7 +520,7 @@ DEFUN (rip_redistribute_type_metric_routemap,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -559,7 +557,7 @@ DEFUN (no_rip_redistribute_type_metric_routemap,
}
}
vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->text, VTY_NEWLINE);
vty_outln (vty, "Invalid type %s", argv[idx_protocol]->text);
return CMD_WARNING;
}
@ -616,13 +614,13 @@ config_write_zebra (struct vty *vty)
{
if (! zclient->enable)
{
vty_out (vty, "no router zebra%s", VTY_NEWLINE);
vty_outln (vty, "no router zebra");
return 1;
}
else if (! vrf_bitmap_check (zclient->redist[AFI_IP][ZEBRA_ROUTE_RIP], VRF_DEFAULT))
{
vty_out (vty, "router zebra%s", VTY_NEWLINE);
vty_out (vty, " no redistribute rip%s", VTY_NEWLINE);
vty_outln (vty, "router zebra");
vty_outln (vty, " no redistribute rip");
return 1;
}
return 0;
@ -642,24 +640,20 @@ config_write_rip_redistribute (struct vty *vty, int config_mode)
if (rip->route_map[i].metric_config)
{
if (rip->route_map[i].name)
vty_out (vty, " redistribute %s metric %d route-map %s%s",
vty_outln (vty, " redistribute %s metric %d route-map %s",
zebra_route_string(i), rip->route_map[i].metric,
rip->route_map[i].name,
VTY_NEWLINE);
rip->route_map[i].name);
else
vty_out (vty, " redistribute %s metric %d%s",
zebra_route_string(i), rip->route_map[i].metric,
VTY_NEWLINE);
vty_outln (vty, " redistribute %s metric %d",
zebra_route_string(i),rip->route_map[i].metric);
}
else
{
if (rip->route_map[i].name)
vty_out (vty, " redistribute %s route-map %s%s",
zebra_route_string(i), rip->route_map[i].name,
VTY_NEWLINE);
vty_outln (vty, " redistribute %s route-map %s",
zebra_route_string(i),rip->route_map[i].name);
else
vty_out (vty, " redistribute %s%s", zebra_route_string(i),
VTY_NEWLINE);
vty_outln (vty, " redistribute %s",zebra_route_string(i));
}
}
else

View File

@ -2847,8 +2847,7 @@ DEFUN (rip_version,
version = atoi (argv[idx_number]->arg);
if (version != RIPv1 && version != RIPv2)
{
vty_out (vty, "invalid rip version %d%s", version,
VTY_NEWLINE);
vty_outln (vty, "invalid rip version %d",version);
return CMD_WARNING;
}
rip->version_send = version;
@ -2886,7 +2885,7 @@ DEFUN (rip_route,
ret = str2prefix_ipv4 (argv[idx_ipv4_prefixlen]->arg, &p);
if (ret < 0)
{
vty_out (vty, "Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "Malformed address");
return CMD_WARNING;
}
apply_mask_ipv4 (&p);
@ -2896,7 +2895,7 @@ DEFUN (rip_route,
if (node->info)
{
vty_out (vty, "There is already same static route.%s", VTY_NEWLINE);
vty_outln (vty, "There is already same static route.");
route_unlock_node (node);
return CMD_WARNING;
}
@ -2923,7 +2922,7 @@ DEFUN (no_rip_route,
ret = str2prefix_ipv4 (argv[idx_ipv4_prefixlen]->arg, &p);
if (ret < 0)
{
vty_out (vty, "Malformed address%s", VTY_NEWLINE);
vty_outln (vty, "Malformed address");
return CMD_WARNING;
}
apply_mask_ipv4 (&p);
@ -2932,8 +2931,7 @@ DEFUN (no_rip_route,
node = route_node_lookup (rip->route, (struct prefix *) &p);
if (! node)
{
vty_out (vty, "Can't find route %s.%s", argv[idx_ipv4_prefixlen]->arg,
VTY_NEWLINE);
vty_outln (vty, "Can't find route %s.",argv[idx_ipv4_prefixlen]->arg);
return CMD_WARNING;
}
@ -3016,21 +3014,21 @@ DEFUN (rip_timers,
update = strtoul (argv[idx_number]->arg, &endptr, 10);
if (update > RIP_TIMER_MAX || update < RIP_TIMER_MIN || *endptr != '\0')
{
vty_out (vty, "update timer value error%s", VTY_NEWLINE);
vty_outln (vty, "update timer value error");
return CMD_WARNING;
}
timeout = strtoul (argv[idx_number_2]->arg, &endptr, 10);
if (timeout > RIP_TIMER_MAX || timeout < RIP_TIMER_MIN || *endptr != '\0')
{
vty_out (vty, "timeout timer value error%s", VTY_NEWLINE);
vty_outln (vty, "timeout timer value error");
return CMD_WARNING;
}
garbage = strtoul (argv[idx_number_3]->arg, &endptr, 10);
if (garbage > RIP_TIMER_MAX || garbage < RIP_TIMER_MIN || *endptr != '\0')
{
vty_out (vty, "garbage timer value error%s", VTY_NEWLINE);
vty_outln (vty, "garbage timer value error");
return CMD_WARNING;
}
@ -3104,7 +3102,7 @@ rip_distance_set (struct vty *vty, const char *distance_str, const char *ip_str,
ret = str2prefix_ipv4 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
@ -3150,14 +3148,14 @@ rip_distance_unset (struct vty *vty, const char *distance_str,
ret = str2prefix_ipv4 (ip_str, &p);
if (ret == 0)
{
vty_out (vty, "Malformed prefix%s", VTY_NEWLINE);
vty_outln (vty, "Malformed prefix");
return CMD_WARNING;
}
rn = route_node_lookup (rip_distance_table, (struct prefix *)&p);
if (! rn)
{
vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE);
vty_outln (vty, "Can't find specified prefix");
return CMD_WARNING;
}
@ -3243,24 +3241,21 @@ rip_distance_show (struct vty *vty)
int header = 1;
char buf[BUFSIZ];
vty_out (vty, " Distance: (default is %d)%s",
rip->distance ? rip->distance :ZEBRA_RIP_DISTANCE_DEFAULT,
VTY_NEWLINE);
vty_outln (vty, " Distance: (default is %d)",
rip->distance ? rip->distance : ZEBRA_RIP_DISTANCE_DEFAULT);
for (rn = route_top (rip_distance_table); rn; rn = route_next (rn))
if ((rdistance = rn->info) != NULL)
{
if (header)
{
vty_out (vty, " Address Distance List%s",
VTY_NEWLINE);
vty_outln (vty," Address Distance List");
header = 0;
}
sprintf (buf, "%s/%d", inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen);
vty_out (vty, " %-20s %4d %s%s",
vty_outln (vty, " %-20s %4d %s",
buf, rdistance->distance,
rdistance->access_list ? rdistance->access_list : "",
VTY_NEWLINE);
rdistance->access_list ? rdistance->access_list : "");
}
}
@ -3391,7 +3386,7 @@ DEFUN (rip_allow_ecmp,
{
if (rip->ecmp)
{
vty_out (vty, "ECMP is already enabled.%s", VTY_NEWLINE);
vty_outln (vty, "ECMP is already enabled.");
return CMD_WARNING;
}
@ -3408,7 +3403,7 @@ DEFUN (no_rip_allow_ecmp,
{
if (!rip->ecmp)
{
vty_out (vty, "ECMP is already disabled.%s", VTY_NEWLINE);
vty_outln (vty, "ECMP is already disabled.");
return CMD_WARNING;
}
@ -3479,12 +3474,12 @@ DEFUN (show_ip_rip,
if (! rip)
return CMD_SUCCESS;
vty_out (vty, "Codes: R - RIP, C - connected, S - Static, O - OSPF, B - BGP%s"
vty_outln (vty, "Codes: R - RIP, C - connected, S - Static, O - OSPF, B - BGP%s"
"Sub-codes:%s"
" (n) - normal, (s) - static, (d) - default, (r) - redistribute,%s"
" (i) - interface%s%s"
" Network Next Hop Metric From Tag Time%s",
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
" Network Next Hop Metric From Tag Time",
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
for (np = route_top (rip->table); np; np = route_next (np))
if ((list = np->info) != NULL)
@ -3539,7 +3534,7 @@ DEFUN (show_ip_rip,
vty_out (vty, "%3"ROUTE_TAG_PRI, (route_tag_t)rinfo->tag);
}
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
}
return CMD_SUCCESS;
}
@ -3563,37 +3558,35 @@ DEFUN (show_ip_rip_status,
if (! rip)
return CMD_SUCCESS;
vty_out (vty, "Routing Protocol is \"rip\"%s", VTY_NEWLINE);
vty_outln (vty, "Routing Protocol is \"rip\"");
vty_out (vty, " Sending updates every %ld seconds with +/-50%%,",
rip->update_time);
vty_out (vty, " next due in %lu seconds%s",
thread_timer_remain_second(rip->t_update),
VTY_NEWLINE);
vty_outln (vty, " next due in %lu seconds",
thread_timer_remain_second(rip->t_update));
vty_out (vty, " Timeout after %ld seconds,", rip->timeout_time);
vty_out (vty, " garbage collect after %ld seconds%s", rip->garbage_time,
VTY_NEWLINE);
vty_outln (vty, " garbage collect after %ld seconds",rip->garbage_time);
/* Filtering status show. */
config_show_distribute (vty);
/* Default metric information. */
vty_out (vty, " Default redistribution metric is %d%s",
rip->default_metric, VTY_NEWLINE);
vty_outln (vty, " Default redistribution metric is %d",
rip->default_metric);
/* Redistribute information. */
vty_out (vty, " Redistributing:");
config_write_rip_redistribute (vty, 0);
vty_out (vty, "%s", VTY_NEWLINE);
vty_outln (vty, "");
vty_out (vty, " Default version control: send version %s,",
lookup_msg(ri_version_msg,rip->version_send, NULL));
if (rip->version_recv == RI_RIP_VERSION_1_AND_2)
vty_out (vty, " receive any version %s", VTY_NEWLINE);
vty_outln (vty, " receive any version ");
else
vty_out (vty, " receive version %s %s",
lookup_msg(ri_version_msg,rip->version_recv, NULL), VTY_NEWLINE);
vty_outln (vty, " receive version %s ",
lookup_msg(ri_version_msg,rip->version_recv, NULL));
vty_out (vty, " Interface Send Recv Key-chain%s", VTY_NEWLINE);
vty_outln (vty, " Interface Send Recv Key-chain");
for (ALL_LIST_ELEMENTS_RO (vrf_iflist (VRF_DEFAULT), node, ifp))
{
@ -3614,15 +3607,14 @@ DEFUN (show_ip_rip_status,
else
receive_version = lookup_msg(ri_version_msg, ri->ri_receive, NULL);
vty_out (vty, " %-17s%-3s %-3s %s%s", ifp->name,
vty_outln (vty, " %-17s%-3s %-3s %s", ifp->name,
send_version,
receive_version,
ri->key_chain ? ri->key_chain : "",
VTY_NEWLINE);
ri->key_chain ? ri->key_chain : "");
}
}
vty_out (vty, " Routing for Networks:%s", VTY_NEWLINE);
vty_outln (vty, " Routing for Networks:");
config_write_rip_network (vty, 0);
{
@ -3635,16 +3627,17 @@ DEFUN (show_ip_rip_status,
{
if (!found_passive)
{
vty_out (vty, " Passive Interface(s):%s", VTY_NEWLINE);
vty_outln (vty, " Passive Interface(s):");
found_passive = 1;
}
vty_out (vty, " %s%s", ifp->name, VTY_NEWLINE);
vty_outln (vty, " %s", ifp->name);
}
}
}
vty_out (vty, " Routing Information Sources:%s", VTY_NEWLINE);
vty_out (vty, " Gateway BadPackets BadRoutes Distance Last Update%s", VTY_NEWLINE);
vty_outln (vty, " Routing Information Sources:");
vty_outln (vty,
" Gateway BadPackets BadRoutes Distance Last Update");
rip_peer_display (vty);
rip_distance_show (vty);
@ -3663,34 +3656,31 @@ config_write_rip (struct vty *vty)
if (rip)
{
/* Router RIP statement. */
vty_out (vty, "router rip%s", VTY_NEWLINE);
vty_outln (vty, "router rip");
write++;
/* RIP version statement. Default is RIP version 2. */
if (rip->version_send != RI_RIP_VERSION_2
|| rip->version_recv != RI_RIP_VERSION_1_AND_2)
vty_out (vty, " version %d%s", rip->version_send,
VTY_NEWLINE);
vty_outln (vty, " version %d",rip->version_send);
/* RIP timer configuration. */
if (rip->update_time != RIP_UPDATE_TIMER_DEFAULT
|| rip->timeout_time != RIP_TIMEOUT_TIMER_DEFAULT
|| rip->garbage_time != RIP_GARBAGE_TIMER_DEFAULT)
vty_out (vty, " timers basic %lu %lu %lu%s",
vty_outln (vty, " timers basic %lu %lu %lu",
rip->update_time,
rip->timeout_time,
rip->garbage_time,
VTY_NEWLINE);
rip->garbage_time);
/* Default information configuration. */
if (rip->default_information)
{
if (rip->default_information_route_map)
vty_out (vty, " default-information originate route-map %s%s",
rip->default_information_route_map, VTY_NEWLINE);
vty_outln (vty, " default-information originate route-map %s",
rip->default_information_route_map);
else
vty_out (vty, " default-information originate%s",
VTY_NEWLINE);
vty_outln (vty," default-information originate");
}
/* Redistribute configuration. */
@ -3704,8 +3694,8 @@ config_write_rip (struct vty *vty)
/* RIP default metric configuration */
if (rip->default_metric != RIP_DEFAULT_METRIC_DEFAULT)
vty_out (vty, " default-metric %d%s",
rip->default_metric, VTY_NEWLINE);
vty_outln (vty, " default-metric %d",
rip->default_metric);
/* Distribute configuration. */
write += config_write_distribute (vty);
@ -3715,27 +3705,25 @@ config_write_rip (struct vty *vty)
/* Distance configuration. */
if (rip->distance)
vty_out (vty, " distance %d%s", rip->distance, VTY_NEWLINE);
vty_outln (vty, " distance %d", rip->distance);
/* RIP source IP prefix distance configuration. */
for (rn = route_top (rip_distance_table); rn; rn = route_next (rn))
if ((rdistance = rn->info) != NULL)
vty_out (vty, " distance %d %s/%d %s%s", rdistance->distance,
vty_outln (vty, " distance %d %s/%d %s", rdistance->distance,
inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen,
rdistance->access_list ? rdistance->access_list : "",
VTY_NEWLINE);
rdistance->access_list ? rdistance->access_list : "");
/* ECMP configuration. */
if (rip->ecmp)
vty_out (vty, " allow-ecmp%s", VTY_NEWLINE);
vty_outln (vty, " allow-ecmp");
/* RIP static route configuration. */
for (rn = route_top (rip->route); rn; rn = route_next (rn))
if (rn->info)
vty_out (vty, " route %s/%d%s",
vty_outln (vty, " route %s/%d",
inet_ntoa (rn->p.u.prefix4),
rn->p.prefixlen,
VTY_NEWLINE);
rn->p.prefixlen);
}
return write;

View File

@ -35,31 +35,28 @@ DEFUN (show_debugging_ripng,
DEBUG_STR
"RIPng configuration\n")
{
vty_out (vty, "RIPng debugging status:%s", VTY_NEWLINE);
vty_outln (vty, "RIPng debugging status:");
if (IS_RIPNG_DEBUG_EVENT)
vty_out (vty, " RIPng event debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " RIPng event debugging is on");
if (IS_RIPNG_DEBUG_PACKET)
{
if (IS_RIPNG_DEBUG_SEND && IS_RIPNG_DEBUG_RECV)
{
vty_out (vty, " RIPng packet debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIPng packet debugging is on");
}
else
{
if (IS_RIPNG_DEBUG_SEND)
vty_out (vty, " RIPng packet send debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIPng packet send debugging is on");
else
vty_out (vty, " RIPng packet receive debugging is on%s",
VTY_NEWLINE);
vty_outln (vty," RIPng packet receive debugging is on");
}
}
if (IS_RIPNG_DEBUG_ZEBRA)
vty_out (vty, " RIPng zebra debugging is on%s", VTY_NEWLINE);
vty_outln (vty, " RIPng zebra debugging is on");
return CMD_SUCCESS;
}
@ -197,31 +194,28 @@ config_write_debug (struct vty *vty)
if (IS_RIPNG_DEBUG_EVENT)
{
vty_out (vty, "debug ripng events%s", VTY_NEWLINE);
vty_outln (vty, "debug ripng events");
write++;
}
if (IS_RIPNG_DEBUG_PACKET)
{
if (IS_RIPNG_DEBUG_SEND && IS_RIPNG_DEBUG_RECV)
{
vty_out (vty, "debug ripng packet%s",
VTY_NEWLINE);
vty_outln (vty,"debug ripng packet");
write++;
}
else
{
if (IS_RIPNG_DEBUG_SEND)
vty_out (vty, "debug ripng packet send%s",
VTY_NEWLINE);
vty_outln (vty,"debug ripng packet send");
else
vty_out (vty, "debug ripng packet recv%s",
VTY_NEWLINE);
vty_outln (vty,"debug ripng packet recv");
write++;
}
}
if (IS_RIPNG_DEBUG_ZEBRA)
{
vty_out (vty, "debug ripng zebra%s", VTY_NEWLINE);
vty_outln (vty, "debug ripng zebra");
write++;
}
return write;

View File

@ -916,27 +916,25 @@ ripng_network_write (struct vty *vty, int config_mode)
if (node->info)
{
struct prefix *p = &node->p;
vty_out (vty, "%s%s/%d%s",
vty_outln (vty, "%s%s/%d",
config_mode ? " network " : " ",
inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
p->prefixlen,
VTY_NEWLINE);
p->prefixlen);
}
/* Write enable interface. */
for (i = 0; i < vector_active (ripng_enable_if); i++)
if ((ifname = vector_slot (ripng_enable_if, i)) != NULL)
vty_out (vty, "%s%s%s",
vty_outln (vty, "%s%s",
config_mode ? " network " : " ",
ifname,
VTY_NEWLINE);
ifname);
/* Write passive interface. */
if (config_mode)
for (i = 0; i < vector_active (Vripng_passive_interface); i++)
if ((ifname = vector_slot (Vripng_passive_interface, i)) != NULL)
vty_out (vty, " passive-interface %s%s", ifname, VTY_NEWLINE);
vty_outln (vty, " passive-interface %s", ifname);
return 0;
}
@ -962,8 +960,8 @@ DEFUN (ripng_network,
if (ret < 0)
{
vty_out (vty, "There is same network configuration %s%s", argv[idx_if_or_addr]->arg,
VTY_NEWLINE);
vty_outln (vty, "There is same network configuration %s",
argv[idx_if_or_addr]->arg);
return CMD_WARNING;
}
@ -992,8 +990,7 @@ DEFUN (no_ripng_network,
if (ret < 0)
{
vty_out (vty, "can't find network %s%s", argv[idx_if_or_addr]->arg,
VTY_NEWLINE);
vty_outln (vty, "can't find network %s",argv[idx_if_or_addr]->arg);
return CMD_WARNING;
}
@ -1124,31 +1121,28 @@ interface_config_write (struct vty *vty)
(ri->split_horizon == ri->split_horizon_default))
continue;
vty_out (vty, "interface %s%s", ifp->name,
VTY_NEWLINE);
vty_outln (vty, "interface %s",ifp->name);
if (ifp->desc)
vty_out (vty, " description %s%s", ifp->desc,
VTY_NEWLINE);
vty_outln (vty, " description %s",ifp->desc);
/* Split horizon. */
if (ri->split_horizon != ri->split_horizon_default)
{
switch (ri->split_horizon) {
case RIPNG_SPLIT_HORIZON:
vty_out (vty, " ipv6 ripng split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " ipv6 ripng split-horizon");
break;
case RIPNG_SPLIT_HORIZON_POISONED_REVERSE:
vty_out (vty, " ipv6 ripng split-horizon poisoned-reverse%s",
VTY_NEWLINE);
vty_outln (vty," ipv6 ripng split-horizon poisoned-reverse");
break;
case RIPNG_NO_SPLIT_HORIZON:
default:
vty_out (vty, " no ipv6 ripng split-horizon%s", VTY_NEWLINE);
vty_outln (vty, " no ipv6 ripng split-horizon");
break;
}
}
vty_out (vty, "!%s", VTY_NEWLINE);
vty_outln (vty, "!");
write++;
}

View File

@ -125,7 +125,7 @@ ripng_offset_list_set (struct vty *vty, const char *alist,
direct = RIPNG_OFFSET_LIST_OUT;
else
{
vty_out (vty, "Invalid direction: %s%s", direct_str, VTY_NEWLINE);
vty_outln (vty, "Invalid direction: %s", direct_str);
return CMD_WARNING;
}
@ -133,7 +133,7 @@ ripng_offset_list_set (struct vty *vty, const char *alist,
metric = atoi (metric_str);
if (metric < 0 || metric > 16)
{
vty_out (vty, "Invalid metric: %s%s", metric_str, VTY_NEWLINE);
vty_outln (vty, "Invalid metric: %s", metric_str);
return CMD_WARNING;
}
@ -164,7 +164,7 @@ ripng_offset_list_unset (struct vty *vty, const char *alist,
direct = RIPNG_OFFSET_LIST_OUT;
else
{
vty_out (vty, "Invalid direction: %s%s", direct_str, VTY_NEWLINE);
vty_outln (vty, "Invalid direction: %s", direct_str);
return CMD_WARNING;
}
@ -172,7 +172,7 @@ ripng_offset_list_unset (struct vty *vty, const char *alist,
metric = atoi (metric_str);
if (metric < 0 || metric > 16)
{
vty_out (vty, "Invalid metric: %s%s", metric_str, VTY_NEWLINE);
vty_outln (vty, "Invalid metric: %s", metric_str);
return CMD_WARNING;
}
@ -196,7 +196,7 @@ ripng_offset_list_unset (struct vty *vty, const char *alist,
}
else
{
vty_out (vty, "Can't find offset-list%s", VTY_NEWLINE);
vty_outln (vty, "Can't find offset-list");
return CMD_WARNING;
}
return CMD_SUCCESS;
@ -405,28 +405,26 @@ config_write_ripng_offset_list (struct vty *vty)
if (! offset->ifname)
{
if (offset->direct[RIPNG_OFFSET_LIST_IN].alist_name)
vty_out (vty, " offset-list %s in %d%s",
vty_outln (vty, " offset-list %s in %d",
offset->direct[RIPNG_OFFSET_LIST_IN].alist_name,
offset->direct[RIPNG_OFFSET_LIST_IN].metric,
VTY_NEWLINE);
offset->direct[RIPNG_OFFSET_LIST_IN].metric);
if (offset->direct[RIPNG_OFFSET_LIST_OUT].alist_name)
vty_out (vty, " offset-list %s out %d%s",
vty_outln (vty, " offset-list %s out %d",
offset->direct[RIPNG_OFFSET_LIST_OUT].alist_name,
offset->direct[RIPNG_OFFSET_LIST_OUT].metric,
VTY_NEWLINE);
offset->direct[RIPNG_OFFSET_LIST_OUT].metric);
}
else
{
if (offset->direct[RIPNG_OFFSET_LIST_IN].alist_name)
vty_out (vty, " offset-list %s in %d %s%s",
vty_outln (vty, " offset-list %s in %d %s",
offset->direct[RIPNG_OFFSET_LIST_IN].alist_name,
offset->direct[RIPNG_OFFSET_LIST_IN].metric,
offset->ifname, VTY_NEWLINE);
offset->ifname);
if (offset->direct[RIPNG_OFFSET_LIST_OUT].alist_name)
vty_out (vty, " offset-list %s out %d %s%s",
vty_outln (vty, " offset-list %s out %d %s",
offset->direct[RIPNG_OFFSET_LIST_OUT].alist_name,
offset->direct[RIPNG_OFFSET_LIST_OUT].metric,
offset->ifname, VTY_NEWLINE);
offset->ifname);
}
}

View File

@ -193,12 +193,11 @@ ripng_peer_display (struct vty *vty)
for (ALL_LIST_ELEMENTS (peer_list, node, nnode, peer))
{
vty_out (vty, " %s %s%14s %10d %10d %10d %s%s", inet6_ntoa (peer->addr),
vty_outln (vty, " %s %s%14s %10d %10d %10d %s", inet6_ntoa (peer->addr),
VTY_NEWLINE, " ",
peer->recv_badpackets, peer->recv_badroutes,
ZEBRA_RIPNG_DISTANCE_DEFAULT,
ripng_peer_uptime (peer, timebuf, RIPNG_UPTIME_LEN),
VTY_NEWLINE);
ripng_peer_uptime(peer, timebuf, RIPNG_UPTIME_LEN));
}
}

Some files were not shown because too many files have changed in this diff Show More