topotests: convert bgp_vrf_netns to exabgp 4

Convert bgp_vrf_netns to exabgp 4

Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
This commit is contained in:
Louis Scalbert 2023-11-27 17:09:56 +01:00
parent 9598967a0d
commit cfcad6fd99
2 changed files with 18 additions and 20 deletions

View File

@ -1,5 +1,6 @@
[exabgp.api]
ack = false
encoder = text
highres = false
respawn = false

View File

@ -1,21 +1,18 @@
group controller {
process announce-routes {
run "/etc/exabgp/exa-send.py 1 10";
}
process receive-routes {
run "/etc/exabgp/exa-receive.py 1";
receive-routes;
encoder text;
}
neighbor 10.0.1.1 {
router-id 10.0.1.101;
local-address 10.0.1.101;
local-as 99;
peer-as 100;
graceful-restart;
}
process announce-routes {
run /etc/exabgp/exa-send.py 1 10;
encoder text;
}
process receive-routes {
run /etc/exabgp/exa-receive.py 1;
encoder text;
}
neighbor 10.0.1.1 {
router-id 10.0.1.101;
local-address 10.0.1.101;
local-as 99;
peer-as 100;
capability {graceful-restart;}
api {processes [ announce-routes, receive-routes ];}
}