Bug 1714422
| Summary: | br-tun gets a wrong arp drop rule when dvr is connected to a network but not used as gateway | |||
|---|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Takashi Kajinami <tkajinam> | |
| Component: | openstack-neutron | Assignee: | Slawek Kaplonski <skaplons> | |
| Status: | CLOSED ERRATA | QA Contact: | Candido Campos <ccamposr> | |
| Severity: | urgent | Docs Contact: | ||
| Priority: | medium | |||
| Version: | 13.0 (Queens) | CC: | amuller, chrisw, nate.johnston, scohen, skaplons | |
| Target Milestone: | z8 | Keywords: | Triaged, ZStream | |
| Target Release: | 13.0 (Queens) | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | openstack-neutron-12.0.6-4.el7ost | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1718360 (view as bug list) | Environment: | ||
| Last Closed: | 2019-09-03 16:53:02 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1718360 | |||
|
Description
Takashi Kajinami
2019-05-28 05:18:34 UTC
I checked current neutron code in stable/queens and see that when dvr is connected to a subnet, it installs filter rule about arp going for subnet gateway. neutron/plugins/ml2/drivers/openvswitch/agent/ovs_dvr_neutron_agent.py ~~~ 346 def _bind_distributed_router_interface_port(self, port, lvm, 347 fixed_ips, device_owner): ... 418 # TODO(vivek) remove the IPv6 related flows once SNAT is not 419 # used for IPv6 DVR. 420 if ip_version == 4: 421 if subnet_info['gateway_ip']: 422 br.install_dvr_process_ipv4( 423 vlan_tag=lvm.vlan, gateway_ip=subnet_info['gateway_ip']) <===HERE 424 else: 425 br.install_dvr_process_ipv6( 426 vlan_tag=lvm.vlan, gateway_mac=subnet_info['gateway_mac']) 427 br.install_dvr_process( 428 vlan_tag=lvm.vlan, vif_mac=port.vif_mac, 429 dvr_mac_address=self.dvr_mac_address) ~~~ Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:2629 |