commit | b7dc3e25d8e4c18d54251f8fe2646c1edb7c6ef1 | [log] [tgz] |
---|---|---|
author | Rich Lane <rlane@bigswitch.com> | Fri Aug 02 13:51:06 2013 -0700 |
committer | Rich Lane <rlane@bigswitch.com> | Fri Aug 02 13:51:06 2013 -0700 |
tree | 60ffa04f6be37de602df72c60983846653423723 | |
parent | 748d6381f2d4fa80729417992257a880ca794823 [diff] |
testutils: fix simple_eth_pkt src address A multicast source MAC address is not valid.
diff --git a/src/python/oftest/testutils.py b/src/python/oftest/testutils.py index 33a4cc1..bf2b24a 100644 --- a/src/python/oftest/testutils.py +++ b/src/python/oftest/testutils.py
@@ -413,8 +413,8 @@ return pkt def simple_eth_packet(pktlen=60, - eth_dst='00:01:02:03:04:05', - eth_src='01:80:c2:00:00:00', + eth_dst='01:80:c2:00:00:00', + eth_src='00:01:02:03:04:05', eth_type=0x88cc): if MINSIZE > pktlen: