f35daa7694
* [frr]: change frr as default sonic routing stack * fix quagga configuration * [vstest]: fix bgp test for frr * [vstest]: skip bgp/test_invalid_nexthop.py for frr Signed-off-by: Guohan Lu <gulv@microsoft.com>
35 lines
852 B
Python
35 lines
852 B
Python
from swsscommon import swsscommon
|
|
import os
|
|
import re
|
|
import time
|
|
import json
|
|
import pytest
|
|
|
|
@pytest.mark.skip(reason="not working for frr")
|
|
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("ifconfig Ethernet0 up")
|
|
|
|
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
|