diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-04-18 21:50:11 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-04-18 21:50:11 +0200 |
commit | 36608f60810f386f7d717a0f60d5a021efb76bb1 (patch) | |
tree | 7a8b43ee5af7de7d033ac1e985d57be67a01f0b4 /ripd | |
parent | Merge pull request #13319 from anlancs/pimd-wrong-comment-nht (diff) | |
download | frr-36608f60810f386f7d717a0f60d5a021efb76bb1.tar.xz frr-36608f60810f386f7d717a0f60d5a021efb76bb1.zip |
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>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/rip_peer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/rip_peer.c b/ripd/rip_peer.c index 9410ef380..c1ab5b14a 100644 --- a/ripd/rip_peer.c +++ b/ripd/rip_peer.c @@ -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)); |