From: Ting Xu Date: Wed, 18 Jan 2023 04:22:00 +0000 (+0000) Subject: packetforge: fix order of dst/src address of mac X-Git-Tag: v23.02-rc2~1 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=c7131df87247cf37a259f7461148e9d54bae1f61;p=vpp.git packetforge: fix order of dst/src address of mac In the defination of mac node, the order of dst and src address is reversed. Swap their order in this patch. Type: fix Signed-off-by: Ting Xu Change-Id: I039accc0a881eef12f13c75c5becf8b7df97d525 (cherry picked from commit 02bdd3f5cb0f2ff4988f972f31fb44da89fd786e) --- diff --git a/extras/packetforge/parsegraph/nodes/mac.json b/extras/packetforge/parsegraph/nodes/mac.json index 6fc49096889..fab690b559d 100644 --- a/extras/packetforge/parsegraph/nodes/mac.json +++ b/extras/packetforge/parsegraph/nodes/mac.json @@ -3,13 +3,13 @@ "name" : "mac", "layout" : [ { - "name" : "src", + "name" : "dst", "size" : "48", "format" : "mac", "default" : "00:00:00:00:00:01" }, { - "name" : "dst", + "name" : "src", "size" : "48", "format" : "mac", "default" : "00:00:00:00:00:02"