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] [exabgp.api]
ack = false
encoder = text encoder = text
highres = false highres = false
respawn = false respawn = false

View File

@ -1,12 +1,10 @@
group controller {
process announce-routes { process announce-routes {
run "/etc/exabgp/exa-send.py 1 10"; run /etc/exabgp/exa-send.py 1 10;
encoder text;
} }
process receive-routes { process receive-routes {
run "/etc/exabgp/exa-receive.py 1"; run /etc/exabgp/exa-receive.py 1;
receive-routes;
encoder text; encoder text;
} }
@ -15,7 +13,6 @@ group controller {
local-address 10.0.1.101; local-address 10.0.1.101;
local-as 99; local-as 99;
peer-as 100; peer-as 100;
graceful-restart; capability {graceful-restart;}
} api {processes [ announce-routes, receive-routes ];}
} }