Code Review
/
csit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
13966f2
)
FIX: VXLAN scale
29/24329/1
author
Peter Mikus
<
[email protected]
>
Tue, 14 Jan 2020 15:05:22 +0000
(15:05 +0000)
committer
Peter Mikus
<
[email protected]
>
Tue, 14 Jan 2020 15:07:04 +0000
(15:07 +0000)
+ Another stupid arp -> neighbor rename
Signed-off-by: Peter Mikus <
[email protected]
>
Change-Id: Ia873d6c2a485659033f71cdf546782db74787d13
(cherry picked from commit
6ae8614cf1459f977508f9f4ba3548ac0a16b231
)
resources/libraries/python/TestConfig.py
patch
|
blob
|
history
diff --git
a/resources/libraries/python/TestConfig.py
b/resources/libraries/python/TestConfig.py
index
5c624e2
..
28778b2
100644
(file)
--- a/
resources/libraries/python/TestConfig.py
+++ b/
resources/libraries/python/TestConfig.py
@@
-346,9
+346,11
@@
class TestConfig:
for i in range(0, vxlan_count):
dst_ip = dst_ip_start + i * ip_step
commands.append(
- f"ip_neighbor_add_del sw_if_index {idx_vxlan_if} "
- f"dst {dst_ip} "
- f"mac {Topology.get_interface_mac(op_node, op_node_if)}\n"
+ f"exec ip neighbor "
+ f"{Topology.get_interface_name(node, node_vxlan_if)} "
+ f"{dst_ip} "
+ f"{Topology.get_interface_mac(op_node, op_node_if)} static "
+ f"\n"
)
commands.append(
f"ip_route_add_del "