Committed by
Gerrit Code Review
Added ARP TPA match to access VM from external
Change-Id: I197fa84409ee48058a4dbec09be771b833e13897
Showing
1 changed file
with
1 additions
and
0 deletions
| ... | @@ -466,6 +466,7 @@ public class CordVtnRuleInstaller { | ... | @@ -466,6 +466,7 @@ public class CordVtnRuleInstaller { |
| 466 | selector = DefaultTrafficSelector.builder() | 466 | selector = DefaultTrafficSelector.builder() |
| 467 | .matchInPort(phyPort) | 467 | .matchInPort(phyPort) |
| 468 | .matchEthType(Ethernet.TYPE_ARP) | 468 | .matchEthType(Ethernet.TYPE_ARP) |
| 469 | + .matchArpTpa(localIp.getIp4Address()) | ||
| 469 | .build(); | 470 | .build(); |
| 470 | 471 | ||
| 471 | treatment = DefaultTrafficTreatment.builder() | 472 | treatment = DefaultTrafficTreatment.builder() | ... | ... |
-
Please register or login to post a comment