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/r1 | |
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/r1')
-rw-r--r-- | tests/topotests/rip_topo1/r1/rip_status.ref | 22 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r1/ripd.conf | 13 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r1/show_ip_rip.ref | 12 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r1/show_ip_route.ref | 3 | ||||
-rw-r--r-- | tests/topotests/rip_topo1/r1/zebra.conf | 26 |
5 files changed, 76 insertions, 0 deletions
diff --git a/tests/topotests/rip_topo1/r1/rip_status.ref b/tests/topotests/rip_topo1/r1/rip_status.ref new file mode 100644 index 0000000..19fff1a --- /dev/null +++ b/tests/topotests/rip_topo1/r1/rip_status.ref @@ -0,0 +1,22 @@ +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 + r1-eth1 2 2 + r1-eth2 2 2 + r1-eth3 2 2 + Routing for Networks: + 193.1.1.0/26 + r1-eth2 + r1-eth3 + Passive Interface(s): + r1-eth3 + Routing Information Sources: + Gateway BadPackets BadRoutes Distance Last Update + 193.1.1.2 0 0 120 XX:XX:XX + Distance: (default is 120) diff --git a/tests/topotests/rip_topo1/r1/ripd.conf b/tests/topotests/rip_topo1/r1/ripd.conf new file mode 100644 index 0000000..54f1774 --- /dev/null +++ b/tests/topotests/rip_topo1/r1/ripd.conf @@ -0,0 +1,13 @@ +log file ripd.log +! +router rip + timers basic 5 180 5 + version 2 + network 193.1.1.0/26 + network r1-eth2 + network r1-eth3 + passive-interface r1-eth3 +! +line vty +! + diff --git a/tests/topotests/rip_topo1/r1/show_ip_rip.ref b/tests/topotests/rip_topo1/r1/show_ip_rip.ref new file mode 100644 index 0000000..a0b77c8 --- /dev/null +++ b/tests/topotests/rip_topo1/r1/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.1.2 3 193.1.1.2 0 XX:XX +R(n) 192.168.3.0/24 193.1.1.2 3 193.1.1.2 0 XX:XX +C(i) 192.168.98.0/24 0.0.0.0 1 self 0 +C(i) 192.168.99.0/24 0.0.0.0 1 self 0 +C(i) 193.1.1.0/26 0.0.0.0 1 self 0 +R(n) 193.1.2.0/24 193.1.1.2 2 193.1.1.2 0 XX:XX diff --git a/tests/topotests/rip_topo1/r1/show_ip_route.ref b/tests/topotests/rip_topo1/r1/show_ip_route.ref new file mode 100644 index 0000000..2ff2604 --- /dev/null +++ b/tests/topotests/rip_topo1/r1/show_ip_route.ref @@ -0,0 +1,3 @@ +R>* 192.168.2.0/24 [120/3] via 193.1.1.2, r1-eth1, weight 1 +R>* 192.168.3.0/24 [120/3] via 193.1.1.2, r1-eth1, weight 1 +R>* 193.1.2.0/24 [120/2] via 193.1.1.2, r1-eth1, weight 1 diff --git a/tests/topotests/rip_topo1/r1/zebra.conf b/tests/topotests/rip_topo1/r1/zebra.conf new file mode 100644 index 0000000..7c8f2c5 --- /dev/null +++ b/tests/topotests/rip_topo1/r1/zebra.conf @@ -0,0 +1,26 @@ +log file zebra.log +! +hostname r1 +! +interface r1-eth0 + ip address 192.168.1.1/24 +! +interface r1-eth2 + ip address 192.168.99.1/24 +! +interface r1-eth3 + ip address 192.168.98.1/24 +! + +interface r1-eth1 + description to sw2 - RIPv2 interface + ip address 193.1.1.1/26 + no link-detect +! +ip forwarding +ipv6 forwarding +! +! +line vty +! + |