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

bgpd: BGP neighbor password change doesn't take effect with a a particular config on reboot #7432

Conversation

sudhanshukumar22
Copy link
Contributor

@sudhanshukumar22 sudhanshukumar22 commented Oct 31, 2020

bgpd: BGP neighbor password change doesn't take effect with a a particular config on reboot

Description: when vrf add is received, add Vrf-name to the interface database. This is needed while binding the VRF interface to the BGP socket.
In this case, the global bgp config containing vrf is received before zebra sends vrf add message to BGP. When we receive the global bgp vrf message
first, vrf interface is not present in the interface database of BGP. So, while creating the global bgp socket with vrf, interface bind to the vrf interface fails. This creates a BGP socket without vrf binding(i.e. socket in default VRF). The socket is used by another BGP instance (if present for default VRF) to send out BGP packets.

Problem Description/Summary :
changing the neighbor password resets the session immediately but it doesn't use the password. It continues to operate without password.

Managed to recreate the issue with below reduced config.

Setup:
Sonic1------Sonic2

Test Steps:

  1. Configure eBGP session between Sonic-1 and Sonic2 in default vrf using Peer-group.
  2. Create a dummy non-default vrf BGP instance on Sonic1 device.
  3. Save and reload Sonic1 device.
  4. Once the device is up, try to configure 'password ' on Sonic1 BGP neighbor alone.
  5. The eBGP session should go down and must not come up until matching password is configured on Sonic2 device. But it comes up. This is because BGP packets are sent using other BGP socket (which was created using dummy non-default vrf BGP instance where vrf binding to the BGP socket had failed).

Expected Behavior :
The eBGP session should go down and must not come up until matching password is configured on Sonic2 device.

Signed-off-by: sudhanshukumar22 sudhanshu.kumar@broadcom.com

@polychaeta polychaeta added the bgp label Oct 31, 2020
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/40666c5c228a1f34246a40af19758f13/raw/426e75fb66a4bfa7df6c1b1db9cdc5f0e195cc08/cr_7432_1604148615.diff | git apply

diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c
index 03f479033..2eb518c83 100644
--- a/bgpd/bgp_main.c
+++ b/bgpd/bgp_main.c
@@ -265,12 +265,13 @@ static int bgp_vrf_new(struct vrf *vrf)
 	if (BGP_DEBUG(zebra, ZEBRA))
 		zlog_debug("VRF Created: %s(%u)", vrf->name, vrf->vrf_id);
 
-	zlog_info("VRF Creation message received: %s(%u)", vrf->name, vrf->vrf_id);
+	zlog_info("VRF Creation message received: %s(%u)", vrf->name,
+		  vrf->vrf_id);
 	struct interface *ifp;
 	ifp = if_get_by_name(vrf->name, vrf->vrf_id);
-	if (ifp)
-	{
-	       zlog_info("VRF interface Created: %s(%u) ifindex %d", ifp->name, ifp->vrf_id, ifp->ifindex);
+	if (ifp) {
+		zlog_info("VRF interface Created: %s(%u) ifindex %d", ifp->name,
+			  ifp->vrf_id, ifp->ifindex);
 	}
 
 	return 0;
@@ -280,9 +281,10 @@ static int bgp_vrf_delete(struct vrf *vrf)
 {
 	if (BGP_DEBUG(zebra, ZEBRA))
 		zlog_debug("VRF Deletion: %s(%u)", vrf->name, vrf->vrf_id);
-	zlog_info("VRF Deletion message received: %s(%u)", vrf->name, vrf->vrf_id);
-	/* No need to delete vrf here as it will be deleted when BGP client receives 
-	ZEBRA_VRF_DELETE message from zebra */
+	zlog_info("VRF Deletion message received: %s(%u)", vrf->name,
+		  vrf->vrf_id);
+	/* No need to delete vrf here as it will be deleted when BGP client
+	receives ZEBRA_VRF_DELETE message from zebra */
 
 	return 0;
 }
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c
index 044587fe9..34f37d091 100644
--- a/bgpd/bgpd.c
+++ b/bgpd/bgpd.c
@@ -5656,8 +5656,8 @@ int peer_password_set(struct peer *peer, const char *password)
 		 */
 		if (BGP_PEER_SU_UNSPEC(peer))
 			return BGP_SUCCESS;
-		ret =  (bgp_md5_set(peer) >= 0) ? BGP_SUCCESS
-						: BGP_ERR_TCPSIG_FAILED;
+		ret = (bgp_md5_set(peer) >= 0) ? BGP_SUCCESS
+					       : BGP_ERR_TCPSIG_FAILED;
 		/* Send notification or reset peer depending on state. */
 		if (BGP_IS_VALID_STATE_FOR_NOTIF(peer->status))
 			bgp_notify_send(peer, BGP_NOTIFY_CEASE,

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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: Failed

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15088/frr-source'
In file included from ./lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7387: pimd/mtracebis.o] Error 1
In file included from lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
In file included from lib/table.h:26,
lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/CENTOS8BUILD/config.status/config.status

Package building failed for CentOS 8 amd64 build
see package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/CENTOS8BUILD/ErrorLog/log_package_build.txt

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/CI009BUILD/ErrorLog/log_make.txt)

./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
ospfd/ospf_neighbor.c: In function 'ospf_nbr_lookup':
ospfd/ospf_neighbor.c:410:45: error: taking address of packed member of 'struct ip' may result in an unaligned pointer value [-Werror=address-of-packed-member]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7386: ospfd/ospf_neighbor.o] Error 1
In file included from ospfd/ospf_nsm.c:27:
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
In file included from ./lib/table.h:26,
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/CI009BUILD/config.status/config.status

Successful on other platforms/tests
  • Ubuntu 18.04 arm7 build
  • Debian 9 amd64 build
  • Ubuntu 18.04 ppc64le build
  • Ubuntu 16.04 i386 build
  • Ubuntu 16.04 arm8 build
  • Fedora 29 amd64 build
  • Ubuntu 18.04 arm8 build
  • Ubuntu 16.04 arm7 build
  • CentOS 7 amd64 build
  • Debian 10 amd64 build
  • Debian 8 amd64 build
  • FreeBSD 12 amd64 build
  • OpenBSD 6 amd64 build
  • NetBSD 8 amd64 build
  • Ubuntu 16.04 amd64 build
  • Ubuntu 18.04 amd64 build

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15088/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-gb4ec05d3e-0 (missing) -> 7.3-dev-20201031-00-gb4ec05d3e-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-gb4ec05d3e-0 (missing) -> 7.3-dev-20201031-00-gb4ec05d3e-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-gb4ec05d3e-0 (missing) -> 7.3-dev-20201031-00-gb4ec05d3e-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-gb4ec05d3e-0 (missing) -> 7.3-dev-20201031-00-gb4ec05d3e-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-gb4ec05d3e-0 (missing) -> 7.3-dev-20201031-00-gb4ec05d3e-0~deb10u1

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 31, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7432 226927b
Date 10/31/2020
Start 09:43:52
Finish 10:10:16
Run-Time 26:24
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-10-31-09:43:52.txt
Log autoscript-2020-10-31-09:44:53.log.bz2
Memory 500 500 429

For details, please contact louberger

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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: Failed

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.15091/frr-source'
In file included from ./lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7387: pimd/mtracebis.o] Error 1
In file included from lib/zebra.h:58,
/usr/include/x86_64-linux-gnu/sys/sysctl.h:21:2: error: #warning "The <sys/sysctl.h> header is deprecated and will be removed." [-Werror=cpp]
In file included from lib/table.h:26,
lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
CentOS 8 amd64 build: Failed (click for details) CentOS 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/CENTOS8BUILD/config.status/config.status

Package building failed for CentOS 8 amd64 build
see package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/CENTOS8BUILD/ErrorLog/log_package_build.txt

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/CI009BUILD/ErrorLog/log_make.txt)

./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
ospfd/ospf_neighbor.c: In function 'ospf_nbr_lookup':
ospfd/ospf_neighbor.c:410:45: error: taking address of packed member of 'struct ip' may result in an unaligned pointer value [-Werror=address-of-packed-member]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7386: ospfd/ospf_neighbor.o] Error 1
In file included from ospfd/ospf_nsm.c:27:
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define
In file included from ./lib/table.h:26,
./lib/hash.h:40:1: note: #pragma message: hash.h: time to remove hash_backet #define

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/CI009BUILD/config.status/config.status

Successful on other platforms/tests
  • Ubuntu 16.04 i386 build
  • Fedora 29 amd64 build
  • Debian 10 amd64 build
  • Ubuntu 16.04 arm8 build
  • Ubuntu 18.04 amd64 build
  • FreeBSD 12 amd64 build
  • Ubuntu 16.04 arm7 build
  • Debian 8 amd64 build
  • Ubuntu 18.04 ppc64le build
  • Debian 9 amd64 build
  • OpenBSD 6 amd64 build
  • NetBSD 8 amd64 build
  • CentOS 7 amd64 build
  • Ubuntu 18.04 arm7 build
  • Ubuntu 16.04 amd64 build
  • Ubuntu 18.04 arm8 build

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15091/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g30c02d24e-0 (missing) -> 7.3-dev-20201031-00-g30c02d24e-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g30c02d24e-0 (missing) -> 7.3-dev-20201031-00-g30c02d24e-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g30c02d24e-0 (missing) -> 7.3-dev-20201031-00-g30c02d24e-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g30c02d24e-0 (missing) -> 7.3-dev-20201031-00-g30c02d24e-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.3-dev-20201031-00-g30c02d24e-0 (missing) -> 7.3-dev-20201031-00-g30c02d24e-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly

@LabN-CI
Copy link
Collaborator

LabN-CI commented Oct 31, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7432 e88fe45
Date 10/31/2020
Start 10:15:43
Finish 10:42:06
Run-Time 26:23
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-10-31-10:15:43.txt
Log autoscript-2020-10-31-10:16:44.log.bz2
Memory 476 477 427

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

<stdin>:25: trailing whitespace.
	/* No need to delete vrf here as it will be deleted when BGP client receives 
warning: 1 line adds whitespace errors.
Report for bgp_main.c | 20 issues
===============================================
< WARNING: line over 80 characters
< #268: FILE: /tmp/f1-13751/bgp_main.c:268:
< WARNING: Missing a blank line after declarations
< #270: FILE: /tmp/f1-13751/bgp_main.c:270:
< ERROR: that open brace { should be on the previous line
< #271: FILE: /tmp/f1-13751/bgp_main.c:271:
< WARNING: suspect code indent for conditional statements (8, 15)
< #271: FILE: /tmp/f1-13751/bgp_main.c:271:
< WARNING: line over 80 characters
< #273: FILE: /tmp/f1-13751/bgp_main.c:273:
< WARNING: line over 80 characters
< #283: FILE: /tmp/f1-13751/bgp_main.c:283:
< ERROR: trailing whitespace
< #284: FILE: /tmp/f1-13751/bgp_main.c:284:
< WARNING: line over 80 characters
< #284: FILE: /tmp/f1-13751/bgp_main.c:284:
< WARNING: Block comments use * on subsequent lines
< #285: FILE: /tmp/f1-13751/bgp_main.c:285:
< WARNING: Block comments use a trailing */ on a separate line
< #365: FILE: /tmp/f1-13751/bgp_main.c:365:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15090/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-g226927bc2-0 (missing) -> 7.6-dev-20201031-05-g226927bc2-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-g226927bc2-0 (missing) -> 7.6-dev-20201031-05-g226927bc2-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-g226927bc2-0 (missing) -> 7.6-dev-20201031-05-g226927bc2-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-g226927bc2-0 (missing) -> 7.6-dev-20201031-05-g226927bc2-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-g226927bc2-0 (missing) -> 7.6-dev-20201031-05-g226927bc2-0~deb10u1

Copy link
Member

@donaldsharp donaldsharp left a comment

Choose a reason for hiding this comment

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

Please fix your signed-off-by line and also please rebase to latest master and force push. We do not want master merge arrows from branches

bgpd/bgp_main.c Outdated Show resolved Hide resolved
bgpd/bgp_main.c Outdated Show resolved Hide resolved
bgpd/bgpd.c Outdated Show resolved Hide resolved
bgpd/bgpd.c Outdated Show resolved Hide resolved
@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Oct 31, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Report for bgp_main.c | 6 issues
===============================================
< WARNING: Missing a blank line after declarations
< #271: FILE: /tmp/f1-14230/bgp_main.c:271:
< WARNING: Block comments use * on subsequent lines
< #287: FILE: /tmp/f1-14230/bgp_main.c:287:
< WARNING: Block comments use a trailing */ on a separate line
< #287: FILE: /tmp/f1-14230/bgp_main.c:287:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15092/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-ge88fe4539-0 (missing) -> 7.6-dev-20201031-05-ge88fe4539-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-ge88fe4539-0 (missing) -> 7.6-dev-20201031-05-ge88fe4539-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-ge88fe4539-0 (missing) -> 7.6-dev-20201031-05-ge88fe4539-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-ge88fe4539-0 (missing) -> 7.6-dev-20201031-05-ge88fe4539-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201031-05-ge88fe4539-0 (missing) -> 7.6-dev-20201031-05-ge88fe4539-0~deb10u1

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

  • One of your commits has a missing or badly formatted Signed-off-by line; we can't accept your contribution until all of your commits have one

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@polychaeta polychaeta dismissed stale reviews from themself November 2, 2020 03:53

blocking comments addressed

@sudhanshukumar22
Copy link
Contributor Author

Please fix your signed-off-by line and also please rebase to latest master and force push. We do not want master merge arrows from branches

I have changed the signed-off-by message and rebased to latest master. Let me know, if anything else is needed.

@sudhanshukumar22
Copy link
Contributor Author

I accidently closed the pull request. I am reopening it. @donaldsharp : Please approve this commit as I have addressed all your review comments.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 2, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7432 5ecf03d
Date 11/01/2020
Start 22:55:44
Finish 23:21:57
Run-Time 26:13
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-01-22:55:44.txt
Log autoscript-2020-11-01-22:56:45.log.bz2
Memory 493 479 428

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 2, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/7432 3ba2bcd
Date 11/01/2020
Start 23:52:32
Finish 00:18:50
Run-Time 26:18
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-01-23:52:32.txt
Log autoscript-2020-11-01-23:53:33.log.bz2
Memory 482 476 428

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Nov 2, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOU1604/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 arm8: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 arm8
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPO2U18ARM8/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOU1804/ErrorLog/log_topotests.txt

Topo tests part 0 on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topo tests part 0 on Ubuntu 16.04 i386
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64
see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Report for bgp_main.c | 6 issues
===============================================
< WARNING: Missing a blank line after declarations
< #271: FILE: /tmp/f1-8515/bgp_main.c:271:
< WARNING: Block comments use * on subsequent lines
< #287: FILE: /tmp/f1-8515/bgp_main.c:287:
< WARNING: Block comments use a trailing */ on a separate line
< #287: FILE: /tmp/f1-8515/bgp_main.c:287:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15103/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201102-00-gdf1cf3808-0 (missing) -> 7.6-dev-20201102-00-gdf1cf3808-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201102-00-gdf1cf3808-0 (missing) -> 7.6-dev-20201102-00-gdf1cf3808-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201102-00-gdf1cf3808-0 (missing) -> 7.6-dev-20201102-00-gdf1cf3808-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201102-00-gdf1cf3808-0 (missing) -> 7.6-dev-20201102-00-gdf1cf3808-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.6-dev-20201102-00-gdf1cf3808-0 (missing) -> 7.6-dev-20201102-00-gdf1cf3808-0~deb10u1

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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: Incomplete

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

2021-03-05 10:59:12,553 ERROR: rt5: zebra left a dead pidfile (pid=13472)
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-03-05 11:03:19,406 ERROR: 'router_json_cmp' failed after 19.06 seconds
2021-03-05 11:03:19,408 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-03-05 11:03:26,152 ERROR: r1: bgpd left a dead pidfile (pid=23707)
2021-03-05 11:09:41,393 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 576, 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-03-05 11:09:41,771 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 576, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-03-05 11:07:46,267 ERROR: 'router_json_cmp' failed after 108.19 seconds
2021-03-05 11:07:46,274 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-03-05 11:08:50,255 ERROR: 'router_json_cmp' failed after 60.12 seconds
2021-03-05 11:08:50,263 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

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

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

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-03-05 10:05:35,039 ERROR: r1: bgpd left a dead pidfile (pid=24672)
2021-03-05 10:15:39,784 ERROR: 'router_json_cmp' failed after 59.36 seconds
2021-03-05 10:15:39,785 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'
2021-03-05 10:17:38,333 ERROR: d2: bgpd left a dead pidfile (pid=1022)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-17491/artifact/TOPO6U18AMD64/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-17491/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-03-05 10:01:47,147 ERROR: 'router_json_cmp' failed after 19.18 seconds
2021-03-05 10:01:47,149 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-03-05 10:11:19,753 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 202, 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 290, 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 576, 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-03-05 10:11:20,057 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 202, 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 290, 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 576, 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  

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

2021-03-05 11:04:53,479 ERROR: ce3: bgpd left a dead pidfile (pid=22496)
*** defaultIntf: warning: r1 has no interfaces
2021-03-05 11:08:57,727 ERROR: 'router_json_cmp' failed after 113.07 seconds
2021-03-05 11:08:57,729 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

2021-03-05 10:59:12,553 ERROR: rt5: zebra left a dead pidfile (pid=13472)
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-03-05 11:03:19,406 ERROR: 'router_json_cmp' failed after 19.06 seconds
2021-03-05 11:03:19,408 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-03-05 11:03:26,152 ERROR: r1: bgpd left a dead pidfile (pid=23707)
2021-03-05 11:09:41,393 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 576, 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-03-05 11:09:41,771 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 576, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-03-05 11:07:46,267 ERROR: 'router_json_cmp' failed after 108.19 seconds
2021-03-05 11:07:46,274 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-03-05 11:08:50,255 ERROR: 'router_json_cmp' failed after 60.12 seconds
2021-03-05 11:08:50,263 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

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

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

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-03-05 10:05:35,039 ERROR: r1: bgpd left a dead pidfile (pid=24672)
2021-03-05 10:15:39,784 ERROR: 'router_json_cmp' failed after 59.36 seconds
2021-03-05 10:15:39,785 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'
2021-03-05 10:17:38,333 ERROR: d2: bgpd left a dead pidfile (pid=1022)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-17491/artifact/TOPO6U18AMD64/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-17491/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-03-05 10:01:47,147 ERROR: 'router_json_cmp' failed after 19.18 seconds
2021-03-05 10:01:47,149 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-03-05 10:11:19,753 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 202, 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 290, 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 576, 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-03-05 10:11:20,057 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 202, 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 290, 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 576, 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  

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

2021-03-05 11:04:53,479 ERROR: ce3: bgpd left a dead pidfile (pid=22496)
*** defaultIntf: warning: r1 has no interfaces
2021-03-05 11:08:57,727 ERROR: 'router_json_cmp' failed after 113.07 seconds
2021-03-05 11:08:57,729 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

Addresssanitizer topotests part 5: Incomplete (check logs for details)
Topotests Ubuntu 16.04 amd64 part 1: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 1:

2021-03-05 11:01:12,517 ERROR: r3: bgpd left a dead pidfile (pid=16520)
2021-03-05 11:01:38,942 ERROR: 'router_json_cmp' failed after 19.12 seconds
2021-03-05 11:01:38,945 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-03-05 11:01:39,923 ERROR: r3: zebra left a dead pidfile (pid=17699)
2021-03-05 11:07:48,275 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 576, 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-03-05 11:07:48,609 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 202, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 576, 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-03-05 11:12:13,583 ERROR: r2: staticd left a dead pidfile (pid=29212)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-17491/artifact/TP1U1604AMD64/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 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: No useful log found
Successful on other platforms/tests
  • Addresssanitizer topotests part 6
  • Topotests Ubuntu 16.04 amd64 part 2
  • Ubuntu 16.04 deb pkg check
  • Topotests Ubuntu 18.04 amd64 part 2
  • Debian 10 deb pkg check
  • Topotests Ubuntu 16.04 i386 part 0
  • Topotests Ubuntu 16.04 i386 part 9
  • Topotests Ubuntu 18.04 arm8 part 8
  • Debian 9 deb pkg check
  • Topotests Ubuntu 16.04 i386 part 8
  • Topotests Ubuntu 16.04 i386 part 3
  • Ubuntu 18.04 deb pkg check
  • Topotests Ubuntu 16.04 amd64 part 9
  • Ubuntu 20.04 deb pkg check
  • Addresssanitizer topotests part 3
  • Topotests Ubuntu 18.04 amd64 part 8
  • Topotests Ubuntu 16.04 amd64 part 8
  • Addresssanitizer topotests part 2
  • Debian 8 deb pkg check
  • Topotests Ubuntu 18.04 arm8 part 7
  • Topotests Ubuntu 18.04 arm8 part 2
  • Addresssanitizer topotests part 9
  • Topotests Ubuntu 18.04 arm8 part 9
  • Topotests Ubuntu 16.04 amd64 part 5
  • Topotests Ubuntu 16.04 amd64 part 3
  • Addresssanitizer topotests part 7
  • Topotests Ubuntu 18.04 amd64 part 7
  • Topotests Ubuntu 16.04 i386 part 4
  • Topotests Ubuntu 18.04 arm8 part 0
  • Fedora 29 rpm pkg check
  • Topotests Ubuntu 18.04 arm8 part 5
  • IPv4 ldp protocol on Ubuntu 18.04
  • Topotests Ubuntu 16.04 i386 part 7
  • Addresssanitizer topotests part 0
  • Static analyzer (clang)
  • Topotests Ubuntu 18.04 arm8 part 4
  • Topotests Ubuntu 16.04 i386 part 2
  • IPv6 protocols on Ubuntu 18.04
  • Topotests Ubuntu 16.04 amd64 part 4
  • Addresssanitizer topotests part 1
  • CentOS 7 rpm pkg check
  • Topotests Ubuntu 18.04 amd64 part 3
  • Topotests Ubuntu 18.04 amd64 part 9
  • Topotests Ubuntu 18.04 amd64 part 5
  • Topotests Ubuntu 16.04 amd64 part 7
  • Topotests Ubuntu 18.04 arm8 part 3
  • IPv4 protocols on Ubuntu 18.04
  • Topotests Ubuntu 16.04 amd64 part 0
  • Addresssanitizer topotests part 8
  • Addresssanitizer topotests part 4
  • Topotests Ubuntu 18.04 amd64 part 0
  • Topotests Ubuntu 16.04 i386 part 5
  • Topotests Ubuntu 18.04 amd64 part 4

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

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

Thanks for your contribution to FRR!

Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/9a1640e58678f270a353095e65fd9d8d/raw/848d0f29bb14f4c2ac8b61533a7b499585f687d0/cr_7432_1617614928.diff | git apply

diff --git a/bgpd/bgp_main.c b/bgpd/bgp_main.c
index 61952fab4..96c2e130d 100644
--- a/bgpd/bgp_main.c
+++ b/bgpd/bgp_main.c
@@ -279,7 +279,7 @@ static int bgp_vrf_new(struct vrf *vrf)
 	if (ifp) {
 		if (BGP_DEBUG(zebra, ZEBRA))
 			zlog_debug("VRF interface Created: %s(%u) ifindex %d",
-				ifp->name, ifp->vrf_id, ifp->ifindex);
+				   ifp->name, ifp->vrf_id, ifp->ifindex);
 	}
 
 	return 0;

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 5, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7432 e7d89cc
Date 04/05/2021
Start 06:40:28
Finish 07:22:24
Run-Time 41:56
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-04-05-06:40:28.txt
Log autoscript-2021-04-05-06:41:41.log.bz2
Memory 504 481 431

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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 arm8 part 4: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 4: 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-18178/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 10:23:41,175 ERROR: 'router_json_cmp' failed after 60.63 seconds
2021-04-05 10:23:41,178 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18178/artifact/TOPO6U18AMD64/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-18178/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-04-05 10:10:32,154 ERROR: 'router_json_cmp' failed after 18.87 seconds
2021-04-05 10:10:32,156 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 10:20:01,561 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 290, 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 575, 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-04-05 10:20:01,909 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 290, 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 575, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 12:13:41,208 ERROR: r2: bgpd left a dead pidfile (pid=19713)
2021-04-05 12:16:59,329 ERROR: 'router_json_cmp' failed after 111.52 seconds
2021-04-05 12:16:59,331 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-04-05 12:18:07,025 ERROR: 'router_json_cmp' failed after 63.32 seconds
2021-04-05 12:18:07,027 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18178/artifact/TOPO6U16AMD64/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 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: No useful log found
Topotests Ubuntu 16.04 amd64 part 1: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 1:

2021-04-05 12:08:37,176 ERROR: r4: bgpd left a dead pidfile (pid=10128)
2021-04-05 12:10:11,034 ERROR: 'router_json_cmp' failed after 20.00 seconds
2021-04-05 12:10:11,036 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 12:10:11,595 ERROR: r1: zebra left a dead pidfile (pid=16024)
2021-04-05 12:16:23,751 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-05 12:16:24,093 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-05 12:18:45,024 ERROR: r2: bgpd left a dead pidfile (pid=23851)

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

2021-04-05 12:08:57,923 ERROR: r3: bgpd left a dead pidfile (pid=23177)
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-04-05 12:10:16,748 ERROR: 'router_json_cmp' failed after 19.32 seconds
2021-04-05 12:10:16,750 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 12:16:50,475 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-05 12:16:50,901 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-05 12:19:16,672 ERROR: r1: bgpd left a dead pidfile (pid=2161)
2021-04-05 12:21:36,019 ERROR: r1: bgpd left a dead pidfile (pid=6286)
2021-04-05 12:25:50,395 ERROR: y3: bgpd left a dead pidfile (pid=9230)

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 12:19:05,725 ERROR: 'router_json_cmp' failed after 119.27 seconds
2021-04-05 12:19:05,728 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
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 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 10:23:41,175 ERROR: 'router_json_cmp' failed after 60.63 seconds
2021-04-05 10:23:41,178 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18178/artifact/TOPO6U18AMD64/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-18178/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-04-05 10:10:32,154 ERROR: 'router_json_cmp' failed after 18.87 seconds
2021-04-05 10:10:32,156 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 10:20:01,561 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 290, 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 575, 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-04-05 10:20:01,909 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 290, 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 575, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 12:13:41,208 ERROR: r2: bgpd left a dead pidfile (pid=19713)
2021-04-05 12:16:59,329 ERROR: 'router_json_cmp' failed after 111.52 seconds
2021-04-05 12:16:59,331 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-04-05 12:18:07,025 ERROR: 'router_json_cmp' failed after 63.32 seconds
2021-04-05 12:18:07,027 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18178/artifact/TOPO6U16AMD64/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 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: No useful log found
Topotests Ubuntu 16.04 amd64 part 1: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 1:

2021-04-05 12:08:37,176 ERROR: r4: bgpd left a dead pidfile (pid=10128)
2021-04-05 12:10:11,034 ERROR: 'router_json_cmp' failed after 20.00 seconds
2021-04-05 12:10:11,036 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 12:10:11,595 ERROR: r1: zebra left a dead pidfile (pid=16024)
2021-04-05 12:16:23,751 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-05 12:16:24,093 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-05 12:18:45,024 ERROR: r2: bgpd left a dead pidfile (pid=23851)

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

2021-04-05 12:08:57,923 ERROR: r3: bgpd left a dead pidfile (pid=23177)
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-04-05 12:10:16,748 ERROR: 'router_json_cmp' failed after 19.32 seconds
2021-04-05 12:10:16,750 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-05 12:16:50,475 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-05 12:16:50,901 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-05 12:19:16,672 ERROR: r1: bgpd left a dead pidfile (pid=2161)
2021-04-05 12:21:36,019 ERROR: r1: bgpd left a dead pidfile (pid=6286)
2021-04-05 12:25:50,395 ERROR: y3: bgpd left a dead pidfile (pid=9230)

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-05 12:19:05,725 ERROR: 'router_json_cmp' failed after 119.27 seconds
2021-04-05 12:19:05,728 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

Report for bgp_main.c | 4 issues
===============================================
< WARNING: Block comments use * on subsequent lines
< #294: FILE: /tmp/f1-20109/bgp_main.c:294:
< WARNING: Block comments use a trailing */ on a separate line
< #294: FILE: /tmp/f1-20109/bgp_main.c:294:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 6, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7432 e6e6bed
Date 04/06/2021
Start 05:10:29
Finish 05:52:31
Run-Time 42:02
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-04-06-05:10:29.txt
Log autoscript-2021-04-06-05:11:45.log.bz2
Memory 502 479 413

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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 16.04 i386 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-06 11:54:05,730 ERROR: 'router_json_cmp' failed after 114.40 seconds
2021-04-06 11:54:05,737 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 1:

2021-04-06 11:45:02,118 ERROR: 'router_json_cmp' failed after 19.02 seconds
2021-04-06 11:45:02,120 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 11:51:06,223 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-06 11:51:06,562 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-06 11:53:21,703 ERROR: r2: bgpd left a dead pidfile (pid=10533)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18199/artifact/TP1U1604AMD64/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 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: 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-18199/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-06 09:58:26,706 ERROR: r3: bgpd left a dead pidfile (pid=10207)
2021-04-06 09:59:42,230 ERROR: 'router_json_cmp' failed after 63.93 seconds
2021-04-06 09:59:42,232 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-04-06 11:45:12,766 ERROR: 'router_json_cmp' failed after 19.46 seconds
2021-04-06 11:45:12,767 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 11:51:41,977 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-06 11:51:42,385 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18199/artifact/TP1U1604I386/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-18199/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-04-06 09:45:21,639 ERROR: 'router_json_cmp' failed after 19.40 seconds
2021-04-06 09:45:21,640 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 09:54:42,493 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 290, 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 575, 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-04-06 09:54:42,779 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 290, 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 575, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

2021-04-06 11:48:13,302 ERROR: r2: zebra left a dead pidfile (pid=32741)
*** defaultIntf: warning: r1 has no interfaces
2021-04-06 11:52:05,696 ERROR: 'router_json_cmp' failed after 108.07 seconds
2021-04-06 11:52:05,698 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-04-06 11:53:10,051 ERROR: 'router_json_cmp' failed after 60.80 seconds
2021-04-06 11:53:10,052 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topotests Ubuntu 16.04 i386 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-06 11:54:05,730 ERROR: 'router_json_cmp' failed after 114.40 seconds
2021-04-06 11:54:05,737 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 1:

2021-04-06 11:45:02,118 ERROR: 'router_json_cmp' failed after 19.02 seconds
2021-04-06 11:45:02,120 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 11:51:06,223 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-06 11:51:06,562 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/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-TP1U1604AMD64/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 575, 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-04-06 11:53:21,703 ERROR: r2: bgpd left a dead pidfile (pid=10533)

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18199/artifact/TP1U1604AMD64/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 arm8 part 1: Failed (click for details) Topotests Ubuntu 18.04 arm8 part 1: 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-18199/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6:

*** defaultIntf: warning: r1 has no interfaces
2021-04-06 09:58:26,706 ERROR: r3: bgpd left a dead pidfile (pid=10207)
2021-04-06 09:59:42,230 ERROR: 'router_json_cmp' failed after 63.93 seconds
2021-04-06 09:59:42,232 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

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

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 1:

RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2021-04-06 11:45:12,766 ERROR: 'router_json_cmp' failed after 19.46 seconds
2021-04-06 11:45:12,767 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 11:51:41,977 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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-04-06 11:51:42,385 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/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-TP1U1604I386/topotests/lib/common_config.py", line 290, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 575, 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  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18199/artifact/TP1U1604I386/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-18199/test

Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1:

2021-04-06 09:45:21,639 ERROR: 'router_json_cmp' failed after 19.40 seconds
2021-04-06 09:45:21,640 ERROR: assert failed at "test_bfd_vrf_topo1/test_bfd_connection": "r4" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has the following element at index 0 which is not present in d1: 
  
  	{
  	    "peer": "192.168.2.2",
  	    "status": "up"
  	}
  
  	Closest match in d1 is at index 0 with the following errors: 
  
  	> $[0]->status: d1 has element with value 'down' but in d2 it has value 'up'
  
2021-04-06 09:54:42,493 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 290, 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 575, 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-04-06 09:54:42,779 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 290, 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 575, 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  

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

Topotests Ubuntu 16.04 amd64 part 6: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 amd64 part 6:

2021-04-06 11:48:13,302 ERROR: r2: zebra left a dead pidfile (pid=32741)
*** defaultIntf: warning: r1 has no interfaces
2021-04-06 11:52:05,696 ERROR: 'router_json_cmp' failed after 108.07 seconds
2021-04-06 11:52:05,698 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '10.254.254.2/32' which is not present in d1
2021-04-06 11:53:10,051 ERROR: 'router_json_cmp' failed after 60.80 seconds
2021-04-06 11:53:10,052 ERROR: assert failed at "bgp_vrf_netns.test_bgp_vrf_netns_topo/test_bgp_convergence": BGP router network did not converge
assert Generated JSON diff error report:
  
  > $->ipv4Unicast->peers->10.0.1.101->state: d1 has element with value 'Connect' but in d2 it has value 'Established'
  > $->ipv4Unicast->peers->10.0.1.101->pfxRcd: d1 has element with value '0' but in d2 it has value '10'

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

Report for bgp_main.c | 4 issues
===============================================
< WARNING: Block comments use * on subsequent lines
< #294: FILE: /tmp/f1-12351/bgp_main.c:294:
< WARNING: Block comments use a trailing */ on a separate line
< #294: FILE: /tmp/f1-12351/bgp_main.c:294:

@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 7, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7432 e1e310e
Date 04/07/2021
Start 03:55:30
Finish 04:37:26
Run-Time 41:56
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-04-07-03:55:30.txt
Log autoscript-2021-04-07-03:56:42.log.bz2
Memory 506 490 428

For details, please contact louberger

@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 7, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7432 5b00720
Date 04/07/2021
Start 05:20:29
Finish 06:02:20
Run-Time 41:51
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-04-07-05:20:29.txt
Log autoscript-2021-04-07-05:21:41.log.bz2
Memory 458 457 429

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

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

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 16.04 i386 part 4: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 4:

2021-04-07 10:36:18,654 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:18,871 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:19,072 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:19,325 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:20,763 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:39:02,128 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



r2: Daemon bgpd not running

From frr r2 bgpd log file:
2021/04/07 10:40:50 BGP: [T83RR-8SM5G] bgpd 7.7-dev-20210407-00-ge1e310e4a starting: vty@2605, bgp@10.0.0.2:179, bgp@10.0.1.1:179
2021/04/07 10:40:51 BGP: [M7Q4P-46WDR] vty[??]@(config)# log file bgpd.log
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@> enable
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@# configure terminal
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@(config)# XFRR_start_configuration
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@(config)# router bgp 2000 

2021/04/07 10:40:53 BGP: [WNS64-X9NY5][EC 100663299] bind: Cannot assign requested address
2021/04/07 10:40:53 BGP: [HHAYK-1Y778][EC 100663299] bgp_socket: no usable addresses please check other programs usage of specified port 179
2021/04/07 10:40:53 BGP: [VD9ME-QCNTF][EC 100663299] bgp_socket: Program cannot continue

2021-04-07 10:40:54,591 ERROR: assert failed at "test_bgp_listen_on_multiple_addresses/test_peering": r2: Daemon bgpd not running

2021-04-07 10:41:06,641 ERROR: r2: bgpd left a dead pidfile (pid=19564)

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

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topotests Ubuntu 16.04 i386 part 4: Failed (click for details)

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

Topology Tests failed for Topotests Ubuntu 16.04 i386 part 4:

2021-04-07 10:36:18,654 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:18,871 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:19,072 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:19,325 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:36:20,763 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, 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-04-07 10:39:02,128 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 2538, 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-TP4U1604I386/topotests/lib/common_config.py", line 344, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP4U1604I386/topotests/lib/common_config.py", line 629, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



r2: Daemon bgpd not running

From frr r2 bgpd log file:
2021/04/07 10:40:50 BGP: [T83RR-8SM5G] bgpd 7.7-dev-20210407-00-ge1e310e4a starting: vty@2605, bgp@10.0.0.2:179, bgp@10.0.1.1:179
2021/04/07 10:40:51 BGP: [M7Q4P-46WDR] vty[??]@(config)# log file bgpd.log
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@> enable
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@# configure terminal
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@(config)# XFRR_start_configuration
2021/04/07 10:40:53 BGP: [M7Q4P-46WDR] vty[??]@(config)# router bgp 2000 

2021/04/07 10:40:53 BGP: [WNS64-X9NY5][EC 100663299] bind: Cannot assign requested address
2021/04/07 10:40:53 BGP: [HHAYK-1Y778][EC 100663299] bgp_socket: no usable addresses please check other programs usage of specified port 179
2021/04/07 10:40:53 BGP: [VD9ME-QCNTF][EC 100663299] bgp_socket: Program cannot continue

2021-04-07 10:40:54,591 ERROR: assert failed at "test_bgp_listen_on_multiple_addresses/test_peering": r2: Daemon bgpd not running

2021-04-07 10:41:06,641 ERROR: r2: bgpd left a dead pidfile (pid=19564)

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

Report for bgp_main.c | 4 issues
===============================================
< WARNING: Block comments use * on subsequent lines
< #294: FILE: /tmp/f1-11592/bgp_main.c:294:
< WARNING: Block comments use a trailing */ on a separate line
< #294: FILE: /tmp/f1-11592/bgp_main.c:294:

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18225/

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.

Warnings Generated during build:

Checkout code: Successful with additional warnings
Report for bgp_main.c | 2 issues
===============================================
< WARNING: Block comments use * on subsequent lines
< #294: FILE: /tmp/f1-23723/bgp_main.c:294:

@sudhanshukumar22
Copy link
Contributor Author

@ton31337 : Please review this code.

@sudhanshukumar22
Copy link
Contributor Author

@qlyoung @donaldsharp @ton31337 : Please review the changes. These are minor changes. I had discussed with @mwinter-osr , currently we don't have testcases for reboot scenarios in the mininet framework.

bgpd/bgp_main.c Show resolved Hide resolved
lib/vrf.c Outdated Show resolved Hide resolved
bgpd/bgp_main.c Show resolved Hide resolved
…cular config on reboot

Description: when vrf add is received, add Vrf-name to the interface database. This is needed while binding the VRF interface to the BGP socket.
In this case, the global bgp config containing vrf is received before zebra sends vrf add message to BGP. When we receive the global bgp vrf message
first, vrf interface is not present in the interface database of BGP. So, while creating the global bgp socket, interface bind to the vrf interface fails.

Problem Description/Summary :
changing the neighbor password resets the session immediately but it doesn't use the password. It continues to operate without password.

Managed to recreate the issue with below reduced config.

Setup:
Sonic1------Sonic2

Test Steps:
1. Configure eBGP session between Sonic-1 and Sonic2 in default vrf using Peer-group.
2. Create a dummy non-default vrf BGP instance on Sonic1 device.
3. Save and reload Sonic1 device.
4. Once the device is up, try to configure 'password <string>' on Sonic1 BGP neighbor alone.
5. The eBGP session should go down and must not come up until matching password is configured on Sonic2 device. But it comes up.

Expected Behavior :
The eBGP session should go down and must not come up until matching password is configured on Sonic2 device.

Signed-off-by: sudhanshukumar22 <sudhanshu.kumar@broadcom.com>
@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 9, 2021

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7432 2681e38
Date 04/09/2021
Start 09:37:36
Finish 10:19:41
Run-Time 42:05
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2021-04-09-09:37:36.txt
Log autoscript-2021-04-09-09:38:46.log.bz2
Memory 452 501 429

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-18277/

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.

Warnings Generated during build:

Checkout code: Successful with additional warnings
Report for bgp_main.c | 2 issues
===============================================
< WARNING: Block comments use * on subsequent lines
< #293: FILE: /tmp/f1-17032/bgp_main.c:293:

@sudhanshukumar22
Copy link
Contributor Author

@ton31337 : Please review and approve the changes.

Copy link
Contributor

@idryzhov idryzhov left a comment

Choose a reason for hiding this comment

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

This is not a correct approach to solving this problem. We should not create interfaces manually from BGP. The correct thing is to fix vrf_bind to rely on VRF existence instead of interface existence. #8367 is going to fix this.

Copy link
Member

@qlyoung qlyoung left a comment

Choose a reason for hiding this comment

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

I'm pretty confused about how this fixes the problem.

The root problem is that the VRF doesn't exist and so config for a BGP instance tied to a VRF ends up creating a socket in the default VRF. Any later incorrect behavior that manifests because of this needs to be treated at the source.

Based on how I'm reading this patch, it looks like all we do here is make an interface that has the same name as the VRF that we expect zebra to tell us about in short order. I fail to see how this treats the root of the problem.

Can you elaborate on how exactly this helps things? How does creating an internal interface structure make it so that the password (which is set via a sockopt call) ends up properly applied?

Also cf #8644

@idryzhov
Copy link
Contributor

idryzhov commented Jun 1, 2021

@qlyoung the author already stated that the vrf_bind PR fixes his use-case and he's going to dismiss this PR: https://github.com/FRRouting/frr/pull/8644/files#r630961190

@qlyoung
Copy link
Member

qlyoung commented Jun 1, 2021

Excellent, @sudhanshukumar22 please close this

@sudhanshukumar22
Copy link
Contributor Author

@qlyoung @idryzhov , thanks, I have tested that my defect works with the fix provided in
https://github.com/FRRouting/frr/pull/8644/files#r630961190

I was waiting for his PR to be merged. Anyway, will close it now.

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

Successfully merging this pull request may close these issues.

8 participants