Hyunsun Moon
Committed by Gerrit Code Review

Added ARP TPA match to access VM from external

Change-Id: I197fa84409ee48058a4dbec09be771b833e13897
......@@ -466,6 +466,7 @@ public class CordVtnRuleInstaller {
selector = DefaultTrafficSelector.builder()
.matchInPort(phyPort)
.matchEthType(Ethernet.TYPE_ARP)
.matchArpTpa(localIp.getIp4Address())
.build();
treatment = DefaultTrafficTreatment.builder()
......