mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 22:37:49 +00:00
tests: Add admin distance 255 static routes
Add a couple of test cases to ensure that admin distance of 255 actually causes the route to be accepted by zebra but not installed into the linux kernel. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
9187f11ac1
commit
963d10dfb0
@ -15,6 +15,7 @@ S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, XX:XX:XX
|
||||
S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, XX:XX:XX
|
||||
S>* 4.5.6.13/32 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S>* 4.5.6.14/32 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S 4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, XX:XX:XX
|
||||
S>* 4.5.6.7/32 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S>* 4.5.6.8/32 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), XX:XX:XX
|
||||
|
@ -20,9 +20,10 @@ C * fe80::/64 is directly connected, r1-eth7, XX:XX:XX
|
||||
C * fe80::/64 is directly connected, r1-eth8, XX:XX:XX
|
||||
C * fe80::/64 is directly connected, r1-eth9, XX:XX:XX
|
||||
O fc00:0:0:4::/64 [110/10] is directly connected, r1-eth4, XX:XX:XX
|
||||
S>* 4:5::/32 [1/0] is directly connected, r1-eth0, XX:XX:XX
|
||||
S>* 4:5::6:10/128 [1/0] via fc00::2, r1-eth0, XX:XX:XX
|
||||
S>* 4:5::6:11/128 [1/0] via fc00::2, r1-eth0, XX:XX:XX
|
||||
S>* 4:5::6:12/128 [1/0] is directly connected, r1-eth0, XX:XX:XX
|
||||
S 4:5::6:15/128 [255/0] via fc00::2, r1-eth0, XX:XX:XX
|
||||
S>* 4:5::6:7/128 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S>* 4:5::6:8/128 [1/0] unreachable (blackhole), XX:XX:XX
|
||||
S>* 4:5::6:9/128 [1/0] unreachable (ICMP unreachable), XX:XX:XX
|
||||
|
@ -20,7 +20,12 @@ ip route 4.5.6.11/32 192.168.0.2 r1-eth0
|
||||
ipv6 route 4:5::6:11/128 fc00:0:0:0::2 r1-eth0
|
||||
# Create ifname routes
|
||||
ip route 4.5.6.12/32 r1-eth0
|
||||
ipv6 route 4:5::6:12/32 r1-eth0
|
||||
ipv6 route 4:5::6:12/128 r1-eth0
|
||||
# Create a route that has a large admin distance
|
||||
# an admin distance of 255 should be accepted
|
||||
# by zebra but not installed.
|
||||
ip route 4.5.6.15/32 192.168.0.2 255
|
||||
ipv6 route 4:5::6:15/128 fc00:0:0:0::2 255
|
||||
!
|
||||
interface r1-eth0
|
||||
description to sw0 - no routing protocol
|
||||
|
Loading…
Reference in New Issue
Block a user