fb6916f88b
* Update sonic-sairedis (sairedis with SAI 1.6 headers) * Update SAIBCM to 3.7.4.2, which is built upon SAI1.6 headers * missed updating BRCM_SAI variable, fixed it * Update SAIBCM to 3.7.4.2, updated link to libsaibcm * [Mellanox] Update SAI (release:v1.16.3; API:v1.6) Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com> * Update sonic-sairedis pointer to include SAI1.6 headers * [Mellanox] Update SDK to 4.4.0914 and FW to xx.2007.1112 to match SAI 1.16.3 (API:v1.6) Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com> * ensure the veth link is up in docker VS container * ensure the veth link is up in docker VS container * [Mellanox] Update SAI (release:v1.16.3.2; API:v1.6) Signed-off-by: Volodymyr Samotiy <volodymyrs@mellanox.com> * use 'config interface startup' instead of using ifconfig command, also undid the previous change' Co-authored-by: Volodymyr Samotiy <volodymyrs@mellanox.com>
34 lines
817 B
Python
34 lines
817 B
Python
from swsscommon import swsscommon
|
|
import os
|
|
import re
|
|
import time
|
|
import json
|
|
import pytest
|
|
|
|
def test_InvalidNexthop(dvs, testlog):
|
|
|
|
dvs.copy_file("/etc/frr/", "bgp/files/invalid_nexthop/bgpd.conf")
|
|
dvs.runcmd("supervisorctl start bgpd")
|
|
dvs.runcmd("ip addr add fc00::1/126 dev Ethernet0")
|
|
dvs.runcmd("config interface startup Ethernet0")
|
|
|
|
dvs.servers[0].runcmd("ip addr add fc00::2/126 dev eth0")
|
|
dvs.servers[0].runcmd("ifconfig eth0 up")
|
|
|
|
time.sleep(5)
|
|
|
|
print dvs.runcmd("supervisorctl status")
|
|
|
|
p = dvs.servers[0].runcmd_async("exabgp -d bgp/files/invalid_nexthop/invalid_nexthop.conf")
|
|
|
|
time.sleep(10)
|
|
|
|
(exit_code, output) = dvs.runcmd(["vtysh", "-c", "show bgp ipv6"])
|
|
|
|
p.terminate()
|
|
p = p.wait()
|
|
|
|
print exit_code, output
|
|
|
|
assert "3333::/64" in output
|