diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:16:35 +0000 |
commit | e2bbf175a2184bd76f6c54ccf8456babeb1a46fc (patch) | |
tree | f0b76550d6e6f500ada964a3a4ee933a45e5a6f1 /tests/topotests/rip_topo1/r2 | |
parent | Initial commit. (diff) | |
download | frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.tar.xz frr-e2bbf175a2184bd76f6c54ccf8456babeb1a46fc.zip |
Adding upstream version 9.1.upstream/9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/topotests/rip_topo1/r2')
-rw-r--r-- | tests/topotests/rip_topo1/r2/rip_status.ref | 19 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r2/ripd.conf | 12 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r2/show_ip_rip.ref | 12 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r2/show_ip_route.ref | 4 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r2/zebra.conf | 21 |
5 files changed, 68 insertions, 0 deletions
diff --git a/tests/topotests/rip_topo1/r2/rip_status.ref b/tests/topotests/rip_topo1/r2/rip_status.ref new file mode 100644 index 0000000..468b7ae --- /dev/null +++ b/tests/topotests/rip_topo1/r2/rip_status.ref @@ -0,0 +1,19 @@ +Routing Protocol is "rip" + Sending updates every 5 seconds with +/-50%, next due in XX seconds + Timeout after 180 seconds, garbage collect after 5 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 version 2 + Interface Send Recv Key-chain + r2-eth0 2 2 + r2-eth1 2 2 + Routing for Networks: + 193.1.1.0/26 + 193.1.2.0/24 + Routing Information Sources: + Gateway BadPackets BadRoutes Distance Last Update + 193.1.1.1 0 0 120 XX:XX:XX + 193.1.2.2 0 0 120 XX:XX:XX + Distance: (default is 120) diff --git a/tests/topotests/rip_topo1/r2/ripd.conf b/tests/topotests/rip_topo1/r2/ripd.conf new file mode 100644 index 0000000..2e94cfa --- /dev/null +++ b/tests/topotests/rip_topo1/r2/ripd.conf @@ -0,0 +1,12 @@ +log file ripd.log +! +! +router rip + version 2 + timers basic 5 180 5 + network 193.1.1.0/26 + network 193.1.2.0/24 +! +line vty +! + diff --git a/tests/topotests/rip_topo1/r2/show_ip_rip.ref b/tests/topotests/rip_topo1/r2/show_ip_rip.ref new file mode 100644 index 0000000..b61fb45 --- /dev/null +++ b/tests/topotests/rip_topo1/r2/show_ip_rip.ref @@ -0,0 +1,12 @@ +Codes: R - RIP, C - connected, S - Static, O - OSPF, B - BGP +Sub-codes: + (n) - normal, (s) - static, (d) - default, (r) - redistribute, + (i) - interface + + Network Next Hop Metric From Tag Time +R(n) 192.168.2.0/24 193.1.2.2 2 193.1.2.2 0 XX:XX +R(n) 192.168.3.0/24 193.1.2.2 2 193.1.2.2 0 XX:XX +R(n) 192.168.98.0/24 193.1.1.1 2 193.1.1.1 0 XX:XX +R(n) 192.168.99.0/24 193.1.1.1 2 193.1.1.1 0 XX:XX +C(i) 193.1.1.0/26 0.0.0.0 1 self 0 +C(i) 193.1.2.0/24 0.0.0.0 1 self 0 diff --git a/tests/topotests/rip_topo1/r2/show_ip_route.ref b/tests/topotests/rip_topo1/r2/show_ip_route.ref new file mode 100644 index 0000000..80f51a9 --- /dev/null +++ b/tests/topotests/rip_topo1/r2/show_ip_route.ref @@ -0,0 +1,4 @@ +R>* 192.168.2.0/24 [120/2] via 193.1.2.2, r2-eth1, weight 1 +R>* 192.168.3.0/24 [120/2] via 193.1.2.2, r2-eth1, weight 1 +R>* 192.168.98.0/24 [120/2] via 193.1.1.1, r2-eth0, weight 1 +R>* 192.168.99.0/24 [120/2] via 193.1.1.1, r2-eth0, weight 1 diff --git a/tests/topotests/rip_topo1/r2/zebra.conf b/tests/topotests/rip_topo1/r2/zebra.conf new file mode 100644 index 0000000..c440f3a --- /dev/null +++ b/tests/topotests/rip_topo1/r2/zebra.conf @@ -0,0 +1,21 @@ +log file zebra.log +! +hostname r2 +! +interface r2-eth0 + description to sw2 - RIPv2 interface + ip address 193.1.1.2/26 + no link-detect +! +interface r2-eth1 + description to sw3 - RIPv1 interface + ip address 193.1.2.1/24 + no link-detect +! +ip forwarding +ipv6 forwarding +! +! +line vty +! + |