Skip to content

Commit d3f5031

Browse files
committed
tests: Add topotest for RIB/FIB feature
Signed-off-by: Yuqing Zhao <galadriel.zyq@alibaba-inc.com>
1 parent 1c4f2e3 commit d3f5031

3 files changed

Lines changed: 824 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
hostname r1
2+
log file /tmp/r1-zebra.log debug
3+
!
4+
interface r1-eth0
5+
ip address 10.0.0.1/24
6+
!
7+
ip route 192.168.1.0/24 Null0
8+
!
9+
router bgp 65001
10+
bgp router-id 10.255.255.1
11+
no bgp ebgp-requires-policy
12+
neighbor 10.0.0.2 remote-as 65002
13+
address-family ipv4 unicast
14+
network 192.168.1.0/24
15+
!
16+
!
17+
line vty
18+
!
19+
end
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
hostname r2
2+
log file /tmp/r2-zebra.log debug
3+
!
4+
interface r2-eth0
5+
ip address 10.0.0.2/24
6+
!
7+
router bgp 65002
8+
bgp router-id 10.255.255.2
9+
no bgp ebgp-requires-policy
10+
neighbor 10.0.0.1 remote-as 65001
11+
!
12+
line vty
13+
!
14+
end

0 commit comments

Comments
 (0)