Skip to content

Commit 5d00132

Browse files
gaurav-dalvishaleman
authored andcommitted
Fixing Proxy ARP for ACI-gw (#338)
* Fixing Proxy ARP for ACI-gw * followup commit - Fixing Proxy ARP for ACI-gw * Fixing Proxy ARP for ACI-gw
1 parent 69b3573 commit 5d00132

File tree

5 files changed

+45
-41
lines changed

5 files changed

+45
-41
lines changed

Godeps/Godeps.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/ofnet/ofnet.go

+13-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/ofnet/ofnetAgent.go

+20-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/_workspace/src/github.com/contiv/ofnet/vlanBridge.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

drivers/ovsSwitch.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -306,11 +306,12 @@ func (sw *OvsSwitch) CreatePort(intfName string, cfgEp *mastercfg.CfgEndpointSta
306306

307307
// Build the endpoint info
308308
endpoint := ofnet.EndpointInfo{
309-
PortNo: ofpPort,
310-
MacAddr: macAddr,
311-
Vlan: uint16(nwPktTag),
312-
IpAddr: net.ParseIP(cfgEp.IPAddress),
313-
EndpointGroup: cfgEp.EndpointGroupID,
309+
PortNo: ofpPort,
310+
MacAddr: macAddr,
311+
Vlan: uint16(nwPktTag),
312+
IpAddr: net.ParseIP(cfgEp.IPAddress),
313+
EndpointGroup: cfgEp.EndpointGroupID,
314+
EndpointGroupVlan: uint16(pktTag),
314315
}
315316

316317
log.Infof("Adding local endpoint: {%+v}", endpoint)

0 commit comments

Comments
 (0)