Hi, I have some problem about setting the wildcard for dl_type. Basically I want to install a very simple rule on my Arista 7050s swtich. The rule is that "all traffic from interface 1 should be forwarded out to interface 5" So my match code is
msg.match.in_port = 1 msg.match.dl_type = None msg.actions.append(of.ofp_action_output(port = 5)) No matter whether I explicitly set dl_type = None or not, the rule installed on the switch has "Ethernet type: IPv4". As a result, the ARP packets can not matched against this rule. However, in the command line mode of the switch, I can set the Ethernet type correctly. is there any wrong with POX? Thanks. - Hui
