mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 17:01:51 +00:00
ripd: Align show ip rip status output for sources
Before: ``` Routing Protocol is "rip" Sending updates every 5 seconds with +/-50%, next due in 0 seconds Timeout after 15 seconds, garbage collect after 10 seconds Outgoing update filter list for all interface is not set Incoming update filter list for all interface is not set Default redistribution metric is 1 Redistributing: Default version control: send version 2, receive any version Interface Send Recv Key-chain r1-eth0 2 1 2 Routing for Networks: 192.168.1.0/24 Routing Information Sources: Gateway BadPackets BadRoutes Distance Last Update 192.168.1.2 0 0 120 00:00:05 192.168.1.3 0 0 120 00:00:04 Distance: (default is 120) ``` After: ``` Routing Protocol is "rip" Sending updates every 5 seconds with +/-50%, next due in 4 seconds Timeout after 15 seconds, garbage collect after 10 seconds Outgoing update filter list for all interface is not set Incoming update filter list for all interface is not set Default redistribution metric is 1 Redistributing: Default version control: send version 2, receive any version Interface Send Recv Key-chain r1-eth0 2 1 2 Routing for Networks: 192.168.1.0/24 Routing Information Sources: Gateway BadPackets BadRoutes Distance Last Update 192.168.1.2 0 0 120 00:00:00 192.168.1.3 0 0 120 00:00:04 Distance: (default is 120) ``` Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
This commit is contained in:
parent
74aad5ab55
commit
36608f6081
@ -136,7 +136,7 @@ void rip_peer_display(struct vty *vty, struct rip *rip)
|
||||
char timebuf[RIP_UPTIME_LEN];
|
||||
|
||||
for (ALL_LIST_ELEMENTS(rip->peer_list, node, nnode, peer)) {
|
||||
vty_out(vty, " %-16pI4 %9d %9d %9d %s\n",
|
||||
vty_out(vty, " %-17pI4 %9d %9d %9d %11s\n",
|
||||
&peer->addr, peer->recv_badpackets,
|
||||
peer->recv_badroutes, ZEBRA_RIP_DISTANCE_DEFAULT,
|
||||
rip_peer_uptime(peer, timebuf, RIP_UPTIME_LEN));
|
||||
|
Loading…
Reference in New Issue
Block a user