summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLouis Scalbert <louis.scalbert@6wind.com>2023-06-08 12:27:18 +0200
committerLouis Scalbert <louis.scalbert@6wind.com>2023-06-16 14:18:25 +0200
commitfe993cb25ff2498e33102f9922b313e33f46a566 (patch)
tree0f59aab55ee656256b0bdf23769739c012e6625e /tests
parenttopotests: apply style to bgp_vpnv4_noretain (diff)
downloadfrr-fe993cb25ff2498e33102f9922b313e33f46a566.tar.xz
frr-fe993cb25ff2498e33102f9922b313e33f46a566.zip
topotests: router relative variables in bgp_vpnv4_noretain
Change IP addresses, label, RD and RT to match the router number and VRF number. Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r1/bgpd.conf10
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_all.json26
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_no_retain_init.json20
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r1/isisd.conf2
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r1/zebra.conf8
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r2/bgpd.conf22
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r2/isisd.conf2
-rw-r--r--tests/topotests/bgp_vpnv4_noretain/r2/zebra.conf12
8 files changed, 51 insertions, 51 deletions
diff --git a/tests/topotests/bgp_vpnv4_noretain/r1/bgpd.conf b/tests/topotests/bgp_vpnv4_noretain/r1/bgpd.conf
index 3d8773b8b..ba68e61dd 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r1/bgpd.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r1/bgpd.conf
@@ -1,5 +1,5 @@
router bgp 65500
- bgp router-id 1.1.1.1
+ bgp router-id 192.0.2.1
neighbor 10.125.0.2 remote-as 65500
address-family ipv4 unicast
no neighbor 10.125.0.2 activate
@@ -10,13 +10,13 @@ router bgp 65500
exit-address-family
!
router bgp 65500 vrf vrf1
- bgp router-id 1.1.1.1
+ bgp router-id 192.0.2.1
address-family ipv4 unicast
redistribute connected
label vpn export 101
- rd vpn export 444:1
- rt vpn import 51:100 52:100
- rt vpn export 51:100
+ rd vpn export 192.0.2.1:1
+ rt vpn import 192.0.2.1:100 192.0.2.2:100
+ rt vpn export 192.0.2.1:100
export vpn
import vpn
exit-address-family
diff --git a/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_all.json b/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_all.json
index 45f4acce6..1926e86a8 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_all.json
+++ b/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_all.json
@@ -1,21 +1,21 @@
{
"vrfId":0,
"vrfName":"default",
- "routerId":"1.1.1.1",
+ "routerId":"192.0.2.1",
"defaultLocPrf":100,
"localAS":65500,
"routes":{
"routeDistinguishers":{
- "444:1":{
- "10.201.0.0/24":[
+ "192.0.2.1:1":{
+ "10.101.0.0/24":[
{
"valid":true,
"bestpath":true,
"selectionReason":"First path received",
"pathFrom":"external",
- "prefix":"10.201.0.0",
+ "prefix":"10.101.0.0",
"prefixLen":24,
- "network":"10.201.0.0\/24",
+ "network":"10.101.0.0\/24",
"metric":0,
"weight":32768,
"peerId":"(unspec)",
@@ -34,16 +34,16 @@
}
]
},
- "444:2":{
- "10.200.0.0/24":[
+ "192.0.2.2:1":{
+ "10.201.0.0/24":[
{
"valid":true,
"bestpath":true,
"selectionReason":"First path received",
"pathFrom":"internal",
- "prefix":"10.200.0.0",
+ "prefix":"10.201.0.0",
"prefixLen":24,
- "network":"10.200.0.0\/24",
+ "network":"10.201.0.0\/24",
"metric":0,
"locPrf":100,
"weight":0,
@@ -61,16 +61,16 @@
}
]
},
- "444:3":{
- "10.210.0.0/24":[
+ "192.0.2.2:2":{
+ "10.202.0.0/24":[
{
"valid":true,
"bestpath":true,
"selectionReason":"First path received",
"pathFrom":"internal",
- "prefix":"10.210.0.0",
+ "prefix":"10.202.0.0",
"prefixLen":24,
- "network":"10.210.0.0\/24",
+ "network":"10.202.0.0\/24",
"metric":0,
"locPrf":100,
"weight":0,
diff --git a/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_no_retain_init.json b/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_no_retain_init.json
index 28e153e3d..261dec9f9 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_no_retain_init.json
+++ b/tests/topotests/bgp_vpnv4_noretain/r1/ipv4_vpn_routes_no_retain_init.json
@@ -1,21 +1,21 @@
{
"vrfId":0,
"vrfName":"default",
- "routerId":"1.1.1.1",
+ "routerId":"192.0.2.1",
"defaultLocPrf":100,
"localAS":65500,
"routes":{
"routeDistinguishers":{
- "444:1":{
- "10.201.0.0/24":[
+ "192.0.2.1:1":{
+ "10.101.0.0/24":[
{
"valid":true,
"bestpath":true,
"selectionReason":"First path received",
"pathFrom":"external",
- "prefix":"10.201.0.0",
+ "prefix":"10.101.0.0",
"prefixLen":24,
- "network":"10.201.0.0\/24",
+ "network":"10.101.0.0\/24",
"metric":0,
"weight":32768,
"peerId":"(unspec)",
@@ -34,16 +34,16 @@
}
]
},
- "444:2":{
- "10.200.0.0/24":[
+ "192.0.2.2:1":{
+ "10.201.0.0/24":[
{
"valid":true,
"bestpath":true,
"selectionReason":"First path received",
"pathFrom":"internal",
- "prefix":"10.200.0.0",
+ "prefix":"10.201.0.0",
"prefixLen":24,
- "network":"10.200.0.0\/24",
+ "network":"10.201.0.0\/24",
"metric":0,
"locPrf":100,
"weight":0,
@@ -61,7 +61,7 @@
}
]
},
- "444:3":{
+ "192.0.2.2:2":{
}
}
}
diff --git a/tests/topotests/bgp_vpnv4_noretain/r1/isisd.conf b/tests/topotests/bgp_vpnv4_noretain/r1/isisd.conf
index 6f5cb6ec6..233a6473b 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r1/isisd.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r1/isisd.conf
@@ -10,5 +10,5 @@ router isis 1
is-type level-1
net 49.0002.0000.1994.00
segment-routing on
- segment-routing prefix 1.1.1.1/32 index 11
+ segment-routing prefix 192.0.2.1/32 index 11
!
diff --git a/tests/topotests/bgp_vpnv4_noretain/r1/zebra.conf b/tests/topotests/bgp_vpnv4_noretain/r1/zebra.conf
index 5b8b1e8ff..4f641e512 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r1/zebra.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r1/zebra.conf
@@ -1,13 +1,13 @@
log stdout
interface lo
- ip address 1.1.1.1/32
+ ip address 192.0.2.1/32
!
interface r1-gre0
ip address 192.168.0.1/24
!
-interface r1-eth1 vrf vrf1
- ip address 10.201.0.1/24
-!
interface r1-eth0
ip address 10.125.0.1/24
!
+interface r1-eth1 vrf vrf1
+ ip address 10.101.0.1/24
+!
diff --git a/tests/topotests/bgp_vpnv4_noretain/r2/bgpd.conf b/tests/topotests/bgp_vpnv4_noretain/r2/bgpd.conf
index 235fb3117..13de0e520 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r2/bgpd.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r2/bgpd.conf
@@ -1,5 +1,5 @@
router bgp 65500
- bgp router-id 2.2.2.2
+ bgp router-id 192.0.2.2
neighbor 10.125.0.1 remote-as 65500
address-family ipv4 unicast
no neighbor 10.125.0.1 activate
@@ -10,25 +10,25 @@ router bgp 65500
exit-address-family
!
router bgp 65500 vrf vrf1
- bgp router-id 2.2.2.2
+ bgp router-id 192.0.2.2
address-family ipv4 unicast
redistribute connected
- label vpn export 102
- rd vpn export 444:2
- rt vpn import 53:100 52:100 51:100
- rt vpn export 52:100
+ label vpn export 201
+ rd vpn export 192.0.2.2:1
+ rt vpn import 192.0.2.1:100 192.0.2.2:100 192.0.2.2:200
+ rt vpn export 192.0.2.2:100
export vpn
import vpn
exit-address-family
!
router bgp 65500 vrf vrf2
- bgp router-id 2.2.2.2
+ bgp router-id 192.0.2.2
address-family ipv4 unicast
redistribute connected
- label vpn export 102
- rd vpn export 444:3
- rt vpn both 53:100 52:100 51:100
- rt vpn both 53:100
+ label vpn export 202
+ rd vpn export 192.0.2.2:2
+ rt vpn both 192.0.2.1:100 192.0.2.2:100 192.0.2.2:200
+ rt vpn both 192.0.2.2:200
export vpn
import vpn
exit-address-family
diff --git a/tests/topotests/bgp_vpnv4_noretain/r2/isisd.conf b/tests/topotests/bgp_vpnv4_noretain/r2/isisd.conf
index cbec8c367..547d10f2b 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r2/isisd.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r2/isisd.conf
@@ -10,5 +10,5 @@ router isis 1
is-type level-1
net 49.0002.0000.1995.00
segment-routing on
- segment-routing prefix 2.2.2.2/32 index 22
+ segment-routing prefix 192.0.2.2/32 index 22
!
diff --git a/tests/topotests/bgp_vpnv4_noretain/r2/zebra.conf b/tests/topotests/bgp_vpnv4_noretain/r2/zebra.conf
index 7ec644ac2..72cc10b6c 100644
--- a/tests/topotests/bgp_vpnv4_noretain/r2/zebra.conf
+++ b/tests/topotests/bgp_vpnv4_noretain/r2/zebra.conf
@@ -1,16 +1,16 @@
log stdout
interface lo
- ip address 2.2.2.2/32
+ ip address 192.0.2.2/32
!
interface r2-gre0
ip address 192.168.0.2/24
!
+interface r2-eth0
+ ip address 10.125.0.2/24
+!
interface r2-eth1 vrf vrf1
- ip address 10.200.0.2/24
+ ip address 10.201.0.2/24
!
interface r2-eth2 vrf vrf2
- ip address 10.210.0.2/24
-!
-interface r2-eth0
- ip address 10.125.0.2/24
+ ip address 10.202.0.2/24
!