diff options
author | Matej Klotton <mklotton@cisco.com> | 2016-09-13 10:38:41 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2016-10-04 12:01:11 +0000 |
commit | a1316b18443ca5360f1304fc74dee33872dd95eb (patch) | |
tree | 16037b72b99c4802bb673ce357f7b58d79293b04 /resources/traffic_scripts | |
parent | 33198e812804bfa7014cc6d03e787a0e4dbcfe9f (diff) |
CSIT-365: IPv6 encaps softwire - MAP-E part II
- check traffic with multiple domains configured. Generate given amount of random configurations.
- add map-e hairpinning test.
- add icmp test for map-e.
- reformat map_e.robot, capitalize all KW.
Change-Id: I94c4c9d6b186cc4a7c65cdb84ee795365dff5e82
Signed-off-by: Matej Klotton <mklotton@cisco.com>
Diffstat (limited to 'resources/traffic_scripts')
-rwxr-xr-x | resources/traffic_scripts/send_lw_4o6_check_hairpinning_udp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/resources/traffic_scripts/send_lw_4o6_check_hairpinning_udp.py b/resources/traffic_scripts/send_lw_4o6_check_hairpinning_udp.py index df6bc42da5..eb5c26ea61 100755 --- a/resources/traffic_scripts/send_lw_4o6_check_hairpinning_udp.py +++ b/resources/traffic_scripts/send_lw_4o6_check_hairpinning_udp.py @@ -71,6 +71,7 @@ def main(): # pylint: disable=too-many-statements, too-many-locals tx_pkt /= IPv6(src=tx_src_ipv6, dst=tx_dst_ipv6) tx_pkt /= IP(src=tx_src_ipv4, dst=tx_dst_ipv4) tx_pkt /= UDP(sport=tx_src_udp_port, dport=tx_dst_udp_port) + tx_pkt /= 'udp_payload' txq.send(tx_pkt) sent_packets.append(tx_pkt) |