Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Static route issues #9005

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

donaldsharp
Copy link
Member

  1. We don't use typedefs
  2. Dissallow the ip route 4.5.6.7/32 blackhole nexthop-vrf X command
  3. handle the situation better where blackhole and reject are parsed as interfaces.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Due to pecularities with the parsing of static routes
`ip route 4.5.6.7/32 reject nexthop-vrf X` is allowed
this makes no sense.  Stop this.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Due to pecularities of the static route command sometimes
the interface name is actually a blackhole/reject or Null0.
Since we know (ha!) that users will not create interface
names using that syntax we should be ok to do the
substitution.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
@LabN-CI
Copy link
Collaborator

LabN-CI commented Jul 8, 2021

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/9005 f1ab8ef
Date 07/08/2021
Start 09:30:51
Finish 09:56:26
Run-Time 25:35
Total 1815
Pass 1815
Fail 0
Valgrind-Errors
Valgrind-Loss
Details vncregress-2021-07-08-09:30:51.txt
Log autoscript-2021-07-08-09:32:05.log.bz2
Memory 517 485 428

For details, please contact louberger

@@ -152,6 +152,14 @@ static bool static_nexthop_create(struct nb_cb_create_args *args,
return NB_ERR_VALIDATION;
}
}
nh_type = yang_dnode_get_enum(args->dnode, "./nh-type");
nh_vrf = yang_dnode_get_string(args->dnode, "./vrf");
if (nh_type == STATIC_BLACKHOLE && nh_vrf) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vrf is part of the nexthop key, it is always set. this check is always true for blackhole routes.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you need to compare nexthop's vrf with the route's vrf to achieve what you want.


memset(buf_src_prefix, 0, PREFIX_STRLEN);
memset(buf_nh_type, 0, PREFIX_STRLEN);

if (ifname) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure about this.

Currently, if you try to use some parameters that are not allowed for blackhole and reject routes, for example, onlink or nexthop-vrf, you receive the following error: Nexthop interface name can not be from reserved keywords(Null0, reject, blackhole). This doesn't work for Null0 routes, because of this hack with ifname and flag_strNull0 is being treated as a regular route instead of a blackhole route.

With this change, you actually expand this problem with Null0 to also blackhole and reject routes. Please, check my PR #9006 - I think this is the right way to fix this.

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topotests Ubuntu 18.04 i386 part 4: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO4U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 4:

2021-07-08 14:29:59,346 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:30:37,643 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0": Test case test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:31:32,702 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:32:10,908 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0": Test case test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:36:45,401 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2021-07-08 14:36:45,787 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2021-07-08 14:36:46,171 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2021-07-08 14:36:46,556 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2021-07-08 14:36:48,916 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 1:a:2 



2021-07-08 14:40:39,521 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO4U18I386/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 9: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO9DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 9:

2021-07-08 14:09:04,292 ERROR: 'router_json_cmp' failed after 38.76 seconds
2021-07-08 14:09:04,295 ERROR: assert failed at "test_ospf6_topo2/test_nssa_lsa_type7": "r4" convergence failure
assert Generated JSON diff error report:
  
  > $->areaScopedLinkStateDb: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "areaId": "0.0.0.2",
  	    "lsa": [
  	        {
  	            "advertisingRouter": "10.254.254.2",
  	            "prefix": "2001:db8:100::/64",
  	            "type": "NSSA",
  	            "forwardingAddress": "2001:db8:3::1"
  	        }
  	    ]
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $->areaScopedLinkStateDb[0]->lsa: d2 has the following element at index 0 which is not present in d1: 
  	
  		{
  		    "advertisingRouter": "10.254.254.2",
  		    "prefix": "2001:db8:100::/64",
  		    "type": "NSSA",
  		    "forwardingAddress": "2001:db8:3::1"
  		}
  	
  		Closest match in d1 is at index 1 with the following errors: 
  	
  		> $->areaScopedLinkStateDb[0]->lsa[1]->prefix: d1 has element with value '2001:db8:2::/64' but in d2 it has value '2001:db8:100::/64'
  	
  
2021-07-08 14:10:50,493 ERROR: assert failed at "test_ospf_asbr_summary_topo1/test_ospf_type5_summary_tc43_p0": Testcase test_ospf_type5_summary_tc43_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:12:33,976 ERROR: assert failed at "test_ospf_asbr_summary_type7_lsa/test_ospf_type5_summary_tc44_p0": Testcase test_ospf_type5_summary_tc44_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:16:47,521 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc31_p1": Testcase test_ospf_chaos_tc31_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:18:09,263 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc32_p1": Testcase test_ospf_chaos_tc32_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:19:31,079 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc34_p1": Testcase test_ospf_chaos_tc34_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:21:21,283 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_tc16_p0": Testcase test_ospf_ecmp_tc16_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:23:32,787 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_lan_ecmp_tc18_p0": Testcase test_ospf_lan_ecmp_tc18_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:26:09,490 ERROR: assert failed at "test_ospf_nssa/test_ospf_learning_tc15_p0": Testcase test_ospf_learning_tc15_p0 : Failed 
   Error: [DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:28:20,456 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc19_p0": Testcase test_ospf_routemaps_functionality_tc19_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:29:52,469 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc21_p0": Testcase test_ospf_routemaps_functionality_tc21_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:31:13,013 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc24_p0": Testcase test_ospf_routemaps_functionality_tc24_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']" is True
2021-07-08 14:33:04,557 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_redistribution_tc8_p1": Testcase test_ospf_redistribution_tc8_p1 : Failed 
   Error: No route found in rib of router r1..
assert 'No route found in rib of router r1..' is True
2021-07-08 14:34:28,129 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf hello-interval 65536 


2021-07-08 14:35:11,279 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf dead-interval 65536 

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO9DEB10AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO9U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9:

2021-07-08 14:08:19,865 ERROR: 'router_json_cmp' failed after 40.12 seconds
2021-07-08 14:08:19,867 ERROR: assert failed at "test_ospf6_topo2/test_nssa_lsa_type7": "r4" convergence failure
assert Generated JSON diff error report:
  
  > $->areaScopedLinkStateDb: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "areaId": "0.0.0.2",
  	    "lsa": [
  	        {
  	            "advertisingRouter": "10.254.254.2",
  	            "prefix": "2001:db8:100::/64",
  	            "type": "NSSA",
  	            "forwardingAddress": "2001:db8:3::1"
  	        }
  	    ]
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $->areaScopedLinkStateDb[0]->lsa: d2 has the following element at index 0 which is not present in d1: 
  	
  		{
  		    "advertisingRouter": "10.254.254.2",
  		    "prefix": "2001:db8:100::/64",
  		    "type": "NSSA",
  		    "forwardingAddress": "2001:db8:3::1"
  		}
  	
  		Closest match in d1 is at index 1 with the following errors: 
  	
  		> $->areaScopedLinkStateDb[0]->lsa[1]->prefix: d1 has element with value '2001:db8:1::/64' but in d2 it has value '2001:db8:100::/64'
  	
  
2021-07-08 14:10:13,642 ERROR: assert failed at "test_ospf_asbr_summary_topo1/test_ospf_type5_summary_tc43_p0": Testcase test_ospf_type5_summary_tc43_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:12:00,821 ERROR: assert failed at "test_ospf_asbr_summary_type7_lsa/test_ospf_type5_summary_tc44_p0": Testcase test_ospf_type5_summary_tc44_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:16:18,053 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc31_p1": Testcase test_ospf_chaos_tc31_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:17:41,200 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc32_p1": Testcase test_ospf_chaos_tc32_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:19:04,247 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc34_p1": Testcase test_ospf_chaos_tc34_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:20:57,560 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_tc16_p0": Testcase test_ospf_ecmp_tc16_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:23:24,942 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_lan_ecmp_tc18_p0": Testcase test_ospf_lan_ecmp_tc18_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:26:50,483 ERROR: assert failed at "test_ospf_nssa/test_ospf_learning_tc15_p0": Testcase test_ospf_learning_tc15_p0 : Failed 
   Error: [DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:29:34,084 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc19_p0": Testcase test_ospf_routemaps_functionality_tc19_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:31:21,215 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc21_p0": Testcase test_ospf_routemaps_functionality_tc21_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:32:44,503 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc24_p0": Testcase test_ospf_routemaps_functionality_tc24_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']" is True
2021-07-08 14:35:03,662 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_redistribution_tc8_p1": Testcase test_ospf_redistribution_tc8_p1 : Failed 
   Error: No route found in rib of router r1..
assert 'No route found in rib of router r1..' is True
2021-07-08 14:36:48,017 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf hello-interval 65536 


2021-07-08 14:37:40,965 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf dead-interval 65536 


2021-07-08 14:53:09,666 ERROR: r1: zebra left a dead pidfile (pid=19021)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO9U18I386/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO7U18AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7:

2021-07-08 14:16:51,691 ERROR: rt1: zebra left a dead pidfile (pid=21469)
2021-07-08 14:20:55,949 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::4037:b2ff:feef:715c/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::981f:64ff:fe7e:d0ca/64']
2021-07-08 14:20:55,949 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:20:56,304 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::f416:5cff:fe19:8bc4/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::689a:c7ff:fe72:72b2/64']
2021-07-08 14:20:56,304 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:20:56,729 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::6cd2:c6ff:fefa:d5aa/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::88fa:12ff:fe57:3eb2/64']
2021-07-08 14:20:56,729 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:16,187 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::981f:64ff:fe7e:d0ca/64']
2021-07-08 14:21:16,187 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:16,483 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::f416:5cff:fe19:8bc4/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::689a:c7ff:fe72:72b2/64']
2021-07-08 14:21:16,483 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:16,792 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::6cd2:c6ff:fefa:d5aa/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::88fa:12ff:fe57:3eb2/64']
2021-07-08 14:21:16,793 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:32,481 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::4037:b2ff:feef:715c/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::981f:64ff:fe7e:d0ca/64']
2021-07-08 14:21:32,481 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:32,926 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::f416:5cff:fe19:8bc4/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::689a:c7ff:fe72:72b2/64']
2021-07-08 14:21:32,927 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:33,375 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::6cd2:c6ff:fefa:d5aa/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::88fa:12ff:fe57:3eb2/64']
2021-07-08 14:21:33,375 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:53,115 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::4037:b2ff:feef:715c/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::981f:64ff:fe7e:d0ca/64']
2021-07-08 14:21:53,115 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:53,427 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::689a:c7ff:fe72:72b2/64']
2021-07-08 14:21:53,427 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:21:53,717 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::6cd2:c6ff:fefa:d5aa/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::88fa:12ff:fe57:3eb2/64']
2021-07-08 14:21:53,717 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:11,695 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::4037:b2ff:feef:715c/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::981f:64ff:fe7e:d0ca/64']
2021-07-08 14:22:11,695 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:12,003 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::f416:5cff:fe19:8bc4/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::689a:c7ff:fe72:72b2/64']
2021-07-08 14:22:12,003 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:12,417 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::6cd2:c6ff:fefa:d5aa/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::88fa:12ff:fe57:3eb2/64']
2021-07-08 14:22:12,418 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:16,534 ERROR: r1: zebra left a dead pidfile (pid=31340)
2021-07-08 14:46:05,155 ERROR: assert failed at "test_static_routes_topo2_ibgp/test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp": Testcase test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp : Failed 
  Error: Routes are missing in RIB
assert 'No route found in rib of router r3..' is True
*** defaultIntf: warning: r1 has no interfaces
*** defaultIntf: warning: r1 has no interfaces

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO7U18AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 4: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP4U1804AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 4:

2021-07-08 14:27:57,101 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:28:30,404 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0": Test case test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:29:19,802 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:29:53,380 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0": Test case test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:33:31,217 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2021-07-08 14:33:31,535 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2021-07-08 14:33:31,821 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2021-07-08 14:33:32,078 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2021-07-08 14:33:33,677 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 1:a:2 



2021-07-08 14:36:27,226 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TP4U1804AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 arm8 part 5: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 5: No useful log found
Topotests Ubuntu 18.04 arm8 part 4: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 4: No useful log found
Topotests Ubuntu 18.04 i386 part 5: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO5U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 5:

2021-07-08 14:05:14,275 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_address_unambiguous_within_each_vrf_p0": Testcase test_address_unambiguous_within_each_vrf_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:05:55,442 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_ambiguous_overlapping_addresses_in_different_vrfs_p0": Testcase test_ambiguous_overlapping_addresses_in_different_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:06:39,546 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_associated_to_specific_vrfs_p0": Testcase test_static_routes_associated_to_specific_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:07:23,600 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_with_unique_physical_interface_p0": Testcase test_vrf_with_unique_physical_interface_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:08:06,837 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefixes_leaking_p0": Testcase test_prefixes_leaking_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:08:48,810 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_advertised_within_specific_vrf_p0": Testcase test_static_routes_advertised_within_specific_vrf_p0 : Failed 
   Error No route found in rib of router red1..
assert 'No route found in rib of router red1..' is True
2021-07-08 14:09:36,338 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_end_to_end_traffic_isolation_p0": Testcase test_end_to_end_traffic_isolation_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:11:21,717 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0": Testcase test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:15:03,436 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0": Test case test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0 : Failed 
   Error: Prefix 1.1.1.1/32 not found in BGP table of router: r2
assert 'Prefix 1.1.1.1/32 not found in BGP table of router: r2' is True
2021-07-08 14:15:51,795 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_match_traffic_based_on_vrf_p0": Testcase test_route_map_match_traffic_based_on_vrf_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:16:53,976 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_lite_with_static_bgp_originated_routes_p0": Testcase test_vrf_lite_with_static_bgp_originated_routes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:17:38,568 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefix_list_to_permit_deny_prefixes_p0": Testcase test_prefix_list_to_permit_deny_prefixes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:18:22,581 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_tag_p0": Testcase test_route_map_set_and_match_tag_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:19:08,924 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_metric_p0": Testcase test_route_map_set_and_match_metric_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:21:25,036 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error [DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:22:54,064 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_vlan_routing_table_p1": Testcase test_vrf_vlan_routing_table_p1 : Failed 
   Error Missing route in RIB of router r3, routes: ['1.1.1.1/32']
  
assert "Missing route in RIB of router r3, routes: ['1.1.1.1/32']\n" is True
2021-07-08 14:24:58,585 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_bgpd_daemon_p1": Testcase test_restart_bgpd_daemon_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:26:25,905 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_name_significance_p1": Testcase test_vrf_name_significance_p1 :Failed 
   Error Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:27:36,352 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_frr_services_p1": Testcase test_restart_frr_services_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:41:18,137 ERROR: assert failed at "test_bgp_recursive_route_ebgp_multi_hop/test_BGP_path_attributes_default_values_p1": Testcase test_BGP_path_attributes_default_values_p1: Failed 
   Error : Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']
  
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']\n" is True
2021-07-08 14:44:41,118 ERROR: assert failed at "test_bgp_aggregation/test_route_summarisation_with_summary_only_p1": Testcase  : Failed 
   Error: test_route_summarisation_with_summary_only_p1
assert "[DUT: r3]: Missing route in RIB, routes: ['10.1.1.0/24', '10.1.2.0/24', '10.1.3.0/24']" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO5U18I386/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 9: No useful log found
Topotests debian 10 amd64 part 4: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO4DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 4:

2021-07-08 14:27:39,365 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:28:13,207 ERROR: assert failed at "test_ebgp_gshut_topo1/test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0": Test case test_verify_restarting_zebra_bgpd_staticd_frr_with_eBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r3, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:29:03,494 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0": Test case test_verify_graceful_shutdown_functionality_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:29:37,286 ERROR: assert failed at "test_ibgp_gshut_topo1/test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0": Test case test_verify_deleting_re_adding_route_map_with_iBGP_peers_p0 : Failed 
   Error: Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']
  
assert "Missing route in RIB of router r4, routes: ['100.0.10.1/32', '100.0.10.2/32', '100.0.10.3/32', '100.0.10.4/32', '100.0.10.5/32']\n" is True
2021-07-08 14:33:25,491 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2021-07-08 14:33:25,778 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2021-07-08 14:33:26,064 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2021-07-08 14:33:26,353 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2021-07-08 14:33:28,086 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 1:a:2 



2021-07-08 14:36:31,670 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 2583, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO4DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO4DEB10AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 9: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO9U18AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9:

2021-07-08 14:10:09,337 ERROR: 'router_json_cmp' failed after 38.70 seconds
2021-07-08 14:10:09,340 ERROR: assert failed at "test_ospf6_topo2/test_nssa_lsa_type7": "r4" convergence failure
assert Generated JSON diff error report:
  
  > $->areaScopedLinkStateDb: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "areaId": "0.0.0.2",
  	    "lsa": [
  	        {
  	            "advertisingRouter": "10.254.254.2",
  	            "prefix": "2001:db8:100::/64",
  	            "type": "NSSA",
  	            "forwardingAddress": "2001:db8:3::1"
  	        }
  	    ]
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $->areaScopedLinkStateDb[0]->lsa: d2 has the following element at index 0 which is not present in d1: 
  	
  		{
  		    "advertisingRouter": "10.254.254.2",
  		    "prefix": "2001:db8:100::/64",
  		    "type": "NSSA",
  		    "forwardingAddress": "2001:db8:3::1"
  		}
  	
  		Closest match in d1 is at index 1 with the following errors: 
  	
  		> $->areaScopedLinkStateDb[0]->lsa[1]->prefix: d1 has element with value '2001:db8:3::/64' but in d2 it has value '2001:db8:100::/64'
  	
  
2021-07-08 14:11:58,738 ERROR: assert failed at "test_ospf_asbr_summary_topo1/test_ospf_type5_summary_tc43_p0": Testcase test_ospf_type5_summary_tc43_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:13:48,295 ERROR: assert failed at "test_ospf_asbr_summary_type7_lsa/test_ospf_type5_summary_tc44_p0": Testcase test_ospf_type5_summary_tc44_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32', '12.0.20.1/32', '12.0.20.2/32', '12.0.20.3/32', '12.0.20.4/32', '12.0.20.5/32']" is True
2021-07-08 14:17:59,712 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc31_p1": Testcase test_ospf_chaos_tc31_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:19:20,397 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc32_p1": Testcase test_ospf_chaos_tc32_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:20:41,057 ERROR: assert failed at "test_ospf_chaos/test_ospf_chaos_tc34_p1": Testcase test_ospf_chaos_tc34_p1 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:22:28,730 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_tc16_p0": Testcase test_ospf_ecmp_tc16_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:24:38,322 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_lan_ecmp_tc18_p0": Testcase test_ospf_lan_ecmp_tc18_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:27:16,025 ERROR: assert failed at "test_ospf_nssa/test_ospf_learning_tc15_p0": Testcase test_ospf_learning_tc15_p0 : Failed 
   Error: [DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r0]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:29:27,224 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc19_p0": Testcase test_ospf_routemaps_functionality_tc19_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:30:56,913 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc21_p0": Testcase test_ospf_routemaps_functionality_tc21_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32', '11.0.20.2/32', '11.0.20.3/32', '11.0.20.4/32', '11.0.20.5/32']" is True
2021-07-08 14:32:16,590 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_functionality_tc24_p0": Testcase test_ospf_routemaps_functionality_tc24_p0 : Failed 
   Error: [DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['11.0.20.1/32']" is True
2021-07-08 14:34:06,589 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_redistribution_tc8_p1": Testcase test_ospf_redistribution_tc8_p1 : Failed 
   Error: No route found in rib of router r1..
assert 'No route found in rib of router r1..' is True
2021-07-08 14:34:16,494 ERROR: r1: bgpd left a dead pidfile (pid=23825)
2021-07-08 14:35:29,640 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf hello-interval 65536 


2021-07-08 14:36:13,974 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 1874, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO9U18AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf dead-interval 65536 

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO9U18AMD64/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 5: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO5DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 5:

2021-07-08 14:06:03,642 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_address_unambiguous_within_each_vrf_p0": Testcase test_address_unambiguous_within_each_vrf_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:06:41,128 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_ambiguous_overlapping_addresses_in_different_vrfs_p0": Testcase test_ambiguous_overlapping_addresses_in_different_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:07:20,678 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_associated_to_specific_vrfs_p0": Testcase test_static_routes_associated_to_specific_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:08:00,319 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_with_unique_physical_interface_p0": Testcase test_vrf_with_unique_physical_interface_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:08:39,804 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefixes_leaking_p0": Testcase test_prefixes_leaking_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:09:18,057 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_advertised_within_specific_vrf_p0": Testcase test_static_routes_advertised_within_specific_vrf_p0 : Failed 
   Error No route found in rib of router red1..
assert 'No route found in rib of router red1..' is True
2021-07-08 14:10:02,059 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_end_to_end_traffic_isolation_p0": Testcase test_end_to_end_traffic_isolation_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:11:34,267 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0": Testcase test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:14:51,095 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0": Test case test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0 : Failed 
   Error: Prefix 1.1.1.1/32 not found in BGP table of router: r2
assert 'Prefix 1.1.1.1/32 not found in BGP table of router: r2' is True
2021-07-08 14:15:35,240 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_match_traffic_based_on_vrf_p0": Testcase test_route_map_match_traffic_based_on_vrf_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:16:32,273 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_lite_with_static_bgp_originated_routes_p0": Testcase test_vrf_lite_with_static_bgp_originated_routes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:17:12,468 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefix_list_to_permit_deny_prefixes_p0": Testcase test_prefix_list_to_permit_deny_prefixes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:17:52,380 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_tag_p0": Testcase test_route_map_set_and_match_tag_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:18:33,963 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_metric_p0": Testcase test_route_map_set_and_match_metric_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:20:28,314 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error [DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:21:38,689 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_vlan_routing_table_p1": Testcase test_vrf_vlan_routing_table_p1 : Failed 
   Error Missing route in RIB of router r3, routes: ['1.1.1.1/32']
  
assert "Missing route in RIB of router r3, routes: ['1.1.1.1/32']\n" is True
2021-07-08 14:23:04,772 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_bgpd_daemon_p1": Testcase test_restart_bgpd_daemon_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:24:03,563 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_name_significance_p1": Testcase test_vrf_name_significance_p1 :Failed 
   Error Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:24:55,087 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_frr_services_p1": Testcase test_restart_frr_services_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:35:20,912 ERROR: assert failed at "test_bgp_recursive_route_ebgp_multi_hop/test_BGP_path_attributes_default_values_p1": Testcase test_BGP_path_attributes_default_values_p1: Failed 
   Error : Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']
  
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']\n" is True
2021-07-08 14:36:27,053 ERROR: r4: bgpd left a dead pidfile (pid=1588)
2021-07-08 14:38:15,405 ERROR: assert failed at "test_bgp_aggregation/test_route_summarisation_with_summary_only_p1": Testcase  : Failed 
   Error: test_route_summarisation_with_summary_only_p1
assert "[DUT: r3]: Missing route in RIB, routes: ['10.1.1.0/24', '10.1.2.0/24', '10.1.3.0/24']" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO5DEB10AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 5: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO5U18AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 5:

2021-07-08 14:07:10,513 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_address_unambiguous_within_each_vrf_p0": Testcase test_address_unambiguous_within_each_vrf_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:07:47,480 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_ambiguous_overlapping_addresses_in_different_vrfs_p0": Testcase test_ambiguous_overlapping_addresses_in_different_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:08:28,514 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_associated_to_specific_vrfs_p0": Testcase test_static_routes_associated_to_specific_vrfs_p0 : Failed 
   Error [DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: red1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:09:10,859 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_with_unique_physical_interface_p0": Testcase test_vrf_with_unique_physical_interface_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:09:49,478 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefixes_leaking_p0": Testcase test_prefixes_leaking_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:10:29,046 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_static_routes_advertised_within_specific_vrf_p0": Testcase test_static_routes_advertised_within_specific_vrf_p0 : Failed 
   Error No route found in rib of router red1..
assert 'No route found in rib of router red1..' is True
2021-07-08 14:11:14,026 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_end_to_end_traffic_isolation_p0": Testcase test_end_to_end_traffic_isolation_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:12:52,151 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0": Testcase test_route_map_within_vrf_to_alter_bgp_attribute_nexthop_p0 : Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:16:08,635 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0": Test case test_route_map_within_vrf_to_alter_bgp_attribute_lcomm_p0 : Failed 
   Error: Prefix 1.1.1.1/32 not found in BGP table of router: r2
assert 'Prefix 1.1.1.1/32 not found in BGP table of router: r2' is True
2021-07-08 14:16:51,994 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_match_traffic_based_on_vrf_p0": Testcase test_route_map_match_traffic_based_on_vrf_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router r1, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:17:47,945 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_vrf_lite_with_static_bgp_originated_routes_p0": Testcase test_vrf_lite_with_static_bgp_originated_routes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:18:27,618 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_prefix_list_to_permit_deny_prefixes_p0": Testcase test_prefix_list_to_permit_deny_prefixes_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:19:06,580 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_tag_p0": Testcase test_route_map_set_and_match_tag_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32']" is True
2021-07-08 14:19:47,718 ERROR: assert failed at "test_bgp_multi_vrf_topo1/test_route_map_set_and_match_metric_p0": Testcase test_route_map_set_and_match_metric_p0 : Failed 
   Error [DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r1]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:21:43,868 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error [DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']
assert "[DUT: r4]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32']" is True
2021-07-08 14:22:53,573 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_vlan_routing_table_p1": Testcase test_vrf_vlan_routing_table_p1 : Failed 
   Error Missing route in RIB of router r3, routes: ['1.1.1.1/32']
  
assert "Missing route in RIB of router r3, routes: ['1.1.1.1/32']\n" is True
2021-07-08 14:24:17,538 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_bgpd_daemon_p1": Testcase test_restart_bgpd_daemon_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:25:16,167 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_name_significance_p1": Testcase test_vrf_name_significance_p1 :Failed 
   Error Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']
  
assert "Missing route in RIB of router red2, routes: ['1.1.1.1/32', '1.1.1.2/32']\n" is True
2021-07-08 14:26:07,706 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_restart_frr_services_p1": Testcase test_restart_frr_services_p1 :Failed 
   Error [DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']
assert "[DUT: r2]: Missing route in RIB, routes: ['1.1.1.1/32', '1.1.1.2/32', '2.1.1.1/32', '2.1.1.2/32']" is True
2021-07-08 14:36:19,533 ERROR: assert failed at "test_bgp_recursive_route_ebgp_multi_hop/test_BGP_path_attributes_default_values_p1": Testcase test_BGP_path_attributes_default_values_p1: Failed 
   Error : Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']
  
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32', '100.1.1.2/32']\n" is True
2021-07-08 14:39:12,616 ERROR: assert failed at "test_bgp_aggregation/test_route_summarisation_with_summary_only_p1": Testcase  : Failed 
   Error: test_route_summarisation_with_summary_only_p1
assert "[DUT: r3]: Missing route in RIB, routes: ['10.1.1.0/24', '10.1.2.0/24', '10.1.3.0/24']" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO5U18AMD64/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 6: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO6DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 6:

2021-07-08 14:13:45,368 ERROR: assert failed at "test_route_map_topo2/test_create_rmap_to_match_tag_permit_inbound_prefixes_p0": Testcase test_create_rmap_to_match_tag_permit_inbound_prefixes_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 14:16:55,019 ERROR: 'router_json_cmp' failed after 1.57 seconds
2021-07-08 14:16:55,021 ERROR: assert failed at "test_bgp_suppress_fib/test_bgp_route": "r3" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '40.0.0.0/8' which is not present in d1
2021-07-08 14:18:52,874 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_routes_advertised_to_iBGP_peer_p0": Testcase test_dynamic_imported_routes_advertised_to_iBGP_peer_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']
  
assert "Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']\n" is True
2021-07-08 14:19:25,717 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_matching_prefix_based_on_community_list_p0": Testcase test_dynamic_imported_matching_prefix_based_on_community_list_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:19:58,848 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_routemap_operatons_with_dynamic_import_p0": Testcase test_routemap_operatons_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:20:53,067 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_bgp_best_path_with_dynamic_import_p0": Testcase test_bgp_best_path_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['50.50.50.5/32']
  
assert "Missing route in RIB of router r1, routes: ['50.50.50.5/32']\n" is True
2021-07-08 14:21:26,284 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_modify_route_map_match_set_clauses_p1": Testcase test_modify_route_map_match_set_clauses_p1 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
*** defaultIntf: warning: r1 has no interfaces
2021-07-08 14:23:41,911 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_chaos_topo1/test_verify_overlay_index_p1": Testcase test_verify_overlay_index_p1 :Failed 
   Error: [DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']
assert "[DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']" is True
2021-07-08 14:25:16,551 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_topo1/test_RD_verification_manual_and_auto_p0": Testcase test_RD_verification_manual_and_auto_p0 on d1 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO6DEB10AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 i386 part 2: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO2U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 2:

2021-07-08 14:08:08,286 ERROR: '_all_routes_advertised' failed after 180.09 seconds
2021-07-08 14:08:08,287 ERROR: assert failed at "bgp_conditional_advertisement.test_bgp_conditional_advertisement/test_bgp_conditional_advertisement": TC11: "router3" BGP convergence - FAILED!!!
assert Generated JSON diff error report:
  
  > $: d2 has key '0.0.0.0/0' which is not present in d1
  > $: d2 has key '192.0.2.5/32' which is not present in d1
  > $: d2 has key '192.0.2.1/32' which is not present in d1
2021-07-08 14:09:13,943 ERROR: '_bgp_default_route_is_valid' failed after 26.61 seconds
2021-07-08 14:09:45,328 ERROR: '_bgp_default_route_is_valid' failed after 25.25 seconds
2021-07-08 14:10:02,454 ERROR: r1: bgpd left a dead pidfile (pid=17780)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO2U18I386/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 7: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO7DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 7:

2021-07-08 14:22:41,978 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::20a6:9fff:fe0b:5c5e/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::48f6:21ff:fef5:3272/64']
2021-07-08 14:22:41,978 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:42,265 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::b43e:c5ff:fece:ae56/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3c1d:89ff:fe0a:ded6/64']
2021-07-08 14:22:42,265 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:42,554 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::fc37:6aff:fe2c:66eb/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::18ae:2dff:fe6e:7392/64']
2021-07-08 14:22:42,554 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:00,111 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::48f6:21ff:fef5:3272/64']
2021-07-08 14:23:00,111 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:00,396 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::b43e:c5ff:fece:ae56/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3c1d:89ff:fe0a:ded6/64']
2021-07-08 14:23:00,397 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:00,703 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::fc37:6aff:fe2c:66eb/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::18ae:2dff:fe6e:7392/64']
2021-07-08 14:23:00,703 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:15,831 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::20a6:9fff:fe0b:5c5e/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::48f6:21ff:fef5:3272/64']
2021-07-08 14:23:15,831 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:16,117 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::b43e:c5ff:fece:ae56/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3c1d:89ff:fe0a:ded6/64']
2021-07-08 14:23:16,117 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:16,407 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::fc37:6aff:fe2c:66eb/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::18ae:2dff:fe6e:7392/64']
2021-07-08 14:23:16,408 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:30,794 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::20a6:9fff:fe0b:5c5e/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::48f6:21ff:fef5:3272/64']
2021-07-08 14:23:30,794 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:31,083 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3c1d:89ff:fe0a:ded6/64']
2021-07-08 14:23:31,083 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:31,371 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::fc37:6aff:fe2c:66eb/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::18ae:2dff:fe6e:7392/64']
2021-07-08 14:23:31,372 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:49,660 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::20a6:9fff:fe0b:5c5e/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::48f6:21ff:fef5:3272/64']
2021-07-08 14:23:49,661 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:49,950 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::b43e:c5ff:fece:ae56/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3c1d:89ff:fe0a:ded6/64']
2021-07-08 14:23:49,950 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:50,240 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::fc37:6aff:fe2c:66eb/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::18ae:2dff:fe6e:7392/64']
2021-07-08 14:23:50,240 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:47:39,073 ERROR: assert failed at "test_static_routes_topo2_ibgp/test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp": Testcase test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp : Failed 
  Error: Routes are missing in RIB
assert 'No route found in rib of router r3..' is True
*** defaultIntf: warning: r1 has no interfaces
*** defaultIntf: warning: r1 has no interfaces

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO7DEB10AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 arm8 part 6: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 6: No useful log found
Topotests Ubuntu 18.04 i386 part 7: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO7U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7:

2021-07-08 14:22:32,672 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::54cd:57ff:fe35:1a5b/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::5c15:dff:fee9:ea25/64']
2021-07-08 14:22:32,672 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:33,016 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::400d:a9ff:fea0:2ebf/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3cab:f6ff:fed2:f223/64']
2021-07-08 14:22:33,016 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:33,358 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::44a9:cff:fec1:4a0e/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::10e5:5aff:fe9e:98dc/64']
2021-07-08 14:22:33,358 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:50,548 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::5c15:dff:fee9:ea25/64']
2021-07-08 14:22:50,549 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:51,009 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::400d:a9ff:fea0:2ebf/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3cab:f6ff:fed2:f223/64']
2021-07-08 14:22:51,009 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:22:51,379 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::44a9:cff:fec1:4a0e/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::10e5:5aff:fe9e:98dc/64']
2021-07-08 14:22:51,380 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:07,999 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::54cd:57ff:fe35:1a5b/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::5c15:dff:fee9:ea25/64']
2021-07-08 14:23:07,999 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:08,359 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::400d:a9ff:fea0:2ebf/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3cab:f6ff:fed2:f223/64']
2021-07-08 14:23:08,360 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:08,728 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::44a9:cff:fec1:4a0e/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::10e5:5aff:fe9e:98dc/64']
2021-07-08 14:23:08,728 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:27,492 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::54cd:57ff:fe35:1a5b/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::5c15:dff:fee9:ea25/64']
2021-07-08 14:23:27,492 WARNING: {'1': {'r1-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:27,985 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Config, Active, Circuit Id: 0x0', ' Type: Unknown, Level: L1', ' Level-1 Information:', ' Metric: 16777214, Active neighbors: 0', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3cab:f6ff:fed2:f223/64']
2021-07-08 14:23:27,986 WARNING: {'1': {'r2-eth1': [{'metric': '16777214', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:28,393 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::44a9:cff:fec1:4a0e/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::10e5:5aff:fe9e:98dc/64']
2021-07-08 14:23:28,393 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:46,791 WARNING: ['Area 1:', ' Interface: r1-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.1/24', ' IPv6 Link-Locals:', ' fe80::54cd:57ff:fe35:1a5b/64', '', ' Interface: r1-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.1/24', ' IPv6 Link-Locals:', ' fe80::5c15:dff:fee9:ea25/64']
2021-07-08 14:23:46,791 WARNING: {'1': {'r1-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r1-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:47,315 WARNING: ['Area 1:', ' Interface: r2-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.1.2/24', ' IPv6 Link-Locals:', ' fe80::400d:a9ff:fea0:2ebf/64', '', ' Interface: r2-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.2/24', ' IPv6 Link-Locals:', ' fe80::3cab:f6ff:fed2:f223/64']
2021-07-08 14:23:47,315 WARNING: {'1': {'r2-eth1': [{'metric': '10', 'level': 'Level-1'}], 'r2-eth2': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:23:47,832 WARNING: ['Area 1:', ' Interface: r3-eth1, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.2.3/24', ' IPv6 Link-Locals:', ' fe80::44a9:cff:fec1:4a0e/64', '', ' Interface: r3-eth2, State: Up, Active, Circuit Id: 0x0', ' Type: p2p, Level: L1', ' Level-1 Information:', ' Metric: 10, Active neighbors: 1', ' Hello interval: 3, Holddown count: 10 (pad)', ' CNSP interval: 10, PSNP interval: 2', ' IP Prefix(es):', ' 10.0.3.3/24', ' IPv6 Link-Locals:', ' fe80::10e5:5aff:fe9e:98dc/64']
2021-07-08 14:23:47,833 WARNING: {'1': {'r3-eth2': [{'metric': '10', 'level': 'Level-1'}], 'r3-eth1': [{'metric': '10', 'level': 'Level-1'}]}}
2021-07-08 14:52:50,992 ERROR: assert failed at "test_static_routes_topo2_ibgp/test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp": Testcase test_static_route_8nh_diff_AD_bgp_ecmp_p1_tc6_ibgp : Failed 
  Error: Routes are missing in RIB
assert 'No route found in rib of router r3..' is True
*** defaultIntf: warning: r1 has no interfaces
*** defaultIntf: warning: r1 has no interfaces

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO7U18I386/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: No useful log found
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 7: No useful log found
Topotests Ubuntu 18.04 amd64 part 6: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO6U18AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

2021-07-08 14:14:28,017 ERROR: assert failed at "test_route_map_topo2/test_create_rmap_to_match_tag_permit_inbound_prefixes_p0": Testcase test_create_rmap_to_match_tag_permit_inbound_prefixes_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 14:17:25,365 ERROR: 'router_json_cmp' failed after 1.60 seconds
2021-07-08 14:17:25,368 ERROR: assert failed at "test_bgp_suppress_fib/test_bgp_route": "r3" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '40.0.0.0/8' which is not present in d1
2021-07-08 14:19:22,088 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_routes_advertised_to_iBGP_peer_p0": Testcase test_dynamic_imported_routes_advertised_to_iBGP_peer_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']
  
assert "Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']\n" is True
2021-07-08 14:19:55,373 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_matching_prefix_based_on_community_list_p0": Testcase test_dynamic_imported_matching_prefix_based_on_community_list_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:20:29,306 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_routemap_operatons_with_dynamic_import_p0": Testcase test_routemap_operatons_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:21:26,444 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_bgp_best_path_with_dynamic_import_p0": Testcase test_bgp_best_path_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['50.50.50.5/32']
  
assert "Missing route in RIB of router r1, routes: ['50.50.50.5/32']\n" is True
2021-07-08 14:22:00,335 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_modify_route_map_match_set_clauses_p1": Testcase test_modify_route_map_match_set_clauses_p1 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
*** defaultIntf: warning: r1 has no interfaces
2021-07-08 14:24:17,786 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_chaos_topo1/test_verify_overlay_index_p1": Testcase test_verify_overlay_index_p1 :Failed 
   Error: [DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']
assert "[DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']" is True
2021-07-08 14:25:56,537 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_topo1/test_RD_verification_manual_and_auto_p0": Testcase test_RD_verification_manual_and_auto_p0 on d1 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO6U18AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 arm8 part 2: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO2U18ARM8-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 2:

*** Error setting resource limits. Mininet's performance may be affected.
2021-07-08 14:07:34,500 ERROR: '_all_routes_advertised' failed after 203.01 seconds
2021-07-08 14:07:34,503 ERROR: assert failed at "bgp_conditional_advertisement.test_bgp_conditional_advertisement/test_bgp_conditional_advertisement": TC11: "router3" BGP convergence - FAILED!!!
assert Generated JSON diff error report:
  
  > $: d2 has key '0.0.0.0/0' which is not present in d1
  > $: d2 has key '192.0.2.5/32' which is not present in d1
  > $: d2 has key '192.0.2.1/32' which is not present in d1
2021-07-08 14:07:55,880 ERROR: r1: zebra left a dead pidfile (pid=2054)
2021-07-08 14:08:07,079 ERROR: r2: zebra left a dead pidfile (pid=2692)
2021-07-08 14:08:59,151 ERROR: '_bgp_default_route_is_valid' failed after 31.74 seconds
2021-07-08 14:09:37,940 ERROR: '_bgp_default_route_is_valid' failed after 31.76 seconds
2021-07-08 14:09:48,502 ERROR: r2: zebra left a dead pidfile (pid=4038)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

r1 failed IP Routing table check:
--- Actual IP Routing Table
+++ Expected IP RoutingTable
@@ -21,7 +21,12 @@
 S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
 S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
2021-07-08 14:07:39,639 ERROR: assert failed at "test_all_protocol_startup/test_converge_protocols": IP Routing table failed for r1
  --- Actual IP Routing Table
  +++ Expected IP RoutingTable
  @@ -21,7 +21,12 @@
   S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
   S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
assert 1 == 0
  -1
  +0
2021-07-08 14:11:04,029 ERROR: rt5: zebra left a dead pidfile (pid=21462)
2021-07-08 14:15:20,972 ERROR: assert failed at "test_bgp_as_allow_in/test_bgp_allowas_in_p0": Testcase test_bgp_allowas_in_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 14:41:22,434 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
% Specify remote-as or peer-group commands first
line 7: Failure to communicate[13] to bgpd, line: neighbor 10.0.0.13 timers 3 10 

line 9: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 11: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 timers 3 10 

% Specify remote-as or peer-group commands first
line 14: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2021-07-08 14:41:22,967 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2021-07-08 14:43:25,699 ERROR: assert failed at "bgp_basic_functionality_topo1.test_bgp_basic_functionality/test_BGP_attributes_with_vrf_default_keyword_p0": Testcase  : Failed 
   Error: test_BGP_attributes_with_vrf_default_keyword_p0
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32']\n" is True
2021-07-08 14:46:49,925 ERROR: assert failed at "test_bgp_communities_topo2/test_bgp_no_export_local_as_and_internet_communities_p0": Test case test_bgp_no_export_local_as_and_internet_communities_p0 : Should fail 
   Error: Prefix 192.0.2.1/32 not found in BGP table of router: r1
assert 'Prefix 192.0.2.1/32 not found in BGP table of router: r1' is True
2021-07-08 14:47:35,139 ERROR: y2: zebra left a dead pidfile (pid=18989)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 amd64 part 2: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1804AMD64-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 2:

2021-07-08 14:07:15,160 ERROR: '_all_routes_advertised' failed after 172.27 seconds
2021-07-08 14:07:15,162 ERROR: assert failed at "bgp_conditional_advertisement.test_bgp_conditional_advertisement/test_bgp_conditional_advertisement": TC11: "router3" BGP convergence - FAILED!!!
assert Generated JSON diff error report:
  
  > $: d2 has key '0.0.0.0/0' which is not present in d1
  > $: d2 has key '192.0.2.5/32' which is not present in d1
  > $: d2 has key '192.0.2.1/32' which is not present in d1
2021-07-08 14:08:15,783 ERROR: '_bgp_default_route_is_valid' failed after 24.01 seconds
2021-07-08 14:08:46,510 ERROR: '_bgp_default_route_is_valid' failed after 24.29 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 i386 part 1: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO1U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 1:

r1 failed IP Routing table check:
--- Actual IP Routing Table
+++ Expected IP RoutingTable
@@ -21,7 +21,12 @@
 S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
 S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
2021-07-08 16:06:41,147 ERROR: assert failed at "test_all_protocol_startup/test_converge_protocols": IP Routing table failed for r1
  --- Actual IP Routing Table
  +++ Expected IP RoutingTable
  @@ -21,7 +21,12 @@
   S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
   S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
assert 1 == 0
  -1
  +0
2021-07-08 16:14:15,101 ERROR: assert failed at "test_bgp_as_allow_in/test_bgp_allowas_in_p0": Testcase test_bgp_allowas_in_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 16:41:06,344 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
% Specify remote-as or peer-group commands first
line 7: Failure to communicate[13] to bgpd, line: neighbor 10.0.0.13 timers 3 10 

line 9: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 11: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 timers 3 10 

% Specify remote-as or peer-group commands first
line 14: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2021-07-08 16:41:06,988 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1U18I386/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2021-07-08 16:43:19,579 ERROR: assert failed at "bgp_basic_functionality_topo1.test_bgp_basic_functionality/test_BGP_attributes_with_vrf_default_keyword_p0": Testcase  : Failed 
   Error: test_BGP_attributes_with_vrf_default_keyword_p0
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32']\n" is True
2021-07-08 16:46:50,321 ERROR: assert failed at "test_bgp_communities_topo2/test_bgp_no_export_local_as_and_internet_communities_p0": Test case test_bgp_no_export_local_as_and_internet_communities_p0 : Should fail 
   Error: Prefix 192.0.2.1/32 not found in BGP table of router: r1
assert 'Prefix 192.0.2.1/32 not found in BGP table of router: r1' is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO1U18I386/ErrorLog/log_topotests.txt

Topotests Ubuntu 18.04 i386 part 6: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO6U18I386-20124/test

Topology Tests failed for Topotests Ubuntu 18.04 i386 part 6:

2021-07-08 14:16:14,922 ERROR: assert failed at "test_route_map_topo2/test_create_rmap_to_match_tag_permit_inbound_prefixes_p0": Testcase test_create_rmap_to_match_tag_permit_inbound_prefixes_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 14:19:25,497 ERROR: 'router_json_cmp' failed after 1.78 seconds
2021-07-08 14:19:25,499 ERROR: assert failed at "test_bgp_suppress_fib/test_bgp_route": "r3" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '40.0.0.0/8' which is not present in d1
2021-07-08 14:21:28,728 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_routes_advertised_to_iBGP_peer_p0": Testcase test_dynamic_imported_routes_advertised_to_iBGP_peer_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']
  
assert "Missing route in RIB of router r1, routes: ['30.30.30.3/32', '30.30.30.30/32', '50.50.50.5/32', '50.50.50.50/32']\n" is True
2021-07-08 14:22:06,259 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_dynamic_imported_matching_prefix_based_on_community_list_p0": Testcase test_dynamic_imported_matching_prefix_based_on_community_list_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:22:43,703 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo1/test_routemap_operatons_with_dynamic_import_p0": Testcase test_routemap_operatons_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
2021-07-08 14:23:43,377 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_bgp_best_path_with_dynamic_import_p0": Testcase test_bgp_best_path_with_dynamic_import_p0 : Failed 
   Error Missing route in RIB of router r1, routes: ['50.50.50.5/32']
  
assert "Missing route in RIB of router r1, routes: ['50.50.50.5/32']\n" is True
2021-07-08 14:24:19,903 ERROR: assert failed at "test_bgp_vrf_dynamic_route_leak_topo2/test_modify_route_map_match_set_clauses_p1": Testcase test_modify_route_map_match_set_clauses_p1 : Failed 
   Error Missing route in RIB of router r1, routes: ['11.11.11.1/32']
  
assert "Missing route in RIB of router r1, routes: ['11.11.11.1/32']\n" is True
*** defaultIntf: warning: r1 has no interfaces
2021-07-08 14:26:47,452 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_chaos_topo1/test_verify_overlay_index_p1": Testcase test_verify_overlay_index_p1 :Failed 
   Error: [DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']
assert "[DUT: e1]: Missing route in RIB, routes: ['10.1.1.1/32']" is True
2021-07-08 14:28:44,402 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_topo1/test_RD_verification_manual_and_auto_p0": Testcase test_RD_verification_manual_and_auto_p0 on d1 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO6U18I386/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 2: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO2DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 2:

2021-07-08 14:08:05,291 ERROR: '_all_routes_advertised' failed after 168.24 seconds
2021-07-08 14:08:05,297 ERROR: assert failed at "bgp_conditional_advertisement.test_bgp_conditional_advertisement/test_bgp_conditional_advertisement": TC11: "router3" BGP convergence - FAILED!!!
assert Generated JSON diff error report:
  
  > $: d2 has key '0.0.0.0/0' which is not present in d1
  > $: d2 has key '192.0.2.5/32' which is not present in d1
  > $: d2 has key '192.0.2.1/32' which is not present in d1
2021-07-08 14:09:08,737 ERROR: '_bgp_default_route_is_valid' failed after 23.91 seconds
2021-07-08 14:09:38,875 ERROR: '_bgp_default_route_is_valid' failed after 23.71 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO2DEB10AMD64/ErrorLog/log_topotests.txt

Topotests debian 10 amd64 part 1: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO1DEB10AMD64-20124/test

Topology Tests failed for Topotests debian 10 amd64 part 1:

r1 failed IP Routing table check:
--- Actual IP Routing Table
+++ Expected IP RoutingTable
@@ -21,7 +21,12 @@
 S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
 S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
 S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
+S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
+S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
2021-07-08 14:06:27,744 ERROR: assert failed at "test_all_protocol_startup/test_converge_protocols": IP Routing table failed for r1
  --- Actual IP Routing Table
  +++ Expected IP RoutingTable
  @@ -21,7 +21,12 @@
   S>* 4.5.6.10/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.11/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.12/32 [1/0] is directly connected, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.13/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.14/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
   S   4.5.6.15/32 [255/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S   4.5.6.16/32 [10/0] via 192.168.0.4, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.16/32 [5/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
   S>* 4.5.6.17/32 [1/0] via 192.168.0.2, r1-eth0, weight 1, XX:XX:XX
  +S>* 4.5.6.7/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.8/32 [1/0] unreachable (blackhole), weight 1, XX:XX:XX
  +S>* 4.5.6.9/32 [1/0] unreachable (ICMP unreachable), weight 1, XX:XX:XX
assert 1 == 0
  -1
  +0
2021-07-08 14:14:30,669 ERROR: assert failed at "test_bgp_as_allow_in/test_bgp_allowas_in_p0": Testcase test_bgp_allowas_in_p0 : Failed 
   Error: No route found in rib of router r3..
assert 'No route found in rib of router r3..' is True
2021-07-08 14:27:34,641 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
% Specify remote-as or peer-group commands first
line 7: Failure to communicate[13] to bgpd, line: neighbor 10.0.0.13 timers 3 10 

line 9: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 11: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 timers 3 10 

% Specify remote-as or peer-group commands first
line 14: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2021-07-08 14:27:35,223 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/bgp.py", line 203, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/common_config.py", line 363, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TOPO1DEB10AMD64/topotests/lib/common_config.py", line 617, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2021-07-08 14:29:36,614 ERROR: assert failed at "bgp_basic_functionality_topo1.test_bgp_basic_functionality/test_BGP_attributes_with_vrf_default_keyword_p0": Testcase  : Failed 
   Error: test_BGP_attributes_with_vrf_default_keyword_p0
assert "Missing route in RIB of router r4, routes: ['100.1.1.1/32']\n" is True
2021-07-08 14:33:06,241 ERROR: assert failed at "test_bgp_communities_topo2/test_bgp_no_export_local_as_and_internet_communities_p0": Test case test_bgp_no_export_local_as_and_internet_communities_p0 : Should fail 
   Error: Prefix 192.0.2.1/32 not found in BGP table of router: r1
assert 'Prefix 192.0.2.1/32 not found in BGP table of router: r1' is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-20124/artifact/TOPO1DEB10AMD64/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • Static analyzer (clang)
  • Topotests Ubuntu 18.04 arm8 part 0
  • Topotests Ubuntu 18.04 amd64 part 0
  • Addresssanitizer topotests part 5
  • Topotests Ubuntu 18.04 i386 part 0
  • Addresssanitizer topotests part 0
  • IPv4 ldp protocol on Ubuntu 18.04
  • Topotests Ubuntu 18.04 amd64 part 3
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 1
  • IPv6 protocols on Ubuntu 18.04
  • Topotests debian 10 amd64 part 8
  • Addresssanitizer topotests part 4
  • IPv4 protocols on Ubuntu 18.04
  • Addresssanitizer topotests part 8
  • Addresssanitizer topotests part 6
  • Ubuntu 20.04 deb pkg check
  • Ubuntu 16.04 deb pkg check
  • Addresssanitizer topotests part 2
  • Ubuntu 18.04 deb pkg check
  • Topotests Ubuntu 18.04 arm8 part 3
  • CentOS 7 rpm pkg check
  • Debian 10 deb pkg check
  • Topotests Ubuntu 18.04 amd64 part 8
  • Debian 9 deb pkg check
  • Addresssanitizer topotests part 9
  • Topotests debian 10 amd64 part 3
  • Topotests debian 10 amd64 part 0
  • Topotests Ubuntu 18.04 i386 part 8
  • Topotests Ubuntu 18.04 i386 part 3
  • Addresssanitizer topotests part 7
  • Topotests Ubuntu 18.04 arm8 part 8
  • Addresssanitizer topotests part 3

@github-actions
Copy link

This pull request has conflicts, please resolve those before we can evaluate the pull request.

@rzalamena
Copy link
Member

The typedef to enum conversion was done here #9410 , we might be missing the improved blackhole handling and the reject nexthop-vrf checks. This PR needs rebase.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants