Hi Ryu folks,
                    This may be a trivial question...

I'm using ryu 3.23.2 on CentOS 6.6 (OF 1.3). As shown below, when I insert
a mac address (02:a3:33:b2:2d:21), "appends_fields" seem to do something
smart that results in "30:32:3a:61:33:3a" in "match" (as opposed to
"02:a3:33:b2:2d:21").

# Ryu app
match = parser.OFPMatch()
match.append_field(ofproto.OXM_OF_ETH_SRC, "02:a3:33:b2:2d:21")
print match

# Output
OFPMatch(oxm_fields={'eth_src': '30:32:3a:61:33:3a'})

How do I get the original mac address (02:a3:33:b2:2d:21) inserted in
"match"?

Thanks,
Ali
------------------------------------------------------------------------------
_______________________________________________
Ryu-devel mailing list
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to