diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-11-07 22:01:39 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-11-07 22:01:39 -0800 |
commit | c463e12538943aab758fba793e1af24b18856e06 (patch) | |
tree | d68f64aa9a91707b165dcc4e0b53daff4013f7b6 /test/scenario_test/bgp_router_test.py | |
parent | 0af24ff85d4e30a513a2de4821afdf1873642f45 (diff) |
test: use passive connection for gobgp and gobgp connection
kinda workaround.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/bgp_router_test.py')
-rw-r--r-- | test/scenario_test/bgp_router_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scenario_test/bgp_router_test.py b/test/scenario_test/bgp_router_test.py index d80b3631..98b31765 100644 --- a/test/scenario_test/bgp_router_test.py +++ b/test/scenario_test/bgp_router_test.py @@ -432,9 +432,9 @@ class GoBGPTestBase(unittest.TestCase): g2.local('gobgp global rib add 50.0.0.0/24') - g1.add_peer(g2) + g1.add_peer(g2, passive=True) g2.add_peer(g1) - g1.add_peer(g3) + g1.add_peer(g3, passive=True) g3.add_peer(g1) self.test_01_neighbor_established() |